/* ============================================
   LAYOUT OVERRIDES - Mobile-first redesign
   ไม่แก้ style.css เดิม เพิ่มแค่ layout ใหม่
   ============================================ */

/* --- HEADER compact --- */
.header {
    padding: 10px 0;
}

.logo {
    height: 45px;
}

.nav-buttons {
    gap: 10px;
}

.nav-buttons .btn {
    padding: 8px 20px;
    font-size: 14px;
}

/* --- PROMO BAR tighter --- */
.promo-bar {
    padding: 6px 0;
}

.promo-content {
    height: 24px;
}

#promo-text {
    font-size: 14px;
}

/* --- HERO: banner edge-to-edge --- */
.hero {
    padding: 0;
}

.hero .banner-slider {
    border-radius: 0;
    margin: 0;
    box-shadow: none;
}

.hero-info {
    text-align: center;
    padding: 20px 0 10px;
}

.hero-info h1 {
    font-size: 28px;
    margin-bottom: 4px;
}

.hero-info p {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 0;
}

.hero-info .live-badge {
    margin-bottom: 10px;
}

/* --- ACTION BUTTONS: compact 2x2 grid --- */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 16px auto 0;
    padding: 0 4px;
}

.action-btn {
    padding: 16px 12px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.action-btn i {
    font-size: 28px;
    margin-bottom: 8px;
}

.action-btn h3 {
    font-size: 15px;
    margin-bottom: 4px;
}

.action-btn p {
    font-size: 12px;
}

/* --- SOCIAL PROOF STRIP --- */
.social-proof-strip {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 16px;
    flex: 1;
    min-width: 0;
}

.proof-item i {
    font-size: 18px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.proof-item div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.proof-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1.1;
}

.proof-label {
    font-size: 11px;
    opacity: 0.7;
    white-space: nowrap;
}

/* --- TRUEMONEY BADGE --- */
.truemoney-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    padding: 10px 18px;
    background: rgba(255, 136, 0, 0.08);
    border: 1px solid rgba(255, 136, 0, 0.2);
    border-radius: 10px;
}

.truemoney-badge img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.truemoney-badge span {
    font-size: 13px;
    font-weight: 500;
    color: #ff8800;
}

/* --- STATS SUBTITLE --- */
.stats-subtitle {
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
    margin-top: -8px;
    margin-bottom: 16px;
}

/* --- NOTIFICATION CELEBRATION STYLE --- */
.notif-celeb {
    color: var(--success-color);
    font-weight: 700;
    font-size: 13px !important;
}

.notif-amount {
    font-size: 14px !important;
    font-weight: 700;
}

.notif-time {
    opacity: 0.5;
    font-size: 11px !important;
}

/* --- TICKER BADGE --- */
.ticker-badge {
    margin-left: auto;
    background: rgba(16, 185, 129, 0.15);
    color: var(--success-color);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* --- NOTIFICATIONS: inline ticker --- */
.notification-ticker {
    padding: 16px 0 20px;
    position: relative;
    z-index: 10;
}

.notifications-container {
    position: static;
    max-width: 100%;
}

.notification-ticker .ticker-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--success-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticker-dot {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.notification-ticker #notifications {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notification-ticker .notification {
    border-radius: 10px;
    padding: 10px 14px;
    gap: 10px;
    animation: slideIn 0.4s ease;
}

.notification-ticker .notification .icon {
    width: 32px;
    height: 32px;
}

.notification-ticker .notification p {
    font-size: 12px;
    margin: 1px 0;
    line-height: 1.4;
}

/* --- HOT GAMES BONUS TIME --- */
.hotgames-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hotgames-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.hotgame-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
}

.hotgame-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
}

.hotgame-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

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

.hotgame-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
}

.hotgame-badge-hot {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    animation: pulse 2s infinite;
}

.hotgame-badge-warm {
    background: rgba(245, 158, 11, 0.9);
    color: white;
}

.hotgame-badge-normal {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
}

.hotgame-info {
    padding: 10px;
}

.hotgame-info h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hotgame-provider {
    font-size: 10px;
    opacity: 0.5;
    display: block;
    margin-bottom: 6px;
}

.hotgame-rate {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.hotgame-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.hotgame-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease;
}

.hotgame-bar-hot {
    background: linear-gradient(90deg, #ef4444, #f97316);
}

.hotgame-bar-warm {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.hotgame-bar-normal {
    background: rgba(255, 255, 255, 0.25);
}

.hotgame-pct {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 32px;
    text-align: right;
}

.hotgame-players {
    font-size: 10px;
    opacity: 0.5;
}

.hotgame-players i {
    margin-right: 3px;
}

.hotgames-more {
    text-align: center;
    margin-top: 16px;
}

.hotgames-more .btn {
    font-size: 14px;
    padding: 10px 28px;
}

/* --- TEXT LOGO (fallback ถ้าไม่มีรูป) --- */
.logo-text {
    font-size: 22px;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.5px;
}

.footer-logo-text {
    display: block;
    font-size: 26px;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 12px;
}

/* --- HEADER PLAY BUTTON --- */
.btn-play {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    padding: 6px 14px !important;
    font-size: 12px !important;
    order: -1;
}

/* --- INDEX PRODUCT TABS --- */
.index-product-scroll {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 14px;
    -webkit-overflow-scrolling: touch;
}

.index-product-scroll::-webkit-scrollbar {
    height: 3px;
}

.index-product-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.idx-product {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid transparent;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s;
}

.idx-product:hover {
    background: rgba(255, 255, 255, 0.1);
}

.idx-product.active {
    border-color: var(--accent-color);
    background: rgba(250, 193, 35, 0.1);
}

.idx-product img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 4px;
}

.idx-product span {
    font-size: 12px;
    font-weight: 600;
}

/* --- HOTGAME NEW BADGE --- */
.hotgame-badge-new {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

.hotgame-section-label {
    grid-column: 1 / -1;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
    padding: 6px 0 2px;
}

.hotgame-section-label i {
    margin-right: 4px;
}

/* --- HOTGAME STATS --- */
.hotgame-stats {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hg-stat {
    font-size: 10px;
    opacity: 0.6;
    line-height: 1.5;
}

.hg-stat i {
    width: 12px;
    font-size: 9px;
    color: var(--accent-color);
    opacity: 1;
}

.hg-stat b {
    color: var(--accent-color);
    opacity: 1;
    font-weight: 600;
}

/* --- HOTGAME FREE GAME BAR --- */
.hg-free-stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hg-free-bar {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.hg-free-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
    transition: width 1s ease;
}

.hg-time {
    font-size: 9px;
    opacity: 0.4;
    font-weight: 400;
}

.hg-lastwin b {
    animation: nonePulse 0.5s ease;
}

@keyframes nonePulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* --- HOTGAME PLAY BUTTON --- */
.hotgame-play-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 6px;
    padding: 5px 0;
    background: var(--gradient-2);
    color: #333;
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.hotgame-play-btn:hover {
    transform: scale(1.03);
}

/* --- SITES HUB --- */
.sites-hub {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 20px;
    border-radius: 20px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.site-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.25s;
    overflow: hidden;
}

.site-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(250, 193, 35, 0.15);
}

.site-tag {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    color: white;
}

.site-logo {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-color);
}

.site-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.site-promo {
    font-size: 12px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.site-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.site-feat {
    font-size: 10px;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    opacity: 0.6;
}

.site-play-btn {
    width: 100%;
    padding: 8px;
    background: var(--gradient-2);
    color: #333;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    text-align: center;
}

.site-card:hover .site-play-btn {
    box-shadow: 0 2px 10px rgba(250, 193, 35, 0.3);
}

@media (max-width: 480px) {
    .sites-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .site-card {
        padding: 20px 10px 12px;
    }

    .site-logo {
        width: 48px;
        height: 48px;
    }

    .site-name {
        font-size: 14px;
    }

    .site-promo {
        font-size: 11px;
    }
}

/* --- SITE PICKER POPUP --- */
.site-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.site-popup {
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 380px;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.site-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-popup-header h3 {
    font-size: 16px;
    font-weight: 700;
}

.site-popup-close {
    background: none;
    border: none;
    color: white;
    opacity: 0.5;
    font-size: 18px;
    cursor: pointer;
}

.site-popup-close:hover {
    opacity: 1;
}

.site-popup-list {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 60vh;
    overflow-y: auto;
}

.site-popup-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.2s;
}

.site-popup-item:hover {
    background: rgba(250, 193, 35, 0.1);
    border-color: var(--accent-color);
}

.site-popup-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.site-popup-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-popup-logo span {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-color);
}

.site-popup-info {
    flex: 1;
    min-width: 0;
}

.site-popup-info strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

.site-popup-info small {
    font-size: 12px;
    color: var(--accent-color);
    font-weight: 500;
}

.site-popup-tag {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    background: var(--accent-color);
    color: #333;
    flex-shrink: 0;
}

/* --- CONTACT GROUPS (per site) --- */
.contact-group {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 16px;
}

.contact-group-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 700;
}

.contact-group-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: contain;
}

.contact-group-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.2s;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.contact-link .contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 18px;
    margin-bottom: 0;
}

.contact-link span {
    font-size: 13px;
    font-weight: 600;
}

/* --- SCAM BANNER --- */
.scam-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    margin-top: 6px;
    margin-bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.05));
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: 14px;
    text-decoration: none;
    color: white;
    transition: all 0.2s;
}

.scam-banner:hover {
    border-color: rgba(220, 38, 38, 0.5);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(220, 38, 38, 0.08));
}

.scam-banner > i:first-child {
    font-size: 22px;
    color: #ef4444;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.scam-banner div {
    flex: 1;
    min-width: 0;
}

.scam-banner strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #f87171;
    margin-bottom: 2px;
}

.scam-banner span {
    font-size: 11px;
    opacity: 0.6;
}

.scam-banner > i:last-child {
    opacity: 0.4;
    flex-shrink: 0;
}

/* --- SCAM BANNER TOP (prominent) --- */
.scam-banner-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    margin-top: 8px;
    background: linear-gradient(135deg, #7f1d1d, #991b1b, #7f1d1d);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 14px;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.25);
}
.scam-banner-top:hover {
    box-shadow: 0 6px 28px rgba(220, 38, 38, 0.4);
    transform: translateY(-1px);
}
.scam-banner-top-pulse {
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
    animation: scam-shimmer 3s infinite;
}
@keyframes scam-shimmer { to { left: 200%; } }
.scam-banner-top > i {
    font-size: 26px;
    color: #ef4444;
    flex-shrink: 0;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 6px rgba(239, 68, 68, 0.5));
}
.scam-banner-top div { flex: 1; min-width: 0; }
.scam-banner-top strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #fca5a5;
    margin-bottom: 2px;
}
.scam-banner-top span {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}
.scam-banner-top-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    background: #ef4444;
    color: white;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.2s;
}
.scam-banner-top:hover .scam-banner-top-btn {
    background: #dc2626;
}

/* --- QUICK CTA ROW --- */
.quick-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}
.quick-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 16px 10px;
    border-radius: 14px;
    text-decoration: none;
    color: white;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.quick-cta-btn:hover {
    transform: translateY(-2px);
}
.quick-cta-btn i {
    font-size: 24px;
    margin-bottom: 2px;
}
.quick-cta-btn span {
    font-size: 14px;
    font-weight: 800;
}
.quick-cta-btn small {
    font-size: 11px;
    opacity: 0.7;
}
.quick-cta-fire {
    background: linear-gradient(135deg, #b45309, #d97706, #b45309);
    border: 1px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.3);
}
.quick-cta-fire:hover {
    box-shadow: 0 6px 24px rgba(217, 119, 6, 0.5);
}
.quick-cta-fire i {
    color: #fbbf24;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.5));
}
.quick-cta-games {
    background: linear-gradient(135deg, #1e3a5f, #1d4ed8, #1e3a5f);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 16px rgba(29, 78, 216, 0.3);
}
.quick-cta-games:hover {
    box-shadow: 0 6px 24px rgba(29, 78, 216, 0.5);
}
.quick-cta-games i {
    color: #93c5fd;
}

@media (max-width: 480px) {
    .scam-banner-top { padding: 10px 12px; gap: 8px; }
    .scam-banner-top > i { font-size: 20px; }
    .scam-banner-top strong { font-size: 13px; }
    .scam-banner-top-btn { padding: 6px 12px; font-size: 12px; }
    .quick-cta-btn { padding: 12px 8px; }
    .quick-cta-btn i { font-size: 20px; }
    .quick-cta-btn span { font-size: 12px; }
}

/* --- TRUST GUARANTEE SECTION --- */
.trust-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 20px 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
}

.trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
}

.trust-icon-green {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.trust-icon-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.trust-icon-gold {
    background: rgba(250, 193, 35, 0.15);
    color: var(--accent-color);
}

.trust-icon-red {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.trust-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.4;
}

.trust-card p {
    font-size: 12px;
    opacity: 0.65;
    line-height: 1.6;
}

/* --- VIDEO SECTION --- */
.video-section {
    margin: 16px 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.video-section video {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.video-sound-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.video-sound-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.video-sound-btn i {
    font-size: 14px;
}

.video-sound-btn.video-sound-on {
    padding: 6px 10px;
    background: rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.3);
}

.video-sound-btn.video-sound-on span {
    display: none;
}

/* --- CASHBACK LEADERBOARD --- */
.cashback-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.cashback-highlight {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.cashback-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(250, 193, 35, 0.1), rgba(250, 193, 35, 0.02));
    border: 1px solid rgba(250, 193, 35, 0.2);
    border-radius: 16px;
    padding: 16px 40px;
}

.cashback-label {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.cashback-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
}

.cashback-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cashback-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: background 0.2s;
}

.cashback-row:hover {
    background: rgba(255, 255, 255, 0.06);
}

.cashback-top {
    background: rgba(250, 193, 35, 0.05);
    border: 1px solid rgba(250, 193, 35, 0.1);
}

.cashback-rank {
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.cashback-rank-num {
    font-size: 13px;
    opacity: 0.5;
    font-weight: 600;
}

.cashback-medal {
    font-size: 18px;
}

.cashback-medal-1 { color: #fbbf24; }
.cashback-medal-2 { color: #9ca3af; }
.cashback-medal-3 { color: #b45309; }

.cashback-phone {
    font-size: 14px;
    font-weight: 600;
    min-width: 110px;
    letter-spacing: 0.5px;
}

.cashback-info {
    flex: 1;
    min-width: 0;
}

.cashback-loss {
    font-size: 12px;
    opacity: 0.5;
}

.cashback-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--success-color);
    white-space: nowrap;
}

.cashback-cta {
    margin-top: 16px;
    text-align: center;
    padding: 12px;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.12);
    border-radius: 10px;
}

.cashback-cta p {
    font-size: 13px;
    color: #f87171;
    font-weight: 500;
}

/* --- SECTIONS: tighter spacing --- */
.game-categories {
    padding: 30px 20px;
    border-radius: 20px;
    margin-top: 8px;
    margin-bottom: 20px;
}

.section-title {
    margin-bottom: 20px;
}

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

.section-title p {
    font-size: 14px;
}

.categories-nav {
    gap: 8px;
    margin-bottom: 20px;
}

.category {
    padding: 8px 20px;
    font-size: 14px;
}

.games-container {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
}

.game-item img {
    height: 100px;
}

.game-item p {
    padding: 8px;
    font-size: 12px;
}

/* --- PROVIDERS: horizontal scroll strip --- */
.game-providers {
    padding: 30px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.providers-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.providers-grid::-webkit-scrollbar {
    height: 4px;
}

.providers-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.provider-card {
    min-width: 120px;
    flex-shrink: 0;
    padding: 14px;
    border-radius: 12px;
    scroll-snap-align: start;
}

.provider-card img {
    height: 50px;
    margin-bottom: 6px;
}

.provider-card h4 {
    font-size: 12px;
}

/* --- WITHDRAWAL STATS compact --- */
.stats-section {
    padding: 24px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.stats-amount {
    font-size: 36px;
    margin: 12px 0;
}

.transaction-list {
    margin-top: 16px;
}

.transaction-item {
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 6px;
}

/* --- CONTACT compact --- */
.contact-section {
    padding: 30px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-item h4 {
    font-size: 15px;
}

.contact-item p {
    font-size: 12px;
}

/* --- FOOTER compact --- */
.footer {
    padding: 30px 0 16px;
    margin-top: 30px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 12px;
}

.footer-text {
    font-size: 13px;
    margin-bottom: 16px;
}

.footer-bottom {
    margin-top: 16px;
    padding-top: 12px;
    font-size: 12px;
}

/* --- FLOATING BUTTONS --- */
.floating-buttons {
    gap: 10px;
}

.fab {
    width: 50px;
    height: 50px;
    font-size: 22px;
}


/* ============================================
   RESPONSIVE: MOBILE <= 480px
   ============================================ */
@media (max-width: 480px) {
    .social-proof-strip {
        gap: 4px;
    }

    .proof-item {
        padding: 8px 10px;
        gap: 6px;
        border-radius: 8px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .trust-card {
        padding: 16px 14px;
    }

    .trust-card h4 {
        font-size: 13px;
    }

    .trust-card p {
        font-size: 11px;
    }

    .truemoney-badge {
        padding: 8px 12px;
        gap: 8px;
    }

    .truemoney-badge img {
        width: 22px;
        height: 22px;
    }

    .truemoney-badge span {
        font-size: 11px;
    }

    .cashback-amount {
        font-size: 26px;
    }

    .cashback-total {
        padding: 12px 28px;
    }

    .cashback-row {
        gap: 8px;
        padding: 8px 10px;
    }

    .cashback-phone {
        font-size: 12px;
        min-width: 90px;
    }

    .cashback-loss {
        font-size: 11px;
    }

    .cashback-value {
        font-size: 13px;
    }

    .cashback-cta p {
        font-size: 12px;
    }

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

    .hotgame-info h4 {
        font-size: 11px;
    }

    .hotgame-pct {
        font-size: 11px;
    }

    .proof-item i {
        font-size: 14px;
    }

    .proof-value {
        font-size: 15px;
    }

    .proof-label {
        font-size: 10px;
    }

    .container {
        padding: 0 12px;
    }

    .hero-info h1 {
        font-size: 22px;
    }

    .hero-info p {
        font-size: 13px;
    }

    .action-buttons {
        gap: 8px;
    }

    .action-btn {
        padding: 12px 8px;
        border-radius: 12px;
    }

    .action-btn i {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .action-btn h3 {
        font-size: 13px;
    }

    .action-btn p {
        font-size: 11px;
    }

    .game-categories {
        padding: 20px 14px;
        border-radius: 16px;
    }

    .games-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .game-item img {
        height: 80px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .contact-item h4 {
        font-size: 13px;
    }

    .stats-amount {
        font-size: 28px;
    }
}

/* ============================================
   RESPONSIVE: TABLET 481-768px
   ============================================ */
@media (min-width: 481px) and (max-width: 768px) {
    .action-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .games-container {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

/* ============================================
   RESPONSIVE: DESKTOP > 768px
   ============================================ */
@media (min-width: 769px) {
    .hotgames-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }

    .header {
        padding: 12px 0;
    }

    .logo {
        height: 55px;
    }

    .hero .banner-slider {
        border-radius: 20px;
        margin: 0 auto 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .hero {
        padding: 20px 0;
    }

    .hero .container {
        max-width: 1200px;
    }

    .hero-info h1 {
        font-size: 38px;
    }

    .hero-info p {
        font-size: 18px;
    }

    .action-buttons {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-top: 24px;
    }

    .action-btn {
        padding: 24px 16px;
    }

    .action-btn i {
        font-size: 36px;
    }

    .action-btn h3 {
        font-size: 18px;
    }

    .notification-ticker #notifications {
        flex-direction: row;
        gap: 12px;
        overflow-x: auto;
        max-height: none;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
    }

    .notification-ticker .notification {
        min-width: 280px;
        flex-shrink: 0;
    }

    .game-categories {
        padding: 40px 30px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .games-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }

    .game-item img {
        height: 120px;
    }

    .providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        overflow-x: visible;
    }

    .provider-card {
        min-width: auto;
    }

    .contact-section {
        padding: 40px 30px;
    }

    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .floating-buttons {
        bottom: 30px;
        right: 30px;
    }

    .fab {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}
