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, #1a2332 0%, #2d3748 100%);
    color: white;
    min-height: 100vh;
}

.header {
    background: rgba(26, 35, 50, 0.95);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
}

.logo::before {
    content: "🍋";
    font-size: 1.8rem;
}

.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-login:hover {
    background: #ffd700;
    color: #1a2332;
}

.btn-register {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.banner {
    background: url("../images/banner.webp") no-repeat 0 0;
    background-size: cover;
    background-position: center center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding: 3rem 20px;
    text-align: center;
    width: 100%;
    max-width: 1440px;
    margin: 20px  auto;
}

.banner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

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

.banner h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: bold;
}

.banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
    opacity: 0.9;
}

.banner-cta {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a2332;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.banner-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.games-section {
    width: 100%;
    max-width: 1440px;
    padding: 0 20px;
    margin: 0 auto;

    @media(max-width: 768px) {
        padding: 0 8px;
    }
}

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

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
}

.section-title::before {
    content: "🎮";
    margin-right: 0.5rem;
}

.scroll-controls {
    display: flex;
    gap: 0.5rem;
}

.scroll-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-btn:hover {
    background: rgba(255, 215, 0, 0.3);
}

.games-container {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.games-container::-webkit-scrollbar {
    display: none;
}

.games-grid {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1rem;
}

.game-card {
    flex: 0 0 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ffd700;
}

.game-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.game-info {
    padding: 1rem;
}

.game-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    transition: left 0.3s;
    z-index: 1000;
    padding: 2rem;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.close-menu {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
}

.mobile-menu-item {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s;
}

.mobile-menu-item:hover {
    color: #ffd700;
}

.vip-item {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a2332;
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    font-weight: bold;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

@keyframes float {
    0% { transform: translateX(-50px); }
    100% { transform: translateX(50px); }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .auth-buttons {
        gap: 0.5rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }


    .banner h1 {
        font-size: 2rem;
    }

    .banner p {
        font-size: 1rem;
    }

    .games-section {
        padding: 1rem;
    }

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

    .game-image {
        height: 120px;
    }

    .scroll-controls {
        display: none;
    }
}

.tournament-section {
    max-width: 1440px;
    padding: 0 20px;
    margin: 0 auto;

    @media(max-width: 768px) {
        padding: 0 8px;
    }
}

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

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title::before {
    content: "🏆";
    font-size: 1.5rem;
}

.more-info {
    color: #94a3b8;
    font-size: 0.9rem;
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.tournament-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ffd700;
}

.tournament-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.tournament-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.badge-live {
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    color: white;
}

.badge-network {
    background: linear-gradient(45deg, #5f27cd, #8e44ad);
    color: white;
}

.badge-live::before {
    content: "🔴";
}

.badge-network::before {
    content: "🌐";
}

.tournament-content {
    padding: 1.5rem;
}

.tournament-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.tournament-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.info-item .icon {
    width: 16px;
    height: 16px;
    color: #ffd700;
}

.tournament-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.btn-info {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-info:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.btn-play {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a2332;
    border: 2px solid transparent;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

@media (max-width: 768px) {

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

    .section-title {
        font-size: 1.5rem;
    }

    .tournament-card {
        border-radius: 15px;
    }

    .tournament-image {
        height: 160px;
    }

    .tournament-content {
        padding: 1rem;
    }

    .tournament-title {
        font-size: 1.2rem;
    }

    .tournament-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .tournament-image {
        height: 140px;
    }

    .tournament-title {
        font-size: 1.1rem;
    }
}

.offers-section {
    max-width: 1440px;
    padding: 0 20px;
    margin: 15px auto;

    @media(max-width: 768px) {
        padding: 0 8px;
    }
}

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

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title::before {
    content: "🎁";
    font-size: 1.5rem;
}

.more-info {
    color: #94a3b8;
    font-size: 0.9rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 150px;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ffd700;
}

.offer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.offer-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 20px;
    z-index: 2;
}

.offer-content {
    position: relative;
    z-index: 3;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
}

.offer-subtitle {
    font-size: 0.9rem;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
}

.offer-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.offer-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: translateY(-2px);
}

/* Specific styling for different offer types */
.offer-drops {
    background: linear-gradient(135deg, #8e44ad 0%, #3498db 100%);
}

.offer-cashback {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.offer-lottery {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

@media (max-width: 768px) {

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .offer-card {
        height: 120px;
    }

    .offer-content {
        padding: 1rem;
    }

    .offer-title {
        font-size: 1rem;
    }

    .offer-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .offer-btn {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .offer-card {
        height: 100px;
    }

    .offer-content {
        padding: 0.8rem;
    }

    .offer-title {
        font-size: 0.9rem;
    }

    .offer-subtitle {
        font-size: 0.7rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer {
    margin-top: 40px;
    width: 100%;
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-text {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-2px);
}

.age-logo {
    background: white;
    color: #1a2332;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    border: 2px solid #ffd700;
}

.lemon-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
}

.lemon-logo::before {
    content: "🍋";
    font-size: 1.8rem;
}

.gcb-logo {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.logo-separator {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 1rem;
    }

    .footer-text {
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
    }

    .footer-logos {
        gap: 1rem;
        flex-direction: column;
    }

    .logo-separator {
        display: none;
    }

    .age-logo {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .lemon-logo {
        font-size: 1.2rem;
    }

    .lemon-logo::before {
        font-size: 1.5rem;
    }

    .gcb-logo {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

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

    .footer-text {
        font-size: 0.65rem;
        line-height: 1.4;
    }

    .footer-logos {
        gap: 0.8rem;
    }

    .lemon-logo {
        font-size: 1rem;
    }

    .lemon-logo::before {
        font-size: 1.2rem;
    }
}

/* Animation for logos */
.logo-item {
    animation: fadeInUp 0.6s ease-out;
}

.logo-item:nth-child(1) {
    animation-delay: 0.1s;
}

.logo-item:nth-child(2) {
    animation-delay: 0.2s;
}

.logo-item:nth-child(3) {
    animation-delay: 0.3s;
}

.logo-item:nth-child(4) {
    animation-delay: 0.4s;
}

.logo-item:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-wrapper {
    max-width: 1440px;
    padding: 0 20px;
    margin: 15px auto;

    @media(max-width: 768px) {
        padding: 0 8px;
    }
}

.content-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd700;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 2rem 0 1rem 0;
    color: #fff;
}

p {
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    font-size: 1rem;
}

ul, ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.8rem;
    color: #e2e8f0;
}

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

em {
    color: #94a3b8;
    font-style: italic;
}

.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

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

table th,
table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

table th {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    font-weight: bold;
}

table td {
    color: #e2e8f0;
}

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

.step-list {
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid #ffd700;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.step-list ol {
    margin: 0;
}

.step-list li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.faq-section {
    margin-top: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem 1.5rem;
    font-weight: bold;
    color: #ffd700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer {
    padding: 1rem 1.5rem;
    color: #e2e8f0;
}

.section-intro {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.section-intro h2 {
    border: none;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 1rem;
    }

    .content-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.9rem;
    }

    ul, ol {
        padding-left: 1.5rem;
    }

    table th,
    table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }

    .step-list {
        padding: 1rem;
    }

    .highlight-box {
        padding: 1rem;
    }

    .section-intro {
        padding: 1.5rem;
    }

    .section-intro h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 0.5rem;
    }

    .content-section {
        padding: 1rem;
        border-radius: 15px;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.85rem;
    }

    table th,
    table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.8rem;
    }

    .section-intro h2 {
        font-size: 1.6rem;
    }
}

/* Smooth scrolling for tables */
.table-container::-webkit-scrollbar {
    height: 8px;
}

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

.table-container::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.5);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.7);
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a3332 0%, #2d4847 100%);
    color: white;
    line-height: 1.6;
}

.content-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;

}

.content-section {
    background: rgba(26, 51, 50, 0.7);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(64, 224, 208, 0.2);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(64,224,208,0.03)"/></svg>') repeat;
    animation: float 25s linear infinite;
    pointer-events: none;
}

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

h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #40E0D0;
    border-bottom: 2px solid rgba(64, 224, 208, 0.3);
    padding-bottom: 0.5rem;
    position: relative;
}

h2::before {
    content: "🍋";
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: #e2f8f5;
    font-size: 1rem;
}

ul, ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.8rem;
    color: #e2f8f5;
}

strong {
    color: #40E0D0;
    font-weight: bold;
}

.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 15px;
    border: 1px solid rgba(64, 224, 208, 0.3);
    background: rgba(26, 51, 50, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

table th,
table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(64, 224, 208, 0.2);
}

table th {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.2) 0%, rgba(64, 224, 208, 0.1) 100%);
    color: #40E0D0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

table td {
    color: #e2f8f5;
}

table tr:hover {
    background: rgba(64, 224, 208, 0.05);
}

.intro-section {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.15) 0%, rgba(64, 224, 208, 0.08) 100%);
    border: 2px solid rgba(64, 224, 208, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border: none;
    text-align: center;
}

.step-list {
    background: rgba(64, 224, 208, 0.08);
    border-left: 4px solid #40E0D0;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 15px 15px 0;
}

.step-list ol {
    margin: 0;
    counter-reset: step-counter;
}

.step-list li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    position: relative;
    counter-increment: step-counter;
}

.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: -2rem;
    top: 0;
    background: #40E0D0;
    color: #1a3332;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.1) 0%, rgba(64, 224, 208, 0.05) 100%);
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: rgba(26, 51, 50, 0.6);
    border: 1px solid rgba(64, 224, 208, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #40E0D0;
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.1);
}

.feature-card h3 {
    color: #40E0D0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.banking-summary {
    background: linear-gradient(135deg, #40E0D0 0%, #20B2AA 100%);
    color: #1a3332;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.banking-summary h3 {
    color: #1a3332;
    margin-bottom: 1rem;
}

.banking-summary p {
    color: #0F4F47;
    margin-bottom: 0.5rem;
}

.vip-section {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.1) 0%, rgba(32, 178, 170, 0.05) 100%);
    border: 2px solid rgba(64, 224, 208, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.support-card {
    background: rgba(64, 224, 208, 0.08);
    border: 1px solid rgba(64, 224, 208, 0.2);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.support-card h4 {
    color: #40E0D0;
    margin-bottom: 0.5rem;
}

@keyframes float {
    0% { transform: translateX(-100px) rotate(0deg); }
    100% { transform: translateX(100px) rotate(360deg); }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 1rem;
    }

    .content-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    p {
        font-size: 0.9rem;
    }

    ul, ol {
        padding-left: 1.5rem;
    }

    table th,
    table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }

    .step-list {
        padding: 1rem;
    }

    .highlight-box {
        padding: 1rem;
    }

    .intro-section {
        padding: 1.5rem;
    }

    .intro-section h2 {
        font-size: 2rem;
    }

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

    .feature-card {
        padding: 1rem;
    }

    .support-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 0.5rem;
    }

    .content-section {
        padding: 1rem;
        border-radius: 15px;
    }

    h2 {
        font-size: 1.4rem;
    }

    p {
        font-size: 0.85rem;
    }

    table th,
    table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.8rem;
    }

    .intro-section h2 {
        font-size: 1.8rem;
    }

    .step-list li::before {
        left: -1.5rem;
        width: 1.2rem;
        height: 1.2rem;
        font-size: 0.7rem;
    }
}

/* Custom scrollbar for tables with teal theme */
.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: rgba(64, 224, 208, 0.1);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #40E0D0, #20B2AA);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #20B2AA, #40E0D0);
}

/* Section dividers */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #40E0D0, transparent);
    margin: 3rem 0;
    border-radius: 1px;
}