/* ===============
   HERO SECTION - FULL WIDTH WITH GRADIENT
   =============== */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-elevated) 50%, var(--bg-card) 100%);
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 20% 100%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, var(--bg-color) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -2px;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
    color: var(--gold);
    display: block;
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius);
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid var(--border-light);
    transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--gold);
    color: var(--gold);
}

/* ===============
   SECTION HEADERS
   =============== */
.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 48px 0 32px;
}

.section-header .section-title {
    margin: 0;
    text-align: left;
}

.section-header .section-title::after {
    margin: 12px 0 0 0;
}

.section-header .view-all {
    color: var(--gold);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.section-header .view-all:hover {
    opacity: 0.8;
}

/* ===============
   GAME FEATURE GRID - MINIMAL CARDS
   =============== */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.game-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold));
    opacity: 0;
    transition: opacity 0.2s;
}

.game-card > a {
    position: relative;
    z-index: 1;
    display: block;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.game-card:hover::before {
    opacity: 1;
}

.game-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.game-card:hover .game-card-img {
    transform: scale(1.05);
}

.game-card-content {
    padding: 20px;
    text-align: left;
}

.game-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.game-card-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

/* ===============
   TOP GAMES SHOWCASE - MASONRY GRID
   =============== */
.small-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
    margin-bottom: 60px;
}

.small-game {
    display: block;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.small-game:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.small-game img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Masonry varying heights */
.small-game:nth-child(1) { grid-row: span 2; }
.small-game:nth-child(2) { grid-row: span 1; }
.small-game:nth-child(3) { grid-row: span 2; }
.small-game:nth-child(4) { grid-row: span 1; }
.small-game:nth-child(5) { grid-row: span 1; }
.small-game:nth-child(6) { grid-row: span 2; }
.small-game:nth-child(7) { grid-row: span 1; }
.small-game:nth-child(8) { grid-row: span 2; }
.small-game:nth-child(9) { grid-row: span 1; }
.small-game:nth-child(10) { grid-row: span 2; }
.small-game:nth-child(11) { grid-row: span 1; }
.small-game:nth-child(12) { grid-row: span 1; }

/* ===============
   LATEST NEWS SECTION - MINIMAL CARDS
   =============== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
    position: relative;
}

.news-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-img {
    transform: scale(1.05);
}

.news-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card a > *:not(img) {
    padding: 0 20px;
}

.news-meta {
    font-size: 0.75rem;
    color: var(--gold);
    margin: 20px 0 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    transition: color 0.2s;
    font-weight: 600;
    line-height: 1.4;
    flex-grow: 1;
}

.news-card:hover h4 {
    color: var(--gold);
}

.news-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===============
   RESPONSIVE - HERO & SECTIONS
   =============== */

/* Tablet */
@media (max-width: 992px) {
    .hero {
        padding: 160px 0 100px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content h1 span {
        font-size: 4rem;
    }

    .hero-content p {
        font-size: 1.15rem;
        padding: 0 20px;
    }

    .section-title {
        font-size: 2.2rem;
        margin: 70px 0 40px;
    }

    .section-header {
        margin: 50px 0 30px;
    }

    .game-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }

    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
    }
}

/* Mobile landscape */
@media (max-width: 768px) {
    .hero {
        padding: 140px 0 80px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .hero-content h1 span {
        font-size: 3.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        padding: 0 20px;
        margin-bottom: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 14px 32px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin: 50px 0 30px;
    }

    .section-title::after {
        width: 60px;
        height: 4px;
        margin: 16px auto 0;
    }

    .section-header {
        margin: 40px 0 20px;
        align-items: flex-end;
    }

    .section-header .section-title {
        font-size: 1.6rem;
    }

    .section-header .view-all {
        font-size: 0.9rem;
    }

    .game-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
        margin-bottom: 50px;
    }

    .game-card-content {
        padding: 20px;
    }

    .game-card-content h3 {
        font-size: 1.2rem;
    }

    .game-card-content p {
        font-size: 0.9rem;
    }

    .game-card-img {
        height: 180px;
    }

    .small-games-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 12px;
        margin-bottom: 40px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .news-card-img {
        height: 180px;
    }

    .news-card a > *:not(img) {
        padding: 0 20px;
    }

    .news-meta {
        margin: 20px 0 10px;
        font-size: 0.7rem;
    }

    .news-card h4 {
        font-size: 1.1rem;
    }

    .news-card p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero-content h1 span {
        font-size: 2.5rem;
        margin-top: 4px;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 16px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin: 40px 0 25px;
    }

    .section-title::after {
        width: 50px;
        height: 3px;
        margin: 14px auto 0;
    }

    .section-header {
        margin: 30px 0 15px;
    }

    .section-header .section-title {
        font-size: 1.3rem;
    }

    .section-header .view-all {
        font-size: 0.85rem;
    }

    .game-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .game-card-content {
        padding: 18px;
    }

    .game-card-content h3 {
        font-size: 1.1rem;
    }

    .game-card-img {
        height: 160px;
    }

    .small-game {
        flex: 0 0 110px;
    }

    .news-grid {
        gap: 16px;
    }

    .news-card-img {
        height: 160px;
    }

    .news-card a > *:not(img) {
        padding: 0 16px;
    }

    .news-meta {
        margin: 16px 0 8px;
    }

    .news-card h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .news-card p {
        margin-bottom: 16px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero {
        padding: 100px 0 50px;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-content h1 span {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .section-header .section-title {
        font-size: 1.2rem;
    }

    .game-card-img,
    .news-card-img {
        height: 140px;
    }
}

/* ===============
   CUSTOM MARKETING SECTIONS - CASINO STYLE
   =============== */
.cyan-text {
    color: var(--primary-color);
    font-weight: 700;
}

.marketing-container {
    max-width: 1280px;
    margin: 70px auto;
    padding: 0 28px;
    font-family: var(--font-body);
}

.info-card {
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.info-card > * {
    position: relative;
    z-index: 1;
}

.info-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 35px 0 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.info-card .info-title:first-child {
    margin-top: 0;
}

.info-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent-pink);
    margin: 30px 0 16px;
    font-weight: 700;
}

.info-card p, .info-list, .info-list-numbered {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}

.info-list {
    list-style: disc;
    padding-left: 24px;
}

.info-list-numbered {
    list-style: decimal;
    padding-left: 24px;
}

.info-list li, .info-list-numbered li {
    margin-bottom: 12px;
}

.info-list li strong, .info-list-numbered li strong {
    color: var(--text-primary);
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.text-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.text-link:hover::after {
    transform: scaleX(1);
}

/* Nidhhi Section - Casino Split Layout */
.nidhhi-card {
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border-radius: var(--radius-xl);
    padding: 50px;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
    border: 2px solid var(--border-glow);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.nidhhi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--accent-pink));
    box-shadow: 0 0 20px var(--primary-color);
}

.nidhhi-content {
    flex: 1;
    min-width: 300px;
}

.nidhhi-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.nidhhi-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.nidhhi-image img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}

/* Info Grid Boxes - Modern Grid */
.info-grid-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-box {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated)) !important;
    border: 2px solid var(--border-color) !important;
    padding: 28px !important;
    border-radius: var(--radius-lg) !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.info-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.info-box:hover {
    border-color: var(--primary-color) !important;
    transform: translateY(-6px) !important;
    box-shadow: var(--shadow-glow) !important;
}

.info-box:hover::before {
    opacity: 1;
}

.info-box-full {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #991b1b 100%) !important;
    color: white;
    border: 2px solid var(--secondary-light) !important;
    box-shadow: var(--shadow-red) !important;
}

.info-box-full:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 0 50px rgba(220, 38, 38, 0.8) !important;
}

.info-box-full .cyan-text {
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.info-box-full p {
    color: rgba(255, 255, 255, 0.95);
}

.info-box-icon {
    font-size: 56px;
    color: white;
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.info-box p {
    margin: 10px 0 0 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Promo Grid - Modern Cards */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.promo-col {
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    position: relative;
}

.promo-col::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.promo-col:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
    transform: translateY(-8px);
}

.promo-col:hover::before {
    opacity: 1;
}

.promo-col-reverse {
    display: flex;
    flex-direction: column;
}

.promo-col-reverse .promo-img {
    order: 2;
}

.promo-col-reverse h3, .promo-col-reverse .promo-rules {
    order: 1;
}

.promo-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.promo-title {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    padding: 24px;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-rules {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.rule-title {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.promo-rules ol {
    padding-left: 20px;
}

.promo-rules li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Jili Section - Modern Stacked */
.jili-section {
    margin-bottom: 40px;
}

.jili-hero {
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border-radius: var(--radius-xl);
    padding: 50px;
    border: 2px solid var(--border-glow);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.jili-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    box-shadow: 0 0 20px var(--primary-color);
}

.jili-main-img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.jili-gift-section, .jili-deposit-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
    border-radius: var(--radius-xl);
    padding: 50px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.jili-gift-section::before, .jili-deposit-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
}

.jili-gift-content, .jili-deposit-content {
    flex: 1;
    min-width: 300px;
}

.jili-gift-img, .jili-deposit-img {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.jili-gift-img img, .jili-deposit-img img {
    max-width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.jili-title {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: 16px;
    font-weight: 800;
    text-transform: uppercase;
}

.jili-subtitle {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
    font-family: var(--font-heading);
    margin-bottom: 24px;
    font-weight: 700;
}

.jili-list {
    list-style: none;
    padding-left: 0;
    margin-top: 16px;
}

.jili-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
}

.jili-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230d9488' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.payment-methods {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-methods > div {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated)) !important;
    border: 2px solid var(--border-color) !important;
    padding: 12px 22px !important;
    border-radius: var(--radius) !important;
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    box-shadow: var(--shadow) !important;
    transition: all 0.3s ease !important;
}

.payment-methods > div:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: var(--shadow-glow) !important;
    border-color: var(--primary-color) !important;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    color: #000 !important;
}

.payment-methods img {
    height: 36px;
    border-radius: var(--radius-sm);
}

/* Marketing Sections Responsive */
@media (max-width: 992px) {
    .marketing-container {
        padding: 0 20px;
    }

    .info-card {
        padding: 40px 30px;
    }

    .info-title {
        font-size: 1.8rem;
    }

    .info-subtitle {
        font-size: 1.2rem;
    }

    .nidhhi-card {
        padding: 40px 30px;
        gap: 40px;
    }

    .info-grid-boxes {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 16px;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .jili-gift-section,
    .jili-deposit-section {
        padding: 40px 30px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .marketing-container {
        padding: 0 16px;
        margin: 50px auto;
    }

    .info-card {
        padding: 30px 24px;
        border-radius: var(--radius-lg);
    }

    .info-title {
        font-size: 1.6rem;
        margin: 28px 0 20px;
    }

    .info-subtitle {
        font-size: 1.1rem;
        margin: 24px 0 14px;
    }

    .info-card p,
    .info-list,
    .info-list-numbered {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .nidhhi-card {
        flex-direction: column;
        padding: 30px 24px;
        gap: 30px;
    }

    .nidhhi-content,
    .nidhhi-image {
        min-width: 100%;
    }

    .nidhhi-image {
        order: -1;
    }

    .info-grid-boxes {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .info-box {
        padding: 24px !important;
    }

    .info-box-full {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px !important;
    }

    .info-box-icon {
        margin: 0 auto;
        width: 70px;
        height: 70px;
        font-size: 48px;
    }

    .promo-grid {
        gap: 20px;
    }

    .promo-title {
        font-size: 1.3rem;
        padding: 20px;
    }

    .promo-rules {
        padding: 0 20px 20px;
        font-size: 0.9rem;
    }

    .jili-section {
        margin-bottom: 30px;
    }

    .jili-hero {
        padding: 40px 24px;
        margin-bottom: 30px;
    }

    .jili-gift-section,
    .jili-deposit-section {
        flex-direction: column;
        padding: 30px 24px;
        gap: 30px;
        margin-bottom: 30px;
    }

    .jili-gift-content,
    .jili-deposit-content,
    .jili-gift-img,
    .jili-deposit-img {
        min-width: 100%;
    }

    .jili-gift-img,
    .jili-deposit-img {
        order: -1;
    }

    .jili-title {
        font-size: 1.7rem;
    }

    .jili-subtitle {
        font-size: 1.4rem;
    }

    .payment-methods {
        gap: 10px;
    }

    .payment-methods > div {
        padding: 8px 14px !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .marketing-container {
        padding: 0 12px;
        margin: 40px auto;
    }

    .info-card {
        padding: 24px 16px;
    }

    .info-title {
        font-size: 1.4rem;
        margin: 24px 0 16px;
    }

    .info-subtitle {
        font-size: 1rem;
        margin: 20px 0 12px;
    }

    .info-card p,
    .info-list,
    .info-list-numbered {
        font-size: 0.9rem;
    }

    .nidhhi-card {
        padding: 24px 16px;
        gap: 24px;
    }

    .info-box {
        padding: 20px !important;
    }

    .info-box-full {
        padding: 24px 20px !important;
    }

    .info-box-icon {
        width: 60px;
        height: 60px;
        font-size: 40px;
    }

    .promo-title {
        font-size: 1.15rem;
        padding: 16px;
    }

    .promo-rules {
        padding: 0 16px 16px;
        font-size: 0.85rem;
    }

    .jili-hero {
        padding: 30px 16px;
    }

    .jili-gift-section,
    .jili-deposit-section {
        padding: 24px 16px;
        gap: 24px;
    }

    .jili-title {
        font-size: 1.5rem;
    }

    .jili-subtitle {
        font-size: 1.2rem;
    }

    .jili-list li {
        font-size: 0.9rem;
        padding-left: 24px;
    }

    .payment-methods {
        gap: 8px;
    }

    .payment-methods > div {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 360px) {
    .info-title {
        font-size: 1.25rem;
    }

    .info-subtitle {
        font-size: 0.95rem;
    }

    .jili-title {
        font-size: 1.3rem;
    }

    .jili-subtitle {
        font-size: 1.1rem;
    }
}


/* ===============
   FEATURES SECTION - LARGE ALTERNATING
   =============== */
.features-section {
    margin: 80px auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: left;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 72px;
    height: 72px;
    color: var(--gold);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.2;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* ===============
   STATS SECTION
   =============== */
.stats-section {
    margin: 60px auto;
    padding: 48px 24px;
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.stat-card:hover {
    transform: scale(1.02);
    border-color: var(--border-light);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===============
   TOP GAMES SECTION
   =============== */
.top-games-section {
    margin: 80px auto;
}

.top-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.top-game-card {
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.top-game-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.game-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.game-badge.hot {
    background: linear-gradient(135deg, var(--secondary-color), #991b1b);
    color: #fff;
}

.game-badge.new {
    background: linear-gradient(135deg, var(--accent-color), #6d28d9);
    color: #fff;
}

.game-badge.jackpot {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #000;
    font-weight: 900;
}

.top-game-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.top-game-card:hover .top-game-img {
    transform: scale(1.1);
}

.top-game-info {
    padding: 24px;
}

.top-game-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.game-rtp {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
}

.game-players {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===============
   WINNERS SECTION
   =============== */
.winners-section {
    margin: 60px auto;
    padding: 40px 24px;
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.winners-ticker {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    overflow-x: auto;
    padding: 16px 0;
    scrollbar-width: none;
}

.winners-ticker::-webkit-scrollbar {
    display: none;
}

.winner-item {
    flex: 0 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 240px;
    transition: all 0.2s ease;
}

.winner-item:hover {
    transform: translateY(-2px);
    border-color: var(--border-light);
}

.winner-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.winner-game {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.winner-amount {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

/* ===============
   PAYMENT SECTION
   =============== */
.payment-section {
    margin: 60px auto;
}

.payment-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: -24px;
    margin-bottom: 32px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.payment-method-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.2s ease;
}

.payment-method-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-lg);
}

.payment-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    color: var(--gold);
}

.payment-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.payment-method-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-weight: 600;
}

.payment-method-card p {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* ===============
   TESTIMONIALS SECTION
   =============== */
.testimonials-section {
    margin: 60px auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.2s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    fill: currentColor;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===============
   FAQ SECTION
   =============== */
.faq-section {
    margin: 60px auto;
    padding: 48px 24px;
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.875rem;
}

/* ===============
   CTA SECTION
   =============== */
.cta-section {
    margin: 80px auto 60px;
    padding: 60px 24px;
    background: var(--bg-elevated);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-title span {
    color: var(--gold);
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.btn-cta.primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
}

.btn-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-cta.secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-cta.secondary:hover {
    background: var(--bg-hover);
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.cta-note {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===============
   RESPONSIVE
   =============== */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .top-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .winners-ticker {
        gap: 16px;
    }

    .winner-item {
        min-width: 240px;
        padding: 20px 24px;
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .btn-cta {
        width: 100%;
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .top-games-grid {
        grid-template-columns: 1fr;
    }

    .small-games-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
        gap: 10px;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }
}


/* ===============
   NEW SECTIONS RESPONSIVE
   =============== */

/* Tablet */
@media (max-width: 992px) {
    .features-section {
        margin: 60px auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-card {
        padding: 36px 28px;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
    }

    .feature-card h3 {
        font-size: 1.35rem;
    }

    .stats-section {
        padding: 50px 20px;
        margin: 60px auto;
    }

    .stats-grid {
        gap: 32px;
    }

    .top-games-section {
        margin: 60px auto;
    }

    .top-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .winners-section {
        padding: 40px 20px;
        margin: 60px auto;
    }

    .payment-section {
        margin: 60px auto;
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials-section {
        margin: 60px auto;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .faq-section {
        padding: 50px 20px;
        margin: 60px auto;
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .cta-section {
        padding: 70px 20px;
        margin: 80px auto 60px;
    }

    .cta-title {
        font-size: 3rem;
    }

    .cta-text {
        font-size: 1.2rem;
    }
}

/* Mobile landscape */
@media (max-width: 768px) {
    .features-section {
        margin: 50px auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 32px 24px;
        gap: 16px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    .stats-section {
        padding: 40px 16px;
        margin: 50px auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .top-games-section {

        .top-games-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .top-game-card {
            border-radius: var(--radius-lg);
        }
    }

    .game-badge {
        top: 12px;
        right: 12px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .top-game-img {
        height: 160px;
    }

    .top-game-info {
        padding: 20px;
    }

    .top-game-info h3 {
        font-size: 1.15rem;
    }

    .game-stats {
        gap: 8px;
    }

    .game-rtp,
    .game-players {
        font-size: 0.85rem;
    }

    .winners-section {
        padding: 40px 16px;
        margin: 50px auto;
    }

    .winners-ticker {
        gap: 16px;
        margin-top: 30px;
    }

    .winner-item {
        min-width: 240px;
        padding: 20px 24px;
        border-radius: var(--radius);
    }

    .winner-name {
        font-size: 1rem;
    }

    .winner-game {
        font-size: 0.85rem;
    }

    .winner-amount {
        font-size: 1.3rem;
    }

    .payment-section {
        margin: 50px auto;
    }

    .payment-subtitle {
        font-size: 1rem;
        margin-top: -25px;
        margin-bottom: 35px;
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .payment-method-card {
        padding: 32px 24px;
    }

    .payment-icon {
        font-size: 48px;
        margin-bottom: 12px;
    }

    .payment-method-card h3 {
        font-size: 1.15rem;
    }

    .payment-method-card p {
        font-size: 0.85rem;
    }

    .testimonials-section {
        margin: 50px auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px 24px;
    }

    .testimonial-card::before {
        font-size: 60px;
        top: 15px;
        left: 15px;
    }

    .testimonial-stars {
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .testimonial-author strong {
        font-size: 1rem;
    }

    .testimonial-author span {
        font-size: 0.8rem;
    }

    .faq-section {
        padding: 40px 16px;
        margin: 50px auto;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-item {
        padding: 24px;
    }

    .faq-question {
        font-size: 1.05rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 60px 16px;
        margin: 70px auto 50px;
    }

    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

    .cta-text {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .btn-cta {
        width: 100%;
        padding: 16px 32px;
        font-size: 1rem;
    }

    .cta-note {
        font-size: 0.95rem;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .features-section {
        margin: 40px auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-card {
        padding: 28px 24px;
        gap: 16px;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .stats-section {
        padding: 32px 12px;
        margin: 40px auto;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .top-games-section {
        margin: 40px auto;
    }

    .top-games-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .game-badge {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
        font-size: 0.65rem;
    }

    .top-game-img {
        height: 180px;
    }

    .top-game-info {
        padding: 18px;
    }

    .top-game-info h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .game-rtp,
    .game-players {
        font-size: 0.8rem;
    }

    .winners-section {
        padding: 32px 12px;
        margin: 40px auto;
    }

    .winners-ticker {
        gap: 12px;
        margin-top: 24px;
        padding: 16px 0;
    }

    .winner-item {
        min-width: 220px;
        padding: 18px 20px;
        gap: 6px;
    }

    .winner-name {
        font-size: 0.95rem;
    }

    .winner-game {
        font-size: 0.8rem;
    }

    .winner-amount {
        font-size: 1.2rem;
    }

    .payment-section {
        margin: 40px auto;
    }

    .payment-subtitle {
        font-size: 0.95rem;
        margin-top: -20px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .payment-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .payment-method-card {
        padding: 28px 20px;
    }

    .payment-icon {
        font-size: 44px;
        margin-bottom: 10px;
    }

    .payment-method-card h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .payment-method-card p {
        font-size: 0.8rem;
    }

    .testimonials-section {
        margin: 40px auto;
    }

    .testimonials-grid {
        gap: 16px;
    }

    .testimonial-card {
        padding: 26px 20px;
    }

    .testimonial-card::before {
        font-size: 50px;
        top: 12px;
        left: 12px;
    }

    .testimonial-stars {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .testimonial-author {
        padding-top: 12px;
    }

    .testimonial-author strong {
        font-size: 0.95rem;
    }

    .testimonial-author span {
        font-size: 0.75rem;
    }

    .faq-section {
        padding: 32px 12px;
        margin: 40px auto;
    }

    .faq-grid {
        gap: 16px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-question {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .faq-answer {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .cta-section {
        padding: 50px 12px;
        margin: 60px auto 40px;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 14px;
    }

    .cta-text {
        font-size: 1rem;
        margin-bottom: 28px;
        padding: 0 10px;
    }

    .cta-buttons {
        gap: 12px;
    }

    .btn-cta {
        padding: 14px 28px;
        font-size: 0.95rem;
        gap: 8px;
    }

    .cta-note {
        font-size: 0.85rem;
        padding: 0 10px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .feature-card {
        padding: 24px 20px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-card h3 {
        font-size: 1.15rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .top-game-img {
        height: 160px;
    }

    .winner-item {
        min-width: 200px;
        padding: 16px 18px;
    }

    .winner-amount {
        font-size: 1.1rem;
    }

    .payment-icon {
        font-size: 40px;
    }

    .testimonial-card::before {
        font-size: 45px;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-text {
        font-size: 0.95rem;
    }

    .btn-cta {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .cta-note {
        font-size: 0.8rem;
    }
}
