@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&family=Cinzel:wght@700&display=swap');
:root {
    --lemon-gold: #FFD700;
    --lab-blue: #0056D2;
    --electric-lime: #C6FF00;
    --dark-bg: #0A0A0B;
    --card-bg: #161618;
    --input-bg: #0F0F10;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A5;
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-neon: 0 0 15px rgba(255, 215, 0, .2);
    --border: rgba(255, 255, 255, .08);
    --border-strong: rgba(255, 255, 255, .14);
    --shadow-lg: 0 18px 50px rgba(0, 0, 0, .55);
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;
    /* =========================
     BRAND TOKENS (source of truth)
     ========================= */
    --brand-primary: var(--electric-lime);
    /* acción / CTA / marca */
    --brand-secondary: var(--lemon-gold);
    /* premium / clasificado */
    --brand-blue: var(--lab-blue);
    --brand-primary-08: rgba(198, 255, 0, .08);
    --brand-primary-18: rgba(198, 255, 0, .18);
    --brand-primary-35: rgba(198, 255, 0, .35);
    --brand-secondary-08: rgba(255, 215, 0, .08);
    --brand-secondary-18: rgba(255, 215, 0, .18);
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(1200px 500px at 50% -10%, rgba(198, 255, 0, .06), transparent 55%), radial-gradient(900px 500px at 10% 20%, rgba(255, 215, 0, .06), transparent 60%), var(--dark-bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--brand-primary-18);
}

:where(a,
button,
input,
textarea,
select):focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px var(--brand-primary-18);
    border-radius: 10px;
}


/* =========================================================
   HEADER (consistente) - usa .main-header
   ========================================================= */

.main-header {
    background: rgba(10, 10, 11, .86);
    padding: 15px 5%;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


/* ✅ mejora responsive: permite wrap si se aprieta */

.main-header .header-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.5px;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    color: var(--text-main);
}

.brand span {
    color: var(--brand-primary);
}


/* IMPORTANT: NO nav global, solo header */

.main-header .nav {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    /* ✅ mejor en mobile */
}

.main-header .nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    font-size: .85rem;
    padding: 10px 10px;
    border-radius: 10px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.main-header .nav a:hover {
    color: var(--brand-primary);
    background: var(--brand-primary-08);
}

.main-header .nav a.active {
    color: var(--brand-primary);
    background: var(--brand-primary-08);
    border: 1px solid var(--brand-primary-35);
}


/* Cart pill */

.main-header .cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, .04);
}

.main-header .cart-link:hover {
    border-color: var(--brand-primary-35);
    background: var(--brand-primary-08);
}

.main-header .cart-badge {
    background: var(--brand-primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 900;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    right: -6px;
    box-shadow: 0 0 10px rgba(198, 255, 0, 0.35);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    padding: clamp(60px, 10vh, 120px) 20px;
    text-align: center;
    max-width: 1050px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.6rem);
    line-height: 1.05;
    margin: 0 0 22px 0;
    font-weight: 900;
    letter-spacing: -2px;
}

.hero p {
    font-size: clamp(1rem, 4vw, 1.25rem);
    color: var(--text-muted);
    margin: 0 auto 40px;
    padding: 0 5%;
    max-width: 760px;
}


/* =========================================================
   BUTTONS (premium)
   ========================================================= */

.btn-main,
.btn-outline {
    appearance: none;
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 12px 16px;
    font-weight: 900;
    letter-spacing: .2px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    user-select: none;
    min-height: 46px;
    transform: translateZ(0);
    position: relative;
    isolation: isolate;
}


/* CTA principal = LIME */

.btn-main {
    color: #061006;
    border: 1px solid rgba(198, 255, 0, .35);
    background: radial-gradient(120% 140% at 20% 10%, rgba(255, 255, 255, .22), transparent 35%), linear-gradient(180deg, rgba(198, 255, 0, .98), rgba(198, 255, 0, .72));
    box-shadow: 0 14px 34px rgba(0, 0, 0, .55), 0 10px 28px rgba(198, 255, 0, .18);
}

.btn-main::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: radial-gradient(60% 120% at 50% 0%, rgba(198, 255, 0, .35), transparent 60%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .62), 0 14px 40px rgba(198, 255, 0, .22);
}

.btn-main:hover::after {
    opacity: .9;
}

.btn-main:active {
    transform: translateY(0);
}

.btn-outline {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .16);
    color: var(--text-main);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}

.btn-outline:hover {
    background: rgba(198, 255, 0, .08);
    border-color: rgba(198, 255, 0, .35);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .45);
}


/* Icon-only */

.btn-icon {
    width: 46px;
    min-width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
}


/* =========================================================
   SECCIONES + FEATURES
   ========================================================= */

.section-title {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 26px;
    text-align: center;
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    font-weight: 900;
    letter-spacing: -0.9px;
}

.features-section {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(40px, 7vh, 85px) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.feature-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, 0));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.feature-item::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(700px 280px at 30% 0%, rgba(198, 255, 0, .10), transparent 55%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.feature-item:hover {
    transform: translateY(-4px);
    border-color: var(--brand-primary-35);
    box-shadow: var(--shadow-lg);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, .18);
    margin-bottom: 14px;
}

.feature-icon i {
    color: var(--brand-secondary);
    font-size: 1.25rem;
}

.feature-item h3 {
    margin: 0 0 8px 0;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -0.4px;
}

.feature-item p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: .95rem;
    line-height: 1.6;
}


/* =========================================================
   CATÁLOGO + TOOLBAR
   ========================================================= */

.products-container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto 80px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}


/* Toolbar premium */

.catalog-toolbar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 18px 0 22px 0;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    background: rgba(255, 255, 255, .02);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
}

.toolbar-left,
.toolbar-right {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}


/* Inputs/selects premium */

.input,
.select {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .14);
    color: var(--text-main);
    padding: 12px 14px;
    border-radius: 14px;
    min-height: 46px;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .10);
}

.input {
    min-width: 220px;
}

.select {
    min-width: 200px;
}

.input::placeholder {
    color: rgba(160, 160, 165, .85);
}

.input:focus,
.select:focus {
    border-color: rgba(198, 255, 0, .40);
    box-shadow: 0 0 0 6px rgba(198, 255, 0, .12);
}


/* =========================================================
   CARD
   ========================================================= */

.product-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .00));
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(600px 200px at 50% 0%, rgba(198, 255, 0, .10), transparent 55%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    border-color: var(--brand-primary-35);
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg), 0 0 18px rgba(198, 255, 0, .14);
}

.product-image-container {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, .06);
    background: rgba(255, 255, 255, .02);
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
    filter: saturate(1.02) contrast(1.02);
}

.product-card:hover .product-image-container img {
    transform: scale(1.08);
}

.product-title {
    font-size: 1.15rem;
    line-height: 1.25;
    margin: 0 0 10px 0;
    font-weight: 900;
    letter-spacing: -0.4px;
}

.product-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--text-muted);
    font-size: .85rem;
    margin-bottom: 10px;
}

.product-desc {
    color: rgba(255, 255, 255, .78);
    font-size: .95rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.product-price {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--brand-primary);
    letter-spacing: -.4px;
    text-shadow: 0 0 16px rgba(198, 255, 0, .18);
}


/* Owned tag (si lo usas) */

.owned-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .72);
    border: 1px solid rgba(198, 255, 0, .35);
    color: var(--brand-primary);
    font-weight: 900;
    font-size: .75rem;
    display: flex;
    gap: 8px;
    align-items: center;
    backdrop-filter: blur(8px);
}


/* =========================================================
   MODAL (si lo usas)
   ========================================================= */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: var(--card-bg);
    border: 1px solid var(--border-strong);
    width: 100%;
    max-width: 900px;
    max-height: 86vh;
    border-radius: var(--radius-xl);
    position: relative;
    display: flex;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: translateY(10px) scale(.98);
    opacity: 0;
    animation: modalIn .22s ease forwards;
}

@keyframes modalIn {
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    transition: var(--transition);
    z-index: 5;
}

.modal-close:hover {
    background: var(--brand-primary-08);
    border-color: var(--brand-primary-35);
    color: var(--brand-primary);
}

.modal-img-container {
    flex: 1;
    min-width: 320px;
    background: #0b0b0c;
    border-right: 1px solid var(--border);
}

.modal-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.03) contrast(1.03);
}

.modal-content {
    flex: 1.2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-primary) transparent;
}

.modal-content::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(198, 255, 0, .35);
    border-radius: 999px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}


/* =========================================================
   FOOTER (reusable, sin inline)
   ========================================================= */

.site-footer {
    background: #050505;
    border-top: 1px solid #1a1a1a;
    margin-top: 60px;
    padding: 60px 20px 20px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    display: inline-block;
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--brand-primary);
}

.footer-logo span {
    color: #fff;
}

.footer-desc {
    color: #888;
    font-size: .9rem;
    line-height: 1.6;
    margin: 12px 0 25px;
}

.footer-made {
    color: #666;
    font-size: .85rem;
    padding-top: 15px;
    border-top: 1px dashed #222;
    margin: 0;
}

.footer-heart {
    color: #ff2a6d;
}

.footer-link-inline {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 800;
}

.footer-link-inline:hover {
    text-decoration: underline;
}

.footer-title {
    color: #fff;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.footer-title-sm {
    margin-top: 22px;
    font-size: .85rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    font-size: .9rem;
    transition: .2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-link i {
    width: 20px;
    text-align: center;
    opacity: .9;
}

.footer-link:hover {
    color: var(--brand-primary);
    transform: translateX(4px);
}

.footer-line {
    color: #aaa;
    font-size: .9rem;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-line i {
    width: 20px;
    text-align: center;
    opacity: .9;
}

.footer-payments {
    display: flex;
    gap: 18px;
    font-size: 2rem;
    color: #444;
}

.footer-payments i {
    transition: .25s;
    cursor: default;
}

.footer-payments i:hover {
    color: var(--brand-secondary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
    color: #555;
    font-size: .8rem;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .main-header {
        padding: 15px 20px;
    }
    .main-header .nav a {
        display: none;
    }
    .main-header .nav .cart-link {
        display: inline-flex;
    }
    .main-header .nav .btn-main,
    .main-header .nav .btn-outline {
        display: inline-flex;
        padding: 10px 12px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .product-footer {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-main,
    .btn-outline {
        width: 100%;
        min-width: unset;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto;
    }
    .product-card,
    .product-image-container img,
    .btn-main,
    .btn-outline,
    .modal-box,
    .feature-item {
        transition: none !important;
        animation: none !important;
    }
}


/* =========================================================
   THEME LIGHT 2026 (opcional)
   Activa con: <body data-theme="light">
   ========================================================= */

body[data-theme="light"] {
    --dark-bg: #F6F7FB;
    --card-bg: #FFFFFF;
    --input-bg: #F2F4F8;
    --text-main: #0B0D12;
    --text-muted: #4D5566;
    --border: rgba(12, 16, 26, .10);
    --border-strong: rgba(12, 16, 26, .16);
    --shadow-neon: 0 0 0 rgba(0, 0, 0, 0);
    --shadow-lg: 0 18px 50px rgba(14, 18, 28, .12);
    background: radial-gradient(1100px 520px at 50% -10%, rgba(0, 86, 210, .10), transparent 55%), radial-gradient(900px 520px at 10% 20%, rgba(255, 215, 0, .10), transparent 60%), var(--dark-bg);
    color: var(--text-main);
}


/* Header light */

body[data-theme="light"] .main-header {
    background: rgba(246, 247, 251, .72);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
}

body[data-theme="light"] .main-header .nav a {
    color: rgba(11, 13, 18, .70);
}

body[data-theme="light"] .main-header .nav a:hover {
    color: #0B0D12;
    background: rgba(0, 86, 210, .08);
}


/* Footer light */

body[data-theme="light"] .site-footer {
    background: #F6F7FB;
    border-top: 1px solid rgba(12, 16, 26, .10);
}

body[data-theme="light"] .footer-desc {
    color: rgba(11, 13, 18, .68);
}

body[data-theme="light"] .footer-made {
    color: rgba(11, 13, 18, .55);
    border-top: 1px dashed rgba(12, 16, 26, .18);
}

body[data-theme="light"] .footer-title {
    color: #0B0D12;
}

body[data-theme="light"] .footer-link {
    color: rgba(11, 13, 18, .72);
}

body[data-theme="light"] .footer-line {
    color: rgba(11, 13, 18, .72);
}

body[data-theme="light"] .footer-bottom {
    color: rgba(11, 13, 18, .55);
    border-top: 1px solid rgba(12, 16, 26, .10);
}

body[data-theme="light"] .footer-payments {
    color: rgba(11, 13, 18, .30);
}

body[data-theme="light"] .footer-payments i:hover {
    color: var(--brand-blue);
}


/* =========================
   HERO VIDEO BACKGROUND (FIX REAL)
   ========================= */


/* ✅ Esto es lo que te estaba faltando en mobile: altura mínima + layout */

.hero.hero-video {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    isolation: isolate;
    max-width: 1200px;
    /* se siente premium tipo “card hero” */
    margin: 22px auto 0;
    padding: clamp(70px, 10vh, 120px) 18px;
    min-height: clamp(520px, 72vh, 760px);
    /* ✅ ahora el video TIENE espacio */
    display: grid;
    place-items: center;
}


/* ✅ el contenido debe ir sobre el video */

.hero.hero-video .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}


/* video full cover */

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* z-index: 0;
    filter: saturate(1.05) contrast(1.08) brightness(0.72);
    transform: scale(1.02);
    display: block; */
}


/* overlay pro para legibilidad */

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(900px 420px at 50% 12%, rgba(0, 0, 0, .18), transparent 60%), linear-gradient(to bottom, rgba(0, 0, 0, .55), rgba(10, 10, 11, .94));
}


/* CTA con presencia */

.hero-cta {
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 18px 46px rgba(198, 255, 0, .16), 0 0 24px rgba(198, 255, 0, .10);
}


/* ✅ mobile: mejor altura + bordes menos agresivos */

@media (max-width: 700px) {
    .hero.hero-video {
        border-radius: var(--radius-lg);
        min-height: 78vh;
        padding: 72px 16px;
    }
    .hero p {
        margin-bottom: 26px;
        /* evita que el botón quede “aplastado” */
    }
}


/* si el usuario prefiere menos movimiento: apaga video */

@media (prefers-reduced-motion: reduce) {
    .hero-bg-video {
        display: none;
    }
    .hero.hero-video {
        background: radial-gradient(900px 420px at 50% 10%, rgba(198, 255, 0, .10), transparent 55%), radial-gradient(900px 520px at 10% 30%, rgba(255, 215, 0, .08), transparent 60%), var(--dark-bg);
    }
}