:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --dark-color: #2d3436;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Fredoka One', cursive;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: var(--light-color);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation Styles */
.navbar {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--light-color) !important;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.game-title h1 {
    font-size: 3.5rem;
    text-shadow: 3px 3px 0 var(--primary-color),
                 6px 6px 0 var(--secondary-color);
    animation: pulse 2s infinite;
}

.coming-soon-text {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 0 var(--secondary-color);
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    min-width: 120px;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-item span {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    /* margin-bottom: 1.5rem; */
    position: relative;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-family: 'Fredoka One', cursive;
    padding: 12px 20px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Fredoka One', cursive;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

button[type="submit"] {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 12px;
    color: white;
    padding: 12px 30px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

button[type="submit"]:active {
    transform: translateY(0);
}

/* Success Message Styles */
.alert-success {
    background: linear-gradient(45deg, #28a745, #20c997);
    border: none;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
    display: none;
}

.alert-success strong {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
}

.social-links {
    margin-top: 2rem;
}

.social-icon {
    color: white;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* Floating Elements Animation */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float 15s infinite linear;
    opacity: 0.6;
}

.element-1 { left: 10%; animation-delay: 0s; }
.element-2 { left: 30%; animation-delay: 2s; }
.element-3 { left: 50%; animation-delay: 4s; }
.element-4 { left: 70%; animation-delay: 6s; }
.element-5 { left: 90%; animation-delay: 8s; }

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    margin-top: auto;
}

.footer a {
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-info {
    font-size: 1.2rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Close Button Styles */
.close-button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 12px;
    color: white;
    padding: 12px 30px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.close-button i {
    margin-right: 8px;
}

.close-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.close-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .nav-link {
        margin: 0.5rem 0;
    }
    
    .footer {
        padding: 1rem 0;
    }
    
    .footer .row {
        flex-direction: column;
    }
    
    .footer .col-md-4 {
        margin-bottom: 1rem;
    }
    
    .game-title h1 {
        font-size: 2rem;
    }
    
    .coming-soon-text {
        font-size: 1.8rem;
    }
    
    .contact-info {
        font-size: 1rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 1rem;
    }
    
    .countdown-item span {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-control {
        padding: 10px 15px;
    }
    
    button[type="submit"] {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .close-button {
        padding: 10px 25px;
        font-size: 1rem;
    }
} 