:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --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);
}

/* Background Animation */
.stars, .twinkling {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -2;
}

.stars {
    background: #000 url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1231630/stars.png') repeat;
    z-index: -2;
}

.twinkling {
    background: transparent url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1231630/twinkling.png') repeat;
    z-index: -1;
    animation: move-twink-back 200s linear infinite;
}

@keyframes move-twink-back {
    from {background-position: 0 0;}
    to {background-position: -10000px 5000px;}
}

/* Main Container */
.main-container {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

/* Game Logo */
.game-logo {
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

.logo-img {
    max-width: 200px;
    height: auto;
}

/* Game Title */
.game-title h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.game-title p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* Coming Soon Text */
.coming-soon-container {
    margin: 2rem 0;
}

.coming-soon-text {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.coming-soon-text span {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 230, 109, 0.5);
    animation: bounce 2s infinite;
    display: inline-block;
}

.coming-soon-text span:nth-child(1) { animation-delay: 0.1s; }
.coming-soon-text span:nth-child(2) { animation-delay: 0.2s; }
.coming-soon-text span:nth-child(3) { animation-delay: 0.3s; }
.coming-soon-text span:nth-child(4) { animation-delay: 0.4s; }
.coming-soon-text span:nth-child(5) { animation-delay: 0.5s; }
.coming-soon-text span:nth-child(6) { animation-delay: 0.6s; }
.coming-soon-text span:nth-child(8) { animation-delay: 0.7s; }
.coming-soon-text span:nth-child(9) { animation-delay: 0.8s; }
.coming-soon-text span:nth-child(10) { animation-delay: 0.9s; }
.coming-soon-text span:nth-child(11) { animation-delay: 1s; }

.space {
    width: 1rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Contact Info */
.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.email-link {
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--accent-color);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Floating Elements */
.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: 2.5rem;
    }
    
    .coming-soon-text span {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .email-link {
        font-size: 1rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .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;
    }
}

/* Page Header */
.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    font-family: 'Fredoka One', cursive;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.page-header p {
    font-family: 'Poppins', sans-serif;
    color: var(--accent-color);
}

/* Privacy and Terms Sections */
.privacy-section, .terms-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.privacy-section:hover, .terms-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.privacy-section h2, .terms-section h2 {
    font-family: 'Fredoka One', cursive;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.privacy-section p, .terms-section p {
    font-family: 'Poppins', sans-serif;
    color: white;
    line-height: 1.6;
}

.privacy-section ul, .terms-section ul {
    list-style-type: none;
    padding-left: 0;
}

.privacy-section ul li, .terms-section ul li {
    color: white;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.privacy-section ul li:before, .terms-section ul li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Contact Card in Sections */
.privacy-section .contact-card, .terms-section .contact-card {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .privacy-section, .terms-section {
        padding: 1.5rem;
    }
    
    .privacy-section h2, .terms-section h2 {
        font-size: 1.5rem;
    }
}

/* Form Styles */
.form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.input-group {
    transition: all 0.3s ease;
}

.input-group-text {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-right: none;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.submit-button {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: linear-gradient(45deg, #ff8e8e, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.submit-button:disabled {
    background: linear-gradient(45deg, #cccccc, #dddddd);
    transform: none;
    box-shadow: none;
}

.alert-success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #fff;
    border-radius: 15px;
    padding: 1rem;
    margin-top: 1rem;
    backdrop-filter: blur(5px);
}

.alert-success i {
    color: #28a745;
} 