* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    min-height: 100vh;
    color: #fff;
    /* Hide scrollbar but allow scrolling */
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 80px; /* Space for footer */
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ff88;
    border-radius: 2px;
    animation: float 6s infinite;
    box-shadow: 0 0 10px #00ff88;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
}

/* Content */
.content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 900px;
    padding: 40px 20px;
}

/* Logo Section */
.logo-section {
    margin-bottom: 60px;
}

.title {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ff88, #00cc66, #009944);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    font-weight: 400;
}

/* Countdown Section */
.countdown-section {
    margin-bottom: 60px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid #00ff88;
    border-radius: 15px;
    padding: 20px;
    min-width: 120px;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.3),
        inset 0 0 20px rgba(0, 255, 136, 0.1);
    transition: transform 0.3s ease;
}

.time-unit:hover {
    transform: scale(1.05);
}

.time-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #00ff88;
    line-height: 1;
}

.time-label {
    display: block;
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.separator {
    font-size: 3rem;
    color: #00ff88;
    font-weight: 700;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.unlock-message {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    padding: 25px;
    max-width: 400px;
    margin: 0 auto;
}

.unlock-message h2 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 10px;
}

.unlock-message p {
    color: #cccccc;
    font-size: 1.1rem;
}

/* Expired Section */
.expired-section {
    margin-bottom: 40px;
}

.expired-section.hidden {
    display: none;
}

.anytime-message {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.anytime-message h2 {
    font-size: 2.5rem;
    color: #ffc107;
    margin-bottom: 20px;
}

.delay-info {
    margin-bottom: 25px;
}

.delay-info p {
    color: #cccccc;
    margin-bottom: 8px;
    font-size: 1rem;
}

.auto-refresh {
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 15px;
}

.auto-refresh p {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.refresh-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.refresh-progress {
    height: 100%;
    background: linear-gradient(90deg, #ffc107, #ffed4e);
    width: 100%;
    animation: refreshProgress 100s linear infinite;
}

@keyframes refreshProgress {
    from { width: 100%; }
    to { width: 0%; }
}

/* Features Preview */
.features-preview {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
}

.features-preview h3 {
    font-size: 1.8rem;
    color: #00ff88;
    margin-bottom: 25px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.feature {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2);
}

.feature-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
}

.feature span:last-child {
    color: #cccccc;
    font-weight: 500;
}

    /* Footer */
    .footer {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        z-index: 10;    }

    .footer p {
        color: #666666;
        font-size: 0.85rem;
        font-weight: 400;
        margin: 3px 0;
    }

    .footer p:first-child {
        margin-bottom: 5px;
    }

    .footer a {
        color: #00ff88;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer a:hover {
        color: #00cc66;
        text-decoration: underline;
    }

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .time-unit {
        min-width: 80px;
        padding: 15px;
    }
    
    .time-number {
        font-size: 2rem;
    }
    
    .separator {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .content {
        padding: 20px 15px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .countdown {
        flex-direction: column;
        gap: 15px;
    }
    
    .separator {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}