/* Ek1 Game (ek1eapp.com) Ultra-Modern Hinglish Gaming Design System */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-glow: rgba(16, 185, 129, 0.4);
    --gold: #fbbf24;
    --gold-dark: #d97706;
    --gold-glow: rgba(251, 191, 36, 0.35);
    --dark-bg: #090d16;
    --dark-card: #111827;
    --ink: #0f172a;
    --ink-soft: #475569;
    --paper: #f8fafc;
    --line: #e2e8f0;
    --card: #ffffff;
    --hero-bg: linear-gradient(135deg, #090d16 0%, #111827 50%, #064e3b 100%);
    --radius: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.3);
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    transition: all 0.25s ease;
}

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

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Glass Nav */

.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(9, 13, 22, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand {
    font-weight: 900;
    font-size: 1.45rem;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.03em;
}

.brand-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    font-size: 0.85rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 8px;
    box-shadow: 0 0 15px var(--gold-glow);
}

.brand em {
    font-style: normal;
    color: var(--primary);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-list a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
    color: var(--gold);
}

.nav-dl {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    padding: 11px 22px;
    border-radius: 12px;
    font-weight: 800 !important;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.nav-dl:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--primary-glow);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.burger span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    display: block;
}

.mnav {
    display: none;
    flex-direction: column;
    background: #0d1322;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px 24px;
}

.mnav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
}

.mnav.show {
    display: flex;
}

/* High Conversion Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-main {
    background: linear-gradient(135deg, #10b981, #047857);
    color: #fff;
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px var(--primary-glow);
}

.btn-accent {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    box-shadow: 0 8px 25px var(--gold-glow);
}

.btn-accent:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px var(--gold-glow);
}

.btn-lite {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.btn-lite:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 20px 44px;
    font-size: 1.15rem;
    border-radius: 16px;
}

/* Hero Section */

.hero {
    background: var(--hero-bg);
    padding: 68px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-logo {
    width: 104px;
    height: 104px;
    border-radius: 28px;
    background: #fff;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(16, 185, 129, 0.5);
    position: relative;
    z-index: 1;
}

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

.hero h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
    margin: 0 auto 30px;
    font-size: 1.12rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.hero-meta {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 12px 28px;
    margin-top: 24px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Inner Page Header */

.page-head {
    background: var(--hero-bg);
    padding: 56px 20px;
    position: relative;
}

.crumb {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.88rem;
}

.crumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.crumb a:hover {
    color: #fff;
}

.crumb span {
    color: rgba(255, 255, 255, 0.35);
}

.crumb b {
    color: var(--gold);
    font-weight: 700;
}

.page-head h1 {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.page-head p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    font-size: 1.08rem;
    line-height: 1.7;
}

/* Sections & Layout */

section {
    padding: 64px 20px;
}

.eyebrow {
    display: inline-block;
    background: rgba(16, 185, 129, 0.12);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

h2.h {
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.lede {
    color: var(--ink-soft);
    max-width: 680px;
    margin-bottom: 40px;
    font-size: 1.08rem;
    line-height: 1.75;
}

.bg-alt {
    background: #f1f5f9;
}

/* Grid & Cards */

.grid {
    display: grid;
    gap: 24px;
}

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

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

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

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(16, 185, 129, 0.35);
}

.card .ic {
    font-size: 2.4rem;
    margin-bottom: 14px;
    display: block;
}

.card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--ink);
}

.card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Hinglish Highlight Badge Card */

.highlight-box {
    background: linear-gradient(135deg, #090d16, #111827);
    border-radius: var(--radius);
    padding: 32px;
    color: #fff;
    box-shadow: var(--shadow-md);
    margin-top: 32px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.highlight-box h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.98rem;
    line-height: 1.75;
}

/* Stats Counter Row */

.stat-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 24px;
    padding: 36px 20px;
    background: linear-gradient(135deg, #064e3b, #047857);
}

.stat {
    text-align: center;
    color: #fff;
}

.stat b {
    display: block;
    font-size: 1.85rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--gold);
}

.stat span {
    font-size: 0.85rem;
    opacity: 0.95;
    font-weight: 600;
}

/* Specifications Table */

.spec {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    box-shadow: var(--shadow-sm);
}

.spec td {
    padding: 16px 20px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--line);
}

.spec tr:last-child td {
    border-bottom: none;
}

.spec td:first-child {
    background: #f8fafc;
    font-weight: 700;
    color: var(--ink-soft);
    width: 35%;
}

/* Steps Walkthrough */

.steps {
    max-width: 700px;
}

.step {
    display: flex;
    gap: 20px;
    padding-bottom: 32px;
    position: relative;
}

.step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 46px;
    bottom: 0;
    width: 2px;
    background: #cbd5e1;
}

.step-n {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.15rem;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.step h3 {
    font-weight: 800;
    margin-bottom: 6px;
    font-size: 1.1rem;
    color: var(--ink);
}

.step p {
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.65;
}

/* FAQ Accordion */

.faq {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 14px;
    background: var(--card);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.faq:hover {
    border-color: rgba(16, 185, 129, 0.4);
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font);
    color: var(--ink);
}

.faq-q .x {
    color: var(--primary-dark);
    font-size: 1.5rem;
    transition: transform 0.25s ease;
    font-weight: 400;
}

.faq.open .x {
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 0 24px 22px;
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.75;
}

.faq.open .faq-a {
    display: block;
}

/* Blog Components */

.feat {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 36px;
    background: var(--card);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .feat {
        grid-template-columns: 1fr;
    }

    .burger {
        display: flex;
    }

    .nav-list {
        display: none;
    }
}

.feat-art {
    background: var(--hero-bg);
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.feat-body {
    padding: 32px;
}

.feat-body h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.3;
}

.tag-pill {
    display: inline-block;
    background: rgba(16, 185, 129, 0.12);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.meta-row {
    display: flex;
    gap: 14px;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 14px;
    font-weight: 600;
}

.post {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.post:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.post-art {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
}

.post-b {
    padding: 20px;
}

.post-b h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.35;
}

.post-b p {
    color: var(--ink-soft);
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.readmore {
    color: var(--primary-dark);
    font-weight: 800;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.readmore:hover {
    color: var(--primary);
}

/* Sidebar Widgets */

.side-box {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    background: var(--card);
    box-shadow: var(--shadow-sm);
}

.side-box h3 {
    font-weight: 800;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
}

.side-link {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 600;
}

.side-link:last-child {
    border-bottom: none;
}

.side-link b {
    color: var(--primary-dark);
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    background: #f1f5f9;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.82rem;
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 700;
}

.chip:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Footer */

footer {
    background: #090d16;
    color: #94a3b8;
    padding: 64px 0 32px;
    font-size: 0.92rem;
}

.f-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 36px;
    margin-bottom: 40px;
}

.f-logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

footer h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 16px;
}

footer a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 10px;
}

footer a:hover {
    color: #fff;
}

.f-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.88rem;
}

/* Mobile Sticky Bar */

.stickybar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: rgba(9, 13, 22, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    display: flex;
    gap: 12px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
}

.stickybar .btn {
    flex: 1;
}

@media (min-width: 861px) {
    .stickybar {
        display: none;
    }
}