/*
Theme Name: VIP Yono Game World
Theme URI: https://vipyonogameworld.com
Author: VIP Yono Game World
Author URI: https://vipyonogameworld.com
Description: VIP Yono Game World - Best Yono Rummy & Slots Games 2026. Complete gaming website theme with all game pages, search, category filter and more.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vip-yono-theme
Tags: gaming, yono, rummy, slots, hindi
*/

:root {
    --navy: #1a237e;
    --navy2: #283593;
    --blue: #1565c0;
    --gold: #ffd600;
    --gold2: #ffb300;
    --bg: #f4f6fb;
    --white: #fff;
    --card-border: #e8eaf6;
    --muted: #888;
    --green: #43a047;
    --red: #e53935;
    --purple: #7c4dff;
    --teal: #00897b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: var(--bg); color: #222; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== NAVBAR ===== */
#site-header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 12px rgba(26,35,126,0.22);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    height: 60px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-icon {
    background: var(--gold);
    color: var(--navy);
    font-weight: 900;
    font-size: 11px;
    padding: 5px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}
.logo-text { color: #fff; font-size: 18px; font-weight: 700; }
.logo-text span { color: var(--gold); }

#site-navigation ul {
    display: flex;
    gap: 4px;
    list-style: none;
}
#site-navigation ul li a {
    color: #c5cae9;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    display: block;
}
#site-navigation ul li a:hover,
#site-navigation ul li.current-menu-item a {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

/* ===== HERO ===== */
.hero-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, var(--blue) 100%);
    padding: 56px 28px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: rgba(255,214,0,0.07);
    border-radius: 50%;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 240px; height: 240px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-section h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.hero-section h1 span { color: var(--gold); }
.hero-section p {
    color: #90caf9;
    font-size: 15px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}
.search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 4px 4px 4px 20px;
    max-width: 520px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    position: relative;
    z-index: 1;
}
.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    color: #333;
    background: transparent;
    font-family: inherit;
}
.search-bar input::placeholder { color: #aaa; }
.search-btn {
    background: var(--navy);
    border: none;
    border-radius: 50%;
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}
.search-btn:hover { background: var(--navy2); }
.tg-btn {
    background: #29b6f6;
    border: none;
    border-radius: 50%;
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    margin: 0 auto;
    position: relative; z-index: 1;
    box-shadow: 0 4px 12px rgba(41,182,246,0.35);
    transition: transform 0.2s;
}
.tg-btn:hover { transform: scale(1.1); }
.tg-btn svg { width: 26px; height: 26px; fill: #fff; }

/* ===== STATS BAR ===== */
.stats-bar {
    background: #fff;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #e8eaf6;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.stat-item {
    flex: 1;
    max-width: 180px;
    text-align: center;
    padding: 14px 8px;
    border-right: 1px solid #e8eaf6;
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 20px; font-weight: 800; color: var(--navy); }
.stat-label { font-size: 10px; color: var(--muted); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== CATEGORY TABS ===== */
.cat-tabs-wrap {
    background: #fff;
    padding: 14px 22px 12px;
    border-bottom: 1px solid #e8eaf6;
}
.cat-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    max-width: 1100px;
    margin: 0 auto;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
    flex-shrink: 0;
    background: #fff;
    border: 1.5px solid var(--card-border);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
    font-family: inherit;
}
.cat-tab.active, .cat-tab:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

/* ===== SECTION ===== */
.games-section {
    padding: 30px 22px;
    max-width: 1100px;
    margin: 0 auto;
}
.section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}
.section-title { font-size: 20px; font-weight: 700; color: var(--navy); }
.section-line { flex: 1; height: 2px; background: linear-gradient(to right, #1a237e22, transparent); }

/* ===== GAME CARDS ===== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
    gap: 14px;
}
.game-card {
    background: #fff;
    border: 1.5px solid var(--card-border);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    text-decoration: none;
    display: block;
}
.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26,35,126,0.13);
    border-color: #7986cb;
}
.game-thumb {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    position: relative;
}
.badge {
    position: absolute;
    top: 7px; left: 7px;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-new { background: var(--green); color: #fff; }
.badge-hot { background: var(--red); color: #fff; }
.badge-top { background: var(--gold); color: var(--navy); }
.badge-vip { background: var(--purple); color: #fff; }
.badge-free { background: var(--teal); color: #fff; }
.game-info { padding: 9px 11px 5px; }
.game-name { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; line-height: 1.3; }
.game-meta { font-size: 11px; color: var(--muted); }
.game-bonus { font-size: 12px; font-weight: 700; color: var(--green); margin-top: 3px; }
.game-stars { color: var(--gold2); font-size: 10px; margin-top: 2px; }
.dl-btn {
    display: block;
    margin: 7px 10px 10px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    width: calc(100% - 20px);
    transition: background 0.2s;
    font-family: inherit;
}
.dl-btn:hover { background: var(--navy2); }

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
    border-radius: 14px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1056px;
    margin: 0 auto 20px;
}
.promo-text h2 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 5px; }
.promo-text p { font-size: 13px; color: var(--navy2); }
.promo-emoji { font-size: 50px; flex-shrink: 0; }
.join-btn {
    background: var(--navy);
    color: var(--gold);
    border: none;
    padding: 11px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
    font-family: inherit;
}
.join-btn:hover { background: var(--navy2); }

/* ===== SINGLE GAME PAGE ===== */
.game-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    padding: 36px 28px;
    color: #fff;
}
.game-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    padding: 7px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: background 0.2s;
    text-decoration: none;
    font-family: inherit;
}
.back-btn:hover { background: rgba(255,255,255,0.25); color: #fff; }
.game-hero-content { display: flex; align-items: center; gap: 24px; }
.game-big-icon {
    width: 90px; height: 90px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 50px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}
.bonus-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.game-hero h1 { font-size: 28px; font-weight: 800; margin-bottom: 6px; }
.game-hero .hero-desc { color: #90caf9; font-size: 14px; }

.game-body { max-width: 900px; margin: 0 auto; padding: 28px 22px; }
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}
.info-card {
    background: #fff;
    border: 1.5px solid var(--card-border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}
.info-card .ic-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.info-card .ic-val { font-size: 18px; font-weight: 800; color: var(--navy); }

.content-box {
    background: #fff;
    border: 1.5px solid var(--card-border);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
}
.content-box h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid var(--card-border);
}
.content-box p { font-size: 14px; color: #444; line-height: 1.8; margin-bottom: 10px; }
.content-box p:last-child { margin-bottom: 0; }

.feature-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.feature-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #444; }
.feature-list li::before { content: '✅'; font-size: 13px; flex-shrink: 0; }

.steps-list { list-style: none; counter-reset: steps; }
.steps-list li {
    counter-increment: steps;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--card-border);
    font-size: 14px;
    color: #444;
}
.steps-list li:last-child { border-bottom: none; }
.steps-list li::before {
    content: counter(steps);
    background: var(--navy);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.bonus-box {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.bonus-icon { font-size: 40px; flex-shrink: 0; }
.bonus-box h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.bonus-box p { font-size: 13px; color: var(--navy2); }

.big-dl-btn {
    display: block;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    width: 100%;
    margin-bottom: 20px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(26,35,126,0.25);
    transition: opacity 0.2s;
    font-family: inherit;
}
.big-dl-btn:hover { opacity: 0.9; color: #fff; }

.disclaimer-box {
    background: #fff3e0;
    border: 1.5px solid #ffe0b2;
    border-radius: 12px;
    padding: 16px;
    font-size: 12px;
    color: #e65100;
    text-align: center;
    margin-bottom: 20px;
}

/* ===== STATIC PAGES ===== */
.static-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    padding: 40px 28px;
    color: #fff;
}
.static-hero h1 { font-size: 30px; font-weight: 800; }
.static-hero p { color: #90caf9; margin-top: 8px; font-size: 14px; }
.static-body { max-width: 900px; margin: 0 auto; padding: 28px 22px; }

/* ===== SEARCH PAGE ===== */
.no-results { text-align: center; padding: 40px 20px; color: var(--muted); font-size: 15px; }

/* ===== FOOTER ===== */
#site-footer {
    background: var(--navy);
    padding: 26px 22px;
    text-align: center;
    margin-top: 20px;
}
.footer-links { display: flex; justify-content: center; gap: 16px; margin-bottom: 10px; flex-wrap: wrap; }
.footer-links a { color: #9fa8da; font-size: 12px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: #5c6bc0; font-size: 11px; }

/* ===== THUMB COLORS ===== */
.t1{background:linear-gradient(135deg,#e3f2fd,#bbdefb)}
.t2{background:linear-gradient(135deg,#e8f5e9,#c8e6c9)}
.t3{background:linear-gradient(135deg,#fce4ec,#f8bbd0)}
.t4{background:linear-gradient(135deg,#ede7f6,#d1c4e9)}
.t5{background:linear-gradient(135deg,#fff8e1,#ffecb3)}
.t6{background:linear-gradient(135deg,#e0f7fa,#b2ebf2)}
.t7{background:linear-gradient(135deg,#f3e5f5,#e1bee7)}
.t8{background:linear-gradient(135deg,#fbe9e7,#ffccbc)}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-inner { padding: 0 14px; }
    .logo-text { font-size: 15px; }
    #site-navigation { display: none; }
    .hero-section h1 { font-size: 24px; }
    .feature-list { grid-template-columns: 1fr; }
    .promo-banner { flex-direction: column; text-align: center; }
    .promo-emoji { display: none; }
    .game-hero-content { flex-direction: column; text-align: center; }
}
