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

body {
    font-family: 'Chango', cursive;
    background-color: #0a0a1a;
    color: #e0e0ff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: rgba(10, 10, 30, 0.9);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #6a5acd;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #9370db;
    font-size: 1.4rem;
    text-shadow: 0 0 5px rgba(147, 112, 219, 0.5);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #e0e0ff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #9370db;
    text-shadow: 0 0 5px rgba(147, 112, 219, 0.7);
}

/* Burger Menu */
.burger-menu {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: #9370db;
    text-shadow: 0 0 5px rgba(147, 112, 219, 0.5);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 10, 30, 0.7), rgba(10, 10, 30, 0.7)), 
                url('assets/images/hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #e0d0ff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(147, 112, 219, 0.8);
}

.hero-content p {
    font-size: 1.5rem;
    color: #d0c0ff;
    margin-bottom: 30px;
    text-shadow: 0 0 8px rgba(106, 90, 205, 0.7);
}

.arrow-down {
    display: inline-block;
    font-size: 2rem;
    color: #9370db;
    text-decoration: none;
    animation: bounce 2s infinite;
    text-shadow: 0 0 10px rgba(147, 112, 219, 0.8);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 50px;
    color: #9370db;
    position: relative;
    text-shadow: 0 0 5px rgba(147, 112, 219, 0.5);
}

section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #6a5acd;
    margin: 15px auto;
    box-shadow: 0 0 5px rgba(106, 90, 205, 0.7);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #9370db;
    text-shadow: 0 0 5px rgba(147, 112, 219, 0.5);
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.features {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    flex: 1;
    min-width: 300px;
    background: rgba(20, 20, 50, 0.7);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #6a5acd;
    box-shadow: 0 0 10px rgba(106, 90, 205, 0.3);
}

.feature h3 {
    color: #9370db;
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-shadow: 0 0 5px rgba(147, 112, 219, 0.5);
}

.game-description {
    background: linear-gradient(rgba(15, 15, 40, 0.6), rgba(15, 15, 40, 0.6)), 
                url('assets/images/game-bg.jpg') no-repeat center center/cover;
    text-align: center;
}

.game-description p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    background: #6a5acd;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s;
    border: 2px solid #9370db;
    box-shadow: 0 0 10px rgba(106, 90, 205, 0.5);
}

.btn:hover {
    background: transparent;
    color: #9370db;
    box-shadow: 0 0 15px rgba(147, 112, 219, 0.8);
}

/* FAQ Section */
.faq-item {
    margin-bottom: 30px;
    background: rgba(20, 20, 50, 0.7);
    border-radius: 10px;
    border-left: 5px solid #6a5acd;
    box-shadow: 0 0 10px rgba(106, 90, 205, 0.3);
}

.faq-question {
    color: #9370db;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(147, 112, 219, 0.5);
    padding: 20px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Footer Styles */
footer {
    background: #080815;
    padding: 40px 0 20px;
    border-top: 2px solid #6a5acd;
}

.disclaimer {
    text-align: center;
    padding: 20px;
    background: rgba(100, 0, 150, 0.2);
    margin-bottom: 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    border: 1px solid #6a5acd;
}

.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.partner-logos img {
    height: 60px;
    filter: grayscale(100%) brightness(70%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-logos img:hover {
    filter: grayscale(0) brightness(100%);
    opacity: 1;
    box-shadow: 0 0 10px rgba(147, 112, 219, 0.7);
}

.footer-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: #9370db;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-shadow: 0 0 5px rgba(147, 112, 219, 0.5);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #9370db;
    text-shadow: 0 0 5px rgba(147, 112, 219, 0.7);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .features {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    /* Burger Menu Styles */
    .burger-menu {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background-color: rgba(10, 10, 30, 0.95);
        width: 250px;
        text-align: center;
        transition: 0.3s;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.7);
        padding: 20px 0;
        margin: 0;
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        margin: 15px 0;
    }
}

/* Game Page Styles */
.game-container {
    padding: 100px 0 50px;
    text-align: center;
    background: linear-gradient(rgba(15, 15, 40, 0.7), rgba(15, 15, 40, 0.7)), 
                url('assets/images/game-bg.jpg') no-repeat center center/cover;
}

.game-frame {
    width: 90%;
    height: 70vh;
    max-width: 1000px;
    margin: 0 auto;
    border: 3px solid #6a5acd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

/* Contact Page Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(20, 20, 50, 0.7);
    border-radius: 10px;
    border: 1px solid #6a5acd;
    box-shadow: 0 0 15px rgba(106, 90, 205, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #9370db;
    text-shadow: 0 0 5px rgba(147, 112, 219, 0.5);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #6a5acd;
    border-radius: 5px;
    background: rgba(10, 10, 30, 0.7);
    color: #e0e0ff;
    font-family: 'Chango', cursive;
    box-shadow: inset 0 0 5px rgba(106, 90, 205, 0.3);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #6a5acd;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Chango', cursive;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(106, 90, 205, 0.5);
}

.submit-btn:hover {
    background: #7b68ee;
    box-shadow: 0 0 15px rgba(123, 104, 238, 0.8);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #0a0a1f;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #6a5acd;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 20px rgba(106, 90, 205, 0.5);
}

.modal-content h3 {
    color: #9370db;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(147, 112, 219, 0.5);
}

.close-modal {
    background: #6a5acd;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Chango', cursive;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(106, 90, 205, 0.5);
}

/* Policy Pages */
.policy-content {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 0 20px;
    background: rgba(20, 20, 50, 0.7);
    border-radius: 10px;
    border: 1px solid #6a5acd;
    box-shadow: 0 0 15px rgba(106, 90, 205, 0.3);
}

.policy-content h1 {
    color: #9370db;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 30px;
    text-shadow: 0 0 5px rgba(147, 112, 219, 0.5);
}

.policy-content h2 {
    color: #9370db;
    margin: 30px 0 15px;
    text-align: left;
    text-shadow: 0 0 5px rgba(147, 112, 219, 0.5);
}

.policy-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(20, 20, 50, 0.95);
    border: 2px solid #6a5acd;
    border-radius: 10px;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 0 20px rgba(106, 90, 205, 0.5);
    display: none;
    max-width: 100%;
    width: calc(100% - 40px);
}

.cookie-content p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #e0e0ff;
}

.cookie-content a {
    color: #9370db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.btn-secondary {
    background: transparent;
    color: #e0e0ff;
    border: 2px solid #6a5acd;
}

.btn-secondary:hover {
    background: rgba(106, 90, 205, 0.3);
}

@media (max-width: 768px) {
    .cookie-consent {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 15px;
        width: calc(100% - 20px);
    }
    
    .cookie-content p {
        font-size: 0.8rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
