html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    width: 100%;
    position: relative;
    z-index: 1000;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 70px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.header__logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 30px;

    @media(max-width: 990px) {
        gap: 10px
    }
}

.header__nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;

    @media(max-width: 990px) {
        font-size: 14px;
    }
}

.header__nav-link:hover {
    color: white;
}

.header__nav-link--active {
    color: #4a90e2;
}

.header__nav-link--badge::after {
    content: "8";
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn--outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--primary {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
}

.btn--primary:hover {
    background: linear-gradient(135deg, #c2185b, #880e4f);
    transform: translateY(-2px);
}

.header__mobile-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.header__mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.header__mobile-nav.active {
    display: block;
}

.header__mobile-nav-list {
    list-style: none;
    padding: 20px;
}

.header__mobile-nav-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__mobile-nav-item:last-child {
    border-bottom: none;
}

.header__mobile-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    display: block;
    position: relative;
}

.header__mobile-nav-link--badge::after {
    content: "8";
    position: absolute;
    top: -2px;
    right: -20px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__mobile-actions {
    padding: 0 20px 20px;
    display: flex;
    gap: 10px;
}

.header__mobile-actions .btn {
    flex: 1;
    text-align: center;
}

/* Banner Styles */
.banner {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="150" fill="rgba(74,144,226,0.1)"/><circle cx="800" cy="300" r="200" fill="rgba(233,30,99,0.1)"/><circle cx="400" cy="700" r="100" fill="rgba(76,175,80,0.1)"/></svg>');
    background-size: cover;
    opacity: 0.5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.banner__text {
    flex: 1;
    max-width: 600px;
}

.banner__welcome {
    font-size: 18px;
    color: #4a90e2;
    margin-bottom: 15px;
    font-weight: 500;
}

.banner__title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner__title--highlight {
    color: #4a90e2;
}

.banner__cta {
    margin-bottom: 40px;
}

.btn--cta {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn--cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.banner__payments {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.7;
}

.payment-icon {
    height: 24px;
    opacity: 0.6;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
    filter: grayscale(0);
}

.banner__logo {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.3);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.banner__logo:hover {
    transform: rotate(0deg) scale(1.05);
}

.banner__logo-icon {
    font-size: 80px;
    color: white;
}

.banner__stats {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card__number {
    font-size: 28px;
    font-weight: 900;
    color: #4a90e2;
    margin-bottom: 5px;
}

.stat-card__label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header__nav,
    .header__actions {
        display: none;
    }

    .header__mobile-menu {
        display: block;
    }

    .header__container {
        padding: 0 15px;
        height: 60px;
    }

    .banner {
        padding: 40px 0;
    }

    .banner__content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .banner__logo {
        width: 120px;
        height: 120px;
        order: -1;
    }

    .banner__logo-icon {
        font-size: 50px;
    }

    .banner__title {
        font-size: 36px;
        line-height: 1.2;
    }

    .banner__welcome {
        font-size: 16px;
    }

    .btn--cta {
        width: 100%;
        font-size: 16px;
        padding: 12px 30px;
    }

    .banner__payments {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .payment-icon {
        height: 20px;
    }

    .banner__stats {
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-card__number {
        font-size: 24px;
    }

    .stat-card__label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .banner__title {
        font-size: 28px;
    }

    .container {
        padding: 0 15px;
    }
}

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

.games-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.games-section__title {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.games-section__see-all {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.games-section__see-all:hover {
    color: #4a90e2;
}

.games-section__see-all::after {
    content: "›";
    font-size: 20px;
    transition: transform 0.3s ease;
}

.games-section__see-all:hover::after {
    transform: translateX(3px);
}

.games-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.games-grid::-webkit-scrollbar {
    height: 8px;
}

.games-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.games-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.games-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.game-card {
    flex: 0 0 280px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.game-card__image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-card__image {
    transform: scale(1.05);
}

.game-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 20px;
}

.game-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-card__subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-card__provider {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .games-section__title {
        font-size: 24px;
    }

    .games-section__see-all {
        font-size: 14px;
    }

    .game-card {
        flex: 0 0 220px;
    }

    .game-card__image {
        height: 260px;
    }

    .game-card__title {
        font-size: 16px;
    }

    .game-card__subtitle {
        font-size: 12px;
    }

    .games-grid {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .game-card {
        flex: 0 0 180px;
    }

    .game-card__image {
        height: 210px;
    }

    .game-card__content {
        padding: 15px;
    }

    .game-card__title {
        font-size: 14px;
    }

    .game-card__subtitle {
        font-size: 11px;
    }
}

.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 0 30px;
    margin-top: auto;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr 1fr auto;
    gap: 60px;
    align-items: start;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.footer__logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__column-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer__link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.footer__link:hover {
    color: #4a90e2;
}

.footer__flag {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #e91e63, #ad1457);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer__flag:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

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

.footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer__container {
        padding: 0 15px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }

    .footer__logo {
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer__column {
        align-items: flex-start;
    }

    .footer__column-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer__link {
        font-size: 14px;
    }

    .footer__flag {
        align-self: center;
        margin-top: 10px;
    }

    .footer__bottom {
        margin-top: 30px;
        padding-top: 15px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer__content {
        gap: 25px;
    }

    .footer__column-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer__link {
        font-size: 13px;
    }

    .footer__link-list {
        gap: 10px;
    }
}

.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* Article Sections */
.article-section {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 45px;
    margin-bottom: 45px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Typography Styles */
.primary-title {
    font-size: 32px;
    font-weight: 800;
    color: #5ba3f5;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    line-height: 1.3;
}

.secondary-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 35px 0 18px;
    border-left: 4px solid #5ba3f5;
    padding-left: 15px;
}

.article-paragraph {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 22px;
    text-align: justify;
}

.article-paragraph strong {
    color: #5ba3f5;
    font-weight: 700;
}

/* List Styles */
.bullet-list {
    list-style: none;
    margin: 25px 0;
    padding-left: 0;
}

.bullet-item {
    position: relative;
    padding: 10px 0 10px 30px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
}

.bullet-item::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #5ba3f5;
    font-weight: bold;
    font-size: 14px;
}

.numbered-list {
    list-style: none;
    counter-reset: list-counter;
    margin: 25px 0;
}

.numbered-item {
    position: relative;
    padding: 10px 0 10px 40px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    counter-increment: list-counter;
}

.numbered-item::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 10px;
    background: linear-gradient(135deg, #5ba3f5, #4a90e2);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(91, 163, 245, 0.3);
}

/* Table Styles */
.table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 550px;
}

.table-head {
    background: linear-gradient(135deg, rgba(91, 163, 245, 0.3), rgba(74, 144, 226, 0.3));
    color: white;
    font-weight: 700;
}

.table-data {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
}

.table-data strong {
    color: #5ba3f5;
}

.table-row:last-child .table-data {
    border-bottom: none;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* FAQ Styles */
.faq-wrapper {
    margin-top: 35px;
}

.faq-block {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-header {
    font-size: 19px;
    font-weight: 700;
    color: white;
    margin: 0;
    padding: 22px;
    cursor: pointer;
    position: relative;
    background: rgba(91, 163, 245, 0.12);
    transition: background 0.3s ease;
}

.faq-header::after {
    content: "▼";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #5ba3f5;
    transition: transform 0.4s ease;
}

.faq-header.expanded::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-content {
    padding: 0 22px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-content.expanded {
    max-height: 250px;
    padding: 0 22px 22px;
}

.faq-block:hover {
    border-color: rgba(91, 163, 245, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.faq-header:hover {
    background: rgba(91, 163, 245, 0.18);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-container {
        padding: 35px 15px;
    }

    .article-section {
        padding: 30px 22px;
        margin-bottom: 35px;
        border-radius: 20px;
    }

    .primary-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .secondary-title {
        font-size: 19px;
        margin: 28px 0 15px;
    }

    .article-paragraph {
        font-size: 16px;
    }

    .bullet-item,
    .numbered-item {
        font-size: 16px;
    }

    .table-data {
        padding: 15px 18px;
        font-size: 15px;
    }

    .faq-header {
        font-size: 17px;
        padding: 18px;
    }

    .faq-content {
        padding: 0 18px;
        font-size: 16px;
    }

    .faq-content.expanded {
        padding: 0 18px 18px;
    }

    .faq-header::after {
        right: 18px;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 25px 12px;
    }

    .article-section {
        padding: 25px 18px;
    }

    .primary-title {
        font-size: 24px;
    }

    .secondary-title {
        font-size: 17px;
    }

    .article-paragraph,
    .bullet-item,
    .numbered-item {
        font-size: 15px;
    }

    .table-data {
        padding: 12px 15px;
        font-size: 14px;
    }

    .data-table {
        min-width: 450px;
    }
}