/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-blue: #0a1929;
    --green-pitch: #1a4d3a;
    --light-green: #2d6a4f;
    --white: #ffffff;
    --orange: #ff6b35;
    --gold: #ffa500;
    --text-light: #e0e0e0;
    --dark-gray: #1a1a1a;
    --border-radius: 15px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--dark-blue);
    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(--orange);
    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(--orange);
    color: var(--white);
}

.btn-yes:hover {
    background: var(--gold);
    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-gray);
}

.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(--orange);
}

.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(--orange);
    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(--orange);
    color: var(--white);
}

.btn-accept:hover {
    background: var(--gold);
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background: var(--white);
    color: var(--dark-gray);
}

/* Header */
.header {
    background: var(--dark-blue);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--green-pitch);
}

.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: 24px;
    font-weight: 700;
    color: var(--white);
    text-transform: lowercase;
}

.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: capitalize;
}

.nav-menu a:hover {
    color: var(--orange);
}

/* 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(--orange);
    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: linear-gradient(135deg, var(--green-pitch) 0%, var(--light-green) 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    color: var(--white);
    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(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Legendary Section */
.legendary-section {
    background: var(--green-pitch);
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.legendary-content {
    max-width: 900px;
    margin: 0 auto;
}

.legendary-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.legendary-question {
    font-size: 20px;
    color: var(--orange);
    font-weight: 600;
    font-style: italic;
}

/* Features Section */
.features-section {
    background: var(--dark-gray);
    padding: 80px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--green-pitch);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid var(--light-green);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--orange);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Power Section */
.power-section {
    background: var(--green-pitch);
    padding: 80px 20px;
}

.power-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.power-image {
    flex: 1;
    min-width: 300px;
}

.power-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.power-text {
    flex: 1;
    min-width: 300px;
}

.power-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.power-features {
    margin-bottom: 30px;
}

.power-feature {
    margin-bottom: 25px;
}

.power-feature h4 {
    font-size: 22px;
    color: var(--orange);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.power-feature p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Games Section */
.games-section {
    background: var(--dark-blue);
    padding: 80px 20px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background: var(--dark-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--orange);
}

.game-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--green-pitch);
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card h3 {
    font-size: 22px;
    color: var(--white);
    padding: 20px 20px 10px;
    text-transform: uppercase;
}

.game-description {
    font-size: 14px;
    color: var(--text-light);
    padding: 0 20px 20px;
    line-height: 1.6;
}

.btn-play {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    background: var(--orange);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-play:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* How to Play Section */
.how-to-play-section {
    background: var(--dark-gray);
    padding: 80px 20px;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.section-content.reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    min-width: 300px;
}

.content-text .section-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.section-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 0;
}

.content-image {
    flex: 1;
    min-width: 300px;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* Benefits Section */
.benefits-section {
    background: var(--green-pitch);
    padding: 80px 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: var(--border-radius);
}

.benefit-icon {
    font-size: 32px;
}

.benefit-item strong {
    color: var(--white);
    font-size: 16px;
}

/* Community Section */
.community-section {
    background: var(--dark-blue);
    padding: 80px 20px;
}

/* Who We Are Section */
.who-we-are-section {
    background: var(--dark-gray);
    padding: 80px 20px;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    padding: 60px 20px 30px;
    border-top: 2px solid var(--green-pitch);
}

.footer-top {
    margin-bottom: 40px;
}

.footer-age {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.age-icon {
    width: 60px;
    height: 60px;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-logos a {
    display: block;
    transition: transform 0.3s ease;
}

.footer-logos a:hover {
    transform: scale(1.1);
}

.footer-logos img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-text {
    margin-bottom: 30px;
}

.footer-text p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.age-verification,
.cookie-notice {
    font-weight: 700;
    color: var(--orange) !important;
    font-size: 16px !important;
    margin-top: 20px !important;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--green-pitch);
}

.copyright p {
    font-size: 12px;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .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(--orange);
        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);
    }

    .nav-menu a:hover {
        color: var(--orange);
        padding-left: 10px;
        background: rgba(255, 107, 53, 0.1);
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-content {
        flex-direction: column;
    }

    .section-content.reverse {
        flex-direction: column;
    }

    .power-content {
        flex-direction: column;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}


