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

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-45deg, #fee9f7, #e8f5fe, #fef2e8, #f0ffe8);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
    overflow: hidden;
    position: relative;
}

.cursor {
    width: 20px;
    height: 20px;
    background: pink;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    mix-blend-mode: difference;
    transition: transform 0.2s;
}

.container {
    text-align: center;
    z-index: 1;
}

h1 {
    font-size: 3.5rem;
    color: #ff69b4;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
    margin-bottom: 2rem;
    opacity: 0;
}

.greeting {
    font-size: 1.5rem;
    color: #8a2be2;
    margin-bottom: 3rem;
    min-height: 2em;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: linear-gradient(45deg, #ff69b4, #ff99cc);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.7);
}

.floating {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .greeting { font-size: 1.2rem; }
    .cta-button { font-size: 1rem; }
}
/* 
Countdown Message Overlay */
.countdown-message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.countdown-message-box {
    background: linear-gradient(135deg, #fff5f7, #ffe6f0);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.4);
    max-width: 90%;
    width: 450px;
    border: 3px solid rgba(255, 105, 180, 0.3);
}

.countdown-message-box h2 {
    font-size: 2.5rem;
    color: #ff69b4;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.2);
}

.countdown-message-box p {
    font-size: 1.1rem;
    color: #8a2be2;
    margin-bottom: 1rem;
}

.countdown-display {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 20px;
    margin: 1.5rem 0;
    box-shadow: inset 0 2px 10px rgba(255, 105, 180, 0.1);
}

.countdown-display span {
    font-size: 1.3rem;
    color: #ff69b4;
    font-weight: bold;
}

.wait-message {
    font-size: 1rem;
    color: #ff69b4;
    font-style: italic;
    margin-top: 1rem;
}

.close-message {
    background: linear-gradient(45deg, #ff69b4, #ff99cc);
    border: none;
    border-radius: 50px;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    color: white;
    cursor: pointer;
    margin-top: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
    transition: transform 0.3s;
}

.close-message:hover {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .countdown-message-box {
        padding: 2rem 1.5rem;
        width: 85%;
    }

    .countdown-message-box h2 {
        font-size: 2rem;
    }

    .countdown-message-box p {
        font-size: 1rem;
    }

    .countdown-display span {
        font-size: 1.1rem;
    }

    .close-message {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .countdown-message-box {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .countdown-message-box h2 {
        font-size: 1.6rem;
    }

    .countdown-message-box p {
        font-size: 0.9rem;
    }

    .countdown-display {
        padding: 1rem;
    }

    .countdown-display span {
        font-size: 1rem;
    }

    .close-message {
        padding: 0.625rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Countdown Overlay for Index */
.countdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #fee9f7, #e8f5fe, #fef2e8, #f0ffe8);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.countdown-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.3);
    max-width: 90%;
}

.countdown-content h2 {
    font-size: 2.5rem;
    color: #ff69b4;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.3);
}

.countdown-content p {
    font-size: 1.2rem;
    color: #8a2be2;
    margin-top: 2rem;
}

#countdown-timer {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 3rem;
    color: #ff69b4;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.2);
}

.countdown-label {
    font-size: 0.9rem;
    color: #ff99cc;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Countdown Mobile Responsive */
@media (max-width: 768px) {
    .countdown-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .countdown-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .countdown-content p {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    #countdown-timer {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 60px;
    }

    .countdown-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .countdown-content {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    
    .countdown-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .countdown-content p {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    .countdown-number {
        font-size: 1.75rem;
    }
    
    #countdown-timer {
        gap: 0.75rem;
    }
    
    .countdown-item {
        min-width: 50px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 374px) {
    .countdown-content {
        padding: 1.25rem 0.75rem;
    }
    
    .countdown-content h2 {
        font-size: 1.3rem;
    }

    .countdown-content p {
        font-size: 0.85rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    #countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 45px;
    }

    .countdown-label {
        font-size: 0.65rem;
    }
}
