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: #2c2c54;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1001;
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    color: #ff6b35;
}

.logo::before {
    content: "🚀";
    margin-right: 8px;
    font-size: 28px;
}

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

.btn {
    padding: 10px 20px;
    border: 2px solid #ff6b35;
    background: transparent;
    color: #ff6b35;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.btn.primary {
    background: #ff6b35;
    color: white;
}

.btn.primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #ff6b35;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

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

/* Navigation Menu */
.nav-menu {
    background: #2c2c54;
    padding: 0;
    position: relative;
    z-index: 1000;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

/* Banner Styles */
.banner {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.banner-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
}

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

.banner-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.banner-scroll::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 10px;
}

.banner-card {
    min-width: 450px;
    height: 280px;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.banner-card:hover {
    transform: translateY(-5px);
}

.banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.banner-card.card1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.banner-card.card2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.banner-card.card3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.banner-card.card4 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.banner-card.card5 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

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

.card-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.card-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.card-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    font-size: 16px;
}

.card-btn:hover {
    background: white;
    transform: scale(1.05);
}

.card-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 60px;
    opacity: 0.8;
    z-index: 1;
}

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

    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 10000;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #2c2c54;
        z-index: 9999;
        overflow-y: auto;
        padding-top: 80px;
    }

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

    .nav-list {
        flex-direction: column;
        padding: 20px 0;
    }

    .nav-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 30px;
        font-size: 18px;
    }

    .mobile-auth {
        display: block;
        padding: 30px;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
        margin-top: 20px;
    }

    .mobile-auth .auth-buttons {
        display: flex;
        gap: 10px;
        justify-content: center;
    }

    .banner-card {
        min-width: 280px;
        height: 180px;
        padding: 25px;
    }

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

    .banner {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 12px 15px;
    }

    .logo {
        font-size: 20px;
    }

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

    .card-title {
        font-size: 16px;
    }

    .card-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

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

.section {
    margin-bottom: 60px;
}

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

.section-title {
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title .icon {
    margin-left: 15px;
    font-size: 28px;
}

.top-icon {
    color: #ff6b35;
}

.new-icon {
    color: #00ff87;
}

.show-all-btn {
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.show-all-btn:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

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

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

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

.games-scroll::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 10px;
}

.game-card {
    min-width: 200px;
    max-width: 200px;
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-image {
    width: 100%;
    height: 280px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover .game-image {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.game-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.badge {
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.badge.hot {
    background: rgba(255, 107, 53, 0.9);
    color: white;
}

.badge.new {
    background: rgba(0, 255, 135, 0.9);
    color: white;
}

.badge.exclusive {
    background: rgba(255, 215, 0, 0.9);
    color: #333;
}

.provider-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.provider-badge {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

.game-info {
    text-align: left;
}

.game-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    line-height: 1.2;
}

.game-provider {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .show-all-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .game-card {
        min-width: 160px;
        max-width: 160px;
    }

    .game-image {
        height: 220px;
    }

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

    .container {
        padding: 0 10px;
    }

    .section {
        margin-bottom: 40px;
    }
}

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

    .section-title .icon {
        margin-left: 10px;
        font-size: 20px;
    }

    .game-card {
        min-width: 140px;
        max-width: 140px;
    }

    .game-image {
        height: 200px;
    }

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

    .show-all-btn {
        padding: 8px 16px;
        font-size: 11px;
    }
}

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

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

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

.section-title {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.show-all-btn {
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.show-all-btn:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.tournaments-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tournament-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 300px;
}

.tournament-part {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

/* Purple Tournament */
.tournament-part.purple-left {
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 50%, #9333ea 100%);
}

.tournament-part.purple-right {
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 50%, #9333ea 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

/* Green Tournament */
.tournament-part.green-left {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
}

.tournament-part.green-right {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

.tournament-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tournament-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.badge {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.tournament-info {
    margin-top: auto;
}

.tournament-category {
    color: #fbbf24;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.tournament-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tournament-btn {
    background: #fbbf24;
    color: #333;
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
    width: fit-content;
}

.tournament-btn:hover {
    background: #f59e0b;
    transform: scale(1.05);
}

.tournament-link {
    display: contents;
    text-decoration: none;
    color: inherit;
}

.tournament-link:hover .tournament-part {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.purple-left .shape.shape1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
}

.purple-left .shape.shape2 {
    width: 120px;
    height: 120px;
    bottom: 30px;
    left: 30px;
}

.green-left .shape.shape1 {
    width: 180px;
    height: 180px;
    top: -40px;
    right: -40px;
}

.green-left .shape.shape2 {
    width: 100px;
    height: 100px;
    bottom: 40px;
    left: 40px;
}

.tournament-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .tournament-row {
        grid-template-columns: 1fr;
        height: auto;
        gap: 0;
    }

    .tournament-part.purple-left,
    .tournament-part.green-left {
        height: 200px;
    }

    .tournament-part.purple-right,
    .tournament-part.green-right {
        padding: 25px;
        height: auto;
        min-height: 200px;
    }

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

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

    .show-all-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .tournaments-container {
        gap: 20px;
    }
}

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

    .tournament-part.purple-left,
    .tournament-part.green-left {
        height: 150px;
    }

    .tournament-part.purple-right,
    .tournament-part.green-right {
        padding: 20px;
        min-height: 180px;
    }

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

    .tournament-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .show-all-btn {
        padding: 8px 16px;
        font-size: 11px;
    }

    .container {
        padding: 0 10px;
    }
}

.content-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #ff6b35;
    line-height: 1.3;
}

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

strong {
    color: #fbbf24;
    font-weight: bold;
}

ul {
    margin: 25px 0;
    padding-left: 0;
}

.content-section li {
    list-style: none;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #e2e8f0;
}

.content-section li::before {
    content: "🎯";
    position: absolute;
    left: 0;
    top: 0;
}

.table-container {
    margin: 30px 0;
    overflow-x: auto;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    font-size: 15px;
}

td:first-child {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    font-weight: bold;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.highlight-box p {
    margin-bottom: 0;
    color: white;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ff6b35 50%, transparent 100%);
    margin: 40px 0;
    border-radius: 2px;
}

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

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

    p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .container {
        padding: 0 15px;
    }

    .table-container {
        margin: 25px -15px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    table {
        min-width: 400px;
    }

    td {
        padding: 12px 15px;
        font-size: 14px;
    }

    li {
        padding-left: 20px;
        margin-bottom: 10px;
    }

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

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

    p {
        font-size: 14px;
    }

    td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .highlight-box {
        padding: 15px;
    }
}

.footer {
    background: #1e1e3a;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-column h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

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

.footer-bottom p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
}

.footer-logo::before {
    content: "🚀";
    margin-right: 10px;
    font-size: 28px;
}

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .footer-links a {
        font-size: 15px;
        padding: 8px 0;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 25px;
    }

    .footer-logo span {
        font-size: 20px;
    }
}

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

    .footer-grid {
        gap: 30px;
    }

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

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

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .footer-logo span {
        font-size: 18px;
    }

    .footer-logo::before {
        font-size: 22px;
        margin-right: 8px;
    }
}

/* Hover effects for desktop */
@media (min-width: 769px) {
    .footer-links a:hover {
        padding-left: 10px;
    }
}

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

.content-area {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.header-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #ff6b35;
    line-height: 1.3;
}

.subheader-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 30px;
    color: #fbbf24;
    line-height: 1.3;
}

.content-text {
    margin-bottom: 20px;
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.7;
}

.strong-text {
    color: #fbbf24;
    font-weight: bold;
}

.item-list, .step-list {
    margin: 25px 0;
    padding-left: 0;
}

.list-entry {
    list-style: none;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #e2e8f0;
}

.item-list .list-entry::before {
    content: "💫";
    position: absolute;
    left: 0;
    top: 0;
}

.step-list {
    counter-reset: step-number;
}

.step-list .list-entry {
    counter-increment: step-number;
}

.step-list .list-entry::before {
    content: counter(step-number);
    position: absolute;
    left: 0;
    top: 0;
    background: #ff6b35;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.data-container {
    margin: 30px 0;
    overflow-x: auto;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.cell-data {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    font-size: 15px;
}

.cell-data:first-child {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    font-weight: bold;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table tbody tr:last-child .cell-data {
    border-bottom: none;
}

.info-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.special-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.special-box .content-text {
    margin-bottom: 0;
    color: white;
}

.info-alert {
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid #fbbf24;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
}

.info-alert .content-text {
    margin-bottom: 0;
    color: #fbbf24;
    font-weight: 500;
}

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

.faq-entry {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-entry:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question .subheader-title {
    margin: 0;
    font-size: 18px;
    color: #fbbf24;
    padding-right: 30px;
}

.faq-question::after {
    content: "▼";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6b35;
    font-size: 14px;
    transition: transform 0.3s ease;
}

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

.faq-response {
    padding: 0 25px 20px;
    color: #e2e8f0;
    line-height: 1.6;
}

.faq-response .content-text {
    margin-bottom: 0;
}

/* Advantage Cards */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.advantage-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 107, 53, 0.1);
}

.advantage-box .box-title {
    color: #ff6b35;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.advantage-box .content-text {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 0;
}

.section-break {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ff6b35 50%, transparent 100%);
    margin: 40px 0;
    border-radius: 2px;
}

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

    .header-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .subheader-title {
        font-size: 20px;
        margin-bottom: 15px;
        margin-top: 25px;
    }

    .content-text {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .content-wrapper {
        padding: 0 15px;
    }

    .data-container {
        margin: 25px -15px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .info-table {
        min-width: 400px;
    }

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

    .list-entry {
        padding-left: 20px;
        margin-bottom: 10px;
    }

    .special-box {
        padding: 20px;
        margin: 25px 0;
    }

    .info-alert {
        padding: 15px;
        margin: 20px 0;
    }

    .faq-question {
        padding: 15px 20px;
    }

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

    .faq-response {
        padding: 0 20px 15px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .advantage-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 20px;
    }

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

    .content-text {
        font-size: 14px;
    }

    .cell-data {
        padding: 10px 12px;
        font-size: 13px;
    }

    .special-box {
        padding: 15px;
    }

    .info-alert {
        padding: 12px;
    }

    .faq-question {
        padding: 12px 15px;
    }

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

    .faq-response {
        padding: 0 15px 12px;
    }

    .advantage-box {
        padding: 15px;
    }
}