:root {
    /* Premium Danube Sunset Color Palette for Mobile */
    --primary: #f97316; /* Sunset Vibrant Orange */
    --primary-glow: rgba(249, 115, 22, 0.4);
    --bg-dark: #090314; /* Deep twilight slate */
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #fcfcfd;
    --text-dim: #94a3b8;
    
    --player-glow: rgba(139, 92, 246, 0.1);
    --player-border: rgba(139, 92, 246, 0.25);
    
    --bursa-glow: rgba(245, 158, 11, 0.1);
    --bursa-border: rgba(245, 158, 11, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
    min-height: 100%;
}

body {
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 100vh;
    max-width: 100%;
    width: 100%;
    user-select: none;
    -webkit-user-select: none;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    -webkit-overflow-scrolling: touch;
}

/* Immersive Crossfading Slideshow Background */
.bg-gradient {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: -2 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    filter: brightness(0.38) saturate(1.3) !important;
    opacity: 0;
    transition: opacity 2.5s ease-in-out !important;
}

.bg-gradient.active {
    opacity: 1 !important;
}

#bg-slide-1 {
    background-image: url('../assets/bg_bridge.jpg');
}

/* Glassmorphic Layering & Radial Sun-Flare Overlay */
.bg-orb {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: radial-gradient(circle at 50% 30%, rgba(249, 115, 22, 0.12) 0%, rgba(139, 92, 246, 0.08) 50%, #0b0416 100%) !important;
    z-index: -1 !important;
    backdrop-filter: blur(2px) saturate(1.2) !important;
    -webkit-backdrop-filter: blur(2px) saturate(1.2) !important;
}

@keyframes floatingOrb {
    from { transform: translate(-30%, -20%); }
    to { transform: translate(30%, 30%); }
}

.mobile-container {
    display: flex;
    flex-direction: column;
    padding: 16px 16px 40px;
    gap: 20px;
    width: 100%;
    max-width: 480px;
    margin: 30px auto 0;
}

/* ==========================================
   1. PREMIUM APP DOWNLOAD HERO BANNER (TOP)
   ========================================== */
.app-download-hero {
    width: 100%;
    animation: slideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.app-download-card {
    position: relative;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.14) 0%, rgba(139, 92, 246, 0.12) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.35);
    border-radius: 24px;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.12), inset 0 1px 0 rgba(255,255,255,0.08);
}

.card-glow {
    position: absolute;
    top: -50%; right: -50%;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(249,115,22,0.3) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.app-info-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.app-logo-wrapper {
    width: 52px; height: 52px;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.app-logo {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.app-title-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.app-badge {
    font-size: 0.58rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.25);
    padding: 2px 6px;
    border-radius: 6px;
    letter-spacing: 0.8px;
    width: fit-content;
}

.app-title-col h2 {
    font-size: 1.15rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.3px;
}

.app-title-col p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
}

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.feat-item {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.feat-item::before {
    content: "⚡";
    font-size: 0.7rem;
    color: var(--primary);
}

.btn-download-apk {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary);
    border: none;
    border-radius: 16px;
    padding: 14px 20px;
    width: 100%;
    color: white;
    text-decoration: none;
    font-family: inherit;
    box-shadow: 0 8px 25px var(--primary-glow);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: buttonPulse 2s infinite;
}

.btn-download-apk:active {
    transform: scale(0.98);
}

.btn-icon {
    font-size: 1.6rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text strong {
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.2;
}

.btn-text span {
    font-size: 0.65rem;
    opacity: 0.85;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35); }
    50% { box-shadow: 0 8px 35px rgba(249, 115, 22, 0.6); }
    100% { box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35); }
}

/* ==========================================
   2. TOUCH-FRIENDLY PLAYER (CENTER)
   ========================================== */
.player-wrapper {
    width: 100%;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.player-card {
    background: var(--glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.status-dot {
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 8px var(--primary);
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.art-container {
    position: relative;
    width: 210px; height: 210px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ambient-aura-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    filter: blur(34px);
    opacity: 0;
    transition: opacity 0.6s ease, background-image 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

.ambient-aura-bg.active {
    opacity: 0.6;
}

.art-img-wrapper {
    position: absolute;
    width: 165px; height: 165px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 3;
    border: 2px solid rgba(255,255,255,0.08);
}

.art-img {
    width: 100%; height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: transform 0.6s ease;
}

.rotating-aura {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    animation: rotateText 22s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.aura-text {
    fill: white;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 3px;
    opacity: 0.7;
}

.station-badge-mini {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.65);
    background: #101218;
    z-index: 6;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.station-badge-mini.visible {
    opacity: 1;
    transform: scale(1);
}

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

.meta-container {
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden;
}

.meta-container h1 {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0 10px;
}

.meta-container p {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.play-btn {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px var(--primary-glow);
    transition: transform 0.2s;
}

.play-btn:active {
    transform: scale(0.93);
}

.play-btn svg {
    width: 32px; height: 32px;
    fill: white;
}

.cast-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    padding: 10px 16px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    width: 90%;
}

.volume-icon {
    color: var(--text-dim);
    display: flex;
    align-items: center;
}

.volume-slider {
    flex: 1;
    -webkit-appearance: none;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.1);
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: 2px solid var(--primary);
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.visualizer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 30px;
    opacity: 0.15;
    margin-top: 16px;
    width: 100%;
}

.vis-bar {
    width: 3px; height: 6px;
    background: var(--primary);
    border-radius: 2px;
    animation: soundWave 1s infinite ease-in-out;
}

@keyframes soundWave {
    0%, 100% { height: 6px; }
    50% { height: 24px; }
}

.loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 3, 20, 0.65);
    border-radius: 50%;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.spinner {
    width: 32px; height: 32px;
    border: 3px solid rgba(249, 115, 22, 0.15);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================
   3. MOBILE TABBED DETAILS (WIDGETS)
   ========================================== */
.info-tabs-container {
    width: 100%;
}

.tab-buttons {
    display: flex;
    gap: 6px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 4px;
    margin-bottom: 14px;
}

.tab-trigger {
    flex: 1;
    border: none;
    background: none;
    color: var(--text-dim);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.78rem;
    padding: 10px 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.tab-trigger.active {
    background: rgba(249, 115, 22, 0.12);
    color: var(--primary);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.15);
}

.tab-content {
    display: none;
    width: 100%;
    animation: fadeContent 0.35s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeContent {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tab Cards styling */
.custom-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: left;
}

.custom-card h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.bursa-intro {
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.4;
    margin-bottom: 14px;
}

/* News List inside Tab */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 14px;
}

.news-item h3 {
    font-size: 0.88rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

.news-meta {
    display: flex;
    gap: 12px;
    font-size: 0.68rem;
    color: var(--text-dim);
    margin-top: 6px;
    margin-bottom: 8px;
}

.news-summary {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.45;
}

.news-skeleton {
    text-align: center;
    padding: 30px;
    font-size: 0.8rem;
    color: var(--text-dim);
    opacity: 0.7;
}

/* Vama Border wait times */
.border-card {
    border-color: rgba(139, 92, 246, 0.2);
}

.border-time-update {
    font-size: 0.68rem;
    color: #8b5cf6;
    margin-bottom: 14px;
    font-weight: 600;
}

.border-grids {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.border-item-cell {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.border-item-cell strong {
    font-size: 0.68rem;
    color: var(--text-dim);
    text-align: center;
}

.border-item-cell span {
    font-size: 1.15rem;
    font-weight: 800;
    color: #8b5cf6;
}

.border-note {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 10px;
    font-size: 0.7rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.85);
}

/* Bursa price comparisons */
.bursa-card {
    border-color: var(--bursa-border);
}

.bursa-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    flex-wrap: wrap;
    gap: 4px;
}

.rate-indicator {
    font-size: 0.65rem;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.deals-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.deal-item {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 12px;
}

.deal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.store-badge {
    font-size: 0.65rem;
    font-weight: 800;
    color: white;
    background: rgba(255,255,255,0.06);
    padding: 2px 6px;
    border-radius: 4px;
}

.verdict-badge {
    font-size: 0.62rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.deal-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.25;
}

.deal-price-row {
    margin-top: 6px;
    margin-bottom: 4px;
}

.deal-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fbbf24;
}

.deal-desc {
    font-size: 0.72rem;
    color: var(--text-dim);
    line-height: 1.35;
}

/* Presenters List */
.presenters-card {
    border-color: rgba(255,255,255,0.08);
}

.presenters-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pres-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 8px 12px;
    transition: background 0.2s;
}

.pres-row:active {
    background: rgba(249, 115, 22, 0.08);
}

.pres-thumb {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    object-fit: cover;
}

.pres-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pres-info strong {
    font-size: 0.8rem;
    color: white;
}

.pres-info span {
    font-size: 0.65rem;
    color: var(--text-dim);
}

/* ==========================================
   4. MODALS & AUXILIARY WIDGETS
   ========================================== */
.dj-modal, .info-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dj-modal.show, .info-modal.show {
    opacity: 1;
}

.info-modal-card {
    background: #100624;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 20px;
    border-radius: 24px;
    max-width: 360px;
    width: 100%;
    position: relative;
    text-align: center;
    transform: translateY(15px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.dj-modal-card {
    background: rgba(18, 9, 39, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 24px;
    max-width: 360px;
    width: 100%;
    position: relative;
    text-align: left;
    transform: translateY(15px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.dj-modal.show .dj-modal-card, .info-modal.show .info-modal-card {
    transform: translateY(0);
}

.info-modal-close {
    position: absolute;
    top: 15px; right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0.6;
}

.close-dj {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 12;
}

.dj-modal-img {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 16px;
    object-fit: cover;
    display: block;
}

.dj-modal-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.dj-modal-time {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    background: rgba(249, 115, 22, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(249, 115, 22, 0.15);
    margin-bottom: 14px;
}

.dj-modal-bio {
    color: var(--text-dim);
    line-height: 1.5;
    font-size: 0.82rem;
    margin-bottom: 5px;
}

/* DJ Vibe and Format Badges on Mobile */
.dj-badge-vibe {
    font-size: 0.78rem;
    color: #fff;
    background: rgba(139, 92, 246, 0.08);
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.18);
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}

.dj-badge-format {
    font-size: 0.78rem;
    color: var(--primary);
    background: rgba(249, 115, 22, 0.05);
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(249, 115, 22, 0.12);
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}

#dj-modal-genres {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

/* Info Modal Body */
.info-modal-body {
    text-align: left;
    color: var(--text-dim);
    font-size: 0.82rem;
    line-height: 1.6;
    max-height: 60vh;
    overflow-y: auto;
}

.info-modal-body h1, .info-modal-body h2 {
    color: white;
    font-size: 1rem;
    margin-top: 16px;
    margin-bottom: 8px;
}

.info-modal-body p {
    margin-bottom: 12px;
}

/* Reconnect Toast */
.reconnect-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    opacity: 0;
    pointer-events: none;
    background: rgba(9, 3, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(249, 115, 22, 0.5);
    box-shadow: 0 0 25px rgba(249, 115, 22, 0.25);
    padding: 10px 18px;
    border-radius: 100px;
    z-index: 19000;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
    white-space: nowrap;
}

.reconnect-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.reconnect-toast-icon {
    width: 26px; height: 26px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reconnect-toast-icon svg {
    width: 12px; height: 12px;
    fill: white;
}

.reconnect-toast-text {
    display: flex;
    flex-direction: column;
}

.reconnect-toast-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: white;
}

.reconnect-toast-sub {
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 600;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 16px; left: 16px; right: 16px;
    background: rgba(9, 3, 20, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    padding: 14px 18px;
    border-radius: 16px;
    z-index: 18000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateY(200px);
    transition: transform 0.5s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.78rem;
    color: white;
    line-height: 1.4;
}

.cookie-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    align-self: flex-end;
}

/* Mobile Footer */
.mobile-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    width: 100%;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
}

.mobile-footer p {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ==========================================
   5. SHARE CONTAINER & BUTTONS FOR MOBILE
   ========================================== */
.share-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
}

.share-btn {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.share-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25D366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.share-btn.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877F2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.3);
    transform: translateY(-2px);
}

.share-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
