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

html {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    background-color: #1a100a;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin-top: 0;
    margin-bottom: 16px;
}

img {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1240px;
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .container {
        padding: 0 20px;
    }
}

.hfeed.site {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

.site-content {
    flex: 1;
}

.content-area {
    width: 100%;
}

.skip-link {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 10px 20px;
    background: #03f295;
    color: #000;
    z-index: 100000;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #28292B;
    width: 100%;
}

.main-header-bar {
    padding: 12px 0;
}

.main-header-container {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
}

.burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    margin-right: 14px;
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.burger-btn.is-active span:nth-child(2) {
    opacity: 0;
}

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

.site-branding {
    flex-shrink: 0;
    margin-right: 20px;
}

.site-logo-img {
    display: flex;
    align-items: center;
}

.site-logo-img img {
    max-height: 36px;
    width: auto;
}

.header-main-nav {
    display: flex;
    align-items: center;
}

.header-main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-main-nav ul li a {
    color: #b0b0b0;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

.header-main-nav ul li a:hover {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}

.btn-registration {
    display: inline-block;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    background-color: #3a3b3d;
    color: #fff;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-registration:hover {
    background-color: #4a4b4d;
}

.btn-play {
    display: inline-block;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    background-color: #03f295;
    color: #000;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-play:hover {
    background-color: #00d97f;
}

@media (max-width: 768px) {
    .header-main-nav {
        display: none;
    }
    .btn-registration {
        display: none;
    }
    .main-header-container {
        padding: 0 12px;
    }
}

.burger-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 998;
}

.burger-overlay.active {
    display: block;
}

.burger-sidebar {
    position: fixed;
    top: 61px;
    left: -320px;
    width: 300px;
    height: calc(100% - 61px);
    background: #28292B;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
    transition: left 0.3s ease;
}

.burger-sidebar.active {
    left: 0;
}

.burger-sidebar-inner {
    display: flex;
    flex-direction: column;
    padding: 10px 0 16px;
    min-height: 100%;
    gap: 0;
}

.burger-section {
    padding: 8px 12px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.burger-item--wide {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1e1f22;
    border-radius: 10px;
    padding: 12px 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

.burger-item--wide:hover {
    background: #252628;
}

.burger-item-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.burger-item-icon--orange {
    background: rgba(255, 140, 0, 0.2);
}

.burger-item-icon--red {
    background: rgba(220, 50, 50, 0.2);
}

.burger-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 6px 12px 0;
}

.burger-grid-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1e1f22;
    border-radius: 10px;
    padding: 11px 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

.burger-grid-item:hover {
    background: #252628;
}

.burger-grid-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.burger-grid-icon--blue {
    background: rgba(50, 100, 220, 0.25);
}

.burger-grid-icon--green {
    background: rgba(30, 180, 80, 0.25);
}

.burger-grid-icon--orange {
    background: rgba(255, 140, 0, 0.25);
}

.burger-grid-icon--yellow {
    background: rgba(220, 180, 0, 0.25);
}

.burger-nav {
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 4px;
}

.burger-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 20px;
    color: #c8cce0;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: color 0.2s;
}

.burger-nav-item:hover {
    color: #fff;
}

.burger-nav-icon {
    font-size: 18px;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.burger-nav-label {
    flex: 1;
}

.burger-nav-arrow {
    font-size: 10px;
    color: #666;
}

.burger-footer {
    margin-top: auto;
    padding: 14px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.burger-help-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #03f295;
    border-radius: 30px;
    padding: 13px 20px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.burger-help-btn:hover {
    background: #00d97f;
}

.burger-help-icon {
    font-size: 18px;
}

.burger-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1e1f22;
    border-radius: 10px;
    padding: 12px 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.burger-lang-arrow {
    font-size: 10px;
    color: #888;
    margin-left: auto;
}

.burger-app-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1e1f22;
    border-radius: 10px;
    padding: 12px 14px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
}

.burger-app-bar:hover {
    background: #252628;
}

.burger-app-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.burger-app-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.burger-app-sub {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.promo-section {
    padding: 40px 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.promo-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 992px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
}

.promo-card {
    position: relative;
    z-index: 2;
    min-height: 400px;
}

@media (max-width: 768px) {
    .promo-card--medium,
    .promo-card--small {
        min-height: 200px;
    }
}

.promo-card-content {
    padding: 30px;
    color: #fff;
    height: 100%;
}

.promo-card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    color: #fff;
}

@media (max-width: 768px) {
    .promo-card--large .promo-card-title {
        font-size: 26px;
    }
}

.promo-card-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.95);
}

.btn-claim {
    background-color: #03f295;
    color: #000;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-block;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-claim:hover {
    background-color: #00d97f;
}

.btn-activate,
.btn-play-now {
    background-color: #03f295;
    color: #000;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-block;
    transition: background 0.2s;
    text-decoration: none;
}

.btn-activate:hover,
.btn-play-now:hover {
    background-color: #00d97f;
}

.features-section {
    padding-bottom: 40px;
}

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

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background-color: #28292B;
    border-radius: 12px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 120px;
}

.feature-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.feature-card-subtitle {
    font-size: 14px;
    color: #b0b0b0;
    margin: 8px 0 0;
}

.feature-card-icon-placeholder {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3a3f44;
    border-radius: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 10px 20px;
        min-height: 100px;
    }
    .feature-card-title {
        font-size: 20px;
    }
    .feature-card-icon-placeholder {
        width: 60px;
        height: 60px;
    }
}

.content-section {
    margin-bottom: 60px;
}

.content-container {
    padding: 40px;
    color: #fff;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .content-container {
        padding: 25px;
    }
}

.entry-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0 30px;
    line-height: 1.3;
}

.entry-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 40px 0 20px;
    line-height: 1.3;
}

.entry-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 30px 0 16px;
}

.entry-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.entry-content p strong {
    color: #fff;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 25px;
    color: #e0e0e0;
}

.entry-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.entry-content ol {
    list-style-type: decimal;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    background-color: #28292B;
    border-radius: 8px;
    overflow: hidden;
    margin: 30px 0;
}

.entry-content thead {
    background-color: #03f295;
}

.entry-content thead th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.entry-content tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.entry-content tbody tr:last-child {
    border-bottom: none;
}

.entry-content tbody td {
    padding: 16px;
    color: #fff;
    font-size: 14px;
}

@media (max-width: 768px) {
    .content-section {
        margin-bottom: 30px;
    }
    .entry-content h1 {
        font-size: 24px;
    }
    .entry-content h2 {
        font-size: 22px;
    }
    .entry-content p,
    .entry-content li {
        font-size: 14px;
    }
    .entry-content thead th,
    .entry-content tbody td {
        padding: 10px;
        font-size: 12px;
    }
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    background-color: #03f295;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item-question {
    width: 100%;
    padding: 20px;
    background-color: #28292B;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
    transition: background 0.2s;
}

.faq-item-question:hover {
    background-color: #1d1d1d;
}

.faq-item-question-text {
    flex: 1;
}

.faq-item-icon {
    margin-left: 16px;
    transition: transform 0.3s ease;
    font-size: 12px;
    background-color: #060e2a;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-item--active .faq-item-icon {
    transform: rotate(180deg);
}

.faq-item-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item-answer p {
    padding: 20px 0;
    margin: 0;
    color: #000;
    font-size: 16px;
    line-height: 1.8;
}

.faq-item--active .faq-item-answer {
    max-height: 500px;
}

@media (max-width: 768px) {
    .faq-item-question {
        padding: 16px;
        font-size: 14px;
    }
    .faq-item-icon {
        width: 26px;
        height: 26px;
    }
    .faq-item-answer {
        padding: 0 16px;
    }
    .faq-item-answer p {
        font-size: 14px;
    }
}

.updated-section {
    margin-top: 20px;
    background-color: #505050;
    border-radius: 12px;
    padding: 16px 24px;
}

.updated-section-text {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.site-footer {
    background-color: #28292B;
    padding: 60px 0 40px;
    color: #fff;
    margin-top: 60px;
}

.site-footer__inner {
    max-width: 1240px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 2fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    width: auto;
    height: auto;
    display: block;
    max-height: 40px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-item a {
    font-size: 14px;
    color: #b0b0b0;
    transition: color 0.2s;
}

.menu-item a:hover {
    color: #fff;
}

.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-responsibility {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-responsibility-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.footer-responsibility-placeholder {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-responsibility-placeholder span {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 14px;
    color: #b0b0b0;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
}

.footer-bottom {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-top: 40px;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 30px;
    }
}

.footer-payment {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 28%;
}

@media (max-width: 768px) {
    .footer-payment {
        width: 100%;
    }
}

.footer-payment-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.footer-payment-placeholder {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-payment-placeholder span {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 12px;
    color: #b0b0b0;
}

.footer-download {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 70%;
}

@media (max-width: 768px) {
    .footer-download {
        flex-direction: column;
        width: 100%;
    }
}

.footer-download-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .footer-download-title {
        white-space: normal;
    }
}

.footer-download-buttons {
    display: flex;
    gap: 16px;
    width: 100%;
}

@media (max-width: 768px) {
    .footer-download-buttons {
        flex-direction: column;
    }
}

.footer-download-btn {
    flex: 1;
    background-color: #03f295;
    border-radius: 8px;
    padding: 10px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background 0.2s;
    text-decoration: none;
}

.footer-download-btn:hover {
    background-color: #00d97f;
}

.footer-download-btn-text {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.footer-download-btn-subtext {
    font-size: 12px;
    color: #fff;
    opacity: 0.9;
}

.footer-copyright {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright-text {
    font-size: 14px;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 30px;
        margin-top: 30px;
    }
    .footer-copyright-text {
        font-size: 12px;
    }
}