:root {
    --primary-color: #ffffff;
    --accent-1: #ff007a; /* Pink */
    --accent-2: #00f0ff; /* Cyan */
    --accent-3: #ffde00; /* Gold/Yellow */
    --accent-4: #4dff00; /* Green */
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--primary-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

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

.container {
    width: 100%;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    padding: 40px 20px;
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), 
                inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.logo-container {
    margin-bottom: 30px;
    padding: 10px;
}

.logo-container img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 30px; /* Rounded corners */
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.35); /* Elegant glow that respects border-radius without clipping */
    display: block;
    margin: 0 auto;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 40px;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, var(--accent-2), var(--accent-1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 800;
    padding: 16px 45px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 20px rgba(255, 0, 122, 0.4), 
                0 0 25px rgba(0, 240, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 25px 0;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 25px rgba(255, 0, 122, 0.5), 
                0 0 35px rgba(0, 240, 255, 0.35);
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
}

.start-date {
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-3); /* Gold color for the date */
}

@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }
}

/* Mobile specific fixes */
@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
}
