/* ===== RADIO THEME — TIERRAS / TROPICAL FIESTA ===== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

/* ── Tokens ── */
:root {
    /* Fondo cálido festivo */
    --bg1: #fff8e1;
    --bg2: #fff3cd;
    --surface: #ffffff;
    --surface2: #fffde7;

    --ink: #2e1a0e;
    --inkSoft: rgba(46, 26, 14, .55);

    /* Azul royal del logo */
    --primary: #1a47b8;
    --primaryLight: #3566d6;
    --primaryDark: #0f2e7a;
    --primarySoft: rgba(26, 71, 184, .10);

    /* Colores fiesta del logo */
    --accent: #00e5ff;
    --lime: #76ff03;
    --magenta: #ff1493;
    --yellow: #fdd835;
    --cyan: #00bcd4;
    --live: #ff1744;

    /* Colores bandera Bolivia */
    --flag-red: #d52b1e;
    --flag-yellow: #f9e300;
    --flag-green: #007934;

    /* Degradado tropical multicolor */
    --tropical-grad: linear-gradient(90deg,
            #ff1493 0%,
            #ff6f00 20%,
            #fdd835 40%,
            #76ff03 60%,
            #00e5ff 80%,
            #1a47b8 100%);

    --strokeColor: rgba(26, 71, 184, .12);
    --stroke: 1px solid var(--strokeColor);
    --shadow: 0 2px 10px rgba(26, 71, 184, .10);
    --shadow2: 0 6px 24px rgba(26, 71, 184, .18);

    --r: 16px;

    --safeB: env(safe-area-inset-bottom, 0px);
    --safeT: env(safe-area-inset-top, 0px);
}

/* ── Reset / Global ── */
html,
body {
    height: 100%;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Nunito', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Animations ── */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: .35;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .15;
    }
}

@keyframes dance {

    0%,
    100% {
        transform: scaleY(.12);
        opacity: .30;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes tropicalPulse {
    0% {
        background-size: 100% 100%;
    }

    50% {
        background-size: 250% 100%;
    }

    100% {
        background-size: 100% 100%;
    }
}

@keyframes capFade {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtleGlow {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(26, 71, 184, .15);
    }

    50% {
        box-shadow: 0 0 24px rgba(0, 229, 255, .35);
    }
}

/* ── Animación de bordes tropical: magenta → amarillo → cyan → azul → lime ── */
@keyframes tropicalBorderCycle {
    0% {
        border-color: var(--magenta);
        box-shadow: 0 0 10px rgba(255, 20, 147, .40);
    }

    20% {
        border-color: var(--yellow);
        box-shadow: 0 0 10px rgba(253, 216, 53, .40);
    }

    40% {
        border-color: var(--lime);
        box-shadow: 0 0 10px rgba(118, 255, 3, .40);
    }

    60% {
        border-color: var(--cyan);
        box-shadow: 0 0 10px rgba(0, 188, 212, .40);
    }

    80% {
        border-color: var(--primary);
        box-shadow: 0 0 10px rgba(26, 71, 184, .40);
    }

    100% {
        border-color: var(--magenta);
        box-shadow: 0 0 10px rgba(255, 20, 147, .40);
    }
}

@keyframes borderGradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes playBtnPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 20, 147, .45);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 20, 147, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ── Page shell ── */
.page {
    height: 100dvh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding-top: var(--safeT);
    padding-bottom: var(--safeB);
    overflow: hidden;
}

.wrap {
    flex: 1;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 12px 14px;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(26, 71, 184, .30) transparent;
    box-sizing: border-box;
}

.wrap::-webkit-scrollbar {
    width: 4px;
}

.wrap::-webkit-scrollbar-thumb {
    background: rgba(26, 71, 184, .30);
    border-radius: 4px;
}

.wrap::-webkit-scrollbar-track {
    background: transparent;
}

/* ── Section order: Hero, Carousel, Socials, Player ── */
.hero {
    order: 1;
    flex-shrink: 0;
}

.carousel {
    order: 2;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.socials {
    order: 3;
    flex-shrink: 0;
}

.player {
    order: 4;
    flex-shrink: 0;
}

/* ── Card base ── */
.card {
    background: var(--surface);
    border: var(--stroke);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: box-shadow .35s ease, transform .35s ease;
}

.card:hover {
    box-shadow: var(--shadow2);
}

.card::after {
    display: none !important;
}

/* ══════════════════════════════════
   ANIMATED BORDERS — Bordes tropicales
   Ciclo multicolor: magenta → amarillo → lime → cyan → azul
   ══════════════════════════════════ */

/* --- Hero animated border --- */
.hero {
    border: 3px solid var(--magenta);
    animation: fadeInUp .5s ease, tropicalBorderCycle 4s ease-in-out infinite;
}

/* --- Carousel animated border --- */
.polaroid.carousel .frame {
    border: 3px solid var(--cyan);
    animation: tropicalBorderCycle 4s ease-in-out infinite;
    animation-delay: 1.3s;
}

/* --- Player animated border --- */
.boombox.player {
    border: 3px solid var(--lime);
    animation: subtleGlow 3s ease-in-out infinite, tropicalBorderCycle 4s ease-in-out infinite;
    animation-delay: 0s, 2.6s;
}

/* ── Hero ── */
.hero {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primaryLight) 50%, #00bcd4 100%);
    color: #fff;
}

.hero:hover {
    box-shadow: 0 6px 28px rgba(26, 71, 184, .35);
}

.logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 3px solid rgba(255, 255, 255, .50);
    overflow: hidden;
    flex: 0 0 auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .20);
    transition: transform .4s ease, box-shadow .4s ease;
}

.logo:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 229, 255, .35);
}

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

.heroText {
    min-width: 0;
}

.heroText h1 {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(14px, 5vw, 22px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .02em;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}

.heroText p {
    margin: 3px 0 0;
    font-size: clamp(10px, 3vw, 12px);
    color: rgba(255, 255, 255, .85);
    font-weight: 700;
    letter-spacing: .02em;
}

.heroActions {
    margin-left: auto;
    flex: 0 0 auto;
}

/* ── Buttons (Tropical Ripple) ── */
.btn {
    cursor: pointer;
    border: 1.5px solid var(--strokeColor);
    background: var(--surface);
    color: var(--ink);
    padding: 10px 18px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 13px;
    font-family: 'Nunito', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
    transition: all .3s ease;
    user-select: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 229, 255, .25) 10%, transparent 10.01%);
    transform: scale(0);
    opacity: 0;
    border-radius: inherit;
    pointer-events: none;
}

.btn:active::after {
    animation: ripple .5s ease-out;
}

.btn:hover {
    background: rgba(0, 229, 255, .08);
    border-color: rgba(0, 229, 255, .35);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 229, 255, .18);
}

.btn:active {
    transform: translateY(0) scale(.96);
}

.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.btnPrimary {
    background: linear-gradient(135deg, var(--magenta), var(--primary));
    border-color: transparent;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 3px 12px rgba(255, 20, 147, .28);
}

.btnPrimary::after {
    background: radial-gradient(circle, rgba(255, 255, 255, .35) 10%, transparent 10.01%);
}

.btnPrimary:hover {
    background: linear-gradient(135deg, #ff69b4, var(--primaryLight));
    box-shadow: 0 6px 22px rgba(255, 20, 147, .35);
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}

/* ── Botón Compartir — circular, solo icono SVG ── */
#btnShare {
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
    line-height: 0;
    color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--magenta), var(--primary));
    border: 2px solid rgba(255, 255, 255, .30);
    box-shadow: 0 3px 12px rgba(255, 20, 147, .28);
}

#btnShare::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='m494.533 172.016-115.899-115.899c-9.563-9.563-19.263-14.412-28.829-14.412-13.135 0-28.472 9.99-28.472 38.146v39.457c-84.204 3.67-162.839 38.203-222.815 98.176-63.524 63.52-98.512 147.975-98.518 237.809 0 6.454 4.128 12.186 10.25 14.229 1.563.521 3.163.772 4.748.772 4.627 0 9.106-2.147 11.994-5.991 70.819-94.266 177.439-149.975 294.341-154.373v38.85c0 28.154 15.337 38.146 28.471 38.146h.003c9.565 0 19.265-4.849 28.827-14.411l115.898-115.901c11.265-11.261 17.468-26.283 17.468-42.299 0-16.013-6.203-31.036-17.467-42.299z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#btnShare:hover {
    transform: scale(1.10);
    box-shadow: 0 5px 20px rgba(255, 20, 147, .40);
}

/* ── Player ── */
.boombox.player {
    padding: 20px 22px;
    background: linear-gradient(135deg, var(--primary) 0%, #0d47a1 40%, #00695c 100%);
    color: #fff;
}

.boombox.player:hover {
    box-shadow: 0 6px 28px rgba(26, 71, 184, .35);
}

.rowTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border: 1.5px solid rgba(255, 255, 255, .30);
    border-radius: 12px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: background .3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.liveDot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--live);
    box-shadow: 0 0 8px rgba(255, 23, 68, .65);
    animation: blink 1s ease-in-out infinite;
}

/* EQ */
.eq {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.eq .bar {
    width: 3px;
    height: 18px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .80);
    transform-origin: bottom;
    animation: dance .55s ease-in-out infinite;
}

.eq .bar:nth-child(1) {
    background: var(--magenta);
}

.eq .bar:nth-child(2) {
    animation-delay: .07s;
    background: var(--yellow);
}

.eq .bar:nth-child(3) {
    animation-delay: .14s;
    background: var(--lime);
}

.eq .bar:nth-child(4) {
    animation-delay: .21s;
    background: var(--cyan);
}

.eq .bar:nth-child(5) {
    animation-delay: .28s;
    background: var(--accent);
}

.eq .bar:nth-child(6) {
    animation-delay: .35s;
    background: var(--magenta);
}

.eq .bar:nth-child(7) {
    animation-delay: .42s;
    background: var(--yellow);
}

.eq.paused .bar {
    animation: none;
    transform: scaleY(.12);
    opacity: .20;
    background: rgba(255, 255, 255, .60);
}

/* Controls */
.controls {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* ── Play button — grande y circular estilo tropical ── */
.bigPlay {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, .40);
    background: linear-gradient(135deg, rgba(255, 20, 147, .35), rgba(0, 229, 255, .35));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .22);
    transition: all .3s ease;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: playBtnPulse 2s ease-in-out infinite;
}

.bigPlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, .40) 10%, transparent 10.01%);
    transform: scale(0);
    opacity: 0;
    border-radius: inherit;
    pointer-events: none;
}

.bigPlay:active::after {
    animation: ripple .5s ease-out;
}

.bigPlay #playText {
    display: none;
}

.bigPlay #playIcon {
    font-size: 0;
    color: transparent;
    width: 30px;
    height: 30px;
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M8.5 4.8a2 2 0 0 1 3.1-1.7l16.5 11.2a2 2 0 0 1 0 3.4L11.6 28.9a2 2 0 0 1-3.1-1.7z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 4px;
}

/* Cuando está sonando, cambiar a icono pause SVG */
.boombox.player:has(.eq:not(.paused)) .bigPlay #playIcon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='m13 5v22a3 3 0 0 1-3 3h-1a3 3 0 0 1-3-3v-22a3 3 0 0 1 3-3h1a3 3 0 0 1 3 3zm10-3h-1a3 3 0 0 0-3 3v22a3 3 0 0 0 3 3h1a3 3 0 0 0 3-3v-22a3 3 0 0 0-3-3z'/%3E%3C/svg%3E");
    margin-left: 0;
}

.bigPlay:hover {
    transform: scale(1.14);
    background: linear-gradient(135deg, rgba(255, 20, 147, .50), rgba(0, 229, 255, .50));
    border-color: rgba(255, 255, 255, .65);
    box-shadow: 0 6px 30px rgba(255, 20, 147, .30);
    animation: none;
}

.bigPlay:active {
    transform: scale(.90);
}

.bigPlay:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.track {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.tiny {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255, 255, 255, .75);
    gap: 8px;
    font-weight: 700;
}

/* ── Progress bar — Degradado tropical multicolor animado ── */
.progress {
    height: 8px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, .12);
    overflow: hidden;
    position: relative;
}

/* Sutil franja multicolor detrás del fill */
.progress::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--tropical-grad);
    border-radius: 10px;
    opacity: .10;
}

.fill {
    height: 100%;
    min-width: 100% !important;
    width: 100% !important;
    background: linear-gradient(
        90deg,
        #ff1493 0%,
        #ff6f00 12%,
        #fdd835 25%,
        #76ff03 37%,
        #00e5ff 50%,
        #1a47b8 62%,
        #ff1493 75%,
        #ff6f00 87%,
        #fdd835 100%
    );
    background-size: 200% 100%;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    animation: shimmer 3s linear infinite;
    transition: opacity .4s ease;
}

/* Cuando el EQ está pausado (no suena), la barra se apaga */
.boombox.player:has(.eq.paused) .fill {
    opacity: .25;
    animation: none;
    background: rgba(255, 255, 255, .25);
}

.volRow {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
    font-size: 11px;
    color: rgba(255, 255, 255, .70);
    font-weight: 700;
}

.range {
    width: 100px;
    accent-color: var(--accent);
}

/* ── Carousel ── */
.polaroid.carousel {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.frame {
    flex: 1;
    min-height: 120px;
    border-radius: var(--r);
    background: var(--surface2);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    transition: box-shadow .35s ease;
}

.frame:hover {
    box-shadow: var(--shadow2);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.05);
    transition:
        opacity .6s cubic-bezier(.4, 0, .2, 1),
        transform .8s cubic-bezier(.16, 1, .3, 1);
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

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

/* ── Caption del carrusel — fondo azul, texto blanco bold ── */
.cap {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: rgba(26, 71, 184, .85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    animation: capFade .4s ease;
}

.cap h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
}

.cap p {
    margin: 2px 0 0;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .80);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cap > div:last-child {
    font-size: 13px;
    font-weight: 900;
    color: rgba(255, 255, 255, .90);
    flex-shrink: 0;
}

/* ── Barra de navegación como overlay dentro del slider ── */
.polaroid.carousel {
    position: relative;
}

.nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.dots {
    display: none !important;
}

/* ── Flechas de navegación dentro del slider — iconos SVG circulares ── */
#prev,
#next {
    pointer-events: auto;
    font-size: 0;
    line-height: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all .25s ease;
    opacity: .85;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .20);
}

#prev {
    margin-left: 8px;
}

#next {
    margin-right: 8px;
}

#prev::before,
#next::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#prev::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 494.667 494.667' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='247.333' cy='247.333' r='247.333' fill='%231a47b8'/%3E%3Cpath d='m289.554 363.754c9.661-9.661 9.661-25.313 0-34.974l-81.446-81.446 81.446-81.446c9.661-9.661 9.661-25.313 0-34.974s-25.313-9.661-34.974 0l-98.933 98.933c-9.661 9.661-9.661 25.313 0 34.974l98.933 98.933c4.831 4.831 11.159 7.246 17.487 7.246s12.656-2.415 17.487-7.246z' fill='white'/%3E%3C/svg%3E");
}

#next::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 494.667 494.667' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='247.333' cy='247.333' r='247.333' fill='%231a47b8'/%3E%3Cg transform='translate(494.667,0) scale(-1,1)'%3E%3Cpath d='m289.554 363.754c9.661-9.661 9.661-25.313 0-34.974l-81.446-81.446 81.446-81.446c9.661-9.661 9.661-25.313 0-34.974s-25.313-9.661-34.974 0l-98.933 98.933c-9.661 9.661-9.661 25.313 0 34.974l98.933 98.933c4.831 4.831 11.159 7.246 17.487 7.246s12.656-2.415 17.487-7.246z' fill='white'/%3E%3C/g%3E%3C/svg%3E");
}

#prev:hover,
#next:hover {
    opacity: 1;
    transform: scale(1.18);
    box-shadow: 0 4px 16px rgba(26, 71, 184, .40);
}

/* ── Socials ── */
.socials {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 14px;
    border: 1.5px solid var(--strokeColor);
    background: var(--surface);
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    font-size: 12px;
    font-family: 'Nunito', sans-serif;
    transition: all .3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
    position: relative;
    overflow: hidden;
}

.chip::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 229, 255, .20) 10%, transparent 10.01%);
    transform: scale(0);
    opacity: 0;
    border-radius: inherit;
    pointer-events: none;
}

.chip:active::after {
    animation: ripple .5s ease-out;
}

.chip:hover {
    background: rgba(0, 229, 255, .06);
    border-color: rgba(0, 229, 255, .35);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 229, 255, .18);
    color: var(--primaryLight);
}

.chipIcon {
    background: linear-gradient(135deg, rgba(255, 20, 147, .12), rgba(0, 229, 255, .12));
    color: var(--primary);
    width: 26px;
    height: 26px;
    font-size: 12px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.chip:hover .chipIcon {
    background: linear-gradient(135deg, rgba(255, 20, 147, .25), rgba(0, 229, 255, .25));
    color: var(--primaryLight);
    transform: scale(1.10);
}

/* ── Decorative tropical stripe at bottom ── */
body::after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--tropical-grad);
    background-size: 200% 100%;
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .10);
    animation: shimmer 4s linear infinite;
}
