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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(180deg, #0a1628 0%, #162c4a 100%);
    min-height: 100vh;
}

.top-games-section {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

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

.view-all-btn {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-all-btn:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
}

.view-all-btn .count {
    background: rgba(59, 130, 246, 0.4);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 14px;
}

.games-container {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 130, 246, 0.5) rgba(15, 32, 56, 0.6);
}

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

.games-container::-webkit-scrollbar-track {
    background: rgba(15, 32, 56, 0.6);
    border-radius: 10px;
}

.games-container::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.5);
    border-radius: 10px;
}

.games-container::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.7);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 220px);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    width: fit-content;
    padding-bottom: 10px;
}

.game-card {
    background: rgba(15, 32, 56, 0.6);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

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

.game-image-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #1a2942;
}

.game-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.game-details {
    flex: 1;
}

.game-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.game-provider {
    color: #8b9cb8;
    font-size: 14px;
}

.favorite-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.favorite-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.favorite-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
}

.favorite-btn.active svg {
    fill: #ef4444;
    stroke: #ef4444;
}

/* Адаптив */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(5, 200px);
    }
}

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

    .games-grid {
        grid-template-columns: repeat(6, 160px);
        gap: 15px;
    }

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

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

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(6, 140px);
        gap: 10px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-controls {
        width: 100%;
    }

    .game-info {
        padding: 10px;
    }
}

.header {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #3b82f6;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.btn-login {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.btn-register {
    padding: 10px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border: none;
    color: #ffffff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    padding: 20px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #3b82f6;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 10px;
}

.mobile-actions .btn-login,
.mobile-actions .btn-register {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu,
    .header-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 70px;
    }

    .logo {
        font-size: 22px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .mobile-menu {
        top: 70px;
        max-height: calc(100vh - 70px);
    }
}


.banners-section {
    max-width: 1400px;
    margin: 20px auto 40px;
}

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

.banner-card {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.95) 0%, rgba(59, 130, 246, 0.7) 60%, transparent 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    object-fit: cover;
    object-position: right center;
    z-index: 0;
}

.banner-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.9);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.banner-title {
    color: #fbbf24;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 5px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-title-main {
    font-size: 22px;
    margin-bottom: 10px;
}

.banner-subtitle {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.content-h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.content-list {
    color: #ffffff;
    margin-left: 10px;

    li {
        padding: 10px 0;
    }
}

.banner-btn {
    display: inline-block;
    background: #fbbf24;
    color: #0a1628;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    border: none;
    cursor: pointer;
}

.banner-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
}

/* Адаптив */
@media (max-width: 1024px) {
    .banners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .banner-card {
        min-height: 200px;
    }

    .banner-image {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .banner-card {
        padding: 25px;
        min-height: 180px;
    }

    .banner-title {
        font-size: 26px;
    }

    .banner-title-main {
        font-size: 30px;
    }

    .banner-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .banner-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .banner-btn {
        padding: 10px 28px;
        font-size: 15px;
    }

    .banner-image {
        width: 40%;
    }
}

@media (max-width: 480px) {

    .banner-card {
        padding: 20px;
        min-height: 160px;
    }

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

    .banner-title-main {
        font-size: 26px;
    }

    .banner-subtitle {
        font-size: 13px;
    }

    .banner-badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    .banner-btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    .banner-image {
        width: 35%;
    }
}

.footer {
    background: rgba(6, 15, 31, 0.95);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding: 60px 0 0;
}

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

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links a {
    color: #8b9cb8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: #3b82f6;
    padding-left: 5px;
}

.footer-description {
    color: #8b9cb8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.3);
    transform: translateY(-3px);
}

.footer-payment {
    padding: 30px 0;
}

.payment-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.payment-method {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 20px;
    color: #8b9cb8;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #ffffff;
}

.footer-responsible {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.responsible-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.responsible-badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 8px 16px;
    color: #8b9cb8;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.responsible-badge:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #ffffff;
}

.footer-disclaimer {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #6b7280;
    font-size: 14px;
}

.footer-legal-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #8b9cb8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #3b82f6;
}

/* Адаптив */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 35px;
    }

    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .payment-methods {
        gap: 10px;
    }

    .payment-method {
        padding: 8px 16px;
        font-size: 12px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

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

    .footer-social {
        flex-wrap: wrap;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .responsible-content {
        gap: 10px;
    }

    .responsible-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .footer-disclaimer {
        font-size: 11px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

.providers-section {
    max-width: 1400px;
    margin: 30px auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

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

.view-all-btn {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-all-btn:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
}

.view-all-btn .count {
    background: rgba(59, 130, 246, 0.4);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 14px;
}

.nav-arrows {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.arrow-btn:hover {
    background: rgba(59, 130, 246, 0.3);
}

.providers-container {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 130, 246, 0.5) rgba(15, 32, 56, 0.6);
    padding-bottom: 10px;
}

.providers-container::-webkit-scrollbar {
    height: 8px;
}

.providers-container::-webkit-scrollbar-track {
    background: rgba(15, 32, 56, 0.6);
    border-radius: 10px;
}

.providers-container::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.5);
    border-radius: 10px;
}

.providers-container::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.7);
}

.providers-grid {
    display: flex;
    gap: 20px;
    width: fit-content;
}

.provider-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(99, 102, 241, 0.15) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 30px;
    min-width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.provider-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(99, 102, 241, 0.25) 100%);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.provider-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

.provider-card:hover .provider-logo {
    filter: brightness(1.3);
}

/* Адаптив */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .provider-card {
        min-width: 180px;
        height: 90px;
        padding: 25px;
    }

    .nav-arrows {
        display: none;
    }
}

@media (max-width: 480px) {

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-controls {
        width: 100%;
    }

    .provider-card {
        min-width: 160px;
        height: 80px;
        padding: 20px;
    }

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

.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-section h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 50px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.content-section p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.content-section p strong {
    color: #ffffff;
    font-weight: 600;
}

/* Table Styles */
.content-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 12px;
    background: rgba(15, 32, 56, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    -webkit-overflow-scrolling: touch;
}

.content-section table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.content-section table tbody tr:first-child {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(99, 102, 241, 0.15) 100%);
}

.content-section table tbody tr:first-child td {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.content-section table td {
    padding: 16px 20px;
    color: #cbd5e1;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.content-section table tbody tr:not(:first-child):hover {
    background: rgba(59, 130, 246, 0.05);
}

/* FAQ Section */
.content-faq-section {
    margin-top: 60px;
    background: rgba(15, 32, 56, 0.4);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.content-faq-section h2 {
    margin-top: 0;
    margin-bottom: 30px;
}

.content-faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.content-faq-question {
    color: #3b82f6;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.content-faq-question::before {
    content: 'Q:';
    color: #8b5cf6;
    font-weight: 900;
    flex-shrink: 0;
}

.content-faq-answer {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.7;
    padding-left: 30px;
}

/* Final Message Section */
.content-final-message {
    margin-top: 50px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.content-final-message h2 {
    margin-top: 0;
}

.content-final-message p {
    font-size: 17px;
    color: #e2e8f0;
}

/* Responsive */
@media (max-width: 768px) {
    .content-section {
        padding: 40px 20px;
    }

    .content-section h2 {
        font-size: 26px;
        margin-top: 40px;
    }

    .content-section p {
        font-size: 15px;
    }

    .content-table-wrapper {
        margin: 20px -20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .content-section table td {
        padding: 12px 16px;
        font-size: 14px;
    }

    .content-faq-section {
        padding: 30px 20px;
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .content-faq-question {
        font-size: 16px;
    }

    .content-faq-answer {
        font-size: 15px;
        padding-left: 25px;
    }

    .content-final-message {
        padding: 30px 20px;
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .content-final-message p {
        font-size: 15px;
    }
}

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

    .content-section h2 {
        font-size: 22px;
    }

    .content-section p {
        font-size: 14px;
    }

    .content-section table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .content-faq-question {
        font-size: 15px;
    }

    .content-faq-answer {
        font-size: 14px;
        padding-left: 20px;
    }
}