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__content {
    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;
    background: url("../images/banner.webp") no-repeat 0 0;
    background-size: cover;
    background-position: center center;
}


.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__content {
        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;
    }
}

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

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

.list-games__title {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.list-games__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;
}

.list-games__see-all:hover {
    color: #4a90e2;
}

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

.list-games__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;
    }

    .list-games__title {
        font-size: 24px;
    }

    .list-games__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;
    }
}


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

.tournaments-header {
    margin-bottom: 30px;
}

.tournaments-title {
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
}

.tournaments-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    align-items: stretch;
}

.tournament-card {
    background: linear-gradient(135deg, #2a2a3e 0%, #1e1e32 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.tournament-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(74, 144, 226, 0.3);
}

.tournament-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
}

.tournament-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.tournament-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tournament-badge.provider {
    background: linear-gradient(135deg, #4a90e2, #357abd);
}

.tournament-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.tournament-prize {
    font-size: 28px;
    font-weight: 900;
    color: #4a90e2;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tournament-description {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    flex-grow: 1;
}

.tournament-button {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    margin-top: auto;
}

.tournament-button:hover {
    background: linear-gradient(135deg, #357abd, #2968a3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

/* Special styling for different tournament types */
.tournament-card:nth-child(1) .tournament-image {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.tournament-card:nth-child(2) .tournament-image {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.tournament-card:nth-child(3) .tournament-image {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.tournament-card:nth-child(4) .tournament-image {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.tournament-card:nth-child(5) .tournament-image {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

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

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

    .tournaments-subtitle {
        font-size: 20px;
    }

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

    .tournament-card {
        min-height: 380px;
    }

    .tournament-image {
        height: 160px;
    }

    .tournament-content {
        padding: 20px;
    }

    .tournament-name {
        font-size: 18px;
    }

    .tournament-prize {
        font-size: 24px;
    }

    .tournament-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .tournament-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .tournament-card {
        min-height: 360px;
    }

    .tournament-image {
        height: 140px;
    }

    .tournament-content {
        padding: 18px;
    }

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

    .tournament-prize {
        font-size: 22px;
    }

    .tournament-description {
        font-size: 15px;
    }

    .tournament-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Large screens - up to 5 cards in a row */
@media (min-width: 1400px) {
    .tournaments-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

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

/* Section Styles */
.content-panel {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(35px);
    border-radius: 45px;
    padding: 65px;
    margin-bottom: 65px;
    border: 3px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.content-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ff9a56, #ff6b9d, #c44569, #6c5ce7, #a29bfe);
    border-radius: 0 0 45px 45px;
}

/* Typography */
.headline-main {
    font-size: 40px;
    font-weight: 900;
    color: #ff6b9d;
    margin-bottom: 35px;
    text-shadow: 8px 8px 16px rgba(0, 0, 0, 0.8);
    line-height: 1.5;
}

.title-section {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    margin: 55px 0 26px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.title-section::before {
    content: '♦';
    color: #ff6b9d;
    font-size: 28px;
}

.text-block {
    font-size: 21px;
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 30px;
    text-align: justify;
    line-height: 1.5;
}

.text-block strong {
    color: #ff6b9d;
    font-weight: 800;
}

.text-block em {
    color: #a29bfe;
    font-style: italic;
}

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

.bullet-point {
    position: relative;
    padding: 18px 0 18px 50px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 21px;
}

.bullet-point::before {
    content: "◈";
    position: absolute;
    left: 0;
    color: #ff6b9d;
    font-weight: bold;
    font-size: 22px;
}

.step-sequence {
    list-style: none;
    counter-reset: sequence-counter;
    margin: 35px 0;
}

.sequence-item {
    position: relative;
    padding: 18px 0 18px 60px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 21px;
    counter-increment: sequence-counter;
    margin-bottom: 12px;
}

.sequence-item::before {
    content: counter(sequence-counter);
    position: absolute;
    left: 0;
    top: 18px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.4);
}

/* FAQ Styles */
.faq-collection {
    margin-top: 55px;
}

.faq-box {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
    transition: all 0.8s ease;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.faq-header {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin: 0;
    padding: 32px;
    cursor: pointer;
    position: relative;
    background: rgba(255, 107, 157, 0.25);
    transition: background 0.6s ease;
}

.faq-header::after {
    content: "◆";
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #ff6b9d;
    transition: transform 0.8s ease;
}

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

.faq-text {
    padding: 0 32px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 21px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease, padding 0.8s ease;
}

.faq-text.expanded {
    max-height: 450px;
    padding: 0 32px 32px;
}

.faq-box:hover {
    border-color: rgba(255, 107, 157, 0.8);
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

.faq-header:hover {
    background: rgba(255, 107, 157, 0.35);
}

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

    .content-panel {
        padding: 50px 32px;
        margin-bottom: 55px;
        border-radius: 40px;
    }

    .headline-main {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .title-section {
        font-size: 27px;
        margin: 45px 0 22px;
    }

    .text-block {
        font-size: 20px;
    }

    .bullet-point,
    .sequence-item {
        font-size: 20px;
    }

    .faq-header {
        font-size: 22px;
        padding: 28px;
    }

    .faq-text {
        padding: 0 28px;
        font-size: 20px;
    }

    .faq-text.expanded {
        padding: 0 28px 28px;
    }

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

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

    .content-panel {
        padding: 45px 28px;
    }

    .headline-main {
        font-size: 32px;
    }

    .title-section {
        font-size: 25px;
    }

    .text-block,
    .bullet-point,
    .sequence-item {
        font-size: 19px;
    }
}