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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000;
    overflow-x: hidden;
}

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

.breadcrumb {
    background: #1a1a1a;
    padding: 10px 0;
    font-size: 14px;
    margin-top: 70px;
}

.breadcrumb a {
    color: #00ff88;
    text-decoration: none;
    margin-right: 5px;
}

.breadcrumb span {
    color: #ccc;
    margin-left: 5px;
}

.breadcrumb span:before {
    content: '>';
    margin-right: 5px;
    color: #666;
}

.header {
    background: #000;
    padding: 12px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

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

.logo svg {
    width: 120px;
    height: 40px;
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    background: transparent;
    border: 1px solid #444;
    border-radius: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #00ff88;
}

.header-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #00ff88;
    color: #000;
}

.btn-primary:hover {
    background: #00cc6a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #00ff88;
}

.btn-secondary:hover {
    background: #00ff88;
    color: #000;
}

.hero {
    padding: 30px 0 50px;
    background: #000;
}

.hero-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px;
}

.welcome-text {
    font-size: 18px;
    color: #00ff88;
    margin-bottom: 10px;
    font-style: italic;
}

.promo-title {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    line-height: 1.15;
}

.promo-code {
    font-size: 24px;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 10px;
    word-break: break-word;
}

.disclaimer {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 30px;
}

.btn-hero {
    background: #FFD700;
    color: #000;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-hero:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.reviews {
    background: #111;
    padding: 50px 0;
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.review-card {
    background: #222;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #00ff88;
}

.stars {
    font-size: 18px;
    margin-bottom: 10px;
}

.reviewer {
    color: #00ff88;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
}

.review-text {
    color: #ccc;
    line-height: 1.5;
}

.more-reviews {
    text-align: center;
}

.more-reviews a {
    color: #00ff88;
    text-decoration: none;
    font-weight: bold;
}

.new-games {
    padding: 50px 0;
    background: #000;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 40px;
    text-align: left;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.game-card {
    background: #222;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.game-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.game-title {
    padding: 12px 10px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    font-size: 13px;
    line-height: 1.3;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-section {
    padding: 50px 0;
    background: #111;
}

.faq-items {
    display: grid;
    gap: 1px;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
}

.faq-item {
    background: #222;
    padding: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-item:hover {
    background: #333;
}

.faq-question {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '▼';
    color: #00ff88;
    font-size: 14px;
}

.faq-answer {
    color: #ccc;
    line-height: 1.5;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.seo-content {
    padding: 50px 0;
    background: #0a0a0a;
}

.seo-content article {
    max-width: 800px;
    margin: 0 auto;
}

.seo-content h1 {
    font-size: 42px;
    color: #FFD700;
    margin-bottom: 25px;
    text-align: center;
}

.seo-content h2 {
    font-size: 32px;
    color: #00ff88;
    margin: 40px 0 20px;
    border-left: 4px solid #00ff88;
    padding-left: 15px;
}

.seo-content h3 {
    font-size: 24px;
    color: #fff;
    margin: 30px 0 15px;
}

.seo-content p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.seo-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.seo-content ol li {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: #222;
    border-radius: 10px;
    overflow: hidden;
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 30px 0;
}

.seo-content table thead {
    background: #00ff88;
}

.seo-content table th,
.seo-content table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
    word-wrap: break-word;
    max-width: 200px;
}

.seo-content table thead th,
.seo-content table thead td {
    color: #000;
    font-weight: bold;
}

.seo-content table tbody td {
    color: #ccc;
}

.footer {
    background: #000;
    border-top: 1px solid #333;
    padding: 40px 0 20px;
}

.footer .container {
    display: grid;
    gap: 30px;
}

.footer-logo {
    justify-self: center;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-group a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.link-group a:hover {
    color: #00ff88;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin: 24px 0;
    padding: 16px 12px;
}

.payment-methods img {
    height: 40px;
    width: auto;
    max-width: 72px;
    object-fit: contain;
    border-radius: 4px;
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.3s;
    background: #fff;
}

.payment-methods img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #666;
    font-size: 12px;
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 18px;
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .review-cards {
        grid-template-columns: 1fr;
    }

    .promo-title {
        font-size: 36px;
    }

    .seo-content h1 {
        font-size: 34px;
    }

    .seo-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .logo {
        order: 1;
    }

    .header-buttons {
        order: 3;
        width: 100%;
        justify-content: stretch;
    }

    .header-buttons .btn {
        flex: 1;
        padding: 10px 12px;
        font-size: 14px;
    }

    .nav-menu {
        display: none;
        order: 4;
        width: 100%;
        flex-direction: column;
        gap: 0;
        border-top: 1px solid #333;
        padding-top: 8px;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        padding: 12px 4px;
        border-bottom: 1px solid #222;
    }

    .breadcrumb {
        margin-top: 78px;
        font-size: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding: 8px 0;
    }

    .hero {
        padding: 20px 0 36px;
    }

    .hero-content {
        position: static;
        padding: 20px 12px 0;
        background: #000;
    }

    .welcome-text {
        font-size: 15px;
    }

    .promo-title {
        font-size: 28px;
    }

    .promo-code {
        font-size: 18px;
    }

    .disclaimer {
        margin-bottom: 18px;
    }

    .btn-hero {
        padding: 12px 28px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 24px;
        text-align: center;
    }

    .new-games,
    .faq-section,
    .reviews,
    .seo-content {
        padding: 36px 0;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .game-card img {
        height: 100px;
    }

    .game-title {
        padding: 10px;
        font-size: 13px;
    }

    .faq-item {
        padding: 18px;
    }

    .faq-question {
        font-size: 16px;
        gap: 12px;
        text-align: left;
    }

    .review-card {
        padding: 18px;
    }

    .seo-content h1 {
        font-size: 26px;
    }

    .seo-content h2 {
        font-size: 22px;
        margin: 28px 0 14px;
    }

    .seo-content h3 {
        font-size: 18px;
    }

    .seo-content p,
    .seo-content ol li {
        font-size: 15px;
        line-height: 1.7;
    }

    .seo-content table {
        min-width: 520px;
    }

    .seo-content table th,
    .seo-content table td {
        padding: 10px 8px;
        font-size: 13px;
        max-width: none;
    }

    .seo-content table td p {
        margin-bottom: 0;
        font-size: 13px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .payment-methods {
        gap: 8px;
        margin: 16px 0;
        padding: 8px 0;
    }

    .payment-methods img {
        height: 28px;
        max-width: 56px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .logo svg {
        width: 100px;
        height: 34px;
    }

    .promo-title {
        font-size: 22px;
    }

    .promo-code {
        font-size: 15px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .seo-content h1 {
        font-size: 22px;
    }

    .seo-content h2 {
        font-size: 18px;
        padding-left: 10px;
    }

    .footer-bottom p {
        font-size: 11px;
        padding: 0 8px;
    }
}