/* ================================================================
   PLAY99 EXCH — PREMIUM DESIGN SYSTEM v2 (2026-07-17)
   Theme: Luxury Navy, Glassmorphism, Gold-Yellow, Neon Green
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap');

:root {
    --bg-base:      #050b18;
    --bg-gradient:  radial-gradient(circle at 50% 0%, #0d1a3c 0%, #050b18 70%);
    --glass-bg:     rgba(13, 27, 60, 0.45);
    --glass-border: rgba(255, 230, 0, 0.15);
    --glass-glow:   0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Brand Colors */
    --yellow:       #ffe600;
    --yellow-glow:  rgba(255, 230, 0, 0.35);
    --green:        #00a825;
    --green-glow:   rgba(0, 168, 37, 0.3);

    /* Typography */
    --text-main:    #f1f5f9;
    --text-muted:   #94a3b8;

    --font-display: 'Oswald', sans-serif;
    --font-body:    'Plus Jakarta Sans', sans-serif;

    --radius-sm:    8px;
    --radius-md:    12px;
    --radius-lg:    20px;
    --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--bg-base);
    background-image: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.8;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; width: 100%; }
.content-wrap-full { padding: 2rem 0; }

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    padding: 6rem 0 4rem;
    background: linear-gradient(180deg, rgba(13,27,60,0.6) 0%, transparent 100%);
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--yellow-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-block;
    background: rgba(255, 230, 0, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--yellow);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}
.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    text-transform: none;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}
.hero-content h1 span { color: var(--yellow); }
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.btn-hero-primary {
    background: linear-gradient(135deg, var(--yellow), #ffc400);
    color: #000 !important;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px var(--yellow-glow);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 230, 0, 0.5);
}
.btn-hero-secondary {
    background: transparent;
    color: var(--text-main) !important;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--green);
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}
.btn-hero-secondary:hover {
    background: var(--green);
    box-shadow: 0 4px 20px var(--green-glow);
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
}
.hero-img-wrap {
    border: 2px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.hero-image { position: relative; }
.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 60px var(--yellow-glow);
    pointer-events: none;
    opacity: 0.5;
}

/* ===== GLASS PANELS ===== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-glow);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    transition: var(--transition);
}
.glass-panel:hover {
    border-color: rgba(255, 230, 0, 0.3);
    box-shadow: 0 12px 40px var(--yellow-glow);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--yellow); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== HEADINGS ===== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.3px; }
h1 { font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1.15; margin-bottom: 1rem; }
h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--glass-border);
}
h3 { font-size: 1.3rem; color: #fff; margin-bottom: 1rem; }
p { margin-bottom: 1.2rem; color: var(--text-main); }
a { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: #fff; font-weight: 700; }

/* ===== IMAGE WRAPS ===== */
.img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    margin: 2rem 0;
    transition: var(--transition);
    position: relative;
}
.img-wrap:hover { box-shadow: 0 10px 30px var(--yellow-glow); border-color: rgba(255, 230, 0, 0.3); }
.img-wrap img { width: 100%; height: auto; display: block; }

/* ===== STYLED LIST ===== */
.styled-list {
    list-style: decimal;
    padding-left: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.styled-list li { margin-bottom: 0.8rem; padding-left: 0.5rem; }
.styled-list li strong { color: var(--yellow); }

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--glass-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}
.comparison-table th, .comparison-table td {
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}
.comparison-table th {
    background: rgba(5,11,24,0.6);
    color: var(--yellow);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
}
.comparison-table td { color: var(--text-muted); }
.comparison-table td strong { color: var(--text-main); }
.comparison-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ===== FAQ ===== */
.faq-list { margin: 2rem 0; }
.faq-item {
    background: rgba(13,27,60,0.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(255, 230, 0, 0.3); }
.faq-question {
    padding: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}
.faq-question span { color: var(--yellow); font-size: 1.3rem; }
.faq-answer {
    display: none;
    padding: 1.2rem;
    background: rgba(5,11,24,0.4);
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== APP DOWNLOAD ===== */
.app-cta-box {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 168, 37, 0.1), rgba(255, 230, 0, 0.05));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}
.btn-apk-download {
    display: inline-block;
    background: linear-gradient(135deg, var(--green), #00c835);
    color: #fff !important;
    padding: 0.9rem 2.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px var(--green-glow);
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 0.8rem;
}
.btn-apk-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--green-glow);
    text-decoration: none;
}
.app-detail { display: block; color: var(--text-muted); font-size: 0.85rem; }
.app-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}
.app-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem;
    background: rgba(13,27,60,0.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.app-feature-icon { font-size: 1.5rem; }

/* ===== AUTHOR BOX ===== */
.author-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(13,27,60,0.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2.5rem 0;
}
.author-avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow), #ffc400);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
}
.author-info h3 { font-size: 1.1rem; color: var(--yellow); margin-bottom: 0.3rem; }
.author-role { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.8rem; }
.author-info p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0; }

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(5, 11, 24, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    height: 80px;
    display: flex;
    align-items: center;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-logo img { height: 46px; width: auto; display: block; filter: drop-shadow(0 2px 10px rgba(255,230,0,0.2)); }

.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: var(--transition);
    text-decoration: none;
}
.nav-links a:hover { color: var(--yellow); }

.btn-header-join {
    background: linear-gradient(135deg, var(--yellow), #ffc400);
    color: #000 !important;
    padding: 0.55rem 1.3rem;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px var(--yellow-glow);
    cursor: pointer;
}
.btn-header-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 230, 0, 0.5);
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}
.floating-whatsapp:hover { transform: scale(1.1) rotate(10deg); }
.floating-whatsapp svg { width: 34px; height: 34px; fill: white; }

/* ===== FOOTER ===== */
.site-footer {
    background: #03060d;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-muted);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-grid h4 {
    color: var(--yellow);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    text-transform: uppercase;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}
.footer-grid a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
    transition: color 0.2s;
    text-decoration: none;
}
.footer-grid a:hover { color: var(--yellow); }
.footer-grid p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
}

/* ===== HAMBURGER MENU ===== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}
.hamburger-menu span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #050b18;
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 1000;
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: right 0.3s ease-in-out;
}
.mobile-drawer.open { right: 0; }
.mobile-drawer nav { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-drawer nav a {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-main);
    text-decoration: none;
}
.mobile-drawer nav a:hover { color: var(--yellow); }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
    .hero-stats { gap: 1.5rem; }
    .stat-number { font-size: 1.5rem; }
    .nav-links { display: none; }
    .hamburger-menu { display: flex; }
    .hero-section { padding: 4rem 0 3rem; }
    .glass-panel { padding: 1.5rem; }
    .author-box { flex-direction: column; align-items: center; text-align: center; }
    .comparison-table { font-size: 0.8rem; }
    .comparison-table th, .comparison-table td { padding: 0.7rem 0.5rem; }
}

@media (max-width: 600px) {
    .hero-ctas { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; }
    .hero-stats { flex-direction: row; justify-content: space-around; width: 100%; }
    .app-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .comparison-table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* ===== CONTENT TEXT FORMATTING ===== */
.content-wrap-full p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 1.4rem;
    max-width: 100%;
}
.content-wrap-full p strong {
    color: #fff;
    font-weight: 700;
}
.content-wrap-full p em {
    color: var(--yellow);
    font-style: normal;
    font-weight: 600;
}
.glass-panel p:last-of-type { margin-bottom: 0; }

/* Highlighted First Paragraph */
.glass-panel > p:first-of-type {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.9;
    border-left: 3px solid var(--yellow);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

/* Callout / Key Point Box */
.callout-box {
    background: rgba(255, 230, 0, 0.06);
    border: 1px solid rgba(255, 230, 0, 0.2);
    border-left: 4px solid var(--yellow);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
.callout-box strong { color: var(--yellow); }

/* Tip Box */
.tip-box {
    background: rgba(0, 168, 37, 0.07);
    border: 1px solid rgba(0, 168, 37, 0.25);
    border-left: 4px solid var(--green);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
.tip-box strong { color: var(--green); }

/* Feature pill badges */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.2rem 0;
}
.feature-pill {
    background: rgba(255, 230, 0, 0.1);
    border: 1px solid rgba(255, 230, 0, 0.25);
    color: var(--yellow);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Section divider */
.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), transparent);
    margin: 1.5rem 0;
    border-radius: 2px;
}

/* Stats mini grid inside content */
.mini-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}
.mini-stat-card {
    background: rgba(13,27,60,0.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
}
.mini-stat-val {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--yellow);
    display: block;
}
.mini-stat-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .mini-stats { grid-template-columns: repeat(2, 1fr); }
    .glass-panel > p:first-of-type { font-size: 0.95rem; }
    .feature-pills { gap: 0.4rem; }
}
