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-color: #f0f0f0;
    padding-top: 70px; /* Space for fixed header */
}

.header {
    background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
    width: 100%;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    flex-direction: column;
    line-height: 1;
}

.logo::before {
    content: '💎';
    font-size: 28px;
    margin-bottom: 2px;
}

.logo-text {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-subtext {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: -2px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    position: relative;

    @media(max-width: 1200px) {
        font-size: 12px;
        padding: 8px 8px;
    }
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-item.new::after {
    content: 'NEW';
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ef4444;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 20px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    @media(max-width: 1200px) {
        font-size: 12px;
        padding: 8px 15px;
    }
}

.btn-login {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-login:hover {
    background-color: white;
    color: #6b46c1;
}

.btn-register {
    background-color: #f59e0b;
    color: white;
}

.btn-register:hover {
    background-color: #d97706;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
    z-index: 999;
    overflow-y: auto;
}

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

.mobile-nav {
    padding: 20px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.mobile-nav-item::before {
    margin-right: 15px;
    font-size: 20px;
}

.mobile-nav-item:nth-child(1)::before { content: '🏠'; }
.mobile-nav-item:nth-child(2)::before { content: '🎰'; }
.mobile-nav-item:nth-child(3)::before { content: '🎲'; }
.mobile-nav-item:nth-child(4)::before { content: '⚽'; }
.mobile-nav-item:nth-child(5)::before { content: '📺'; }
.mobile-nav-item:nth-child(6)::before { content: '🏇'; }
.mobile-nav-item:nth-child(7)::before { content: '🎮'; }
.mobile-nav-item:nth-child(8)::before { content: '🦀'; }
.mobile-nav-item:nth-child(9)::before { content: '🎁'; }
.mobile-nav-item:nth-child(10)::before { content: '🎯'; }
.mobile-nav-item:nth-child(11)::before { content: '🏆'; }
.mobile-nav-item:nth-child(12)::before { content: '🎨'; }

.mobile-nav-item.new::after {
    content: 'NEW';
    position: absolute;
    right: 0;
    background-color: #ef4444;
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 10px;
    font-weight: bold;
}

.mobile-logo {
    display: none;
    justify-content: center;
    align-items: center;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 20px;
    border-radius: 8px;
    font-weight: bold;
    color: white;
    flex-direction: column;
    line-height: 1;
}

.mobile-logo::before {
    content: '💎';
    font-size: 24px;
    margin-bottom: 2px;
}

.mobile-logo-text {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
}

.mobile-logo-subtext {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: -2px;
}

.close-btn {
    position: absolute;
    top: 15px;
    left: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

body.mobile-menu-open .header {
    display: none;
}

@media (max-width: 768px) {
    .header-content {
        padding: 0 15px;
    }

    .desktop-nav,
    .auth-buttons {
        display: none;
    }

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

    .mobile-logo {
        display: flex;
    }
}

.promo-hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 50%, #673ab7 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stadium-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            radial-gradient(circle at 20% 80%, rgba(255, 20, 147, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(255, 105, 180, 0.2) 0%, transparent 50%);
}

.lights-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            repeating-linear-gradient(
                    90deg,
                    transparent 0%,
                    rgba(255, 255, 255, 0.1) 1%,
                    transparent 2%
            ),
            repeating-linear-gradient(
                    0deg,
                    transparent 0%,
                    rgba(255, 255, 255, 0.05) 1%,
                    transparent 2%
            );
}

.sparkle-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.sparkle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: sparkle 2s infinite ease-in-out;
}

.sparkle-dot:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle-dot:nth-child(2) { top: 30%; left: 85%; animation-delay: 0.5s; }
.sparkle-dot:nth-child(3) { top: 70%; left: 15%; animation-delay: 1s; }
.sparkle-dot:nth-child(4) { top: 60%; left: 90%; animation-delay: 1.5s; }
.sparkle-dot:nth-child(5) { top: 40%; left: 75%; animation-delay: 0.3s; }
.sparkle-dot:nth-child(6) { top: 80%; left: 60%; animation-delay: 0.8s; }

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
}

.bonus-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.deposit-label {
    font-size: 16px;
    font-weight: 600;
    color: #e1bee7;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.percentage-text {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.amount-display {
    font-size: 72px;
    font-weight: 900;
    color: #ff1976;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    margin-bottom: 8px;
    line-height: 1;
}

.sport-category {
    font-size: 18px;
    font-weight: 700;
    color: #4fc3f7;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.terms-link {
    font-size: 12px;
    color: #e1bee7;
    text-decoration: underline;
    margin-bottom: 20px;
    display: block;
}

.play-button {
    background: linear-gradient(45deg, #4caf50, #8bc34a);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.6);
}

.steps-container {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 15px;
    z-index: 15;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    position: relative;
}

.step-circle:nth-child(1) {
    background: linear-gradient(135deg, #9c27b0, #673ab7);
}

.step-circle:nth-child(2) {
    background: linear-gradient(135deg, #2196f3, #1976d2);
}

.step-circle:nth-child(3) {
    background: linear-gradient(135deg, #e91e63, #ad1457);
}

.step-number {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 2px;
}

.step-text {
    font-size: 10px;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .promo-hero-section {
        height: max-content;
        flex-direction: column;
        justify-content: space-between;
        padding: 20px;
    }

    .bonus-content-wrapper {
        padding: 20px 25px;
        margin-bottom: 20px;
    }

    .percentage-text {
        font-size: 36px;
    }

    .amount-display {
        font-size: 54px;
    }

    .steps-container {
        position: relative;
        bottom: auto;
        right: auto;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }

    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }

    .step-number {
        font-size: 18px;
    }

    .step-text {
        font-size: 8px;
    }
}

.top-games-section {
    width: 100%;
    padding: 40px 0;
}

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

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

.main-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.see-all-btn {
    color: #4fc3f7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.see-all-btn:hover {
    color: #29b6f6;
}

.horizontal-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
}

.game-cards-grid {
    display: grid;
    gap: 15px;
}

.top-row {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.bottom-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

.top-row .game-link {
    height: 246px;
    min-width: 176px;
}

.bottom-row .game-link {
    height: 296px;
}

.game-link {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f8f9fa;
    text-decoration: none;
    display: block;
    border: 1px solid #e9ecef;
}

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

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.new-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #4caf50;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .top-row {
        grid-template-columns: repeat(8, 176px);
    }

    .bottom-row {
        grid-template-columns: repeat(7, 203px);
    }

    .game-cards-grid {
        min-width: 1240px;
    }
}

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

    .top-games-section {
        padding: 20px 0;
    }

    .main-title {
        font-size: 18px;
    }

    .top-row {
        grid-template-columns: repeat(8, 176px);
    }

    .bottom-row {
        grid-template-columns: repeat(7, 203px);
    }

    .game-cards-grid {
        min-width: 1240px;
    }
}

@media (max-width: 480px) {
    .top-row {
        grid-template-columns: repeat(8, 176px);
    }

    .bottom-row {
        grid-template-columns: repeat(7, 203px);
    }

    .game-cards-grid {
        min-width: 1240px;
    }

    .new-badge {
        font-size: 8px;
        padding: 2px 6px;
    }
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 4px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #4fc3f7;
    border-radius: 4px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: #29b6f6;
}

.footer-main-section {
    background-color: #f8f9fa;
    padding: 60px 0 40px;
    border-top: 1px solid #e9ecef;
}

.footer-content-wrapper {
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.column-header-title {
    font-size: 16px;
    font-weight: 700;
    color: #5a5a8a;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

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

.nav-item-link {
    color: #8a8ab8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.nav-item-link:hover {
    color: #6b46c1;
}

.footer-bottom-section {
    background-color: #f1f3f4;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
}

.bottom-content-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.copyright-text {
    color: #6c757d;
    font-size: 12px;
    line-height: 1.5;
}

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

    .footer-main-section {
        padding: 50px 0 30px;
    }
}

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

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

    .footer-main-section {
        padding: 40px 0 25px;
    }

    .column-header-title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .nav-item-link {
        font-size: 13px;
    }
}

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

    .footer-main-section {
        padding: 30px 0 20px;
    }

    .column-header-title {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-nav-list {
        gap: 10px;
    }

    .nav-item-link {
        font-size: 14px;
    }
}

.tournament-banner-section {
    width: 100%;
    padding: 40px 0;
}

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

.masters-banner-wrapper {
    background: url("../images/sport-banner-bg-desk.webp") no-repeat 0 0;
    background-size: cover;
    border-radius: 20px;
    padding: 40px 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 280px;
}

.banner-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.sparkle-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.sparkle-element {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
    animation: twinkle 3s infinite ease-in-out;

}



.tournament-content-left {
    position: relative;
    z-index: 10;
    color: white;
    flex: 1;
    max-width: 500px;

}

.main-tournament-title {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.tournament-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.countdown-timer-text {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.prize-amount-display {
    font-size: 64px;
    font-weight: 900;
    color: white;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    line-height: 1;
}

.participate-btn {
    background: linear-gradient(45deg, #f97316, #ea580c);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.participate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.6);
}

.tournament-visuals-right {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: 600px;
    min-height: 250px;
    background: url("../images/sport-banner-pic-desk-large.webp") no-repeat 0 0;
    background-size: contain;
}


@media (max-width: 1024px) {
    .banner-container-1640 {
        padding: 0 15px;
    }

    .masters-banner-wrapper {
        padding: 30px 35px;
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .tournament-content-left {
        max-width: none;
        margin-bottom: 30px;
    }

    .main-tournament-title {
        font-size: 36px;
    }

    .prize-amount-display {
        font-size: 48px;
    }

    .tournament-visuals-right {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .tournament-banner-section {
        padding: 20px 0;
    }

    .masters-banner-wrapper {
        padding: 25px 20px;
    }

    .main-tournament-title {
        font-size: 28px;
    }

    .tournament-subtitle {
        font-size: 16px;
    }

    .countdown-timer-text {
        font-size: 14px;
    }

    .prize-amount-display {
        font-size: 36px;
    }

    .participate-btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    .sports-items-container {
        height: 150px;
    }

    .sport-item {
        padding: 10px;
    }

    .football-ball {
        width: 60px;
        height: 60px;
    }

    .trophy-cup {
        width: 80px;
        height: 100px;
    }

    .sports-boot {
        width: 70px;
        height: 45px;
    }

    .trophy-case {
        width: 90px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .masters-banner-wrapper {
        padding: 20px 15px;
    }

    .main-tournament-title {
        font-size: 24px;
    }

    .prize-amount-display {
        font-size: 28px;
    }

    .tournament-visuals-right {
        display: none;
    }
}

.content-section {
    padding: 40px 0;
    border-bottom: 1px solid #e9ecef;
}

.content-section:last-child {
    border-bottom: none;
}

.content-container-1440 {
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.3;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2a2a3e;
    margin: 30px 0 15px 0;
}

p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #444;
}

ul, ol {
    margin: 16px 0;
    padding-left: 30px;
}

li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #444;
}

li strong {
    color: #1a1a2e;
    font-weight: 600;
}

strong {
    color: #1a1a2e;
    font-weight: 600;
}

.table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background: white;
}

th {
    background: #6b46c1;
    color: white;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    font-size: 15px;
}

tr:hover {
    background-color: #f8f9fa;
}

.faq-section {
    margin: 30px 0;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    background: #f8f9fa;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #1a1a2e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question.active {
    background: #6b46c1;
    color: white;
}

.faq-toggle {
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    margin-bottom: 12px;
}

.highlight-box {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    border-left: 4px solid #6b46c1;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
}

.highlight-box h3 {
    color: #6b46c1;
    margin-top: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-card h4 {
    color: #6b46c1;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    margin-bottom: 0;
}

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

    .content-section {
        padding: 30px 0;
    }

    h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    h3 {
        font-size: 20px;
        margin: 25px 0 12px 0;
    }

    p {
        font-size: 15px;
    }

    ul, ol {
        padding-left: 25px;
    }

    li {
        font-size: 15px;
    }

    .table-wrapper {
        margin: 15px -15px;
        border-radius: 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
    }

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

    .faq-answer.active {
        padding: 15px;
    }

    .highlight-box {
        padding: 15px;
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    p, li {
        font-size: 14px;
    }

    .faq-question {
        padding: 12px;
        font-size: 14px;
    }

    .faq-answer.active {
        padding: 12px;
    }
}
