/* =========================================
   teenpattimasterr Theme - Custom CSS
   Site: https://teenpattimasterr.in.net/
   ========================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.8; }

img { max-width: 100%; height: auto; display: block; }

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
    background: #1a1a2e;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    position: relative;
}

/* Branding */
.site-branding .site-title-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.site-branding img { max-height: 50px; width: auto; }

/* Navigation */
.primary-nav .nav-menu {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.primary-nav .nav-menu li a {
    display: block;
    padding: 8px 14px;
    color: #fff;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.primary-nav .nav-menu li a:hover,
.primary-nav .nav-menu li.current-menu-item > a {
    background: rgba(255,255,255,0.15);
}

/* Hamburger Button */
.menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 5px;
    padding: 7px 10px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-icon { display: flex; flex-direction: column; gap: 5px; }

.hamburger-icon span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger active (X) animation */
.menu-toggle.active .hamburger-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .hamburger-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   MAIN CONTENT
   ========================================= */
.main-content { padding: 40px 0; min-height: 60vh; }

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.post-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.post-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

.post-card .post-thumbnail img { width: 100%; height: 200px; object-fit: cover; }

.post-body { padding: 18px; }

.post-title { font-size: 1.1rem; margin-bottom: 6px; font-weight: 600; }
.post-title a:hover { color: #1a1a2e; }

.post-meta { font-size: 0.8rem; color: #888; margin-bottom: 10px; }

.post-excerpt { font-size: 0.92rem; color: #555; margin-bottom: 12px; }

.read-more {
    display: inline-block;
    background: #1a1a2e;
    color: #fff;
    padding: 7px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: background 0.2s;
}
.read-more:hover { background: #16213e; opacity: 1; }

/* Single Post */
.entry-header { margin-bottom: 20px; }
.entry-title { font-size: 2rem; line-height: 1.3; margin-bottom: 8px; }
.entry-meta { font-size: 0.85rem; color: #888; }
.entry-thumbnail { margin-bottom: 24px; border-radius: 8px; overflow: hidden; }
.entry-thumbnail img { width: 100%; max-height: 450px; object-fit: cover; }
.entry-content { font-size: 1rem; line-height: 1.8; }
.entry-content p { margin-bottom: 16px; }
.entry-content h2, .entry-content h3 { margin: 24px 0 12px; }

/* Page */
.page-title { font-size: 1.8rem; margin-bottom: 20px; }
.page-content-body { font-size: 1rem; line-height: 1.8; }
.page-content-body p { margin-bottom: 16px; }

/* Pagination */
.pagination { margin-top: 40px; text-align: center; }
.pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 2px;
    font-size: 0.9rem;
}
.pagination .page-numbers.current { background: #1a1a2e; color: #fff; border-color: #1a1a2e; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: #111;
    color: #ccc;
    padding: 40px 0 20px;
}

.footer-widgets { margin-bottom: 30px; }

.footer-widget-title { font-size: 1rem; color: #fff; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.footer-menu { list-style: none; display: flex; flex-wrap: wrap; gap: 16px; }
.footer-menu li a { color: #aaa; font-size: 0.88rem; }
.footer-menu li a:hover { color: #fff; opacity: 1; }

.footer-copy { font-size: 0.85rem; color: #777; }
.footer-copy a { color: #aaa; }

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 768px) {

    .menu-toggle { display: block; }

    .primary-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a2e;
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 999;
    }

    .primary-nav.nav-open { display: block; }

    .primary-nav .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    .primary-nav .nav-menu li a {
        padding: 12px 20px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

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

    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .posts-grid { grid-template-columns: 1fr; }
    .site-branding .site-title-link { font-size: 1.2rem; }
}



/* =========================================
   HERO SECTION - Teen Patti Master
   ========================================= */

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0f0c29 0%, #1a1a2e 40%, #16213e 70%, #0f3460 100%);
    color: #fff;
    overflow: hidden;
    padding: 80px 0 70px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Glow Blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    pointer-events: none;
}
.hero-blob-1 {
    width: 500px; height: 500px;
    background: #e94560;
    top: -150px; left: -100px;
}
.hero-blob-2 {
    width: 400px; height: 400px;
    background: #f5a623;
    bottom: -100px; right: -80px;
}

/* Inner Layout */
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* ---- LEFT CONTENT ---- */
.hero-content {
    flex: 1;
    max-width: 580px;
}

.hero-badge {
    display: inline-block;
    background: rgba(229, 69, 96, 0.2);
    border: 1px solid rgba(229, 69, 96, 0.5);
    color: #ff6b8a;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #fff;
}

.hero-highlight {
    background: linear-gradient(90deg, #f5a623, #e94560);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-desc {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: #c8d0e0;
    line-height: 1.8;
    margin-bottom: 28px;
}
.hero-desc strong { color: #f5c842; }

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 22px;
    margin-bottom: 30px;
    backdrop-filter: blur(6px);
    width: fit-content;
}

.stat-item { text-align: center; }

.stat-num {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #f5a623;
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    color: #aab;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
    align-items: center;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e94560, #c0392b);
    color: #fff !important;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(233, 69, 96, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.6);
    opacity: 1 !important;
}

.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
    white-space: nowrap;
}
.btn-secondary-cta:hover {
    border-color: #f5a623;
    background: rgba(245, 166, 35, 0.1);
    opacity: 1 !important;
}

/* Trust Badges */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.hero-trust span {
    font-size: 0.82rem;
    color: #8ab4c0;
}

/* ---- RIGHT IMAGE ---- */
.hero-image-wrap {
    flex-shrink: 0;
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated outer rings */
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(245, 166, 35, 0.25);
    animation: ringPulse 3s ease-in-out infinite;
}
.hero-ring-outer {
    width: 340px; height: 340px;
    animation-delay: 0s;
}
.hero-ring-inner {
    width: 290px; height: 290px;
    border-color: rgba(233, 69, 96, 0.2);
    animation-delay: 1.5s;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* Round Image Circle */
.hero-image-circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(245, 166, 35, 0.5);
    box-shadow:
        0 0 0 8px rgba(245, 166, 35, 0.08),
        0 20px 60px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    position: relative;
    z-index: 2;
}
.hero-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Floating Game Chips */
.float-chip {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    white-space: nowrap;
    z-index: 3;
    animation: floatChip 4s ease-in-out infinite;
}
.chip-1 { top: 10px;   left: -20px;  animation-delay: 0s; }
.chip-2 { bottom: 30px; right: -15px; animation-delay: 1.3s; }
.chip-3 { bottom: 0px;  left: 10px;  animation-delay: 2.6s; }

@keyframes floatChip {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* =========================================
   HERO — RESPONSIVE
   ========================================= */

/* Tablet */
@media (max-width: 960px) {
    .hero-section { padding: 60px 0; min-height: auto; }

    .hero-inner {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .hero-content { max-width: 100%; }

    .hero-badge { margin: 0 auto 16px; }

    .hero-stats {
        margin: 0 auto 28px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-image-wrap {
        width: 280px;
        height: 280px;
    }
    .hero-ring-outer { width: 280px; height: 280px; }
    .hero-ring-inner { width: 240px; height: 240px; }
    .hero-image-circle { width: 210px; height: 210px; }
}

/* Mobile */
@media (max-width: 600px) {
    .hero-section { padding: 50px 0 40px; }

    .hero-title { font-size: 1.65rem; }

    .hero-stats {
        gap: 14px;
        padding: 12px 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .stat-divider { display: none; }

    .hero-cta { flex-direction: column; align-items: center; }

    .btn-primary-cta,
    .btn-secondary-cta { width: 100%; justify-content: center; }

    .hero-image-wrap {
        width: 230px;
        height: 230px;
    }
    .hero-ring-outer { width: 230px; height: 230px; }
    .hero-ring-inner { width: 195px; height: 195px; }
    .hero-image-circle { width: 170px; height: 170px; }

    .float-chip { font-size: 0.68rem; padding: 5px 10px; }
    .chip-1 { left: -10px; }
    .chip-2 { right: -10px; }
}

/* Small Mobile */
@media (max-width: 380px) {
    .hero-title { font-size: 1.4rem; }
    .hero-desc { font-size: 0.88rem; }
    .hero-stats { gap: 10px; }
    .stat-num { font-size: 1.1rem; }
}




/* =========================================
   GAME DETAILS SECTION
   ========================================= */
.section-game-details {
    padding: 70px 0;
    background: #f4f6ff;
    position: relative;
    overflow: hidden;
}

/* Subtle BG pattern */
.section-game-details::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(233,69,96,0.07), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.section-game-details::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(26,26,46,0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Header (reuse from previous) */
.section-game-details .section-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}
.section-game-details .section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0;
}

/* 2-Column Wrapper */
.game-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 36px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ---- LEFT COL ---- */
.game-intro-box {
    background: #fff;
    border: 1px solid #e5e8f8;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 2px 16px rgba(26,26,46,0.05);
}

.game-logo-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.game-icon-placeholder {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(26,26,46,0.2);
}

.game-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.game-publisher {
    font-size: 0.8rem;
    color: #888;
    display: block;
    margin-bottom: 5px;
}

.game-rating {
    font-size: 0.82rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}
.game-rating span { color: #888; }

.game-short-desc {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.85;
    margin-bottom: 14px;
}
.game-short-desc:last-child { margin-bottom: 0; }
.game-short-desc strong { color: #e94560; }

/* Highlights */
.game-highlights {
    background: #fff;
    border: 1px solid #e5e8f8;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 2px 16px rgba(26,26,46,0.05);
}

.highlights-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f8;
}

.highlights-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.hi-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #f4f6ff, #eef0ff);
    border: 1px solid #e0e4ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.highlights-list li div strong {
    display: block;
    font-size: 0.92rem;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 1px;
}

.highlights-list li div small {
    font-size: 0.78rem;
    color: #888;
}

/* ---- RIGHT COL ---- */
.app-details-card {
    background: #fff;
    border: 1px solid #e5e8f8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26,26,46,0.08);
    margin-bottom: 20px;
}

.app-details-header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

/* Table */
.app-details-table {
    width: 100%;
    border-collapse: collapse;
}

.app-details-table tbody tr {
    border-bottom: 1px solid #f0f0f8;
    transition: background 0.15s;
}
.app-details-table tbody tr:hover { background: #fafaff; }
.app-details-table tbody tr:last-child { border-bottom: none; }

.td-label {
    padding: 13px 20px;
    font-size: 0.84rem;
    color: #666;
    font-weight: 500;
    width: 48%;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Fix: td cannot use flex directly, use div inside */
.app-details-table td { vertical-align: middle; }

.td-label {
    padding: 13px 20px;
    font-size: 0.84rem;
    color: #555;
    font-weight: 600;
    width: 50%;
}

.td-icon {
    margin-right: 6px;
    font-size: 0.9rem;
}

.td-value {
    padding: 13px 20px 13px 0;
    font-size: 0.88rem;
    color: #1a1a2e;
    font-weight: 600;
}

/* Highlighted rows */
.tr-highlight { background: linear-gradient(90deg, #fff8f9, #fff); }
.tr-highlight:hover { background: #fff5f6 !important; }

.td-bonus {
    color: #e94560 !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
}

/* Download CTA inside card */
.table-cta {
    padding: 20px 20px 22px;
    border-top: 1px solid #f0f0f8;
    background: #fafaff;
    text-align: center;
}

.btn-table-download {
    display: inline-block;
    width: 100%;
    background: linear-gradient(135deg, #e94560, #c0392b);
    color: #fff !important;
    font-size: 1rem;
    font-weight: 800;
    padding: 14px 20px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(233,69,96,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 10px;
}
.btn-table-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233,69,96,0.5);
    opacity: 1 !important;
}

.table-cta-note {
    font-size: 0.76rem;
    color: #888;
    margin: 0;
}

/* Referral Mini Box */
.referral-mini-box {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    border-radius: 16px;
    padding: 22px 24px;
    color: #fff;
    box-shadow: 0 4px 20px rgba(26,26,46,0.2);
}

.rmb-header {
    font-size: 1rem;
    font-weight: 800;
    color: #f5a623;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.rmb-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.85rem;
    color: #c8d0e0;
}
.rmb-row:last-of-type { border-bottom: none; }
.rmb-row strong { color: #fff; font-size: 0.9rem; }
.rmb-row.gold strong { color: #f5a623; font-size: 0.95rem; }
.rmb-row.gold { color: #fff; }

.btn-rmb {
    display: block;
    text-align: center;
    background: #f5a623;
    color: #1a1a2e !important;
    font-weight: 800;
    font-size: 0.92rem;
    padding: 12px;
    border-radius: 10px;
    margin-top: 16px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.btn-rmb:hover {
    background: #e09a1a;
    transform: translateY(-2px);
    opacity: 1 !important;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .game-details-wrapper {
        grid-template-columns: 1fr;
    }
    .game-table-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .app-details-card { margin-bottom: 0; }
}

@media (max-width: 768px) {
    .section-game-details { padding: 50px 0; }
    .game-table-col {
        grid-template-columns: 1fr;
    }
    .game-intro-box { padding: 20px; }
    .game-highlights { padding: 20px; }
}

@media (max-width: 480px) {
    .game-logo-row { flex-direction: row; }
    .app-details-header { font-size: 0.9rem; }
    .td-label, .td-value { padding: 11px 14px 11px 14px; font-size: 0.82rem; }
    .td-label { width: 52%; }
    .rmb-row { font-size: 0.8rem; flex-direction: column; align-items: flex-start; gap: 3px; }
    .rmb-row strong { font-size: 0.85rem; }
}



/* =========================================
   HOW TO DOWNLOAD + REFER SECTION
   ========================================= */

.section-how-download {
    padding: 75px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative bg */
.section-how-download::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a1a2e, #e94560, #f5a623, #1a1a2e);
}

/* Section Header (reuse existing styles) */
.section-how-download .section-header h2 {
    color: #1a1a2e;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
}
.section-how-download .section-header p {
    color: #666;
    font-size: 0.98rem;
}

/* ---- Two Box Grid ---- */
.how-tabs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

/* ---- Common Box Style ---- */
.how-box {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e8e8f5;
    box-shadow: 0 4px 24px rgba(26,26,46,0.07);
}

/* Box Header */
.how-box-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
}

.how-box-download .how-box-header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
}
.how-box-refer .how-box-header {
    background: linear-gradient(135deg, #b5451b, #e94560);
    color: #fff;
}

.how-box-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    flex-shrink: 0;
}

.how-box-header h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3px;
}
.how-box-header p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

/* Box Body Description */
.how-box-desc {
    padding: 18px 24px 0;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.75;
    background: #fff;
    border-bottom: 1px solid #f2f2fa;
    padding-bottom: 16px;
}
.how-box-desc strong { color: #e94560; }

/* ---- Steps List ---- */
.how-steps-list {
    list-style: none;
    padding: 20px 24px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.how-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.how-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(26,26,46,0.2);
}

/* Refer steps: red numbered circles */
.refer-num {
    background: linear-gradient(135deg, #e94560, #c0392b) !important;
    box-shadow: 0 2px 8px rgba(233,69,96,0.25) !important;
}

.how-step-content strong {
    display: block;
    font-size: 0.9rem;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 2px;
}

.how-step-content span {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.5;
    display: block;
}

/* ---- Safety Note ---- */
.safety-note {
    margin: 0 24px 0;
    background: #f0fff4;
    border: 1px solid #b7ebc8;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.safety-icon { font-size: 1.2rem; flex-shrink: 0; line-height: 1.5; }

.safety-note p {
    font-size: 0.8rem;
    color: #2d6a4f;
    line-height: 1.6;
    margin: 0;
}
.safety-note p strong { color: #1b4332; }

/* ---- Download CTA Button ---- */
.btn-how-download {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 20px 24px 12px;
    background: linear-gradient(135deg, #e94560, #c0392b);
    color: #fff !important;
    padding: 16px 22px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(233,69,96,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-how-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(233,69,96,0.5);
    opacity: 1 !important;
}
.btn-how-download svg { flex-shrink: 0; }
.btn-how-download span {
    font-size: 0.97rem;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.btn-how-download small {
    font-size: 0.72rem;
    font-weight: 400;
    opacity: 0.85;
}

/* Trust Row */
.how-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 0 24px 20px;
    background: #fff;
}
.how-trust-row span {
    font-size: 0.75rem;
    color: #888;
}

/* ---- Earn Highlights ---- */
.earn-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 24px 18px;
    background: #fff;
}

.earn-hl-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #fff9f0, #fff);
    border: 1px solid #fde8d0;
    border-radius: 10px;
    padding: 12px 14px;
    transition: transform 0.2s;
}
.earn-hl-card:hover { transform: translateX(4px); }

.earn-hl-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.earn-hl-card strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1px;
}
.earn-hl-card small {
    font-size: 0.75rem;
    color: #888;
}

/* ---- Share Platforms ---- */
.share-platforms {
    padding: 16px 24px 22px;
    background: #fff;
    border-top: 1px solid #f2f2fa;
}

.share-label {
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

.share-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    color: #fff !important;
}
.share-btn:hover { transform: translateY(-2px); opacity: 0.9 !important; }

.share-btn.whatsapp { background: #25D366; }
.share-btn.telegram { background: #0088cc; }
.share-btn.facebook { background: #1877F2; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 960px) {
    .how-tabs-wrapper {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .section-how-download { padding: 50px 0; }

    .how-box-header { padding: 18px 18px; }
    .how-box-icon { width: 44px; height: 44px; font-size: 1.4rem; }
    .how-box-header h3 { font-size: 0.95rem; }

    .how-steps-list { padding: 16px 18px; gap: 14px; }
    .how-box-desc { padding: 14px 18px; }
    .safety-note { margin: 0 18px; }

    .btn-how-download {
        margin: 16px 18px 10px;
        padding: 14px 18px;
    }

    .how-trust-row { padding: 0 18px 18px; gap: 10px; }
    .earn-highlights { padding: 0 18px 14px; }
    .share-platforms { padding: 14px 18px 18px; }

    .share-btns { gap: 8px; }
    .share-btn { padding: 8px 13px; font-size: 0.78rem; }
}

@media (max-width: 380px) {
    .how-step-content strong { font-size: 0.85rem; }
    .how-step-content span { font-size: 0.76rem; }
    .btn-how-download span { font-size: 0.88rem; }
}




/* =========================================
   TIPS & TRICKS SECTION
   ========================================= */
.section-tips {
    padding: 75px 0;
    background: linear-gradient(180deg, #f4f6ff 0%, #fff 60%);
    position: relative;
    overflow: hidden;
}

/* Decorative BG elements */
.section-tips::before {
    content: '🃏';
    position: absolute;
    font-size: 12rem;
    opacity: 0.03;
    top: -20px;
    right: -20px;
    pointer-events: none;
    line-height: 1;
}

/* Section Header */
.section-tips .section-header {
    text-align: center;
    margin-bottom: 36px;
}
.section-tips .section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.section-tips .section-header p {
    font-size: 0.97rem;
    color: #555;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-tips .section-header p strong { color: #e94560; }

/* ---- Intro Banner ---- */
.tips-intro-banner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 16px;
    padding: 26px 28px;
    margin-bottom: 44px;
    color: #fff;
    box-shadow: 0 6px 24px rgba(26,26,46,0.2);
}

.tib-icon {
    font-size: 2.8rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.tib-text h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #f5a623;
    margin-bottom: 8px;
}
.tib-text p {
    font-size: 0.9rem;
    color: #c8d0e0;
    line-height: 1.75;
    margin: 0;
}
.tib-text p strong { color: #fff; }

/* ---- Tips Grid ---- */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 22px;
    margin-bottom: 44px;
}

/* ---- Tip Card ---- */
.tip-card {
    background: #fff;
    border: 1px solid #e8e8f5;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(26,26,46,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(26,26,46,0.12);
}

/* Card Header */
.tip-header {
    background: linear-gradient(135deg, #f8f9ff, #eef0ff);
    padding: 20px 20px 16px;
    border-bottom: 1px solid #eef0ff;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tip-number {
    font-size: 0.75rem;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.tip-icon-wrap {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.tip-header h3 {
    font-size: 0.97rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
    flex: 1;
    min-width: 160px;
}

/* Card Body */
.tip-body {
    padding: 18px 20px;
    flex: 1;
}
.tip-body p {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.78;
    margin-bottom: 14px;
}
.tip-body p strong { color: #1a1a2e; }

/* Key Point */
.tip-key-point {
    background: linear-gradient(90deg, #fff8f0, #fff);
    border-left: 3px solid #f5a623;
    border-radius: 0 8px 8px 0;
    padding: 10px 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.kp-icon { flex-shrink: 0; font-size: 0.9rem; margin-top: 1px; }

.tip-key-point span:last-child {
    font-size: 0.8rem;
    color: #664d00;
    line-height: 1.55;
}

/* Tip Tag */
.tip-tag {
    padding: 8px 20px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #e94560;
    background: #fff5f7;
    border-top: 1px solid #fee8ec;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: right;
}

/* ---- Hand Rankings Box ---- */
.hand-rankings-box {
    background: #fff;
    border: 1px solid #e8e8f5;
    border-radius: 20px;
    padding: 30px 32px;
    margin-bottom: 44px;
    box-shadow: 0 4px 20px rgba(26,26,46,0.06);
}

.hrb-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.hrb-subtitle {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 22px;
}

.hand-rankings-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hand-rank-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: background 0.2s;
}

/* Row color coding */
.rank-1 { background: linear-gradient(90deg, #fff8e1, #fff); border-color: #fde08a; }
.rank-2 { background: linear-gradient(90deg, #f0f9ff, #fff); border-color: #bde3f9; }
.rank-3 { background: linear-gradient(90deg, #f0fff4, #fff); border-color: #b7ebc8; }
.rank-4 { background: linear-gradient(90deg, #f4f6ff, #fff); border-color: #d4d9f8; }
.rank-5 { background: #fafaff; border-color: #e8e8f5; }
.rank-6 { background: #fff5f5; border-color: #fdd; }

.rank-badge {
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    background: #1a1a2e;
    padding: 3px 8px;
    border-radius: 6px;
    flex-shrink: 0;
    white-space: nowrap;
}
.rank-1 .rank-badge { background: #c8960a; }
.rank-2 .rank-badge { background: #1565c0; }
.rank-3 .rank-badge { background: #2e7d32; }

.rank-info {
    flex: 1;
}
.rank-info strong {
    display: block;
    font-size: 0.88rem;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 2px;
}
.rank-info small {
    font-size: 0.76rem;
    color: #777;
}

.rank-power {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.power-max  { background: #fff3cd; color: #856404; }
.power-high { background: #d1ecf1; color: #0c5460; }
.power-mid  { background: #d4edda; color: #155724; }
.power-low  { background: #e2e3f8; color: #383d91; }
.power-min  { background: #f8d7da; color: #721c24; }

/* ---- Bottom CTA ---- */
.tips-bottom-cta {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    border-radius: 20px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 6px 28px rgba(26,26,46,0.2);
}

.tbc-text h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}
.tbc-text p {
    font-size: 0.88rem;
    color: #aab;
    margin: 0;
}

.btn-tips-cta {
    display: inline-block;
    background: linear-gradient(135deg, #e94560, #c0392b);
    color: #fff !important;
    font-size: 0.97rem;
    font-weight: 800;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(233,69,96,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}
.btn-tips-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(233,69,96,0.55);
    opacity: 1 !important;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 960px) {
    .tips-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section-tips { padding: 50px 0; }
    .tips-intro-banner { flex-direction: column; gap: 14px; padding: 22px 20px; }
    .tib-icon { font-size: 2.2rem; }
    .hand-rankings-box { padding: 22px 18px; }
    .tips-bottom-cta {
        flex-direction: column;
        text-align: center;
        padding: 26px 22px;
    }
    .btn-tips-cta { width: 100%; text-align: center; }
}

@media (max-width: 600px) {
    .tips-grid { grid-template-columns: 1fr; }
    .tip-header { gap: 10px; }
    .tip-header h3 { font-size: 0.92rem; min-width: 120px; }
    .hand-rank-item { gap: 10px; padding: 10px 12px; }
    .rank-info strong { font-size: 0.83rem; }
    .rank-info small { font-size: 0.72rem; }
}

@media (max-width: 380px) {
    .tip-body p { font-size: 0.84rem; }
    .tip-key-point span:last-child { font-size: 0.76rem; }
    .rank-power { display: none; }
}




/* =========================================
   APP FEATURES SECTION
   ========================================= */
.section-features {
    padding: 75px 0;
    background: linear-gradient(180deg, #fff 0%, #f4f6ff 100%);
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-features .section-header {
    text-align: center;
    margin-bottom: 44px;
}
.section-features .section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.section-features .section-header p {
    font-size: 0.97rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Top 3 Big Cards ---- */
.features-top-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 22px;
}

.feature-big-card {
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #e8e8f5;
    background: #fff;
    box-shadow: 0 4px 20px rgba(26,26,46,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}
.feature-big-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a1a2e, #e94560);
    border-radius: 20px 20px 0 0;
}
.feature-big-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(26,26,46,0.12);
}

/* Dark variant */
.fbc-dark {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-color: #2a2a4e;
}
.fbc-dark::before {
    background: linear-gradient(90deg, #e94560, #f5a623);
}

/* Gold variant */
.fbc-gold {
    background: linear-gradient(135deg, #1c1408, #2d2000);
    border-color: rgba(245,166,35,0.2);
}
.fbc-gold::before {
    background: linear-gradient(90deg, #f5a623, #e09a1a);
}

/* Icon Wrap */
.fbc-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.feature-big-card:not(.fbc-dark):not(.fbc-gold) .fbc-icon-wrap {
    background: linear-gradient(135deg, #f0f2ff, #e8ecff);
    border-color: #d8dcff;
}

/* Content */
.fbc-content h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.fbc-dark .fbc-content h3,
.fbc-gold .fbc-content h3 {
    color: #fff;
}

.fbc-content p {
    font-size: 0.86rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 14px;
}
.fbc-dark .fbc-content p,
.fbc-gold .fbc-content p {
    color: rgba(255,255,255,0.75);
}
.fbc-content p strong { color: #e94560; }
.fbc-dark .fbc-content p strong { color: #f5a623; }
.fbc-gold .fbc-content p strong { color: #f5c842; }

/* Feature List */
.fbc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.fbc-list li {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}
.fbc-dark .fbc-list li,
.fbc-gold .fbc-list li {
    color: rgba(255,255,255,0.7);
}

/* ---- Small Features Grid ---- */
.features-small-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.feature-small-card {
    background: #fff;
    border: 1px solid #e8e8f5;
    border-radius: 16px;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(26,26,46,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-small-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26,26,46,0.1);
}

.fsc-icon {
    font-size: 2rem;
    line-height: 1;
}

.fsc-body h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.fsc-body p {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}
.fsc-body p strong { color: #e94560; }

/* ---- Games Strip Box ---- */
.games-strip-box {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    border-radius: 20px;
    padding: 26px 28px;
    margin-bottom: 22px;
    box-shadow: 0 6px 24px rgba(26,26,46,0.2);
}

.gsb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.gsb-header h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}
.gsb-count {
    background: #f5a623;
    color: #1a1a2e;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.gsb-games {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}

.gsb-game-item {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: background 0.2s, transform 0.2s;
    cursor: default;
}
.gsb-game-item:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-3px);
}

.gsb-emoji { font-size: 1.6rem; line-height: 1; }
.gsb-game-item strong {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
}
.gsb-game-item small {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.5);
}
.gsb-more {
    background: rgba(245,166,35,0.15) !important;
    border-color: rgba(245,166,35,0.3) !important;
}
.gsb-more strong { color: #f5a623 !important; }

/* ---- Social Follow Strip ---- */
.social-follow-strip {
    background: #fff;
    border: 1px solid #e8e8f5;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(26,26,46,0.05);
}

.sfs-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.sfs-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
}
.sfs-text small {
    font-size: 0.76rem;
    color: #888;
}

.sfs-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.sfs-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    white-space: nowrap;
}
.sfs-btn:hover { transform: translateY(-2px); opacity: 0.88 !important; }

.sfs-insta { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.sfs-tg    { background: #0088cc; }
.sfs-wa    { background: #25D366; }
.sfs-yt    { background: #FF0000; }
.sfs-fb    { background: #1877F2; }

/* ---- Age Disclaimer ---- */
.age-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff8e1;
    border: 1px solid #fde08a;
    border-radius: 12px;
    padding: 14px 18px;
}

.ad-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

.age-disclaimer p {
    font-size: 0.8rem;
    color: #664d00;
    line-height: 1.6;
    margin: 0;
}
.age-disclaimer p strong { color: #3d2900; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
    .gsb-games { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 960px) {
    .features-top-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto 22px; }
    .features-small-grid { grid-template-columns: repeat(2, 1fr); }
    .gsb-games { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .section-features { padding: 50px 0; }
    .social-follow-strip { flex-direction: column; align-items: flex-start; }
    .gsb-header { flex-direction: column; align-items: flex-start; }
    .games-strip-box { padding: 20px; }
}

@media (max-width: 600px) {
    .features-top-grid { max-width: 100%; }
    .features-small-grid { grid-template-columns: 1fr; }
    .gsb-games { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .feature-big-card { padding: 22px 18px; }
    .sfs-links { gap: 8px; }
    .sfs-btn { padding: 8px 12px; font-size: 0.76rem; }
}

@media (max-width: 380px) {
    .gsb-games { grid-template-columns: repeat(2, 1fr); }
    .gsb-game-item { padding: 12px 6px; }
    .gsb-emoji { font-size: 1.3rem; }
    .fbc-content h3 { font-size: 1rem; }
    .fsc-body h4 { font-size: 0.88rem; }
}



/* =========================================
   FAQ SECTION
   ========================================= */
.section-faq-final {
    padding: 75px 0 60px;
    background: #f4f6ff;
    position: relative;
}

/* Section Header */
.section-faq-final .section-header {
    text-align: center;
    margin-bottom: 44px;
}
.section-faq-final .section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.section-faq-final .section-header p {
    font-size: 0.95rem;
    color: #666;
    max-width: 520px;
    margin: 0 auto;
}

/* Two column layout */
.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}

/* Category label */
.faq-category {
    margin-bottom: 22px;
}

.faq-cat-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #e94560;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8e8f5;
}

/* FAQ Items */
.faq-item {
    background: #fff;
    border: 1px solid #e8e8f5;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-item[open] {
    box-shadow: 0 4px 18px rgba(26,26,46,0.08);
    border-color: #c5cbf5;
}

.faq-item summary {
    padding: 16px 18px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
    line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-arrow {
    font-size: 0.7rem;
    color: #e94560;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: inline-block;
}
.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 18px 16px;
    border-top: 1px solid #f0f0fa;
}
.faq-answer p {
    font-size: 0.86rem;
    color: #555;
    line-height: 1.75;
    margin: 12px 0 0;
}
.faq-answer p strong { color: #1a1a2e; }

/* Mini Table inside FAQ */
.faq-table-wrap {
    margin-top: 12px;
    overflow-x: auto;
    border-radius: 8px;
}

.faq-mini-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}
.faq-mini-table thead tr {
    background: #1a1a2e;
    color: #fff;
}
.faq-mini-table th {
    padding: 8px 12px;
    text-align: left;
    font-weight: 700;
    font-size: 0.76rem;
}
.faq-mini-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #f0f0f8;
    color: #444;
}
.faq-mini-table tbody tr:last-child td { border-bottom: none; }
.faq-mini-table tbody tr:nth-child(even) { background: #f9f9ff; }

/* Contact Strip */
.faq-contact-strip {
    background: #fff;
    border: 1px solid #e8e8f5;
    border-radius: 14px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 2px 10px rgba(26,26,46,0.05);
}

.fcs-icon { font-size: 1.8rem; flex-shrink: 0; }

.fcs-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.fcs-text strong {
    font-size: 0.95rem;
    color: #1a1a2e;
}
.fcs-text span {
    font-size: 0.8rem;
    color: #888;
}

.btn-fcs {
    display: inline-block;
    background: linear-gradient(135deg, #0088cc, #006699);
    color: #fff !important;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s, opacity 0.2s;
    flex-shrink: 0;
}
.btn-fcs:hover {
    transform: translateY(-2px);
    opacity: 0.9 !important;
}

/* =========================================
   FINAL CTA SECTION
   ========================================= */
.section-final-cta {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #0a0818 0%, #1a1a2e 40%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

/* Animated BG glow */
.section-final-cta::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(233,69,96,0.12), transparent 60%);
    top: -150px; left: -150px;
    pointer-events: none;
}
.section-final-cta::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(245,166,35,0.1), transparent 60%);
    bottom: -100px; right: -100px;
    pointer-events: none;
}

/* Inner layout */
.final-cta-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 44px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Decorative card stack */
.fcta-cards-deco {
    position: absolute;
    top: -30px; right: 390px;
    display: flex;
    gap: 6px;
    opacity: 0.07;
    pointer-events: none;
    z-index: 1;
}
.deco-card {
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-family: Georgia, serif;
}

/* Badge */
.fcta-badge {
    display: inline-block;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.4);
    color: #f5a623;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

/* Title */
.fcta-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.fcta-highlight {
    background: linear-gradient(90deg, #f5a623, #e94560);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Description */
.fcta-desc {
    font-size: 0.95rem;
    color: #c8d0e0;
    line-height: 1.8;
    margin-bottom: 26px;
    max-width: 560px;
}
.fcta-desc strong { color: #fff; }

/* Stats */
.fcta-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px 24px;
    margin-bottom: 28px;
    width: fit-content;
    flex-wrap: wrap;
}

.fcta-stat { text-align: center; }
.fcta-stat strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: #f5a623;
    line-height: 1;
}
.fcta-stat span {
    font-size: 0.7rem;
    color: #aab;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
    display: block;
}
.fcta-stat-divider {
    width: 1px;
    height: 38px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* CTA Buttons */
.fcta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
    align-items: center;
}

.btn-fcta-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #e94560, #c0392b);
    color: #fff !important;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 26px rgba(233,69,96,0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.btn-fcta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(233,69,96,0.6);
    opacity: 1 !important;
}
.btn-fcta-main span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 1rem;
    font-weight: 800;
}
.btn-fcta-main small {
    font-size: 0.72rem;
    font-weight: 400;
    opacity: 0.8;
}

.btn-fcta-sec {
    display: inline-flex;
    align-items: center;
    color: #fff !important;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.25);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}
.btn-fcta-sec:hover {
    border-color: #f5a623;
    background: rgba(245,166,35,0.1);
    opacity: 1 !important;
}

/* Trust Row */
.fcta-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.fcta-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #8ab4c0;
}
.fti-icon { font-size: 1rem; }

/* ---- Earn Showcase (Right Box) ---- */
.fcta-earn-showcase {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.fes-header {
    font-size: 1rem;
    font-weight: 800;
    color: #f5a623;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.fes-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.fes-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 11px 14px;
    transition: background 0.2s;
}
.fes-row:hover { background: rgba(255,255,255,0.09); }

.fes-row-gold {
    background: rgba(245,166,35,0.1) !important;
    border-color: rgba(245,166,35,0.3) !important;
}

.fes-friends {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: #c8d0e0;
}
.fes-avatars { font-size: 1rem; }

.fes-arrow {
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

.fes-earn {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}
.fes-row-gold .fes-earn {
    color: #f5a623;
    font-size: 1.05rem;
}

.fes-note {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 14px;
    line-height: 1.5;
}

.btn-fes-download {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #e94560, #c0392b);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 13px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(233,69,96,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-fes-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(233,69,96,0.5);
    opacity: 1 !important;
}

/* Bottom Disclaimer */
.fcta-disclaimer {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    position: relative;
    z-index: 2;
}
.fcta-disclaimer p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}
.fcta-disclaimer p strong { color: rgba(255,255,255,0.55); }

/* =========================================
   RESPONSIVE
   ========================================= */

/* FAQ */
@media (max-width: 900px) {
    .faq-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .section-faq-final { padding: 50px 0 40px; }
    .faq-item summary { font-size: 0.85rem; padding: 14px 14px; }
    .faq-answer { padding: 0 14px 14px; }
    .faq-contact-strip { flex-direction: column; gap: 12px; }
    .btn-fcs { width: 100%; text-align: center; }
}

/* Final CTA */
@media (max-width: 1024px) {
    .final-cta-inner { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .fcta-cards-deco { display: none; }
    .fcta-earn-showcase { margin: 0 auto; width: 100%; }
    .fcta-title { text-align: center; }
    .fcta-badge { display: block; width: fit-content; margin: 0 auto 18px; }
    .fcta-desc { text-align: center; margin: 0 auto 26px; }
    .fcta-stats { margin: 0 auto 28px; justify-content: center; }
    .fcta-buttons { justify-content: center; }
    .fcta-trust { justify-content: center; }
}

@media (max-width: 600px) {
    .section-final-cta { padding: 55px 0 45px; }
    .fcta-title { font-size: 1.7rem; }
    .fcta-stats { gap: 14px; padding: 14px 18px; flex-wrap: wrap; justify-content: center; }
    .fcta-stat-divider { display: none; }
    .fcta-buttons { flex-direction: column; align-items: stretch; }
    .btn-fcta-main, .btn-fcta-sec { width: 100%; justify-content: center; text-align: center; }
    .fcta-trust { gap: 12px; }
    .fes-earn { font-size: 0.95rem; }
    .fes-friends { font-size: 0.78rem; }
}

@media (max-width: 380px) {
    .fcta-title { font-size: 1.5rem; }
    .fcta-desc { font-size: 0.88rem; }
    .fcta-stat strong { font-size: 1.2rem; }
    .faq-item summary { font-size: 0.82rem; }
}





/* =============================================
   ABOUT US PAGE — Complete CSS
   ============================================= */

/* ── Base & Reused ── */
.about-page { color: #222; }

.about-section { padding: 70px 0; }

.about-page .section-header {
    text-align: center;
    margin-bottom: 48px;
}
.about-page .section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.about-page .section-header p {
    font-size: 0.96rem;
    color: #666;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── HERO BANNER ── */
.about-hero {
    background: linear-gradient(135deg, #0a0818 0%, #1a1a2e 45%, #0f3460 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.about-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.15;
    pointer-events: none;
}
.ab-blob-1 {
    width: 480px; height: 480px;
    background: #e94560;
    top: -180px; left: -120px;
}
.ab-blob-2 {
    width: 400px; height: 400px;
    background: #f5a623;
    bottom: -120px; right: -80px;
}

.about-hero-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero-text .section-tag { margin-bottom: 14px; display: inline-block; }

.about-hero-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
}

.about-hero-highlight {
    background: linear-gradient(90deg, #f5a623, #e94560);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-desc {
    font-size: 0.97rem;
    color: #c8d0e0;
    line-height: 1.8;
    margin-bottom: 22px;
    max-width: 540px;
}

.about-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ah-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 20px;
}

/* Hero Stats Grid */
.about-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.ahs-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
    transition: background 0.2s;
}
.ahs-card:hover { background: rgba(255,255,255,0.11); }
.ahs-icon { font-size: 1.6rem; }
.ahs-card strong {
    font-size: 1.4rem;
    font-weight: 900;
    color: #f5a623;
    line-height: 1;
}
.ahs-card span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── WHO WE ARE ── */
.about-whowe { background: #fff; }

.about-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.atc-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Card Stack Deco */
.atc-card-stack {
    position: relative;
    width: 160px;
    height: 200px;
    margin: 0 auto;
}
.stack-card {
    position: absolute;
    width: 120px;
    height: 170px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.15);
    font-family: Georgia, serif;
    box-shadow: 0 8px 24px rgba(26,26,46,0.2);
    border: 1px solid rgba(255,255,255,0.06);
}
.sc-back  { transform: rotate(-10deg) translate(-20px, 10px); background: linear-gradient(135deg, #0f3460, #1a1a2e); }
.sc-mid   { transform: rotate(-4deg) translate(-6px, 4px); background: linear-gradient(135deg, #16213e, #1a1a2e); }
.sc-front { transform: rotate(3deg); background: linear-gradient(135deg, #1a1a2e, #e94560); color: rgba(255,255,255,0.3); }

.atc-mission-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #fff8f0, #fff);
    border: 1px solid #fde8d0;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #664d00;
    text-align: center;
    box-shadow: 0 2px 12px rgba(245,166,35,0.15);
}

.atc-content .section-tag { margin-bottom: 12px; display: inline-block; }
.atc-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}
.atc-content p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}
.atc-content p strong { color: #1a1a2e; }

.btn-about-cta {
    display: inline-block;
    background: linear-gradient(135deg, #e94560, #c0392b);
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(233,69,96,0.35);
    margin-top: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}
.btn-about-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(233,69,96,0.5);
    opacity: 1 !important;
}

/* ── GAME INFO SECTION ── */
.about-game-info { background: #f4f6ff; }

.game-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 44px;
}

.gi-card {
    background: #fff;
    border: 1px solid #e8e8f5;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 3px 16px rgba(26,26,46,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.gi-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a1a2e, #e94560);
}
.gi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(26,26,46,0.1);
}
.gi-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    line-height: 1;
}
.gi-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.gi-card p {
    font-size: 0.87rem;
    color: #555;
    line-height: 1.78;
    margin: 0;
}
.gi-card p strong { color: #e94560; }

/* Timeline */
.game-timeline {
    background: #fff;
    border: 1px solid #e8e8f5;
    border-radius: 20px;
    padding: 30px 32px;
    box-shadow: 0 3px 16px rgba(26,26,46,0.05);
}
.gt-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f0f8;
}
.gt-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.gt-line::before {
    content: '';
    position: absolute;
    top: 12px; left: 20px; right: 20px;
    height: 2px;
    background: linear-gradient(90deg, #1a1a2e, #e94560);
    z-index: 0;
}
.gt-item {
    position: relative;
    padding-top: 36px;
    padding-right: 16px;
    z-index: 1;
}
.gt-dot {
    position: absolute;
    top: 4px; left: 0;
    width: 20px; height: 20px;
    background: #fff;
    border: 3px solid #1a1a2e;
    border-radius: 50%;
}
.gt-dot-active {
    background: #e94560 !important;
    border-color: #e94560 !important;
    box-shadow: 0 0 0 4px rgba(233,69,96,0.2);
}
.gt-year {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #e94560;
    margin-bottom: 5px;
    background: rgba(233,69,96,0.08);
    padding: 2px 8px;
    border-radius: 10px;
}
.gt-content strong {
    display: block;
    font-size: 0.88rem;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 4px;
}
.gt-content p {
    font-size: 0.77rem;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* ── MISSION & VALUES ── */
.about-mission { background: #fff; }

.mission-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 36px;
}
.mv-card {
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid;
    transition: transform 0.2s;
}
.mv-card:hover { transform: translateY(-4px); }

.mv-mission {
    background: linear-gradient(135deg, #f0f4ff, #fff);
    border-color: #d4daff;
}
.mv-vision {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-color: #2a2a4e;
}
.mv-promise {
    background: linear-gradient(135deg, #fff8f0, #fff);
    border-color: #fde8d0;
}

.mvc-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.mvc-icon { font-size: 1.8rem; }
.mv-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a2e;
}
.mv-vision h3 { color: #f5a623; }
.mv-promise h3 { color: #c0392b; }

.mv-card p {
    font-size: 0.87rem;
    color: #555;
    line-height: 1.78;
    margin: 0;
}
.mv-vision p { color: rgba(255,255,255,0.75); }
.mv-card p strong { color: #1a1a2e; }
.mv-vision p strong { color: #fff; }

/* Core Values */
.core-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.cv-item {
    background: #f9f9ff;
    border: 1px solid #e8e8f5;
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cv-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26,26,46,0.08);
}
.cv-icon { font-size: 1.8rem; }
.cv-item strong {
    font-size: 0.9rem;
    font-weight: 800;
    color: #1a1a2e;
}
.cv-item p {
    font-size: 0.77rem;
    color: #888;
    margin: 0;
}

/* ── WHY CHOOSE US ── */
.about-why { background: #f4f6ff; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.why-item {
    background: #fff;
    border: 1px solid #e8e8f5;
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 2px 12px rgba(26,26,46,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.why-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26,26,46,0.1);
}
.wi-num {
    font-size: 1.1rem;
    font-weight: 900;
    color: #e94560;
    opacity: 0.4;
    flex-shrink: 0;
    line-height: 1.3;
    font-family: Georgia, serif;
}
.wi-body h4 {
    font-size: 0.92rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.wi-body p {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* ── APP INFO BANNER ── */
.about-app-box {
    padding: 40px 0;
    background: #fff;
}
.app-info-banner {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    border-radius: 20px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    box-shadow: 0 8px 28px rgba(26,26,46,0.2);
}
.aib-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.aib-app-icon {
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}
.aib-app-info h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}
.aib-app-info span {
    font-size: 0.77rem;
    color: rgba(255,255,255,0.55);
    display: block;
    margin-bottom: 5px;
}
.aib-stars { font-size: 0.82rem; color: #f5a623; }
.aib-stars small { color: rgba(255,255,255,0.5); margin-left: 5px; }

.aib-specs {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    min-width: 260px;
}
.aib-spec-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 10px 14px;
}
.aib-spec-label {
    display: block;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}
.aib-spec-val {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}
.aib-highlight { color: #f5a623 !important; }

.btn-aib-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e94560, #c0392b);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(233,69,96,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-aib-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(233,69,96,0.55);
    opacity: 1 !important;
}

/* ── DISCLAIMER ── */
.about-disclaimer { background: #fffbf0; padding: 50px 0; }

.disclaimer-box {
    border: 1px solid #fde08a;
    border-radius: 18px;
    padding: 32px 36px;
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 3px 14px rgba(245,166,35,0.1);
}
.db-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #664d00;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #fde8d0;
}
.db-content p {
    font-size: 0.87rem;
    color: #5a4500;
    line-height: 1.78;
    margin-bottom: 12px;
}
.db-content p:last-child { margin-bottom: 0; }
.db-content p strong { color: #3d2900; }

.db-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.db-tags span {
    background: rgba(245,166,35,0.12);
    border: 1px solid rgba(245,166,35,0.3);
    color: #664d00;
    font-size: 0.77rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
}

/* ── CONTACT CTA ── */
.about-contact-cta {
    background: linear-gradient(135deg, #f4f6ff 0%, #fff 100%);
    padding: 70px 0;
}
.contact-cta-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 44px;
    align-items: center;
}
.ccta-left h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.ccta-left p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.78;
    margin-bottom: 22px;
}

.ccta-social { display: flex; flex-wrap: wrap; gap: 12px; }

.ccta-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.83rem;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}
.ccta-social-btn:hover { transform: translateY(-2px); opacity: 0.88 !important; }
.csb-tg { background: #0088cc; }
.csb-wa { background: #25D366; }
.csb-ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }

.ccta-download-box {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(26,26,46,0.18);
}
.ccta-db-icon { font-size: 3rem; margin-bottom: 14px; }
.ccta-download-box h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
.ccta-download-box p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 18px;
}

.btn-ccta-download {
    display: block;
    background: linear-gradient(135deg, #e94560, #c0392b);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 13px 20px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(233,69,96,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 12px;
}
.btn-ccta-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(233,69,96,0.55);
    opacity: 1 !important;
}
.ccta-trust {
    display: flex;
    justify-content: center;
    gap: 14px;
}
.ccta-trust span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* =============================================
   RESPONSIVE — ABOUT US PAGE
   ============================================= */

@media (max-width: 1100px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .about-hero-inner { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; text-align: center; }
    .about-hero-badges { justify-content: center; }
    .about-hero-desc { margin: 0 auto 22px; }
    .about-hero-stats { grid-template-columns: repeat(4, 1fr); }
    .contact-cta-inner { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; text-align: center; }
    .ccta-social { justify-content: center; }
}

@media (max-width: 900px) {
    .about-two-col { grid-template-columns: 1fr; gap: 36px; }
    .atc-visual { order: -1; }
    .game-info-grid { grid-template-columns: 1fr; }
    .mission-values-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 36px; }
    .core-values { grid-template-columns: repeat(2, 1fr); }
    .gt-line { grid-template-columns: 1fr; }
    .gt-line::before { top: 0; left: 8px; right: auto; width: 2px; height: 100%; }
    .gt-item { padding-top: 0; padding-left: 36px; padding-bottom: 22px; }
    .gt-dot { top: 0; left: 0; }
    .app-info-banner { flex-direction: column; align-items: flex-start; }
    .aib-specs { grid-template-columns: repeat(3, 1fr); width: 100%; }
    .btn-aib-download { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
    .about-section { padding: 50px 0; }
    .about-hero { padding: 60px 0; }
    .about-hero-stats { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .disclaimer-box { padding: 24px 20px; }
}

@media (max-width: 600px) {
    .core-values { grid-template-columns: repeat(2, 1fr); }
    .aib-specs { grid-template-columns: repeat(2, 1fr); }
    .db-tags { gap: 8px; }
    .about-hero-stats { grid-template-columns: repeat(2, 1fr); }
    .mission-values-grid { max-width: 100%; }
}

@media (max-width: 480px) {
    .about-hero-title { font-size: 1.7rem; }
    .about-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ahs-card { padding: 16px 12px; }
    .ahs-card strong { font-size: 1.2rem; }
    .stack-card { width: 100px; height: 140px; font-size: 3rem; }
    .atc-card-stack { width: 130px; height: 170px; }
    .core-values { grid-template-columns: 1fr 1fr; }
    .ccta-trust { gap: 10px; }
}



/* =============================================
   DISCLAIMER PAGE — Complete CSS
   ============================================= */

.disclaimer-page { color: #222; }

/* ── Common Section ── */
.disc-section { padding: 60px 0; background: #fff; }
.disc-section-alt { background: #f4f6ff; }
.disc-section-dark {
    background: linear-gradient(135deg, #0a0818, #1a1a2e);
    color: #fff;
}

/* Section Tag */
.disc-section .section-tag,
.disc-hero .section-tag {
    display: inline-block;
    background: rgba(233,69,96,0.1);
    color: #e94560;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.tag-light {
    background: rgba(255,255,255,0.1) !important;
    color: #f5a623 !important;
}

/* ── HERO BANNER ── */
.disc-hero {
    background: linear-gradient(135deg, #0a0818 0%, #1a1a2e 45%, #16213e 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.disc-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.12;
    pointer-events: none;
}
.dh-blob-1 { width: 450px; height: 450px; background: #e94560; top: -160px; left: -100px; }
.dh-blob-2 { width: 380px; height: 380px; background: #f5a623; bottom: -100px; right: -80px; }

.disc-hero-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.disc-hero-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.disc-hero-highlight {
    background: linear-gradient(90deg, #f5a623, #e94560);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.disc-hero-desc {
    font-size: 0.95rem;
    color: #c8d0e0;
    line-height: 1.8;
    margin-bottom: 22px;
    max-width: 520px;
}
.disc-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.dh-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 20px;
}

/* Alert Cards */
.disc-hero-alerts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.dha-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-radius: 14px;
    padding: 16px 18px;
    border: 1px solid;
}
.dha-warn  { background: rgba(233,69,96,0.1);  border-color: rgba(233,69,96,0.25); }
.dha-info  { background: rgba(245,166,35,0.1); border-color: rgba(245,166,35,0.25); }
.dha-legal { background: rgba(66,165,245,0.1); border-color: rgba(66,165,245,0.25); }

.dha-icon { font-size: 1.4rem; flex-shrink: 0; }
.dha-card strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}
.dha-card p { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.4; }

/* ── TABLE OF CONTENTS ── */
.disc-toc-section { padding: 40px 0; background: #f9f9ff; }
.disc-toc {
    background: #fff;
    border: 1px solid #e8e8f5;
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 3px 16px rgba(26,26,46,0.05);
}
.toc-title {
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f0f8;
}
.toc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.toc-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f4f6ff;
    border: 1px solid #e8e8f5;
    border-radius: 10px;
    padding: 10px 12px;
    text-decoration: none;
    color: #333 !important;
    font-size: 0.78rem;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    line-height: 1.3;
}
.toc-item:hover {
    background: #1a1a2e;
    border-color: #1a1a2e;
    color: #fff !important;
    transform: translateY(-2px);
    opacity: 1 !important;
}
.toc-num {
    font-size: 0.65rem;
    font-weight: 800;
    color: #e94560;
    flex-shrink: 0;
}
.toc-item:hover .toc-num { color: #f5a623; }

/* ── CONTENT BLOCKS ── */
.disc-content-block {
    max-width: 900px;
    margin: 0 auto;
}
.dcb-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f0f0f8;
}
.disc-section-alt .dcb-header { border-color: #e4e8f8; }

.dcb-num {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(233,69,96,0.12);
    font-family: Georgia, serif;
    line-height: 1;
    flex-shrink: 0;
}
.dcb-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.dcb-icon { font-size: 1.8rem; flex-shrink: 0; }
.dcb-title-wrap h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}

.dcb-body p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 16px;
}
.dcb-body p strong { color: #1a1a2e; }
.dcb-body p:last-child { margin-bottom: 0; }

/* Highlight Box */
.disc-highlight-box {
    background: linear-gradient(90deg, #fff8f0, #fff);
    border-left: 4px solid #f5a623;
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    margin-bottom: 18px;
}
.disc-highlight-box p {
    margin: 0;
    font-size: 0.9rem;
    color: #5a3a00;
    font-weight: 500;
}
.disc-highlight-box p strong { color: #3d2400; }

/* Info Grid */
.disc-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.dig-card {
    border-radius: 14px;
    padding: 20px;
    border: 1px solid;
}
.dig-what { background: #f0fff4; border-color: #b7ebc8; }
.dig-not  { background: #fff5f5; border-color: #fcc; }
.dig-card h4 { font-size: 0.9rem; font-weight: 800; color: #1a1a2e; margin-bottom: 10px; }
.dig-card p  { font-size: 0.84rem; color: #555; line-height: 1.7; margin: 0; }
.dig-card p strong { color: #1a1a2e; }

/* Age Warning Banner */
.age-warning-banner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}
.awb-icon {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
}
.awb-content h3 { font-size: 1rem; font-weight: 800; color: #f5a623; margin-bottom: 8px; }
.awb-content p  { font-size: 0.86rem; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.6; }

/* Age Checklist */
.age-checklist {
    background: #f0fff4;
    border: 1px solid #b7ebc8;
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 16px;
}
.age-checklist h4 { font-size: 0.9rem; font-weight: 800; color: #1b4332; margin-bottom: 14px; }
.age-checklist ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.age-checklist li { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; color: #2d6a4f; font-weight: 500; }
.acl-icon { font-size: 1rem; flex-shrink: 0; }

/* Legal States */
.legal-states-wrap { margin-top: 18px; }
.lst-title { font-size: 0.9rem; font-weight: 800; color: #1a1a2e; margin-bottom: 14px; }
.legal-states-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 14px;
}
.ls-group {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid;
}
.ls-allowed  { border-color: #b7ebc8; }
.ls-restricted { border-color: #fcc; }
.ls-group-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 12px 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ls-allowed  .ls-group-header { background: #d1fae5; color: #065f46; }
.ls-restricted .ls-group-header { background: #fee2e2; color: #7f1d1d; }
.ls-group ul { list-style: none; padding: 12px 16px; display: flex; flex-direction: column; gap: 6px; background: #fff; }
.ls-group li { font-size: 0.82rem; color: #444; padding: 3px 0; border-bottom: 1px solid #f5f5f5; }
.ls-group li:last-child { border-bottom: none; }

.lst-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fffbf0;
    border: 1px solid #fde08a;
    border-radius: 10px;
    padding: 12px 16px;
}
.lst-note span { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.lst-note p { font-size: 0.8rem; color: #664d00; line-height: 1.6; margin: 0; }
.lst-note p strong { color: #3d2900; }

/* Risk Warning */
.risk-warning-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #fff5f5, #fff);
    border: 1px solid #fcc;
    border-left: 4px solid #e94560;
    border-radius: 0 14px 14px 0;
    padding: 18px 20px;
    margin-bottom: 18px;
}
.rwb-icon { font-size: 2rem; flex-shrink: 0; }
.risk-warning-box p { font-size: 0.9rem; color: #7f1d1d; line-height: 1.7; margin: 0; }
.risk-warning-box p strong { color: #450a0a; }

.risk-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}
.rt-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f9f9ff;
    border: 1px solid #e8e8f5;
    border-radius: 12px;
    padding: 16px;
}
.rt-icon { font-size: 1.6rem; flex-shrink: 0; }
.rt-item strong { display: block; font-size: 0.88rem; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
.rt-item p { font-size: 0.79rem; color: #666; line-height: 1.55; margin: 0; }

/* Responsible Gaming */
.rg-signs {
    background: #fff5f5;
    border: 1px solid #fcc;
    border-radius: 16px;
    padding: 22px 24px;
    margin-bottom: 20px;
}
.rg-signs h4 { font-size: 0.9rem; font-weight: 800; color: #7f1d1d; margin-bottom: 16px; }
.rg-signs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.rg-sign-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: #555;
    line-height: 1.5;
}
.rg-sign-item span { font-size: 1.2rem; flex-shrink: 0; }

.rg-help-box {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    border-radius: 16px;
    padding: 22px 24px;
}
.rg-help-box h4 { font-size: 0.95rem; font-weight: 800; color: #f5a623; margin-bottom: 10px; }
.rg-help-box p  { font-size: 0.86rem; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.rg-help-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.rg-help-list li { font-size: 0.84rem; color: rgba(255,255,255,0.8); padding-left: 14px; position: relative; }
.rg-help-list li::before { content: '→'; position: absolute; left: 0; color: #f5a623; }
.rg-help-list li strong { color: #f5a623; }

/* Third Party Notice */
.tp-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f0f9ff;
    border: 1px solid #bde3f9;
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 16px;
}
.tp-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.tp-notice p { font-size: 0.82rem; color: #0c4a6e; line-height: 1.65; margin: 0; }
.tp-notice p strong { color: #0a3454; }

/* Accuracy Table */
.accuracy-table-wrap {
    margin-top: 18px;
    overflow-x: auto;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(26,26,46,0.05);
}
.accuracy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.86rem;
    background: #fff;
}
.accuracy-table thead tr { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.accuracy-table th {
    padding: 13px 18px;
    text-align: left;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}
.accuracy-table td {
    padding: 12px 18px;
    border-bottom: 1px solid #f0f0f8;
    color: #444;
}
.accuracy-table tbody tr:last-child td { border-bottom: none; }
.accuracy-table tbody tr:nth-child(even) { background: #fafaff; }
.accuracy-table tbody tr:hover { background: #f0f2ff; }

/* Referral Notice */
.referral-notice-box {
    background: linear-gradient(90deg, #f0f4ff, #fff);
    border-left: 4px solid #1a1a2e;
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    margin-bottom: 16px;
}
.referral-notice-box p { margin: 0; font-size: 0.9rem; color: #333; }
.referral-notice-box p strong { color: #1a1a2e; }

.referral-factors {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0 16px;
}
.referral-factors li { display: flex; align-items: center; gap: 10px; font-size: 0.87rem; color: #555; }
.rf-bullet { color: #e94560; font-weight: 700; font-size: 1rem; flex-shrink: 0; }

.tax-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff8f0;
    border: 1px solid #fde8d0;
    border-radius: 12px;
    padding: 16px 18px;
    margin-top: 16px;
}
.tn-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.tax-notice strong { display: block; font-size: 0.88rem; font-weight: 800; color: #7c3a00; margin-bottom: 5px; }
.tax-notice p { font-size: 0.82rem; color: #664d00; line-height: 1.65; margin: 0; }
.tax-notice p strong { display: inline; font-size: inherit; color: #3d2400; }

/* ── CONTACT SECTION ── */
.disc-contact-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 44px;
    align-items: start;
}
.dcw-left h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}
.dcw-left p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.78; margin-bottom: 14px; }

.disc-contact-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.disc-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}
.disc-contact-btn:hover { transform: translateY(-2px); opacity: 0.88 !important; }
.dcb-tg { background: #0088cc; }
.dcb-wa { background: #25D366; }

/* Summary Card */
.disc-summary-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 24px;
    backdrop-filter: blur(8px);
}
.disc-summary-card h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #f5a623;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.dsc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.dsc-list li { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: rgba(255,255,255,0.75); }
.dscl-icon { font-size: 1rem; flex-shrink: 0; }
.dsc-updated {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.35);
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.dsc-updated strong { color: rgba(255,255,255,0.6); }

/* =============================================
   RESPONSIVE — DISCLAIMER PAGE
   ============================================= */

@media (max-width: 1100px) {
    .toc-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
    .disc-hero-inner  { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; text-align: center; }
    .disc-hero-badges { justify-content: center; }
    .disc-hero-desc   { margin: 0 auto 22px; }
    .disc-hero-alerts { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .dha-card         { flex: 1; min-width: 200px; }
    .disc-contact-wrap { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; text-align: center; }
    .disc-contact-btns { justify-content: center; }
}

@media (max-width: 900px) {
    .toc-grid { grid-template-columns: repeat(3, 1fr); }
    .legal-states-grid { grid-template-columns: 1fr; }
    .rg-signs-grid { grid-template-columns: repeat(2, 1fr); }
    .risk-tips-grid { grid-template-columns: 1fr; }
    .disc-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .disc-section { padding: 45px 0; }
    .disc-hero  { padding: 60px 0; }
    .disc-toc   { padding: 20px; }
    .toc-grid   { grid-template-columns: repeat(2, 1fr); }
    .disc-content-block { max-width: 100%; }
    .age-warning-banner { flex-direction: column; gap: 12px; text-align: center; }
    .disc-hero-alerts { flex-direction: column; }
    .dha-card { min-width: unset; }
}

@media (max-width: 600px) {
    .disc-hero-title  { font-size: 1.7rem; }
    .toc-grid         { grid-template-columns: repeat(2, 1fr); }
    .rg-signs-grid    { grid-template-columns: 1fr; }
    .accuracy-table th,
    .accuracy-table td { padding: 10px 12px; font-size: 0.78rem; }
    .dcb-header       { flex-direction: row; }
    .dcb-num          { font-size: 1.5rem; }
    .risk-warning-box { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
    .disc-hero-title { font-size: 1.55rem; }
    .toc-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .toc-item { font-size: 0.72rem; padding: 8px 10px; }
    .dcb-title-wrap h2 { font-size: 1.1rem; }
    .ls-group ul { padding: 10px 12px; }
    .ls-group li { font-size: 0.78rem; }
}

@media (max-width: 380px) {
    .toc-grid { grid-template-columns: 1fr; }
    .disc-hero-title { font-size: 1.4rem; }
    .disc-hero-badges { flex-direction: column; align-items: center; }
}




/* =============================================
   PRIVACY POLICY PAGE — Complete CSS
   ============================================= */

.privacy-page { color: #222; }
.priv-section { padding: 60px 0; background: #fff; }
.priv-section-alt  { background: #f4f6ff; }
.priv-section-dark {
  background: linear-gradient(135deg, #0a0818, #1a1a2e);
  color: #fff;
}

/* Section Tag */
.priv-hero .section-tag,
.priv-section .section-tag {
  display: inline-block;
  background: rgba(233,69,96,0.1);
  color: #e94560;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.tag-light {
  background: rgba(255,255,255,0.1) !important;
  color: #f5a623 !important;
}

/* ── HERO ── */
.priv-hero {
  background: linear-gradient(135deg, #0a0818 0%, #1a1a2e 45%, #16213e 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.priv-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  pointer-events: none;
}
.ph-blob-1 { width: 450px; height: 450px; background: #e94560; top: -150px; left: -100px; }
.ph-blob-2 { width: 380px; height: 380px; background: #0088cc; bottom: -100px; right: -80px; }

.priv-hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.priv-hero-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.priv-hero-highlight {
  background: linear-gradient(90deg, #0088cc, #e94560);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.priv-hero-desc {
  font-size: 0.95rem;
  color: #c8d0e0;
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 520px;
}
.priv-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.ph-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
}

/* Hero Cards */
.priv-hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.phc-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid;
}
.phc-green { background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.25); }
.phc-red   { background: rgba(233,69,96,0.1);  border-color: rgba(233,69,96,0.25); }
.phc-blue  { background: rgba(0,136,204,0.1);  border-color: rgba(0,136,204,0.25); }
.phc-gold  { background: rgba(245,166,35,0.1); border-color: rgba(245,166,35,0.25); }
.phc-icon  { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.phc-card strong { display: block; font-size: 0.84rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.phc-card p { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.4; }

/* ── TOC ── */
.priv-toc-section { padding: 40px 0; background: #f9f9ff; }
.priv-toc {
  background: #fff;
  border: 1px solid #e8e8f5;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 3px 16px rgba(26,26,46,0.05);
}
.ptoc-title {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f0f8;
}
.ptoc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.ptoc-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f4f6ff;
  border: 1px solid #e8e8f5;
  border-radius: 10px;
  padding: 10px 10px;
  text-decoration: none;
  color: #333 !important;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
  line-height: 1.3;
}
.ptoc-item:hover {
  background: #1a1a2e;
  border-color: #1a1a2e;
  color: #fff !important;
  transform: translateY(-2px);
  opacity: 1 !important;
}
.ptoc-num {
  font-size: 0.62rem;
  font-weight: 800;
  color: #e94560;
  flex-shrink: 0;
}
.ptoc-item:hover .ptoc-num { color: #f5a623; }

/* ── CONTENT BLOCKS ── */
.priv-block { max-width: 900px; margin: 0 auto; }

.pb-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid #f0f0f8;
}
.priv-section-alt .pb-header { border-color: #e4e8f8; }

.pb-num {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(0,136,204,0.12);
  font-family: Georgia, serif;
  line-height: 1;
  flex-shrink: 0;
}
.pb-title-wrap { display: flex; align-items: center; gap: 12px; }
.pb-icon { font-size: 1.8rem; flex-shrink: 0; }
.pb-title-wrap h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0;
}
.pb-body p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 16px;
}
.pb-body p strong { color: #1a1a2e; }
.pb-body p:last-child { margin-bottom: 0; }

/* Highlight Box */
.priv-highlight {
  background: linear-gradient(90deg, #f0f8ff, #fff);
  border-left: 4px solid #0088cc;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin-bottom: 18px;
}
.priv-highlight p { margin: 0; font-size: 0.9rem; color: #003d5c; font-weight: 500; }
.priv-highlight p strong { color: #001f33; }

/* ── Data Categories Grid ── */
.data-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}
.dc-card {
  background: #fff;
  border: 1px solid #e8e8f5;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(26,26,46,0.04);
}
.dc-personal { border-top: 3px solid #34d399; }
.dc-technical { border-top: 3px solid #0088cc; }
.dc-usage    { border-top: 3px solid #a855f7; }
.dc-cookies  { border-top: 3px solid #f5a623; }

.dc-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.dc-icon { font-size: 1.4rem; }
.dc-card-header h3 { font-size: 0.92rem; font-weight: 800; color: #1a1a2e; flex: 1; margin: 0; }
.dc-tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.dc-tag-opt    { background: #d1fae5; color: #065f46; }
.dc-tag-auto   { background: #dbeafe; color: #1e40af; }
.dc-tag-consent{ background: #fef3c7; color: #92400e; }

.dc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.dc-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.8rem; color: #555; line-height: 1.5; }
.dcl-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34d399;
  flex-shrink: 0;
  margin-top: 5px;
}
.dcl-blue   { background: #0088cc; }
.dcl-purple { background: #a855f7; }
.dcl-orange { background: #f5a623; }

/* Don't Collect Box */
.dont-collect-box {
  background: linear-gradient(135deg, #fff5f5, #fff);
  border: 1px solid #fcc;
  border-radius: 14px;
  padding: 20px 22px;
}
.dont-collect-box h4 { font-size: 0.9rem; font-weight: 800; color: #7f1d1d; margin-bottom: 14px; }
.dcb-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.dcb-tags span {
  background: #fee2e2;
  color: #7f1d1d;
  font-size: 0.77rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #fca5a5;
}
.dont-collect-box p { font-size: 0.83rem; color: #7f1d1d; margin: 0; line-height: 1.6; }
.dont-collect-box p strong { color: #450a0a; }

/* ── How Collect Grid ── */
.how-collect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.hc-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f9f9ff;
  border: 1px solid #e8e8f5;
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hc-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26,26,46,0.08);
}
.hci-icon-wrap {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #f0f2ff, #e8ecff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 1px solid #d8dcff;
}
.hci-body h4 { font-size: 0.9rem; font-weight: 800; color: #1a1a2e; margin-bottom: 6px; }
.hci-body p { font-size: 0.82rem; color: #666; line-height: 1.65; margin: 0; }
.hci-body p strong { color: #1a1a2e; }

/* ── Usage List ── */
.usage-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.ul-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #e8e8f5;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 2px 8px rgba(26,26,46,0.03);
}
.ul-primary { border-left: 4px solid #0088cc; }
.uli-num {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.uli-content h4 { font-size: 0.9rem; font-weight: 800; color: #1a1a2e; margin-bottom: 4px; }
.uli-content p  { font-size: 0.82rem; color: #666; line-height: 1.6; margin: 0; }

/* Legal Basis Box */
.legal-basis-box {
  background: linear-gradient(135deg, #f0f4ff, #fff);
  border: 1px solid #d4daff;
  border-radius: 14px;
  padding: 20px 22px;
  margin-top: 10px;
}
.legal-basis-box h4 { font-size: 0.9rem; font-weight: 800; color: #1a1a2e; margin-bottom: 14px; }
.lbb-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.lbb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e8e8f5;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #444;
}
.lbb-icon { font-size: 1.1rem; flex-shrink: 0; }
.lbb-item strong { color: #1a1a2e; }

/* ── Share Table ── */
.share-promise-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(90deg, #f0fff4, #fff);
  border: 1px solid #b7ebc8;
  border-left: 4px solid #34d399;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.spb-icon { font-size: 1.8rem; flex-shrink: 0; }
.share-promise-banner p { font-size: 0.9rem; color: #1b4332; margin: 0; line-height: 1.7; }
.share-promise-banner p strong { color: #0a2e1d; }

.share-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(26,26,46,0.05);
  margin-bottom: 16px;
}
.share-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  background: #fff;
}
.share-table thead tr { background: linear-gradient(135deg, #1a1a2e, #0f3460); }
.share-table th { padding: 12px 18px; text-align: left; color: #fff; font-size: 0.8rem; font-weight: 700; }
.share-table td { padding: 12px 18px; border-bottom: 1px solid #f0f0f8; color: #444; }
.share-table tbody tr:last-child td { border-bottom: none; }
.share-table tbody tr:nth-child(even) { background: #fafaff; }
.share-table tbody tr:hover { background: #f0f2ff; }
.st-partner { font-weight: 600; color: #1a1a2e; }

/* ── Cookies Types ── */
.cookies-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}
.ct-item {
  background: #fff;
  border: 1px solid #e8e8f5;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 2px 10px rgba(26,26,46,0.04);
}
.ct-essential { border-top: 3px solid #e94560; }
.ct-analytics  { border-top: 3px solid #0088cc; }
.ct-preference { border-top: 3px solid #a855f7; }
.ct-marketing  { border-top: 3px solid #f5a623; }

.ct-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.ct-icon { font-size: 1.3rem; }
.ct-header h4 { font-size: 0.88rem; font-weight: 800; color: #1a1a2e; flex: 1; margin: 0; }
.ct-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}
.ct-required { background: #fee2e2; color: #7f1d1d; }
.ct-optional  { background: #dbeafe; color: #1e40af; }
.ct-consent   { background: #fef3c7; color: #92400e; }

.ct-item p { font-size: 0.8rem; color: #666; line-height: 1.65; margin: 0; }

/* Cookie Control */
.cookie-control-box {
  background: #f9f9ff;
  border: 1px solid #e8e8f5;
  border-radius: 14px;
  padding: 20px 22px;
}
.cookie-control-box h4 { font-size: 0.9rem; font-weight: 800; color: #1a1a2e; margin-bottom: 8px; }
.cookie-control-box > p { font-size: 0.85rem; color: #555; margin-bottom: 14px; }
.ccb-browsers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.ccb-browser {
  background: #fff;
  border: 1px solid #e8e8f5;
  border-radius: 10px;
  padding: 10px 12px;
}
.ccb-browser strong { display: block; font-size: 0.78rem; color: #1a1a2e; margin-bottom: 3px; }
.ccb-browser span { font-size: 0.73rem; color: #888; }
.ccb-note { font-size: 0.78rem; color: #888; margin: 0 !important; font-style: italic; }

/* ── Security Grid ── */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}
.sg-item {
  background: #fff;
  border: 1px solid #e8e8f5;
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(26,26,46,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sg-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(26,26,46,0.1);
}
.sg-icon-wrap {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}
.sg-item h4 { font-size: 0.88rem; font-weight: 800; color: #1a1a2e; margin-bottom: 8px; }
.sg-item p  { font-size: 0.8rem; color: #666; line-height: 1.65; margin: 0; }
.sg-item p strong { color: #0088cc; }

.security-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fffbf0;
  border: 1px solid #fde08a;
  border-radius: 12px;
  padding: 14px 18px;
}
.sn-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.security-note p { font-size: 0.82rem; color: #664d00; line-height: 1.65; margin: 0; }
.security-note p strong { color: #3d2900; }

/* ── Retention Table ── */
.retention-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(26,26,46,0.05);
  margin-top: 16px;
}
.retention-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  background: #fff;
}
.retention-table thead tr { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.retention-table th { padding: 12px 18px; text-align: left; color: #fff; font-size: 0.8rem; font-weight: 700; }
.retention-table td { padding: 12px 18px; border-bottom: 1px solid #f0f0f8; color: #444; }
.retention-table tbody tr:last-child td { border-bottom: none; }
.retention-table tbody tr:nth-child(even) { background: #fafaff; }
.retention-table tbody tr:hover { background: #f0f2ff; }

/* ── Rights Grid ── */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}
.rg-item {
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e8e8f5;
  background: #fff;
  box-shadow: 0 2px 10px rgba(26,26,46,0.04);
  transition: transform 0.2s;
}
.rg-item:hover { transform: translateY(-3px); }
.rg-access  { border-top: 3px solid #0088cc; }
.rg-correct { border-top: 3px solid #34d399; }
.rg-delete  { border-top: 3px solid #e94560; }
.rg-restrict{ border-top: 3px solid #f5a623; }
.rg-port    { border-top: 3px solid #a855f7; }
.rg-withdraw{ border-top: 3px solid #6b7280; }

.rgi-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.rgi-icon   { font-size: 1.3rem; }
.rgi-header h4 { font-size: 0.88rem; font-weight: 800; color: #1a1a2e; margin: 0; }
.rg-item p { font-size: 0.8rem; color: #666; line-height: 1.65; margin: 0; }

.rights-request-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #f0f8ff, #fff);
  border: 1px solid #bde3f9;
  border-radius: 14px;
  padding: 18px 20px;
}
.rrb-icon { font-size: 1.8rem; flex-shrink: 0; }
.rights-request-box h4 { font-size: 0.9rem; font-weight: 800; color: #1a1a2e; margin-bottom: 6px; }
.rights-request-box p  { font-size: 0.84rem; color: #555; line-height: 1.7; margin: 0; }
.rights-request-box p strong { color: #1a1a2e; }

/* ── Children Warning ── */
.children-warning {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 18px;
}
.cw-icon { font-size: 3rem; flex-shrink: 0; line-height: 1; }
.cw-content h3 { font-size: 1rem; font-weight: 800; color: #f5a623; margin-bottom: 8px; }
.cw-content p  { font-size: 0.86rem; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.65; }

/* ── Changes Process ── */
.changes-process {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.cp-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 200px;
  background: #f9f9ff;
  border: 1px solid #e8e8f5;
  border-radius: 14px;
  padding: 18px;
}
.cp-step-num {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #0088cc, #006699);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cp-step-body h4 { font-size: 0.86rem; font-weight: 800; color: #1a1a2e; margin-bottom: 4px; }
.cp-step-body p  { font-size: 0.78rem; color: #666; margin: 0; line-height: 1.5; }
.cp-arrow { font-size: 1.5rem; color: #ccc; align-self: center; flex-shrink: 0; }

.version-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: #f9f9ff;
  border: 1px solid #e8e8f5;
  border-radius: 14px;
  padding: 18px 22px;
}
.vb-item { text-align: center; }
.vb-item strong { display: block; font-size: 0.72rem; color: #888; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.vb-item span   { font-size: 0.88rem; font-weight: 700; color: #1a1a2e; }

/* ── Contact ── */
.priv-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 44px;
  align-items: start;
}
.pcw-left h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.pcw-left p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.78; margin-bottom: 14px; }

.pcw-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.pcw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.pcw-btn:hover { transform: translateY(-2px); opacity: 0.88 !important; }
.pcw-tg { background: #0088cc; }
.pcw-wa { background: #25D366; }

/* Summary Card */
.priv-summary-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(8px);
}
.priv-summary-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0088cc;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.psc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
}
.psc-list li { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.psc-list li span:first-child { font-size: 0.9rem; flex-shrink: 0; }

.psc-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.35);
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 6px;
}

/* =============================================
   RESPONSIVE — PRIVACY POLICY PAGE
   ============================================= */

@media (max-width: 1200px) {
  .ptoc-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .priv-hero-inner { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; text-align: center; }
  .priv-hero-desc  { margin: 0 auto 22px; }
  .priv-hero-badges { justify-content: center; }
  .priv-hero-cards  { grid-template-columns: repeat(2, 1fr); }
  .priv-contact-wrap { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; text-align: center; }
  .pcw-btns { justify-content: center; }
  .version-box { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .ptoc-grid     { grid-template-columns: repeat(3, 1fr); }
  .data-cat-grid { grid-template-columns: 1fr; }
  .how-collect-grid { grid-template-columns: 1fr; }
  .cookies-types-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .rights-grid   { grid-template-columns: repeat(2, 1fr); }
  .ccb-browsers  { grid-template-columns: repeat(2, 1fr); }
  .lbb-grid      { grid-template-columns: 1fr; }
  .changes-process { flex-direction: column; }
  .cp-arrow { transform: rotate(90deg); align-self: center; }
}

@media (max-width: 768px) {
  .priv-section { padding: 45px 0; }
  .priv-hero { padding: 60px 0; }
  .priv-toc  { padding: 20px; }
  .ptoc-grid { grid-template-columns: repeat(2, 1fr); }
  .priv-block { max-width: 100%; }
  .children-warning { flex-direction: column; gap: 12px; text-align: center; }
  .priv-hero-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .priv-hero-title { font-size: 1.7rem; }
  .security-grid   { grid-template-columns: 1fr; }
  .rights-grid     { grid-template-columns: 1fr; }
  .version-box     { grid-template-columns: repeat(2, 1fr); }
  .ccb-browsers    { grid-template-columns: 1fr 1fr; }
  .share-table th,
  .share-table td,
  .retention-table th,
  .retention-table td { padding: 9px 11px; font-size: 0.77rem; }
  .priv-hero-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .priv-hero-title { font-size: 1.55rem; }
  .ptoc-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ptoc-item { font-size: 0.7rem; padding: 8px 9px; }
  .pb-title-wrap h2 { font-size: 1.1rem; }
  .pb-num { font-size: 1.5rem; }
  .version-box { grid-template-columns: 1fr 1fr; }
  .ccb-browsers { grid-template-columns: 1fr; }
  .priv-hero-badges { flex-direction: column; align-items: center; }
}

@media (max-width: 380px) {
  .ptoc-grid { grid-template-columns: 1fr; }
  .priv-hero-title { font-size: 1.4rem; }
  .dc-card-header { flex-wrap: wrap; }
  .data-cat-grid { gap: 14px; }
}





/* =============================================
   BLOG LISTING PAGE — Complete CSS (2026)
   ============================================= */

.blog-page { color: #1a1a2e; background: #f4f6ff; }

/* ── HERO ── */
.blog-hero {
  background: linear-gradient(135deg, #0a0818 0%, #1a1a2e 45%, #0f3460 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.bh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
  pointer-events: none;
}
.bh-blob-1 { width: 500px; height: 500px; background: #e94560; top: -200px; left: -150px; }
.bh-blob-2 { width: 400px; height: 400px; background: #f5a623; bottom: -120px; right: -100px; }
.bh-blob-3 { width: 300px; height: 300px; background: #0088cc; top: 50%;  left: 40%; }

.blog-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.blog-tag-pill {
  display: inline-block;
  background: rgba(233,69,96,0.15);
  border: 1px solid rgba(233,69,96,0.35);
  color: #ff8fa3;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.blog-hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.bht-gradient {
  background: linear-gradient(90deg, #f5a623, #e94560);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.blog-hero-desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 22px;
}

/* Search */
.blog-search-wrap { width: 100%; max-width: 520px; }
.blog-search-box {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 6px 6px 6px 16px;
  gap: 10px;
  backdrop-filter: blur(10px);
  transition: border-color 0.2s, background 0.2s;
}
.blog-search-box:focus-within {
  border-color: rgba(233,69,96,0.5);
  background: rgba(255,255,255,0.12);
}
.bsb-icon { color: rgba(255,255,255,0.5); flex-shrink: 0; }
.bsb-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 0.92rem;
  color: #fff;
  min-width: 0;
}
.bsb-input::placeholder { color: rgba(255,255,255,0.4); }
.bsb-btn {
  background: linear-gradient(135deg, #e94560, #c0392b);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.bsb-btn:hover { opacity: 0.88; }

/* Hero Stats */
.bhi-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 14px 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.bhi-stat { text-align: center; }
.bhs-num {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  color: #f5a623;
  line-height: 1;
}
.bhs-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
  display: block;
}
.bhi-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ── FILTER TABS ── */
.blog-filter-section {
  background: #fff;
  border-bottom: 1px solid #e8e8f5;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(26,26,46,0.06);
}
.blog-filter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  overflow: hidden;
}
.blog-filter-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}
.blog-filter-tabs::-webkit-scrollbar { display: none; }
.bft-tab {
  white-space: nowrap;
  border: none;
  background: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: #666;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.bft-tab:hover { background: #f4f6ff; color: #1a1a2e; }
.bft-tab.bft-active {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  color: #fff;
  box-shadow: 0 2px 10px rgba(26,26,46,0.2);
}
.blog-sort-wrap { flex-shrink: 0; }
.blog-sort-select {
  border: 1px solid #e8e8f5;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #444;
  background: #f9f9ff;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

/* ── SECTIONS ── */
.blog-section { padding: 50px 0; }
.blog-grid-section { background: #f4f6ff; }
.blog-bottom-section { background: #fff; }
.blog-tags-section { background: #f4f6ff; padding: 40px 0; }

/* Featured Label */
.featured-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #e94560;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.fl-dot {
  width: 8px; height: 8px;
  background: #e94560;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ── FEATURED POST CARD ── */
.featured-post-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e8f5;
  box-shadow: 0 8px 32px rgba(26,26,46,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.featured-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(26,26,46,0.15);
}

.fpc-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.fpc-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 300px;
}
.fpc-img-emoji { font-size: 4rem; }
.fpc-img-text { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.4); }

.fpc-cat-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: #e94560;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}
.fpc-read-time {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

.fpc-content {
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fpc-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: #999;
}
.fpc-dot { color: #ccc; }

.fpc-title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.4;
  margin: 0;
  transition: color 0.2s;
}
.featured-post-card:hover .fpc-title { color: #e94560; }

.fpc-excerpt { font-size: 0.88rem; color: #666; line-height: 1.78; margin: 0; }

.fpc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.fpc-tags span {
  background: #f4f6ff;
  color: #555;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #e8e8f5;
}

.fpc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f0f0f8;
}

.btn-fpc-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e94560, #c0392b);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(233,69,96,0.3);
}
.btn-fpc-read:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(233,69,96,0.45);
  opacity: 1 !important;
}

.fpc-share { display: flex; gap: 8px; }
.fpc-share-btn,
.fpc-save-btn {
  width: 36px; height: 36px;
  border: 1px solid #e8e8f5;
  border-radius: 10px;
  background: #f9f9ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #888;
  transition: all 0.2s;
}
.fpc-share-btn:hover,
.fpc-save-btn:hover {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
}

/* ── BLOG SECTION HEADER ── */
.blog-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-section-header h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0;
}
.bsh-count {
  background: rgba(233,69,96,0.1);
  color: #e94560;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(233,69,96,0.2);
}

/* ── BENTO BLOG GRID — 2026 Layout ── */
.bento-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}

/* Base Blog Card */
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e8e8f5;
  box-shadow: 0 3px 14px rgba(26,26,46,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(26,26,46,0.13);
}

/* Wide spans 2 cols */
.bc-wide { grid-column: span 2; flex-direction: row; }
/* Tall spans 2 rows */
.bc-tall { grid-row: span 2; }

/* Image Wrap */
.bc-image-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.bc-wide .bc-image-wrap { width: 280px; min-height: 100%; }
.bc-tall .bc-image-wrap { height: 240px; }
.blog-card:not(.bc-wide):not(.bc-tall) .bc-image-wrap { height: 180px; }

/* Placeholder colors */
.bc-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.4s ease;
}
.blog-card:hover .bc-img-placeholder { transform: scale(1.06); }
.bc-wide .bc-img-placeholder { min-height: 200px; }
.bc-tall .bc-img-placeholder { min-height: 240px; }

.bcp-dark   { background: linear-gradient(135deg, #1a1a2e, #0f3460); }
.bcp-purple { background: linear-gradient(135deg, #2d1b69, #5b21b6); }
.bcp-gold   { background: linear-gradient(135deg, #78350f, #d97706); }
.bcp-red    { background: linear-gradient(135deg, #7f1d1d, #e94560); }
.bcp-green  { background: linear-gradient(135deg, #064e3b, #059669); }
.bcp-blue   { background: linear-gradient(135deg, #1e3a5f, #0088cc); }

/* Overlay */
.bc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

/* Category Tag */
.bc-cat {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  color: #fff;
  z-index: 2;
}
.bc-cat.strategy { background: #5b21b6; }
.bc-cat.refer    { background: #0088cc; }
.bc-cat.bonus    { background: #d97706; }
.bc-cat.games    { background: #e94560; }
.bc-cat.withdraw { background: #059669; }
.bc-cat.tips     { background: #7c3aed; }
.bc-cat.news     { background: #1a1a2e; }

.bc-new-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  background: #f5a623;
  color: #1a1a2e;
  padding: 3px 8px;
  border-radius: 10px;
  z-index: 2;
}

/* Card Body */
.bc-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.bc-wide .bc-body { padding: 24px 22px; }

.bc-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: #999;
}

.bc-title {
  font-size: 0.96rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.blog-card:hover .bc-title { color: #e94560; }
.bc-wide .bc-title { font-size: 1.05rem; -webkit-line-clamp: 4; }

.bc-excerpt {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bc-wide .bc-excerpt { -webkit-line-clamp: 3; }

.bc-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #f0f0f8;
  gap: 10px;
  flex-wrap: wrap;
}

.bc-tags-row { display: flex; gap: 6px; flex-wrap: wrap; }
.bct {
  font-size: 0.68rem;
  font-weight: 600;
  color: #888;
  background: #f4f6ff;
  border: 1px solid #e8e8f5;
  padding: 3px 8px;
  border-radius: 10px;
}

.bc-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}
.bc-read-btn:hover {
  background: linear-gradient(135deg, #e94560, #c0392b) !important;
  transform: translateY(-1px);
  opacity: 1 !important;
}

/* Dark Style Card */
.bc-dark-style { background: linear-gradient(135deg, #1a1a2e, #16213e) !important; border-color: #2a2a4e !important; }
.bc-dark-style .bc-title { color: #fff; }
.bc-dark-style:hover .bc-title { color: #f5a623; }
.bc-dark-style .bc-meta { color: rgba(255,255,255,0.45); }
.bc-dark-style .bc-excerpt { color: rgba(255,255,255,0.55); }
.bc-dark-style .bc-footer { border-color: rgba(255,255,255,0.08); }
.bc-dark-style .bct { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.6); }
.bc-dark-style .bc-read-btn { background: linear-gradient(135deg, #e94560, #c0392b); }

/* ── LOAD MORE ── */
.blog-load-more {
  text-align: center;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid #e8e8f5;
  color: #1a1a2e;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 10px rgba(26,26,46,0.05);
}
.btn-load-more:hover {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,26,46,0.15);
}
.blm-info { font-size: 0.78rem; color: #aaa; }

/* ── BOTTOM GRID ── */
.blog-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 280px;
  gap: 24px;
  align-items: start;
}

/* Newsletter */
.newsletter-box {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  border-radius: 22px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 8px 28px rgba(26,26,46,0.18);
}
.nb-deco-circles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.nb-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}
.nc-1 { width: 200px; height: 200px; background: #f5a623; top: -60px; right: -60px; }
.nc-2 { width: 150px; height: 150px; background: #e94560; bottom: -40px; left: -40px; }

.nb-content { position: relative; z-index: 1; }
.nb-icon { font-size: 2.5rem; display: block; margin-bottom: 14px; }
.newsletter-box h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.newsletter-box > .nb-content > p { font-size: 0.86rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 18px; }

.nb-form { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.nb-input {
  flex: 1;
  min-width: 180px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 0.86rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.nb-input::placeholder { color: rgba(255,255,255,0.4); }
.nb-input:focus { border-color: #f5a623; }

.btn-nb-sub {
  background: linear-gradient(135deg, #e94560, #c0392b);
  color: #fff;
  border: none;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-nb-sub:hover { opacity: 0.88; transform: translateY(-1px); }
.nb-note { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin: 0; }

/* Popular Posts */
.popular-posts-box {
  background: #fff;
  border: 1px solid #e8e8f5;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 3px 14px rgba(26,26,46,0.05);
}
.ppb-title {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f0f8;
}

.popular-posts-list { display: flex; flex-direction: column; }
.pp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f5f5f5;
  text-decoration: none;
  transition: background 0.2s;
  border-radius: 8px;
}
.pp-item:last-child { border-bottom: none; padding-bottom: 0; }
.pp-item:hover { padding-left: 6px; }

.pp-rank {
  font-size: 1.1rem;
  font-weight: 900;
  color: rgba(233,69,96,0.15);
  font-family: Georgia, serif;
  flex-shrink: 0;
  width: 28px;
  margin-top: 2px;
  line-height: 1;
}

.pp-body { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.pp-cat {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  width: fit-content;
}
.pp-cat.tips     { background: #ede9fe; color: #5b21b6; }
.pp-cat.refer    { background: #dbeafe; color: #1e40af; }
.pp-cat.strategy { background: #fef3c7; color: #92400e; }
.pp-cat.withdraw { background: #d1fae5; color: #065f46; }
.pp-cat.bonus    { background: #fff7ed; color: #c2410c; }

.pp-body h4 {
  font-size: 0.83rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.pp-item:hover h4 { color: #e94560; }
.pp-meta { display: flex; gap: 10px; font-size: 0.68rem; color: #bbb; }

/* Blog CTA Mini */
.blog-cta-mini {
  background: linear-gradient(135deg, #e94560, #c0392b);
  border-radius: 22px;
  padding: 4px;
  box-shadow: 0 8px 28px rgba(233,69,96,0.35);
}
.bcm-inner {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.bcm-emoji { font-size: 3rem; line-height: 1; }
.bcm-inner h3 { font-size: 1rem; font-weight: 800; color: #fff; margin: 0; }
.bcm-inner p  { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin: 0; }
.btn-bcm {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #e94560, #c0392b);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 14px rgba(233,69,96,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-bcm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233,69,96,0.5);
  opacity: 1 !important;
}
.bcm-trust {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}

/* ── TAGS CLOUD ── */
.bts-title {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 18px;
}
.blog-tags-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.btc-tag {
  display: inline-block;
  background: #fff;
  border: 1px solid #e8e8f5;
  color: #555;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(26,26,46,0.04);
}
.btc-tag:hover {
  background: #1a1a2e;
  color: #fff !important;
  border-color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(26,26,46,0.15);
  opacity: 1 !important;
}
.btc-hot {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 3px 12px rgba(26,26,46,0.15);
}
.btc-hot:hover {
  background: linear-gradient(135deg, #e94560, #c0392b) !important;
  box-shadow: 0 5px 16px rgba(233,69,96,0.3);
}

/* =============================================
   RESPONSIVE — BLOG PAGE
   ============================================= */

@media (max-width: 1200px) {
  .bento-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .bc-wide { grid-column: span 2; }
  .bc-tall { grid-row: span 1; }
  .bc-wide.bc-wide { flex-direction: row; }
  .featured-post-card { grid-template-columns: 360px 1fr; }
}

@media (max-width: 1024px) {
  .blog-bottom-grid { grid-template-columns: 1fr 1fr; }
  .blog-cta-mini { grid-column: span 2; max-width: 400px; margin: 0 auto; width: 100%; }
  .featured-post-card { grid-template-columns: 1fr; }
  .fpc-image-wrap { min-height: 200px; }
  .fpc-image-placeholder { min-height: 200px; }
}

@media (max-width: 900px) {
  .bento-blog-grid { grid-template-columns: 1fr 1fr; }
  .bc-wide { grid-column: span 2; flex-direction: column; }
  .bc-wide .bc-image-wrap { width: 100%; min-height: 180px; }
  .bc-wide .bc-img-placeholder { min-height: 180px; }
}

@media (max-width: 768px) {
  .blog-hero { padding: 60px 0 50px; }
  .blog-filter-wrap { gap: 8px; }
  .blog-sort-wrap { display: none; }
  .blog-bottom-grid { grid-template-columns: 1fr; }
  .blog-cta-mini { grid-column: span 1; max-width: 100%; }
  .bento-blog-grid { grid-template-columns: 1fr; }
  .bc-wide { flex-direction: column; grid-column: span 1; }
  .bc-wide .bc-image-wrap { width: 100%; }
  .bc-wide .bc-img-placeholder { min-height: 200px; }
}

@media (max-width: 600px) {
  .blog-hero-title { font-size: 1.7rem; }
  .bhi-stats { gap: 14px; padding: 12px 18px; }
  .bhi-stat-divider { display: none; }
  .bhi-stats { border-radius: 16px; }
  .blog-search-box { flex-wrap: nowrap; }
  .bsb-btn { padding: 10px 14px; font-size: 0.78rem; }
  .featured-post-card { border-radius: 16px; }
  .fpc-content { padding: 20px 18px; }
  .fpc-title { font-size: 1rem; }
  .blog-tags-cloud { gap: 8px; }
  .btc-tag { font-size: 0.76rem; padding: 7px 14px; }
}

@media (max-width: 480px) {
  .blog-hero { padding: 50px 0 40px; }
  .blog-hero-title { font-size: 1.5rem; }
  .blog-filter-tabs { gap: 3px; }
  .bft-tab { padding: 7px 12px; font-size: 0.76rem; }
  .bc-body { padding: 14px 16px; }
  .bc-title { font-size: 0.88rem; }
  .btn-fpc-read { padding: 10px 18px; font-size: 0.82rem; }
  .newsletter-box { padding: 22px 18px; }
  .nb-form { flex-direction: column; }
  .nb-input, .btn-nb-sub { width: 100%; }
  .popular-posts-box { padding: 18px 16px; }
}

@media (max-width: 380px) {
  .blog-hero-title { font-size: 1.4rem; }
  .bhi-stats { flex-direction: column; gap: 8px; border-radius: 14px; }
  .bhi-stat-divider { display: block; width: 60px; height: 1px; }
  .blog-search-box { border-radius: 12px; }
}


/* =============================================
   ABOUT US — HERO IMAGE CSS
   All Devices Responsive ✅
   ============================================= */

/* ── Hero Image Base ── */
.about-hero-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 20px;
  display: block;
  margin: 24px auto 0;
  object-fit: cover;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.08);

  /* Smooth load animation */
  animation: imgFadeIn 0.6s ease forwards;
  opacity: 0;

  /* Performance */
  will-change: transform;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effect */
.about-hero-img:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(233, 69, 96, 0.2);
}

/* Fade In Animation */
@keyframes imgFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Image Wrapper (optional — agar wrap karna ho) ── */
.about-hero-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 560px;
  margin: 24px auto 0;
}

/* Glow Effect behind image */
.about-hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, #e94560, #f5a623, #0088cc);
  z-index: -1;
  opacity: 0.25;
  filter: blur(16px);
  transition: opacity 0.4s ease;
}
.about-hero-img-wrap:hover::before {
  opacity: 0.45;
}

/* Badge overlay on image (optional) */
.about-hero-img-wrap::after {
  content: '🃏 India\'s #1';
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.7);
  color: #f5a623;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(245, 166, 35, 0.3);
  pointer-events: none;
}

/* =============================================
   RESPONSIVE — All Devices
   ============================================= */

/* Desktop Large (1400px+) */
@media (min-width: 1400px) {
  .about-hero-img {
    max-width: 620px;
    border-radius: 24px;
  }
}

/* Desktop (1024px - 1399px) */
@media (max-width: 1399px) and (min-width: 1024px) {
  .about-hero-img {
    max-width: 500px;
  }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
  .about-hero-img {
    max-width: 420px;
    border-radius: 18px;
    margin: 20px auto 0;
  }
}

/* Tablet Portrait (600px - 767px) */
@media (max-width: 767px) and (min-width: 600px) {
  .about-hero-img {
    max-width: 100%;
    border-radius: 16px;
    margin: 18px 0 0;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  }
  .about-hero-img-wrap::after {
    font-size: 0.68rem;
    padding: 4px 10px;
    bottom: 10px;
    left: 10px;
  }
}

/* Mobile Large (480px - 599px) */
@media (max-width: 599px) and (min-width: 480px) {
  .about-hero-img {
    max-width: 100%;
    border-radius: 14px;
    margin: 16px 0 0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  }
  .about-hero-img:hover {
    transform: none;
  }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
  .about-hero-img {
    max-width: 100%;
    border-radius: 12px;
    margin: 14px 0 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    border: none;
  }
  .about-hero-img:hover {
    transform: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  }
  .about-hero-img-wrap::after {
    display: none;
  }
}











/* ══════════════════════════════════
   TEEN PATTI MASTER – ARTICLE CSS
══════════════════════════════════ */

.tpm-article { padding: 40px 20px; }

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

/* ── Title ── */
.tpm-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px;
  line-height: 1.3;
  text-align: center;
}

/* ── Hero Image ── */
.tpm-hero-img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto 24px auto;
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

.tpm-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* ── Table of Contents ── */
.tpm-toc {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.tpm-toc .toc-title {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 12px;
}

.tpm-toc .toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-reset: toc-counter;
}

.tpm-toc .toc-list li {
  counter-increment: toc-counter;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
}

.tpm-toc .toc-list li::before {
  content: counter(toc-counter) ".";
  color: #64748b;
  font-weight: 600;
  min-width: 20px;
}

.tpm-toc .toc-list li a {
  color: #dc2626;
  text-decoration: none;
  transition: color 0.2s;
}

.tpm-toc .toc-list li a:hover {
  color: #991b1b;
  text-decoration: underline;
}

/* ── Download Button ── */
.tpm-download-section {
  text-align: center;
  margin-bottom: 28px;
}

.tpm-download-section.bottom { margin-top: 12px; }

.tpm-version-text {
  font-size: 0.85rem;
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 12px;
}

.tpm-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: #ffffff;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 6px 22px rgba(220,38,38,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.tpm-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220,38,38,0.5);
  color: #fff;
  text-decoration: none;
}

.tpm-download-btn svg { stroke: #fff; }

.tpm-bonus-badge {
  font-size: 0.9rem;
  color: #dc2626;
  font-weight: 600;
  margin-top: 10px;
}

/* ── Stats Row ── */
.tpm-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.tpm-stat-item {
  background: #fff;
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 3px solid #dc2626;
}

.tpm-stat-item strong {
  font-size: 1.3rem;
  color: #dc2626;
  font-weight: 800;
}

.tpm-stat-item span {
  font-size: 0.78rem;
  color: #6b7280;
}

/* ── Base Card ── */
.tpm-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-left: 4px solid #e2e8f0;
}

.tpm-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 14px;
}

.tpm-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 14px 0 10px;
}

.tpm-card p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 10px;
}

.tpm-card p:last-child { margin-bottom: 0; }

.tpm-card a {
  color: #dc2626;
  text-decoration: underline;
}

/* ── Intro Card ── */
.tpm-card.intro-card {
  background: #fff5f5;
  border-left: 4px solid #dc2626;
}

/* ── App Info Card ── */
.tpm-card.app-info-card {
  border-left: 4px solid #f59e0b;
  background: linear-gradient(135deg, #fffbeb 0%, #fef9ee 100%);
}

.tpm-card.app-info-card h2 { color: #b45309; }

.app-info-table {
  width: 100%;
  border-collapse: collapse;
}

.app-info-table tr {
  border-bottom: 1px solid #f1f5f9;
}

.app-info-table tr:last-child { border-bottom: none; }

.app-info-table td {
  padding: 10px 8px;
  font-size: 0.9rem;
  color: #374151;
  vertical-align: top;
}

.app-info-table td:first-child {
  width: 45%;
  color: #6b7280;
}

/* ── Steps Card ── */
.tpm-card.steps-card {
  border-left: 4px solid #f59e0b;
  background: linear-gradient(135deg, #fffbeb 0%, #fef9ee 100%);
}

.tpm-card.steps-card h2 { color: #b45309; }

.tpm-steps-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tpm-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-num {
  background: #dc2626;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-info strong {
  display: block;
  font-size: 0.95rem;
  color: #1e293b;
  margin-bottom: 4px;
}

.step-info p {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* ── Register Card ── */
.tpm-card.register-card {
  border-left: 4px solid #16a34a;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.tpm-card.register-card h2 { color: #15803d; }

/* ── List ── */
.tpm-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tpm-list li {
  font-size: 0.93rem;
  color: #374151;
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

.tpm-list li:last-child { border-bottom: none; }

/* ── Games Card ── */
.tpm-card.games-card {
  border-left: 4px solid #7c3aed;
  background: linear-gradient(135deg, #fdf4ff 0%, #f5f3ff 100%);
}

.tpm-card.games-card h2 { color: #6d28d9; }

.tpm-games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.tpm-game-item {
  background: #fff;
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  border: 1px solid #ede9fe;
}

.tpm-game-item span { font-size: 1.6rem; }

.tpm-game-item strong {
  font-size: 0.72rem;
  color: #4c1d95;
}

/* ── Refer Card ── */
.tpm-card.refer-card {
  border-left: 4px solid #ec4899;
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.tpm-card.refer-card h2 { color: #be185d; }
.tpm-card.refer-card h3 { color: #9d174d; }

.tpm-refer-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 14px 0;
}

.tpm-refer-box {
  background: #fff;
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid #fce7f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.refer-icon { font-size: 2rem; }

.tpm-refer-box strong {
  font-size: 1rem;
  color: #be185d;
  font-weight: 700;
}

.tpm-refer-box p {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

.tpm-refer-cta {
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 14px;
  border: 1px dashed #ec4899;
}

.tpm-refer-cta p {
  font-size: 0.9rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}

/* ── Withdrawal Card ── */
.tpm-card.withdrawal-card {
  border-left: 4px solid #0284c7;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.tpm-card.withdrawal-card h2 { color: #0369a1; }

/* ── FAQ Card ── */
.tpm-card.faq-card {
  border-left: 4px solid #16a34a;
}

.tpm-faq-list {
  display: flex;
  flex-direction: column;
}

.tpm-faq-item {
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
}

.tpm-faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-q {
  font-size: 0.95rem !important;
  font-weight: 600;
  color: #15803d;
  margin-bottom: 6px;
}

.faq-a {
  font-size: 0.88rem !important;
  color: #4b5563;
  line-height: 1.65;
  margin: 0 !important;
}

.faq-a a {
  color: #0ea5e9;
  font-weight: 500;
}

/* ── Disclaimer Card ── */
.tpm-card.disclaimer-card {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-left: 4px solid #dc2626;
}

.tpm-card.disclaimer-card h2 { color: #b91c1c; }

/* ── Internal Nav Links ── */
.tpm-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.tpm-nav-links a {
  font-size: 0.88rem;
  color: #dc2626;
  text-decoration: none;
  padding: 8px 16px;
  background: #fff5f5;
  border-radius: 20px;
  border: 1px solid #fecaca;
  transition: background 0.2s, color 0.2s;
}

.tpm-nav-links a:hover {
  background: #dc2626;
  color: #fff;
}

/* ══════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════ */
@media (max-width: 600px) {
  .tpm-title {
    font-size: 1.35rem;
    text-align: left;
  }

  .tpm-hero-img { max-width: 100%; }

  .tpm-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .tpm-card { padding: 18px 16px; }

  .tpm-download-btn {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .tpm-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tpm-refer-boxes {
    grid-template-columns: 1fr;
  }

  .tpm-nav-links { gap: 8px; }
}


