/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #1a1a1a;
    --dark-gray: #2d2d2d;
    --teal-green: #00d4aa;
    --yellow-green: #b8e986;
    --white: #ffffff;
    --text-light: #e0e0e0;
    --border-radius: 20px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Verification Popup */
.age-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-popup.active {
    display: flex;
}

.age-popup-content {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.age-popup-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.age-popup-content h2 {
    color: var(--yellow-green);
    margin-bottom: 15px;
    font-size: 28px;
    text-transform: uppercase;
}

.age-popup-content p {
    margin-bottom: 25px;
    font-size: 18px;
    color: var(--text-light);
}

.age-popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.btn-age {
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-yes {
    background: var(--yellow-green);
    color: var(--dark-bg);
}

.btn-yes:hover {
    background: var(--teal-green);
    transform: translateY(-2px);
}

.btn-no {
    background: var(--dark-gray);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-no:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.age-warning {
    font-size: 14px;
    color: #999;
    margin-top: 15px;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark-gray);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    border-top: 3px solid var(--teal-green);
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    color: var(--text-light);
    font-size: 14px;
}

.cookie-content a {
    color: var(--teal-green);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-accept {
    background: var(--yellow-green);
    color: var(--dark-bg);
}

.btn-accept:hover {
    background: var(--teal-green);
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background: var(--white);
    color: var(--dark-bg);
}

/* Header */
.header {
    background: var(--dark-bg);
    padding: 20px 0;
    border-bottom: 2px solid var(--teal-green);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--yellow-green);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: var(--yellow-green);
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    cursor: pointer;
}

.lang-arrow {
    font-size: 10px;
}

/* Burger Menu */
.burger-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--yellow-green);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero-section {
    background: var(--teal-green);
    padding: 80px 20px;
    margin: 40px 20px;
    border-radius: var(--border-radius);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark-bg);
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description-box {
    background: var(--dark-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.hero-description-box p {
    color: var(--white);
    font-size: 18px;
    line-height: 1.8;
}

.btn-primary {
    background: var(--yellow-green);
    color: var(--dark-bg);
    padding: 18px 40px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: var(--teal-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Spotlight Section */
.spotlight-section {
    background: var(--dark-gray);
    padding: 60px 20px;
    margin: 40px 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--yellow-green);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.game-card {
    max-width: 600px;
    margin: 0 auto;
}

.game-image-wrapper {
    position: relative;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.game-preview-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.game-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    font-size: 32px;
    font-weight: 900;
    color: var(--yellow-green);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.btn-play {
    background: var(--dark-gray);
    color: var(--white);
    padding: 18px 40px;
    border: 2px solid var(--teal-green);
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
}

.btn-play:hover {
    background: var(--teal-green);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Discover Section */
.discover-section {
    background: var(--teal-green);
    padding: 60px 20px;
    margin: 40px 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.discover-description-box {
    background: var(--dark-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 0 auto;
}

.discover-description-box p {
    color: var(--white);
    font-size: 18px;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background: var(--dark-gray);
    padding: 60px 20px;
    margin: 40px 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
}

.email-icon {
    font-size: 24px;
}

.contact-email a {
    color: var(--teal-green);
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--teal-green);
    border: none;
    border-radius: 10px;
    color: var(--dark-bg);
    font-size: 16px;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(26, 26, 26, 0.6);
}

.form-group textarea {
    resize: vertical;
}

.btn-send {
    background: var(--yellow-green);
    color: var(--dark-bg);
    padding: 15px 40px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
}

.btn-send:hover {
    background: var(--teal-green);
    transform: translateY(-2px);
}

.decorative-logo {
    margin-top: 40px;
    text-align: center;
}

.decorative-logo img {
    max-width: 300px;
    height: auto;
    opacity: 0.7;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 40px 20px;
    margin-top: 40px;
    border-top: 2px solid var(--teal-green);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow-green);
}

.footer-text {
    text-align: center;
    margin-bottom: 30px;
}

.footer-text p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.age-verification {
    font-weight: 600;
    color: var(--yellow-green) !important;
}

.disclaimer-text {
    font-style: italic;
}

.responsible-gaming {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.responsible-gaming a {
    display: block;
    transition: transform 0.3s ease;
}

.responsible-gaming a:hover {
    transform: scale(1.1);
}

.responsible-gaming img {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.responsible-gaming a:hover img {
    opacity: 1;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--dark-gray);
    position: relative;
}

.copyright p {
    color: var(--text-light);
    font-size: 12px;
    margin-bottom: 10px;
}

.age-badge {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--yellow-green);
    color: var(--dark-bg);
    font-size: 20px;
    font-weight: 900;
    line-height: 50px;
    text-align: center;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .burger-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--dark-gray);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 999;
        border-left: 4px solid var(--teal-green);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 15px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 16px;
    }

    .nav-menu a:hover {
        color: var(--yellow-green);
        padding-left: 10px;
        background: rgba(184, 233, 134, 0.1);
    }

    .hero-section,
    .spotlight-section,
    .discover-section,
    .contact-section {
        margin: 20px 10px;
        padding: 40px 15px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

