/*
Theme Name: Yono Clone
Description: A fast, modern app showcase theme for WordPress
Version: 2.0
Author: Assistant
*/

/* ============================================================
   DESIGN TOKENS -- "Rewards Passport"
   A premium rewards/coupon identity: deep indigo-plum surfaces,
   warm coin-gold for bonus values, verified-teal for trust info.
   ============================================================ */
:root {
    --ink: #1B1730;
    --ink-soft: #63597E;
    --ink-faint: #9C93B5;

    --bg: #F6F4F0;
    --surface: #FFFFFF;
    --line: #E9E4F2;
    --line-soft: #F0ECF8;

    --primary: #241B4F;
    --primary-light: #3B2E7A;
    --primary-dark: #140F30;

    --gold: #E2A63B;
    --gold-dark: #B5811F;
    --gold-soft: #FBF0DC;

    --teal: #0FA396;
    --teal-dark: #0B7C72;
    --teal-soft: #E1F5F2;

    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;

    --shadow-card: 0 2px 10px rgba(27,23,48,0.06);
    --shadow-card-hover: 0 12px 28px rgba(27,23,48,0.12);
    --shadow-pop: 0 10px 26px rgba(226,166,59,0.35);

    --font-display: 'Poppins', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: var(--bg);
    font-family: var(--font-body);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* ============================================================
   HEADER
   ============================================================ */
header {
    background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(20,15,48,0.18);
}

.header-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.site-logo {
    text-decoration: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-display);
    letter-spacing: 0.2px;
}

.site-logo img {
    border-radius: 9px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.header-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-nav-list li { margin: 0; }

.header-nav-list a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-size: 13px;
    padding: 7px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: background 0.2s, color 0.2s;
}

.header-nav-list a:hover {
    background: rgba(255,255,255,0.14);
    color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background:
        radial-gradient(circle at 15% 20%, rgba(226,166,59,0.25) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(15,163,150,0.25) 0%, transparent 50%),
        linear-gradient(150deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    padding: 40px 16px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 14px);
    pointer-events: none;
}

.hero h1 {
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(24px, 4.4vw, 38px);
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
    position: relative;
}

.hero p {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    position: relative;
}

main {
    max-width: 700px;
    margin: 0 auto;
    padding: 16px 8px 60px;
}

/* ============================================================
   TABS
   ============================================================ */
.tabs {
    display: flex;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 4px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-card);
    gap: 3px;
}

.tabs button {
    flex: 1;
    padding: 11px 4px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: var(--ink-soft);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.tabs button:hover { background: var(--line-soft); }

.tabs button.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    box-shadow: 0 4px 10px rgba(36,27,79,0.3);
}

h2.section-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 12px;
    padding-left: 2px;
}

/* ============================================================
   APP CARD -- coupon / ticket styling
   ============================================================ */
.app-card {
    text-decoration: none;
    display: block;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.app-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-1px);
    border-color: var(--line);
}

.app-card-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    position: relative;
}

.app-rank {
    color: var(--ink-faint);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 12px;
    width: 20px;
    flex-shrink: 0;
    text-align: center;
}

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    overflow: hidden;
    background: var(--line-soft);
    border: 1px solid var(--line);
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.app-details {
    flex: 1;
    min-width: 0;
    border-left: 1px dashed var(--line);
    padding-left: 10px;
}

.app-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14.5px;
    color: var(--ink);
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-bonus {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 3px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}
.app-bonus svg { stroke: var(--gold-dark); }

.app-withdraw {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--teal-dark);
    white-space: nowrap;
    display: flex;
    align-items: center;
}
.app-withdraw svg { stroke: var(--teal-dark); }

.app-download-btn {
    flex-shrink: 0;
    background: linear-gradient(160deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #2A1B00;
    border-radius: var(--radius-sm);
    padding: 11px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 11px;
    font-weight: 800;
    font-family: var(--font-body);
    box-shadow: 0 4px 10px rgba(181,129,31,0.35);
    white-space: nowrap;
}

.app-download-btn svg {
    width: 15px;
    height: 15px;
    fill: #2A1B00;
}

/* ============================================================
   GENERIC CARD SURFACE
   ============================================================ */
.yono-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s ease;
}
.yono-card:hover { box-shadow: var(--shadow-card-hover); }

.yono-classic-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--line);
    font-family: var(--font-body);
}
.yono-classic-table th, .yono-classic-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line-soft);
}
.yono-classic-table tr:last-child td { border-bottom: none; }
.yono-classic-table tr:nth-child(even) { background-color: var(--bg); }
.yono-classic-table td:first-child {
    color: var(--ink-soft);
    font-size: 13.5px;
    font-weight: 600;
    width: 45%;
    border-right: 1px solid var(--line-soft);
}
.yono-classic-table td:last-child {
    color: var(--ink);
    font-size: 14.5px;
    font-weight: 600;
    font-family: var(--font-mono);
}

.yono-download-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 17px;
    padding: 17px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: 0 8px 22px rgba(36,27,79,0.32);
    transition: all 0.3s ease;
    position: relative;
}
.yono-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(36,27,79,0.42);
    color: #fff;
}
@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(226,166,59,0.55); }
    70% { box-shadow: 0 0 0 14px rgba(226,166,59,0); }
    100% { box-shadow: 0 0 0 0 rgba(226,166,59,0); }
}
.yono-download-btn.pulse { animation: pulse-btn 2.2s infinite; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 44px 16px;
    text-align: center;
    margin-top: 60px;
}
.footer-content { max-width: 700px; margin: 0 auto; }
.footer-content p {
    margin: 0 0 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.footer-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-disclaimer {
    font-size: 12px !important;
    color: rgba(255,255,255,0.4) !important;
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
}

@media (max-width: 600px) {
    .mobile-menu-toggle { display: block; }
    .site-nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        padding: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .site-nav.nav-active { display: block; }
    .header-nav-list { flex-direction: column; align-items: flex-start; gap: 10px; }
    .header-nav-list a { display: block; width: 100%; padding: 10px 12px; box-sizing: border-box; }
}

/* ============================================================
   HERO SEARCH
   ============================================================ */
.hero-search-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 26px auto 0;
    background: #fff;
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.22);
    position: relative;
}

.hero-search-wrapper input[type="search"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 15px;
    font-size: 15px;
    font-family: var(--font-body);
    background: transparent;
    color: var(--ink);
    width: 100%;
}

.hero-search-wrapper button {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #2A1B00;
    border: none;
    border-radius: 40px;
    padding: 12px 24px;
    font-weight: 800;
    font-size: 14px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: filter 0.2s;
    flex-shrink: 0;
}
.hero-search-wrapper button:hover { filter: brightness(1.05); }

@media (max-width: 480px) {
    .hero-search-wrapper { padding: 4px 4px 4px 12px; border-radius: 30px; }
    .hero-search-wrapper input[type="search"] { padding: 10px 8px; font-size: 14px; }
    .hero-search-wrapper button { padding: 10px 16px; font-size: 13px; }
    .hero-search-wrapper svg { width: 16px; height: 16px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.yono-faq {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}
.yono-faq[open] {
    box-shadow: var(--shadow-card-hover);
    border-left-color: var(--teal);
}
.yono-faq summary {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    padding: 16px 18px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.yono-faq summary::-webkit-details-marker { display: none; }
.yono-faq summary::after {
    content: '+';
    font-size: 22px;
    color: var(--teal);
    font-weight: 400;
    transition: transform 0.3s ease;
    line-height: 1;
    flex-shrink: 0;
}
.yono-faq[open] summary::after {
    content: '\2212';
    color: var(--gold-dark);
    transform: rotate(90deg);
}
.yono-faq .faq-answer {
    padding: 0 18px 18px;
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.7;
    border-top: 1px dashed var(--line);
    margin-top: 4px;
    padding-top: 14px;
    animation: faqFadeIn 0.3s ease;
}
@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   APP INFO PAGE -- "Reward Passport" stat stamps
   ============================================================ */
.app-hero-card {
    background: linear-gradient(150deg, #101226 0%, #163A3B 55%, #0FA396 145%);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(20,15,48,0.28);
}
.app-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 0%, rgba(226,166,59,0.28) 0%, transparent 55%);
    pointer-events: none;
}
.app-breadcrumb-trail {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 7px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-size: 12.5px;
    font-weight: 700;
}
.app-breadcrumb-trail a {
    color: var(--ink-soft);
    text-decoration: none;
}
.app-breadcrumb-trail a:hover { color: var(--primary); }
.app-breadcrumb-trail .crumb-current {
    color: var(--ink-faint);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 160px;
}
.app-breadcrumb-trail .crumb-sep {
    color: var(--line);
    font-size: 12px;
}

.app-hero-top {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
}
.app-hero-icon {
    width: 84px;
    height: 84px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 8px 18px rgba(0,0,0,0.3);
}
.app-hero-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }

.app-hero-title {
    font-family: var(--font-display);
    margin: 0 0 8px;
    font-size: 21px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
}

.app-hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-mono);
}
.app-badge.gold { background: rgba(226,166,59,0.18); color: #F3C876; border: 1px solid rgba(226,166,59,0.35); }
.app-badge.teal { background: rgba(15,163,150,0.18); color: #6FE0D2; border: 1px solid rgba(15,163,150,0.35); }
.app-badge.verified { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.22); }

.app-hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    min-height: 26px;
}
.app-hero-rating .stars { color: var(--gold-dark); letter-spacing: -1px; font-size: 13px; }
.app-hero-rating .stars .star-empty { color: #E3DEEE; }

/* kk Star Ratings plugin output -- scale down without clipping/negative margins */
.app-hero-rating .kksr-wrap {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.app-hero-rating .kk-star-ratings {
    display: flex !important; 
    align-items: center !important;
    flex-wrap: nowrap !important;
    /* Using zoom instead of transform so the parent container shrinks properly */
    zoom: 0.75;
}

@media (max-width: 480px) {
    .app-hero-rating .kk-star-ratings {
        zoom: 0.60;
    }
}
.app-hero-rating .kksr-stars {
    flex-shrink: 0 !important; /* Prevent stars from shrinking and causing overlap */
}
.app-hero-rating .kksr-legend {
    font-family: var(--font-body) !important;
    color: rgba(255, 255, 255, 0.85) !important; /* Lite white text */
    margin: 0 0 0 12px !important; /* Safe gap */
    padding: 0 !important;
    background: none !important;
    white-space: nowrap !important; /* Prevent text from wrapping */
    flex-shrink: 0 !important; /* Prevent text from shrinking */
}

.app-stats-heading {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
}
.app-stats-heading::before {
    content: '';
    width: 4px;
    height: 16px;
    background: var(--gold);
    border-radius: 2px;
}

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

.app-stamp {
    border: 1.5px dashed var(--line);
    border-radius: var(--radius-sm);
    padding: 13px 12px;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.app-stamp .stamp-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.app-stamp .stamp-value {
    font-family: var(--font-mono);
    font-size: 15.5px;
    font-weight: 700;
    color: var(--ink);
}
.app-stamp.accent-gold { border-color: rgba(226,166,59,0.5); background: var(--gold-soft); }
.app-stamp.accent-gold .stamp-value { color: var(--gold-dark); }
.app-stamp.accent-teal { border-color: rgba(15,163,150,0.4); background: var(--teal-soft); }
.app-stamp.accent-teal .stamp-value { color: var(--teal-dark); }

.app-telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 12.5px;
    border: 1px solid rgba(255,255,255,0.22);
    position: relative;
}
.app-telegram-btn:hover { background: rgba(255,255,255,0.18); }

.app-sticky-cta {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 200;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 20px rgba(0,0,0,0.1);
}
.app-sticky-cta a {
    display: block;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #2A1B00;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15px;
    padding: 13px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(181,129,31,0.4);
}
@media (max-width: 640px) {
    .app-sticky-cta { display: block; }
    main.app-info-main { padding-bottom: 90px; }
}

.app-trust-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--teal-soft);
    border: 1px solid rgba(15,163,150,0.25);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 13px;
    color: var(--teal-dark);
    line-height: 1.6;
    margin-top: 14px;
}

/* ============================================================
   RELATED APPS -- responsive tile grid (fixes cramped single
   column + button/text overlap on narrow mobile widths)
   ============================================================ */
.related-apps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 460px) {
    .related-apps-grid { grid-template-columns: repeat(2, 1fr); }
}

.related-app-card {
    display: block;
    text-decoration: none;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 14px;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.related-app-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.related-app-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.related-app-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--line-soft);
    border: 1px solid var(--line);
}
.related-app-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }

.related-app-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13.5px;
    color: var(--ink);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-app-stats {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 10px;
}
.related-app-stats span {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.related-app-stats .r-bonus { color: var(--gold-dark); }
.related-app-stats .r-withdraw { color: var(--teal-dark); }

.related-app-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background: linear-gradient(160deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #2A1B00;
    border-radius: var(--radius-sm);
    padding: 9px 6px;
    font-size: 12px;
    font-weight: 800;
    font-family: var(--font-body);
    box-shadow: 0 3px 8px rgba(181,129,31,0.3);
}
.related-app-download svg { width: 13px; height: 13px; fill: #2A1B00; flex-shrink: 0; }
