/* =============================================
   Variables & Design Tokens — Light Theme
   ============================================= */
:root {
    --red:      #e63946;
    --red-soft: rgba(230, 57, 70, 0.12);
    --green:    #06d6a0;
    --green-soft: rgba(6, 214, 160, 0.12);
    --gold:     #ffd166;
    --gold-soft: rgba(255, 209, 102, 0.18);
    --wa:       #25D366;

    --bg:       #f2f4f8;
    --surface:  #ffffff;
    --text:     #1a1d27;
    --muted:    #6b7280;
    --border:   rgba(0,0,0,0.07);

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.09);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    --font-h: 'Outfit', sans-serif;
    --font-b: 'Inter', sans-serif;
    --ease:   cubic-bezier(.4,0,.2,1);
}

/* =============================================
   Reset
   ============================================= */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-b);
    line-height: 1.65;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,.logo { font-family: var(--font-h); }

/* =============================================
   Background decorative blobs
   ============================================= */
.bg-particles {
    position: fixed; inset: 0; z-index: -1;
    overflow: hidden;
    background: #fafbfd;
}
.bg-particles::before, .bg-particles::after {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.35;
    animation: blobFloat 24s ease-in-out infinite alternate;
}
.bg-particles::before { background: #ffd6d8; top: -15%; left: -15%; }
.bg-particles::after  { background: #c3f0e5; bottom: -15%; right: -15%; animation-delay: -12s; }
@keyframes blobFloat {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(80px, 60px) scale(1.15); }
}

/* =============================================
   Utility
   ============================================= */
.container { width:90%; max-width:1200px; margin:0 auto; }
.text-center { text-align:center; }
.mt-4 { margin-top:1.5rem; }
.hide-mobile { }

.text-gradient {
    background: linear-gradient(125deg, var(--red), #d90429);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   Logo Images
   ============================================= */
.logo-img-link { display:flex; align-items:center; }
.nav-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
}
.hero-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.2rem;
    display: block;
}
.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 1rem;
}


/* =============================================
   Buttons
   ============================================= */
.btn {
    display: inline-flex; align-items: center; gap:.55rem;
    padding:.75rem 1.6rem;
    border-radius: 50px;
    font-family: var(--font-h); font-weight:600; font-size:1rem;
    cursor:pointer; border:none;
    transition: all .25s var(--ease);
    text-decoration: none;
}
.btn-primary { background:var(--red); color:#fff; box-shadow:0 4px 16px rgba(230,57,70,.3); }
.btn-primary:hover { background:#d32f3f; transform:translateY(-2px); }
.btn-whatsapp { background:var(--wa); color:#fff; box-shadow:0 4px 16px rgba(37,211,102,.28); }
.btn-whatsapp:hover { background:#1ebe58; transform:translateY(-2px); }
.btn-outline {
    background: var(--surface);
    color: var(--text);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color:var(--red); color:var(--red); transform:translateY(-2px); }

/* =============================================
   Navbar
   ============================================= */
.navbar {
    position:fixed; top:0; left:0; width:100%;
    z-index:200;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding:1rem 0;
    transition: padding .3s, box-shadow .3s;
}
.navbar.scrolled { padding:.6rem 0; box-shadow: var(--shadow-sm); }
.nav-container { display:flex; align-items:center; justify-content:space-between; gap:1.5rem; }
.logo { font-size:1.55rem; font-weight:800; letter-spacing:-.5px; }
.logo-red  { color:var(--red); }
.logo-green{ color:var(--green); }
.nav-links { display:flex; gap:2rem; }
.nav-links a { font-weight:500; font-size:.95rem; opacity:.75; transition:opacity .2s, color .2s; }
.nav-links a:hover { opacity:1; color:var(--red); }
.menu-toggle { display:none; background:transparent; border:none; font-size:1.6rem; cursor:pointer; color:var(--text); }

/* =============================================
   Hero
   ============================================= */
.hero {
    min-height:100vh;
    display:flex; align-items:center;
    padding-top:90px;
    padding-bottom: 4rem;
}
.hero-container {
    display:grid;
    grid-template-columns: 480px 1fr;
    gap:5rem;
    align-items:center;
}

/* Badge */
.badge {
    display:inline-block;
    padding:.38rem 1.1rem;
    border-radius:50px;
    background:var(--green-soft);
    color:#048c6c;
    border:1px solid rgba(6,214,160,.25);
    font-size:.82rem;
    font-weight:600;
    margin-bottom:1.4rem;
    text-transform:uppercase;
    letter-spacing:1px;
}

.hero-title {
    font-size:clamp(2.4rem,4.5vw,3.8rem);
    line-height:1.1;
    font-weight:800;
    margin-bottom:1.3rem;
}
.hero-subtitle {
    font-size:1.08rem;
    color:var(--muted);
    margin-bottom:2.5rem;
    max-width:470px;
    line-height:1.7;
}
.hero-cta-row { display:flex; gap:1rem; flex-wrap:wrap; }

/* =============================================
   RADIO PLAYER
   ============================================= */
.radio-player {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.2rem 2rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    position: relative;
    overflow: hidden;
}

/* Top gradient stripe */
.radio-player::before {
    content:'';
    position:absolute;
    top:0; left:0; right:0;
    height:5px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Header row */
.rp-header {
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
}
.rp-live-badge {
    display:flex;
    align-items:center;
    gap:.4rem;
    background: var(--red-soft);
    color: var(--red);
    border:1px solid rgba(230,57,70,.2);
    padding:.22rem .75rem;
    border-radius:50px;
    font-size:.75rem;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
}
.rp-live-dot {
    width:7px; height:7px;
    background:var(--red);
    border-radius:50%;
    animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.25;} }

.rp-brand {
    font-family:var(--font-h);
    font-weight:700;
    font-size:.9rem;
    color:var(--muted);
}

/* Disc */
.rp-disc-wrap {
    position:relative;
    width:190px; height:190px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.rp-disc {
    width:140px; height:140px;
    border-radius:50%;
    background: linear-gradient(145deg,#f0f2f5,#ffffff);
    box-shadow:
        8px 8px 20px rgba(0,0,0,.1),
        -4px -4px 10px rgba(255,255,255,.9),
        inset 0 0 0 3px #e8ebf0;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
    transition:transform .4s var(--ease);
}
.rp-disc.spinning { animation: spinDisc 5s linear infinite; }
@keyframes spinDisc { 100%{ transform: rotate(360deg); } }

.rp-disc-inner {
    width:64px; height:64px;
    background: linear-gradient(135deg, var(--red), #c62828);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.8rem;
    color:#fff;
    box-shadow: 0 4px 14px rgba(230,57,70,.45);
}
.rp-disc-ring {
    position:absolute;
    border-radius:50%;
    border:1px dashed rgba(0,0,0,.08);
    top:50%; left:50%;
    transform:translate(-50%,-50%);
}
.rp-disc-ring.r1 { width:105px; height:105px; }
.rp-disc-ring.r2 { width:126px; height:126px; }

/* Soundwaves around disc */
.rp-waves {
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    pointer-events:none;
}
.rp-waves span {
    position:absolute;
    border-radius:50%;
    border:2px solid var(--red);
    opacity:0;
    width:140px; height:140px;
    transition:opacity .3s;
}
.rp-waves.active span:nth-child(1){ animation: wave 2.4s ease-out infinite; animation-delay:0s; }
.rp-waves.active span:nth-child(2){ animation: wave 2.4s ease-out infinite; animation-delay:.4s; }
.rp-waves.active span:nth-child(3){ animation: wave 2.4s ease-out infinite; animation-delay:.8s; }
.rp-waves.active span:nth-child(4){ animation: wave 2.4s ease-out infinite; animation-delay:1.2s; border-color:var(--green); }
.rp-waves.active span:nth-child(5){ animation: wave 2.4s ease-out infinite; animation-delay:1.6s; border-color:var(--green); }
.rp-waves.active span:nth-child(6){ animation: wave 2.4s ease-out infinite; animation-delay:2.0s; border-color:var(--gold); }

@keyframes wave {
    0%   { transform:scale(1);   opacity:.7; }
    100% { transform:scale(2.2); opacity:0; }
}

/* Station info */
.rp-station-info {
    text-align:center;
}
.rp-station-info h3 {
    font-size:1.15rem;
    font-weight:700;
    margin-bottom:.25rem;
}
.rp-station-info p {
    font-size:.875rem;
    color:var(--muted);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:.4rem;
}
.rp-station-info p.streaming::before {
    content:'';
    width:8px; height:8px;
    background:var(--green);
    border-radius:50%;
    box-shadow:0 0 6px var(--green);
    display:inline-block;
}

/* Equalizer */
.rp-equalizer {
    display:flex;
    align-items:flex-end;
    gap:3px;
    height:44px;
    width:100%;
    padding:6px 12px;
    background:#f8f9fa;
    border-radius:var(--radius-sm);
    border:1px solid var(--border);
}
.bar {
    flex:1;
    background:linear-gradient(to top, var(--red), var(--gold));
    border-radius:3px 3px 0 0;
    height:12%;
    transition:height .1s;
}
.rp-equalizer.active .bar { animation: eq 1.1s ease-in-out infinite alternate; }
.rp-equalizer.active .bar:nth-child(1)  { animation-delay:.00s; }
.rp-equalizer.active .bar:nth-child(2)  { animation-delay:.09s; background:linear-gradient(to top,var(--red),#ff8a80); }
.rp-equalizer.active .bar:nth-child(3)  { animation-delay:.18s; }
.rp-equalizer.active .bar:nth-child(4)  { animation-delay:.27s; background:linear-gradient(to top,var(--gold),#ffe599); }
.rp-equalizer.active .bar:nth-child(5)  { animation-delay:.36s; }
.rp-equalizer.active .bar:nth-child(6)  { animation-delay:.45s; background:linear-gradient(to top,var(--green),#80e5cc); }
.rp-equalizer.active .bar:nth-child(7)  { animation-delay:.54s; }
.rp-equalizer.active .bar:nth-child(8)  { animation-delay:.63s; background:linear-gradient(to top,var(--red),var(--gold)); }
.rp-equalizer.active .bar:nth-child(9)  { animation-delay:.72s; }
.rp-equalizer.active .bar:nth-child(10) { animation-delay:.81s; background:linear-gradient(to top,var(--green),var(--gold)); }
.rp-equalizer.active .bar:nth-child(11) { animation-delay:.90s; }
.rp-equalizer.active .bar:nth-child(12) { animation-delay:.99s; background:linear-gradient(to top,var(--red),#ff8a80); }

@keyframes eq {
    0%  { height:10%; }
    60% { height:85%; }
    100%{ height:100%;}
}

/* Controls row */
.rp-controls {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:1.4rem;
}
.rp-play-btn {
    width:70px; height:70px;
    border-radius:50%;
    background:linear-gradient(135deg, var(--red), #c62828);
    color:#fff;
    font-size:2rem;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    border:none;
    box-shadow:0 6px 22px rgba(230,57,70,.45);
    transition: transform .22s var(--ease), box-shadow .22s;
}
.rp-play-btn:hover { transform:scale(1.08); box-shadow:0 10px 30px rgba(230,57,70,.55); }
.rp-play-btn:active { transform:scale(.96); }

.rp-btn-secondary {
    width:44px; height:44px;
    border-radius:50%;
    background:#f1f3f6;
    border:1px solid var(--border);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.2rem;
    cursor:pointer;
    color:var(--muted);
    transition:all .2s;
}
.rp-btn-secondary:hover { background:var(--red-soft); color:var(--red); border-color:rgba(230,57,70,.25); }

/* Volume */
.rp-volume {
    display:flex;
    align-items:center;
    gap:.8rem;
    width:100%;
}
.rp-vol-icon { font-size:1rem; color:var(--muted); flex-shrink:0; }
.rp-volume input[type="range"] {
    flex:1; -webkit-appearance:none; appearance:none;
    height:5px;
    background:#e2e5ec;
    border-radius:5px;
    outline:none;
}
.rp-volume input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance:none;
    width:16px; height:16px;
    border-radius:50%;
    background:var(--red);
    cursor:pointer;
    box-shadow:0 2px 6px rgba(230,57,70,.4);
}

/* Quality toggle */
/* App CTA inside player */
.rp-app-cta {
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid var(--border);
    padding-top:1.2rem;
    width:100%;
}
.rp-quality-badge {
    padding:.28rem .85rem;
    border-radius:50px;
    background: var(--red-soft);
    border: 1.5px solid rgba(230,57,70,.25);
    font-size:.75rem;
    font-weight:600;
    color: var(--red);
    font-family: var(--font-b);
}
.rp-app-icons {
    display:flex;
    gap:0.5rem;
}
.rp-app-btn {
    width:34px;
    height:34px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.15rem;
    color:var(--text);
    background:var(--surface);
    border:1px solid var(--border);
    cursor:pointer;
    transition:all .2s;
    text-decoration:none;
    box-shadow:var(--shadow-sm);
}
.rp-app-btn.android:hover { background:#1a1a2e; color:#fff; border-color:#1a1a2e; }
.rp-app-btn.ios:hover { background:#1c1c1e; color:#fff; border-color:#1c1c1e; }


/* =============================================
   Features
   ============================================= */
.features, .services { padding:6rem 0; }
.section-header { text-align:center; margin-bottom:4rem; }
.section-header h2 { font-size:2.5rem; font-weight:800; margin-bottom:.8rem; }
.section-header p { color:var(--muted); font-size:1.1rem; }

.cards-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:2rem; }
.glass-card {
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--radius-md);
    padding:2.5rem 2rem;
    box-shadow:var(--shadow-sm);
    transition:transform .28s var(--ease), box-shadow .28s;
}
.glass-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-md); }
.card-icon { width:60px; height:60px; border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:2rem; margin-bottom:1.5rem; }
.red-icon    { background:var(--red-soft);  color:var(--red); }
.green-icon  { background:var(--green-soft);color:var(--green); }
.yellow-icon { background:var(--gold-soft); color:#b07800; }
.flex-card h3 { font-size:1.35rem; margin-bottom:.8rem; }
.flex-card p  { color:var(--muted); font-size:.97rem; line-height:1.7; }

/* =============================================
   Services Banner
   ============================================= */
.glass-banner {
    background:linear-gradient(135deg,rgba(230,57,70,.07),rgba(6,214,160,.07));
    border:1px solid rgba(255,255,255,.7);
    border-radius:var(--radius-lg);
    padding:4rem;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
}
.banner-content { max-width:580px; z-index:2; }
.banner-content h2 { font-size:2.3rem; font-weight:800; margin-bottom:1rem; }
.banner-content p  { color:var(--muted); font-size:1.05rem; margin-bottom:1.8rem; line-height:1.7; }
.benefits-list { list-style:none; margin-bottom:2rem; }
.benefits-list li { display:flex; align-items:center; gap:.8rem; margin-bottom:.85rem; font-weight:500; }
.benefits-list li i { color:var(--green); font-size:1.25rem; }
.banner-visual { position:absolute; right:-3%; font-size:24rem; opacity:.05; pointer-events:none; color:var(--red); }

/* =============================================
   Downloads
   ============================================= */
.downloads { padding:5rem 0; background:var(--surface); border-top:1px solid var(--border); }
.downloads h2 { font-size:2.2rem; font-weight:800; margin-bottom:.8rem; }
.downloads p  { color:var(--muted); font-size:1.05rem; margin-bottom:2.5rem; }
.app-buttons  { display:flex; justify-content:center; gap:1.5rem; flex-wrap:wrap; }

/* =============================================
   Footer
   ============================================= */
footer { background:var(--surface); border-top:1px solid var(--border); padding:5rem 0 2rem; }
.footer-container { display:grid; grid-template-columns:2fr 1fr 1fr; gap:4rem; margin-bottom:4rem; }
.footer-brand p { color:var(--muted); margin:1.1rem 0 1.5rem; font-size:.92rem; max-width:300px; }
.social-links { display:flex; gap:.8rem; }
.social-links a { width:44px; height:44px; border-radius:50%; background:#f4f6f9; display:flex; align-items:center; justify-content:center; font-size:1.2rem; transition:.25s; }
.social-links a:hover { background:var(--red); color:#fff; transform:translateY(-3px); }
.footer-links h3, .footer-contact h3 { font-size:1.1rem; margin-bottom:1.4rem; }
.footer-links ul, .footer-contact ul { list-style:none; }
.footer-links li { margin-bottom:.9rem; }
.footer-links a { color:var(--muted); font-size:.93rem; }
.footer-links a:hover { color:var(--red); }
.footer-contact li { display:flex; align-items:center; gap:.9rem; margin-bottom:1rem; color:var(--muted); font-size:.93rem; }
.footer-contact li i { color:var(--red); font-size:1.2rem; }
.footer-contact a:hover { color:var(--green); }
.footer-bottom { text-align:center; padding-top:2rem; border-top:1px solid var(--border); color:var(--muted); font-size:.87rem; }
.footer-credits { margin-top: .5rem; font-size: .82rem; }
.footer-credits a { color: var(--text); font-weight: 700; transition: color .2s; }
.footer-credits a:hover { color: var(--red); }

/* =============================================
   Responsive
   ============================================= */
@media (max-width:1050px) {
    .hero-container { grid-template-columns:1fr; text-align:center; gap:3rem; }
    .hero-visual { order:-1; display:flex; justify-content:center; }
    .radio-player { max-width:440px; width:100%; }
    .hero-subtitle { margin:0 auto 2.5rem; }
    .hero-cta-row { justify-content:center; }
    .glass-banner { flex-direction:column; padding:3rem 2rem; text-align:center; }
    .benefits-list li { justify-content:center; }
    .footer-container { grid-template-columns:1fr; gap:2rem; text-align:center; }
    .footer-brand p { margin:1rem auto; }
    .social-links { justify-content:center; }
    .footer-contact li { justify-content:center; }
    .hide-mobile { display:none; }
}
@media (max-width:768px) {
    .nav-links { display:none; }
    .menu-toggle { display:block; }
    .hero-title { font-size:2.4rem; }
    .radio-player { padding:1.8rem 1.5rem; }
    .rp-disc-wrap { width:160px; height:160px; }
    .rp-disc { width:115px; height:115px; }
    .rp-disc-inner { width:52px; height:52px; font-size:1.5rem; }
    .rp-waves span { width:115px; height:115px; }
}

/* Mobile nav overlay */
.nav-links.open {
    display:flex !important;
    flex-direction:column;
    position:absolute;
    top:100%; left:0; right:0;
    background:rgba(255,255,255,.97);
    backdrop-filter:blur(16px);
    padding:1.5rem 5%;
    border-bottom:1px solid var(--border);
    box-shadow:var(--shadow-md);
    gap:1.2rem;
    z-index:199;
}

/* =============================================
   Download Buttons
   ============================================= */
.app-buttons { display:flex; justify-content:center; gap:1.5rem; flex-wrap:wrap; margin-bottom:2rem; }

.btn-download {
    display:inline-flex;
    align-items:center;
    gap:1rem;
    padding:.9rem 1.8rem;
    border-radius:var(--radius-md);
    font-family:var(--font-h);
    font-weight:600;
    font-size:1rem;
    cursor:pointer;
    border:none;
    text-decoration:none;
    transition:all .28s var(--ease);
    line-height:1.2;
}
.btn-download i { font-size:2rem; flex-shrink:0; }
.btn-download small { font-weight:400; font-size:.72rem; opacity:.85; display:block; }

.btn-download.android {
    background: #1a1a2e;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.btn-download.android:hover { background:#16213e; transform:translateY(-3px); box-shadow:0 10px 28px rgba(0,0,0,.3); color:#fff; }

.btn-download.ios {
    background: linear-gradient(135deg,#1c1c1e,#2c2c2e);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.btn-download.ios:hover { transform:translateY(-3px); box-shadow:0 10px 28px rgba(0,0,0,.3); }

/* =============================================
   PWA Guide Modal
   ============================================= */
.pwa-guide {
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(6px);
    z-index:999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:1.5rem;
    animation:fadeIn .25s ease;
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

.pwa-guide-inner {
    background:var(--surface);
    border-radius:var(--radius-lg);
    padding:2.5rem;
    max-width:440px;
    width:100%;
    box-shadow:var(--shadow-lg);
    position:relative;
}
.pwa-guide-inner h3 {
    font-size:1.4rem;
    font-weight:700;
    margin-bottom:1.5rem;
    display:flex;
    align-items:center;
    gap:.6rem;
}
.pwa-guide-inner ol {
    padding-left:1.4rem;
    margin-bottom:1.5rem;
    display:flex;
    flex-direction:column;
    gap:.85rem;
}
.pwa-guide-inner li { font-size:1rem; line-height:1.6; color:var(--muted); }
.pwa-guide-inner li strong { color:var(--text); }
.pwa-note {
    background:var(--green-soft);
    border:1px solid rgba(6,214,160,.2);
    border-radius:var(--radius-sm);
    padding:.85rem 1rem;
    font-size:.88rem;
    color:#048c6c;
    line-height:1.6;
}
.pwa-close {
    position:absolute;
    top:1.2rem; right:1.2rem;
    width:36px; height:36px;
    border-radius:50%;
    border:1px solid var(--border);
    background:var(--bg);
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.1rem;
    color:var(--muted);
    transition:.2s;
}
.pwa-close:hover { background:var(--red-soft); color:var(--red); border-color:rgba(230,57,70,.2); }
