/* Global Styles */
:root {
    --primary-color: #FFD700;
    --secondary-color: #000000;
    --accent-color: #FF6B6B;
    --text-color: #333333;
    --light-bg: #FFFFFF;
    --dark-bg: #1A1A1A;
    --neon-glow: 0 0 10px rgba(255, 215, 0, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Background Animation */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: transparent;
}

/* Coming Soon Container */
.coming-soon-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

/* Game Brand */
.game-brand {
    margin-bottom: 3rem;
}

.game-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.game-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
    100% { text-shadow: 0 0 30px rgba(255, 215, 0, 1), 0 0 40px rgba(255, 215, 0, 0.5); }
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    padding: 0.5rem 2rem;
    background: linear-gradient(45deg, var(--primary-color), #FFA500);
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-text {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Countdown Section */
.countdown-section {
    margin: 3rem 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.countdown-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.9rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Game Description */
.game-description {
    max-width: 800px;
    margin: 0 auto;
}

.description-text {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.8;
    text-align: center;
    opacity: 0.9;
}

/* Game Features */
.game-features {
    margin: 3rem 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.feature-item span {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.newsletter-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.newsletter-subtitle {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    outline: none;
    box-shadow: none;
    background: transparent;
}

.newsletter-form .btn {
    background: var(--primary-color);
    border: none;
    color: var(--secondary-color);
    padding: 1rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: #FFA500;
    transform: scale(1.05);
}

/* Social Media Section */
.social-media-section {
    text-align: center;
}

.social-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Contact Section */
.contact-section {
    text-align: center;
    margin-top: 3rem;
}

.contact-info {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    padding: 1rem 2rem;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-info span {
    color: #ffffff;
    font-weight: 500;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer p {
    color: #ffffff;
    opacity: 0.8;
    margin: 0;
}

/* Navigation Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand .brand-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    margin: 0 1rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Contact Page Styles */
.contact-page-section {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding: 120px 0 2rem 0;
}

.page-header {
    margin-bottom: 4rem;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
}

/* Contact Info Card */
.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.contact-info-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.contact-details h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #ffffff;
    margin: 0;
    opacity: 0.9;
}

/* Social Media Card */
.social-media-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.form-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: #ffffff;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.contact-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-form .form-check-label {
    color: #ffffff;
    opacity: 0.9;
}

.btn-submit {
    background: linear-gradient(45deg, var(--primary-color), #FFA500);
    border: none;
    color: var(--secondary-color);
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    color: var(--secondary-color);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(3px);
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
}

.faq-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: none;
    font-weight: 600;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFD700'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    opacity: 0.9;
    padding: 1.5rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .game-title {
        font-size: 3.5rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-item {
        margin: 0 0.25rem;
        padding: 1rem 0.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .contact-info-card,
    .contact-form-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .game-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .game-subtitle {
        font-size: 1.2rem;
    }
    
    .countdown-section .row {
        gap: 1rem;
    }
    
    .countdown-item {
        margin: 0;
        margin-bottom: 1rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .description-text {
        font-size: 1rem;
    }
    
    .newsletter-section {
        padding: 2rem 1rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        align-self: center;
    }
}

@media (max-width: 575px) {
    .game-title {
        font-size: 2rem;
    }
    
    .countdown-item {
        padding: 1rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .feature-item {
        padding: 1rem 0.5rem;
    }
    
    .feature-item i {
        font-size: 1.5rem;
    }
    
    .feature-item span {
        font-size: 0.8rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 1.5rem;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }
} 