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

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #2D1B69 0%, #1A0A4B 100%);
    color: #E0E4F2;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: rgba(45, 27, 105, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #FF6BFF;
}

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

.logo h1 {
    font-family: 'Roboto', sans-serif;
    color: #C7D4FF;
    font-size: 2rem;
    text-shadow: 0 0 15px #FF6BFF;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

.navigation a {
    color: #E0E4F2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
}

.navigation a:hover {
    color: #C7D4FF;
    background: rgba(199, 212, 255, 0.1);
    text-shadow: 0 0 10px #C7D4FF;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background: #C7D4FF;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('img/bg.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

/* Removed gradient overlays for image background */

/* Removed unused gradient animations */

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 3.5rem;
    color: #C7D4FF;
    margin-bottom: 20px;
    text-shadow: 0 0 20px #FF6BFF;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #E0E4F2;
    max-width: 600px;
}

.feature-labels {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.label {
    background: linear-gradient(45deg, #FF6BFF, #6B9BFF);
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 107, 255, 0.4);
    animation: float 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.label:nth-child(1) { animation-delay: 0s; }
.label:nth-child(2) { animation-delay: 0.5s; }
.label:nth-child(3) { animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

.about, .game-section, .faq, .reviews, .contact {
    background: rgba(26, 10, 75, 0.7);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(199, 212, 255, 0.1);
}

.about h2, .game-section h2, .faq h2, .reviews h2, .contact h2 {
    font-family: 'Roboto', sans-serif;
    color: #C7D4FF;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 15px #FF6BFF;
}

.about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Game Section */
.game-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.game-image {
    text-align: center;
}

.game-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 107, 255, 0.3);
    border: 3px solid rgba(255, 107, 255, 0.5);
}

.game-info h3 {
    font-family: 'Roboto', sans-serif;
    color: #C7D4FF;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #6B9BFF;
}

.game-info p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.btn-play {
    display: inline-block;
    background: linear-gradient(45deg, #FF6BFF, #6B9BFF);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-play:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 155, 255, 0.6);
    text-shadow: 0 0 10px white;
}

/* FAQ Section */
.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(199, 212, 255, 0.1);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(199, 212, 255, 0.2);
}

.faq-question {
    padding: 20px;
    background: rgba(45, 27, 105, 0.5);
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    color: #C7D4FF;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(199, 212, 255, 0.1);
}

.faq-question:hover {
    background: rgba(45, 27, 105, 0.7);
    color: #FF6BFF;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(26, 10, 75, 0.3);
}

.faq-answer p {
    padding: 20px 0;
}

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

.faq-item.active .faq-question {
    background: rgba(107, 155, 255, 0.3);
    color: #6B9BFF;
}

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

.review-item {
    background: rgba(199, 212, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(199, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 255, 0.3);
    border-color: rgba(255, 107, 255, 0.4);
}

.review-item p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.reviewer {
    font-weight: bold;
    color: #C7D4FF;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(199, 212, 255, 0.1);
    border: 1px solid rgba(199, 212, 255, 0.3);
    border-radius: 8px;
    color: #E0E4F2;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FF6BFF;
    box-shadow: 0 0 10px rgba(255, 107, 255, 0.3);
}

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

.btn-submit {
    background: linear-gradient(45deg, #FF6BFF, #6B9BFF);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 255, 0.4);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 155, 255, 0.6);
}

.contact-info h3 {
    font-family: 'Roboto', sans-serif;
    color: #C7D4FF;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1A0A4B 0%, #0D0526 100%);
    padding: 50px 0 20px;
    border-top: 2px solid #FF6BFF;
}

.disclaimer {
    text-align: center;
}

.disclaimer h3 {
    font-family: 'Roboto', sans-serif;
    color: #C7D4FF;
    font-size: 2rem;
    margin-bottom: 25px;
    text-shadow: 0 0 15px #FF6BFF;
}

.disclaimer p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.link-group h4 {
    font-family: 'Roboto', sans-serif;
    color: #C7D4FF;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 10px;
}

.link-group a {
    color: #E0E4F2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #FF6BFF;
    text-shadow: 0 0 5px #FF6BFF;
}

.copyright {
    border-top: 1px solid rgba(199, 212, 255, 0.3);
    padding-top: 20px;
    margin-top: 30px;
}

.copyright p {
    font-size: 1rem;
    color: #C7D4FF;
}

/* Disclaimer Images */
.disclaimer-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.disclaimer-link {
    transition: all 0.3s ease;
    overflow: hidden;
}

.disclaimer-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 255, 0.3);
    border-color: rgba(255, 107, 255, 0.4);
}

.disclaimer-link img {
    display: block;
    max-width: 120px;
    height: auto;
    transition: all 0.3s ease;
}

/* Responsive Design */

@media (max-width: 892px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .navigation {
        display: flex;
        align-items: center;
    }
    
    .navigation ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(45, 27, 105, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        gap: 0;
    }
    
    .navigation ul.active {
        left: 0;
    }
    
    .navigation li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
    
    .navigation a {
        display: block;
        padding: 15px;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(199, 212, 255, 0.1);
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    /* Hamburger Animation */
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .game-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-labels {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .label {
        min-width: 120px;
    }
}

/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(26, 10, 75, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid #FF6BFF;
    border-radius: 15px;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 255, 0.3);
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content p {
    color: #E0E4F2;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.cookie-content a {
    color: #FF6BFF;
    text-decoration: none;
    font-weight: bold;
}

.cookie-content a:hover {
    text-decoration: underline;
    color: #6B9BFF;
}

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

.btn-accept, .btn-decline {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-accept {
    background: linear-gradient(45deg, #FF6BFF, #6B9BFF);
    color: white;
}

.btn-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 255, 0.4);
}

.btn-decline {
    background: rgba(199, 212, 255, 0.2);
    color: #E0E4F2;
    border: 2px solid rgba(199, 212, 255, 0.3);
}

.btn-decline:hover {
    background: rgba(199, 212, 255, 0.3);
    border-color: #C7D4FF;
}

@media (max-width: 768px) {
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn-accept, .btn-decline {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .about h2, .game-section h2, .faq h2, .reviews h2, .contact h2 {
        font-size: 2rem;
    }
}