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

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

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

/* Header Styles */
header {
    background-color: rgba(10, 25, 47, 0.9);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.brand-logo a {
    font-size: 1.4rem;
    font-weight: bold;
    color: #64ffda;
    text-decoration: none;
    background: linear-gradient(45deg, #64ffda, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
}

.logo-graphic {
    height: 2.5rem;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.mobile-menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #64ffda;
}

.navigation-menu ul {
    display: flex;
    list-style: none;
}

.navigation-menu ul li {
    margin-left: 30px;
}

.navigation-menu ul li a {
    color: #ccd6f6;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.navigation-menu ul li a:hover {
    color: #64ffda;
}

/* Hero Section */
.hero-banner {
    height: 100vh;
    background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7)), 
                url('images/hero-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    padding: 0 50px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #64ffda, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #ccd6f6;
    max-width: 600px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 3px solid #64ffda;
    border-right: 3px solid #64ffda;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: -0.2s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #64ffda, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.about-description {
    flex: 1;
    font-size: 1.1rem;
    color: #ccd6f6;
    text-align: center;
}

.about-description p {
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Why Choose Us Section */
.why-choose {
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), 
                url('images/Choose-bg.png') center/cover no-repeat;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #64ffda;
}

.feature p {
    color: #ccd6f6;
}

/* Game Description Section */
.game-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.game-description {
    flex: 1;
    font-size: 1.1rem;
    color: #ccd6f6;
}

.game-preview {
    flex: 1;
}

.game-description p {
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #64ffda, #ffd700);
    color: #0a192f;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: scale(1.05);
}

.game-preview img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.8), rgba(26, 58, 95, 0.8));
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #64ffda, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #64ffda, #ffd700);
}

.faq-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.faq-item h3 {
    color: #64ffda;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.faq-item p {
    color: #ccd6f6;
    line-height: 1.6;
}

.faq-item a {
    color: #64ffda;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.faq-item a:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.9), rgba(26, 58, 95, 0.9));
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.3s; }
.review-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #64ffda, #ffd700);
}

.review-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.review-rating {
    margin-bottom: 20px;
}

.review-rating span {
    color: #ffd700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.review-text {
    color: #ccd6f6;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.review-author {
    color: #64ffda;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    padding-top: 15px;
}

.review-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #64ffda, transparent);
}

/* Footer */
footer {
    background-color: rgba(10, 25, 47, 0.95);
    padding: 50px 0 20px;
}

.legal-disclaimer {
    text-align: center;
    padding: 20px;
    background: rgba(255, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.partner-logos img {
    height: 50px;
    object-fit: contain;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    justify-items: center;
    text-align: center;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column h4 {
    color: #64ffda;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

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

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

.footer-column ul li a:hover {
    color: #64ffda;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccd6f6;
}

/* Cookie Consent Styles */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0a192f, #1a3a5f);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(100, 255, 218, 0.3);
    z-index: 3000;
    display: none;
    max-width: 400px;
}

.cookie-content p {
    color: #ccd6f6;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #64ffda;
    text-decoration: underline;
}

.cookie-content a:hover {
    color: #ffd700;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-reject {
    background: transparent;
    color: #ccd6f6;
    border: 1px solid rgba(100, 255, 218, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Chango', cursive;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cookie-reject:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: #64ffda;
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-content,
    .game-content,
    .contact-content {
        flex-direction: column;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .navigation-menu ul {
        flex-direction: column;
        background: rgba(10, 25, 47, 0.95);
        position: absolute;
        top: 80px;
        right: 20px;
        padding: 20px;
        border-radius: 10px;
        display: none;
    }
    
    .navigation-menu ul.active {
        display: flex;
    }
    
    .navigation-menu ul li {
        margin: 10px 0;
    }
    
    section h2 {
        font-size: 1.9rem;
    }
    
    .partner-logos {
        gap: 20px;
    }
    
    .partner-logos img {
        height: 30px;
        object-fit: contain;
    }
    
    .contact-section h1,
    .policy-section h1 {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    /* Footer column links on mobile */
    .footer-column ul {
        flex-direction: column;
    }
    
    .footer-column {
        align-items: center;
    }

    /* Modal responsive adjustments */
    .modal-window {
        padding: 20px;
        margin: 20px;
    }
    
    .modal-window h2 {
        font-size: 1.5rem;
    }
    
    .modal-window p {
        font-size: 1rem;
    }
    
    /* Reviews section responsive adjustments */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-rating span {
        font-size: 1.2rem;
    }
    
    /* FAQ section responsive adjustments */
    .faq-items {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
}

/* Game Page Styles */
.game-section {
    padding-top: 100px;
    text-align: center;
}

.game-embed {
    width: 90%;
    height: 70vh;
    max-width: 1000px;
    border: 2px solid #64ffda;
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.3);
}

/* Contact Page Styles */
.contact-section {
    padding-top: 100px;
}

.contact-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #64ffda, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-section > p {
    text-align: center;
    font-size: 1.2rem;
    color: #ccd6f6;
    margin-bottom: 50px;
}

.contact-content {
    display: flex;
    gap: 40px;
}

.contact-form {
    flex: 1;
}

.contact-details {
    flex: 1;
}

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

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: #64ffda;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid rgba(100, 255, 218, 0.3);
    background: rgba(16, 39, 71, 0.5);
    color: #fff;
    font-family: 'Chango', cursive;
    font-size: 1rem;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #64ffda;
}

.contact-information {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-information p {
    margin-bottom: 10px;
    color: #ccd6f6;
}

.contact-information a {
    font-size: 15px;
}

.additional-info h3 {
    color: #64ffda;
    margin: 20px 0 10px;
}

.additional-info p {
    color: #ccd6f6;
}

/* Policy Pages Styles */
.policy-section {
    padding-top: 100px;
    padding-bottom: 50px;
}

.policy-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #64ffda, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policy-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
}

.policy-content h2 {
    color: #64ffda;
    margin: 30px 0 15px;
    text-align: left;
    background: none;
    -webkit-text-fill-color: #64ffda;
}

.policy-content h3 {
    color: #64b5f6;
    margin: 20px 0 10px;
}

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

.policy-content ul {
    color: #ccd6f6;
    margin: 15px 0 15px 30px;
}

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

.policy-content strong {
    color: #64ffda;
}

.policy-content a {
    font-size: 14px;
}

/* Modal Styles */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-window {
    background: linear-gradient(135deg, #0a192f, #1a3a5f);
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(100, 255, 218, 0.3);
    position: relative;
}

.modal-window h2 {
    margin-bottom: 20px;
    background: linear-gradient(45deg, #64ffda, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
}

.modal-content p {
    color: #ccd6f6;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #64ffda;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ffd700;
}

/* Cookie Consent responsive adjustments */
.cookie-popup {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 15px;
}

.cookie-content p {
    font-size: 0.8rem;
}

.cookie-buttons {
    flex-direction: column;
}
