/* Countdown Block Styles */

/* Hide main content initially */
.hidden-content {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Countdown overlay that covers entire page */
.countdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    overflow: hidden;
}

/* Countdown container */
.countdown-container {
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

/* Logo styling */
.countdown-logo {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #00d4ff, #ff6b6b, #4ecdc4);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease-in-out infinite;
}

/* Title styling */
.countdown-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

/* Subtitle styling */
.countdown-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Countdown timer container */
.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Individual time blocks */
.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px 15px;
    min-width: 80px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.time-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
}

/* Time numbers */
.time-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* Time labels */
.time-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Time separators */
.time-separator {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    color: #444;
    font-weight: 700;
    line-height: 1;
    margin: 0 5px;
}

/* Release info section */
.release-info {
    margin-bottom: 30px;
}

.release-date {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.release-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #ccc;
    font-weight: 400;
    line-height: 1.5;
}

/* Social links in countdown */
.countdown-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-social a:hover {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

/* Animated particles background */
.countdown-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00d4ff;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 9s;
}

/* Animations */
@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-10px);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-15px) translateX(5px);
        opacity: 0.9;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .countdown-logo {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .countdown-title {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .countdown-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .countdown-timer {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .time-block {
        padding: 15px 10px;
        min-width: 70px;
    }
    
    .time-number {
        font-size: 2rem;
    }
    
    .time-label {
        font-size: 0.7rem;
    }
    
    .time-separator {
        font-size: 1.5rem;
        margin: 0 3px;
    }
    
    .release-date {
        font-size: 0.9rem;
    }
    
    .release-description {
        font-size: 0.9rem;
    }
    
    .countdown-social a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        padding: 30px 15px;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .time-block {
        padding: 12px 8px;
        min-width: 60px;
    }
    
    .time-number {
        font-size: 1.5rem;
    }
    
    .time-separator {
        display: none;
    }
}

/* Security enhancements - hide content completely */
body.countdown-active {
    overflow: hidden;
}

body.countdown-active * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Additional security layers */
.countdown-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}