@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=MedievalSharp&display=swap');
        
        * { 
            margin: 0; 
            padding: 0; 
            box-sizing: border-box;
				cursor: url('mouse.cur'), auto;
        }
        
       body {
    font-family: 'Cinzel', serif;
    background: url('last.jpg') no-repeat center center fixed;
    background-size: cover; /* makes image fill the screen */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 20vh;
    padding: 1px;
    position: relative;
    overflow: hidden;
	cursor: url('mouse.cur'), auto;
}
        
        @keyframes float-particles {
            0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.4; }
            33% { transform: translateY(-30px) translateX(20px) scale(1.2); opacity: 0.7; }
            66% { transform: translateY(-15px) translateX(-15px) scale(0.9); opacity: 0.5; }
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-image: 
                radial-gradient(2px 2px at 15% 25%, rgba(232,123,30,0.5), transparent),
                radial-gradient(3px 3px at 85% 75%, rgba(232,123,30,0.4), transparent),
                radial-gradient(2px 2px at 45% 50%, rgba(232,123,30,0.3), transparent),
                radial-gradient(1px 1px at 70% 30%, rgba(232,123,30,0.4), transparent);
            background-size: 250px 250px, 300px 300px, 200px 200px, 350px 350px;
            animation: float-particles 12s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }
		.check-in-btn {
    display: none !important;
}
        
        .main-container {
            position: relative;
			width: 770px;
            height: 590px;
            background: linear-gradient(180deg, #1A0A00 0%, #3D1A00 50%, #7A3500 100%);
            border: 4px solid #E87B1E;
            border-radius: 24px;
            box-shadow: 0 0 0 2px rgba(232,123,30,0.4), 0 0 0 8px rgba(61,26,0,0.6), 0 15px 40px rgba(0,0,0,0.9);
            overflow: hidden;
            z-index: 1;
            backdrop-filter: blur(10px);
        }
        
        .main-container::before {
            content: '';
            position: absolute;
            top: -3px; left: -3px; right: -3px; bottom: -3px;
            background: linear-gradient(45deg, transparent 30%, rgba(232,123,30,0.4) 50%, transparent 70%);
            background-size: 200% 200%;
            border-radius: 26px;
            z-index: -1;
            animation: shimmer-border 6s linear infinite;
        }
        
        @keyframes shimmer-border {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        .corner-ornament {
            position: absolute;
            width: 50px;
            height: 50px;
            opacity: 0.7;
            pointer-events: none;
            z-index: 10;
            font-size: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFD9A8;
            text-shadow: 0 0 15px rgba(232,123,30,0.9);
            animation: corner-pulse 4s ease-in-out infinite;
        }
        
        @keyframes corner-pulse {
            0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
            50% { transform: scale(1.15) rotate(5deg); opacity: 0.9; }
        }
        
        .corner-ornament.tl { top: 5px; left: 5px; }
        .corner-ornament.tr { top: 5px; right: 5px; animation-delay: 1s; }
        .corner-ornament.bl { bottom: 5px; left: 5px; animation-delay: 2s; }
        .corner-ornament.br { bottom: 5px; right: 5px; animation-delay: 3s; }
        .corner-ornament::before { content: '◈'; }
        
        .header-bar {
            background: linear-gradient(90deg, transparent 0%, rgba(232,123,30,0.15) 20%, rgba(232,123,30,0.25) 50%, rgba(232,123,30,0.15) 80%, transparent 100%);
            padding: 15px 20px;
            text-align: center;
            border-bottom: 3px solid #E87B1E;
            position: relative;
            box-shadow: 0 4px 20px rgba(0,0,0,0.6);
        }
        
        .header-bar::before, .header-bar::after {
            content: '◆';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 12px;
            color: #FFD9A8;
            text-shadow: 0 0 15px rgba(232,123,30,1);
            animation: sparkle 3s ease-in-out infinite;
        }
        
        @keyframes sparkle {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; filter: brightness(1.5); }
        }
        
        .header-bar::before { left: 15px; }
        .header-bar::after { right: 15px; }
        
        .header-label {
            font-size: 10px;
            letter-spacing: 4px;
            color: #FFD9A8;
            text-transform: uppercase;
            text-shadow: 0 0 10px rgba(255,217,168,0.9);
            margin-bottom: 4px;
        }
        
        .dominus-logo {
            font-size: 20px;
            font-weight: 900;
            background: linear-gradient(180deg, #FFD9A8 0%, #F0A050 40%, #E87B1E 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
            filter: drop-shadow(0 3px 6px rgba(0,0,0,0.9));
            font-family: 'MedievalSharp', cursive;
        }
        
        .week-selector {
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 15px;
            background: rgba(26,10,0,0.5);
            border-bottom: 2px solid rgba(232,123,30,0.3);
        }
        
        .week-btn {
            background: linear-gradient(135deg, rgba(122,53,0,0.4) 0%, rgba(61,26,0,0.6) 100%);
            border: 2px solid #E87B1E;
            border-radius: 8px;
            padding: 8px 20px;
            color: #FFD9A8;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-shadow: 0 0 10px rgba(232,123,30,0.8);
        }
        
        .week-btn:hover {
            background: linear-gradient(135deg, rgba(122,53,0,0.6) 0%, rgba(61,26,0,0.8) 100%);
            border-color: #F0A050;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(232,123,30,0.5);
        }
        
        .week-btn.active {
            background: linear-gradient(135deg, #F0A050 0%, #E87B1E 100%);
            color: #1A0A00;
            border-color: #FFD9A8;
            box-shadow: 0 0 20px rgba(232,123,30,0.8);
        }
        
        .server-time {
            text-align: center;
            padding: 10px;
            font-size: 11px;
            color: #F0A050;
            background: rgba(26,10,0,0.3);
            border-bottom: 1px solid rgba(232,123,30,0.2);
        }
        
        .content-wrapper {
            padding: 20px;
            max-height: 600px;
            overflow-y: auto;
        }
        
        .content-wrapper::-webkit-scrollbar { width: 8px; }
        .content-wrapper::-webkit-scrollbar-track { background: rgba(122,53,0,0.2); border-radius: 5px; }
        .content-wrapper::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #F0A050 0%, #E87B1E 100%); border-radius: 5px; }
        
        .days-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .day-card {
            background: linear-gradient(135deg, rgba(61,26,0,0.8) 0%, rgba(26,10,0,0.9) 100%);
            border: 3px solid #E87B1E;
            border-radius: 12px;
            padding: 10px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        .day-card::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(232,123,30,0.2) 50%, transparent 70%);
            animation: shimmer 3s linear infinite;
        }
        
        @keyframes shimmer {
            from { transform: translate(-100%, -100%); }
            to { transform: translate(100%, 100%); }
        }
        
        .day-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(232,123,30,0.4);
            border-color: #F0A050;
        }
        
        .day-card.claimed {
            background: linear-gradient(135deg, rgba(76,175,80,0.3) 0%, rgba(56,142,60,0.4) 100%);
            border-color: #4caf50;
        }
        
        .day-card.locked {
            background: linear-gradient(135deg, rgba(66,66,66,0.5) 0%, rgba(33,33,33,0.6) 100%);
            border-color: #666;
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        .day-card.available {
            border-color: #FFD700;
            animation: pulse-glow 2s ease-in-out infinite;
        }
        
        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 10px rgba(255,215,0,0.5); }
            50% { box-shadow: 0 0 25px rgba(255,215,0,0.9); }
        }
        
        .day-label {
            font-size: 11px;
            font-weight: 700;
            color: #FFD9A8;
            margin-bottom: 8px;
            text-shadow: 0 0 8px rgba(232,123,30,0.8);
        }
        
        .reward-icons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 4px;
            min-height: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .reward-item {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .reward-icon {
            width: 40px;
            height: 40px;
            background: rgba(122,53,0,0.5);
            border: 2px solid #F0A050;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.6);
        }
        
        .reward-icon img {
            max-width: 100%;
            max-height: 100%;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.8));
        }
        
        .reward-quantity {
            position: absolute;
            bottom: -2px;
            right: -2px;
            background: rgba(255,215,0,0.95);
            color: #1A0A00;
            font-size: 9px;
            font-weight: 900;
            padding: 1px 4px;
            border-radius: 3px;
            border: 1px solid #1A0A00;
            box-shadow: 0 1px 3px rgba(0,0,0,0.8);
        }
        
        .status-badge {
            margin-top: 8px;
            font-size: 9px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .status-badge.claimed {
            background: rgba(76,175,80,0.3);
            color: #4caf50;
            border: 1px solid #4caf50;
        }
        
        .status-badge.locked {
            background: rgba(100,100,100,0.3);
            color: #999;
            border: 1px solid #666;
        }
        
        .status-badge.available {
            background: rgba(255,215,0,0.3);
            color: #FFD700;
            border: 1px solid #FFD700;
            animation: blink 1.5s ease-in-out infinite;
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }
        
        .message-box {
            margin: 15px 0;
            padding: 12px;
            border-radius: 8px;
            font-size: 13px;
            text-align: center;
            font-weight: 700;
            display: none;
            animation: pop-in 0.4s ease;
        }
        
        @keyframes pop-in {
            0% { transform: scale(0.8); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }
        
        .message-box.success {
            background: linear-gradient(135deg, rgba(76,175,80,0.3) 0%, rgba(76,175,80,0.2) 100%);
            border: 2px solid #4caf50;
            color: #4caf50;
            text-shadow: 0 0 10px rgba(76,175,80,0.8);
        }
        
        .message-box.error {
            background: linear-gradient(135deg, rgba(244,67,54,0.3) 0%, rgba(244,67,54,0.2) 100%);
            border: 2px solid #f44336;
            color: #f44336;
            text-shadow: 0 0 10px rgba(244,67,54,0.8);
        }
        
        .loading {
            text-align: center;
            padding: 40px;
            color: #F0A050;
            font-size: 14px;
        }
        
        .loading::after {
            content: '...';
            animation: dots 1.5s steps(3, end) infinite;
        }
        
        @keyframes dots {
            0%, 20% { content: '.'; }
            40% { content: '..'; }
            60%, 100% { content: '...'; }
        }
        
        @media (max-width: 768px) {
            .days-grid {
                grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
                gap: 8px;
            }
            
            .week-selector {
                flex-wrap: wrap;
                gap: 6px;
            }			
            
            .week-btn {
                padding: 6px 12px;
                font-size: 11px;
            }
        }
/* Elegant tooltip with clean white text */
.reward-tooltip-clean {
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 8px;
    font-weight: 700;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    
    /* Enhanced text shadow for readability on any background */
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.8),
        0 2px 6px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(232, 123, 30, 0.4),
        0 0 30px rgba(232, 123, 30, 0.2);
    
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Micro letter spacing for better readability */
    word-spacing: 1px;
    
    /* Prevent text from being too close to edges */
    padding: 0 2px;
}

.reward-item:hover .reward-tooltip-clean {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 8px);
}

/* Subtle glow animation */
@keyframes elegant-glow {
    0%, 100% {
        text-shadow: 
            0 1px 3px rgba(0, 0, 0, 0.8),
            0 2px 6px rgba(0, 0, 0, 0.6),
            0 0 15px rgba(232, 123, 30, 0.4),
            0 0 25px rgba(232, 123, 30, 0.2);
    }
    50% {
        text-shadow: 
            0 1px 3px rgba(0, 0, 0, 0.8),
            0 2px 8px rgba(0, 0, 0, 0.7),
            0 0 20px rgba(240, 160, 80, 0.5),
            0 0 35px rgba(240, 160, 80, 0.3);
    }
}

.reward-tooltip-clean {
    animation: elegant-glow 3s ease-in-out infinite;
}

.reward-item:hover .reward-tooltip-clean {
    animation: 
        elegant-glow 3s ease-in-out infinite,
        tooltip-enter 0.3s ease-out;
}
/* Add these styles to the end of daily_1.css */

/* Top check-in button container */
.top-checkin-container {
    position: relative;
    text-align: center;
    padding: 10px 20px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(232, 123, 30, 0.1) 20%, 
        rgba(232, 123, 30, 0.2) 50%, 
        rgba(232, 123, 30, 0.1) 80%, 
        transparent 100%
    );
    border-bottom: 2px solid rgba(232, 123, 30, 0.3);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Top check-in button */
.top-checkin-btn {
    background: linear-gradient(135deg, #FFD9A8 0%, #F0A050 20%, #E87B1E 50%, #F0A050 80%, #FFD9A8 100%);
    background-size: 200% 200%;
    color: #1A0A00;
    border: 2px solid #7A3500;
    border-radius: 8px;
    padding: 8px 25px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    animation: top-glow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
    min-width: 200px;
}

@keyframes top-glow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(232, 123, 30, 0.8); }
}

.top-checkin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(232, 123, 30, 0.9);
}

.top-checkin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: linear-gradient(135deg, #3D1A00 0%, #1A0A00 100%);
    color: #E87B1E;
    animation: none;
}