:root {
            --bg-base: #060813;
            --bg-card: rgba(13, 17, 33, 0.45);
            --border-glass: rgba(255, 255, 255, 0.08);
            --border-glow: rgba(59, 130, 246, 0.3);
            --text-primary: #f8fafc;
            --text-secondary: #94a3b8;
            --accent-blue: #3b82f6;
            --accent-purple: #8b5cf6;
            --accent-pink: #ec4899;
            --accent-red: #ef4444;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-base);
            color: var(--text-primary);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 24px;
            overflow-x: hidden;
            position: relative;
        }

        /* Orbes de luz ambientales en el fondo */
        body::before, body::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            filter: blur(140px);
            z-index: -1;
            opacity: 0.14;
            pointer-events: none;
            animation: floatGlow 25s infinite alternate ease-in-out;
        }

        body::before {
            background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
            top: -10%;
            left: -5%;
        }

        body::after {
            background: radial-gradient(circle, var(--accent-red) 0%, transparent 70%);
            bottom: -10%;
            right: -5%;
            animation-delay: -12s;
        }

        @keyframes floatGlow {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(60px, 30px) scale(1.1); }
        }

        /* Contenedor principal estilo Glassmorphism - Ancho extendido tipo Dashboard */
        .glass-container {
            background: var(--bg-card);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid var(--border-glass);
            border-radius: 36px;
            padding: 4rem 3.5rem;
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 25px 60px -15 rgba(0, 0, 0, 0.6),
                        inset 0 1px 0 rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 10;
            transition: border-color 0.5s ease, box-shadow 0.5s ease;
            animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        .glass-container:hover {
            border-color: rgba(255, 255, 255, 0.12);
            box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.75),
                        inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        /* --- HEADER ROW (Full Width) --- */
        .dashboard-header {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .avatar-wrapper {
            position: relative;
            width: 160px;
            height: 160px;
            margin-bottom: 1.5rem;
            border-radius: 50%;
            padding: 4px;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-red), var(--accent-purple));
            background-size: 300% 300%;
            animation: gradientBorder 8s ease infinite;
            box-shadow: 0 12px 30px rgba(239, 68, 68, 0.25);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .avatar-wrapper:hover {
            transform: scale(1.06) rotate(1deg);
        }

        .avatar-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #070a1a;
            background: #111425;
        }

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

        .title {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 2.6rem;
            line-height: 1.3;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #ffffff 40%, #fca5a5 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .subtitle {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 2rem;
        }

        /* Panel Contador Principal (Compacto) */
        .countdown-row {
            display: grid;
            grid-template-columns: 1fr 1.25fr;
            gap: 45px;
            width: 100%;
            max-width: 860px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 28px;
            padding: 2rem 3.5rem;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .days-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            border-right: 1px solid rgba(255, 255, 255, 0.08);
            padding-right: 45px;
        }

        .days-value {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 6rem;
            line-height: 1;
            background: linear-gradient(to bottom, #ffffff, #fca5a5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 40px rgba(239, 68, 68, 0.2);
        }

        .days-label {
            font-size: 0.95rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.18em;
            font-weight: 600;
            margin-top: 6px;
        }

        /* Ticker y Progreso */
        .timeline-box {
            display: flex;
            flex-direction: column;
            gap: 18px;
            width: 100%;
        }

        .ticker-container {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 14px;
        }

        .ticker-block {
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        .ticker-val {
            font-family: 'Outfit', sans-serif;
            font-size: 2.1rem;
            font-weight: 700;
            color: #fee2e2;
        }

        .ticker-lbl {
            font-size: 0.9rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            font-weight: 500;
        }

        .ticker-separator {
            font-size: 1.5rem;
            color: rgba(239, 68, 68, 0.4);
            animation: pulseSeparator 1s infinite alternate;
        }

        @keyframes pulseSeparator {
            0% { opacity: 0.2; }
            100% { opacity: 0.9; }
        }

        .progress-box {
            width: 100%;
            text-align: left;
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
        }

        .progress-percentage {
            color: #fca5a5;
            font-weight: 600;
        }

        .progress-track {
            width: 100%;
            height: 12px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.02);
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--accent-red), var(--accent-purple));
            border-radius: 10px;
            width: 0%;
            box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
            transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* --- DASHBOARD GRID --- */
        .dashboard-grid {
            display: grid;
            grid-template-columns: 1.15fr 1.25fr;
            gap: 60px;
            width: 100%;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 3.5rem;
            align-items: start;
        }

        /* --- COLUMNA IZQUIERDA: BOTÓN 3D & MAPA --- */
        .left-column {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 32px;
        }

        /* Botón Clicker de Caca 3D Unificado (💩) */
        .poop-clicker {
            position: relative;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: #0d0f1a;
            border: 8px solid #1e293b;
            box-shadow: 
                0 15px 30px rgba(0, 0, 0, 0.65),
                inset 0 3px 8px rgba(255, 255, 255, 0.04),
                inset 0 -3px 8px rgba(0, 0, 0, 0.6);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            outline: none;
        }

        .poop-clicker-inner {
            width: 190px;
            height: 190px;
            border-radius: 50%;
            background: linear-gradient(135deg, #78350f 0%, #3b1702 100%);
            box-shadow: 
                0 12px 0 #270e01, /* Relieve 3D extruido */
                0 18px 30px rgba(120, 53, 15, 0.35),
                inset 0 3px 5px rgba(255, 255, 255, 0.15),
                inset 0 -3px 5px rgba(0, 0, 0, 0.4);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: 800;
            font-family: 'Outfit', sans-serif;
            transition: all 0.15s ease;
        }

        .poop-emoji-large {
            font-size: 4.8rem;
            line-height: 1.1;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
            animation: bouncePoop 3s infinite alternate ease-in-out;
        }

        @keyframes bouncePoop {
            0% { transform: translateY(0) scale(1); }
            100% { transform: translateY(-5px) scale(1.06); }
        }

        .poop-clicker-label {
            font-size: 0.85rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #fca5a5;
            margin-top: 5px;
            font-weight: 800;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        }

        .poop-clicker-counter {
            font-size: 0.72rem;
            color: #cbd5e1;
            opacity: 0.85;
            font-weight: 600;
            margin-top: 2px;
            text-transform: uppercase;
            letter-spacing: 0.02em;
        }

        .poop-clicker:hover .poop-clicker-inner {
            background: linear-gradient(135deg, #92400e 0%, #451a03 100%);
            box-shadow: 
                0 13px 0 #270e01,
                0 25px 35px rgba(146, 64, 14, 0.45),
                inset 0 3px 5px rgba(255, 255, 255, 0.25),
                inset 0 -3px 5px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
        }

        .poop-clicker:active .poop-clicker-inner {
            transform: translateY(11px);
            box-shadow: 
                0 1px 0 #270e01, /* Hundimiento real */
                0 4px 8px rgba(120, 53, 15, 0.15),
                inset 0 3px 5px rgba(0, 0, 0, 0.6);
        }

        /* Mapa de Chile (Imagen Oficial) con Resplandor Neón */
        .chile-map-img {
            max-height: 600px;
            width: auto;
            max-width: 100%;
            object-fit: contain;
            filter: invert(1) sepia(1) saturate(5) hue-rotate(175deg) brightness(1) contrast(1.3)
                    drop-shadow(0 0 15px rgba(0, 240, 255, 0.3))
                    drop-shadow(0 15px 30px rgba(0, 0, 0, 0.65));
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            user-select: none;
            -webkit-user-drag: none;
        }
        
        .chile-map-img:hover {
            filter: invert(1) sepia(1) saturate(6) hue-rotate(175deg) brightness(1.1) contrast(1.4)
                    drop-shadow(0 0 25px rgba(0, 240, 255, 0.45))
                    drop-shadow(0 15px 35px rgba(0, 0, 0, 0.75));
            transform: scale(1.03);
        }

        /* Mapa SVG con resplandor neón */
        .map-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            width: 100%;
        }

        /* --- COLUMNA DERECHA: LEADERBOARD TABS & SCROLL --- */
        .right-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
        }

        .leaderboard-title-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            padding-bottom: 10px;
        }

        .leaderboard-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.01em;
        }

        .leaderboard-tabs {
            display: flex;
            gap: 6px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.04);
            padding: 4px;
            border-radius: 14px;
            width: 100%;
        }

        .leaderboard-tab {
            flex: 1;
            background: transparent;
            border: none;
            color: var(--text-secondary);
            padding: 0.8rem 0.6rem;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            cursor: pointer;
            border-radius: 10px;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            font-family: 'Inter', sans-serif;
            outline: none;
        }

        .leaderboard-tab.active {
            background: rgba(239, 68, 68, 0.12);
            border: 1px solid rgba(239, 68, 68, 0.25);
            color: #fee2e2;
        }

        .leaderboard-tab:hover:not(.active) {
            background: rgba(255, 255, 255, 0.04);
            color: #ffffff;
        }

        /* Scroll Interno del Leaderboard */
        .top-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-height: 520px;
            overflow-y: auto;
            padding-right: 6px;
        }

        /* Estilización del Scrollbar */
        .top-list::-webkit-scrollbar {
            width: 6px;
        }

        .top-list::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.01);
            border-radius: 99px;
        }

        .top-list::-webkit-scrollbar-thumb {
            background: rgba(239, 68, 68, 0.2);
            border-radius: 99px;
        }

        .top-list::-webkit-scrollbar-thumb:hover {
            background: rgba(239, 68, 68, 0.4);
        }

        /* Elemento Fila Leaderboard */
        .top-item {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 8px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.04);
            padding: 1rem 1.4rem;
            border-radius: 16px;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            flex-shrink: 0;
        }

        .top-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(0, 240, 255, 0.2);
            box-shadow: 0 4px 20px rgba(0, 240, 255, 0.06),
                        inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transform: translateX(4px);
        }

        .top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            z-index: 2;
        }

        .top-left {
            display: flex;
            align-items: center;
            gap: 14px;
            overflow: hidden;
            flex: 1;
            min-width: 0;
        }

        .top-rank {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            font-weight: 800;
            font-family: 'Outfit', sans-serif;
            flex-shrink: 0;
        }

        /* Medallas Metálicas */
        .rank-1 { 
            background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%); 
            border: 1px solid #ffe875; 
            color: #060813; 
            box-shadow: 0 0 8px rgba(255, 215, 0, 0.25);
        }
        .rank-2 { 
            background: linear-gradient(135deg, #c0c0c0 0%, #708090 100%); 
            border: 1px solid #e6e6e6; 
            color: #060813; 
            box-shadow: 0 0 8px rgba(192, 192, 192, 0.15);
        }
        .rank-3 { 
            background: linear-gradient(135deg, #cd7f32 0%, #8b4513 100%); 
            border: 1px solid #ffa07a; 
            color: #ffffff; 
            box-shadow: 0 0 8px rgba(205, 127, 50, 0.15);
        }
        .rank-other { 
            background: rgba(255, 255, 255, 0.04); 
            border: 1px solid rgba(255, 255, 255, 0.07); 
            color: #cbd5e1; 
        }

        .top-name {
            font-size: 0.98rem;
            font-weight: 600;
            color: #f1f5f9; /* Slate 100 - bright white */
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            flex: 1;
        }

        .top-clicks {
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: #fca5a5; /* warm gold-peach tone */
            text-shadow: 0 0 10px rgba(251, 113, 133, 0.25);
            flex-shrink: 0;
            margin-left: 8px;
        }

        .top-item-progress-track {
            width: 100%;
            height: 5px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 99px;
            overflow: hidden;
            margin-top: 2px;
            z-index: 1;
        }

        .top-item-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, rgba(239, 68, 68, 0.45), rgba(249, 115, 22, 0.45));
            border-radius: 99px;
            width: 0%;
            transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Partículas flotantes */
        .floating-particle {
            position: fixed;
            pointer-events: none;
            z-index: 10000;
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.1rem;
            color: #fca5a5;
            text-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
            animation: floatUpAndFade 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        @keyframes floatUpAndFade {
            0% { transform: translate(-50%, -50%) scale(0.6) translateY(0); opacity: 0; }
            20% { transform: translate(-50%, -50%) scale(1.1) translateY(-10px); opacity: 1; }
            100% { transform: translate(-50%, -50%) scale(0.8) translateY(-70px); opacity: 0; }
        }

        /* Tooltip del Mapa */
        .map-tooltip {
            position: absolute;
            background: rgba(8, 12, 28, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 0.72rem;
            color: #e2e8f0;
            pointer-events: none;
            z-index: 100;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
            opacity: 0;
            transition: opacity 0.2s ease;
            white-space: nowrap;
        }

        /* --- ACCIONES INFERIORES & FOOTER --- */
        .actions-wrapper {
            display: flex;
            gap: 12px;
            width: 100%;
            justify-content: center;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 1.5rem;
        }

        .share-btn {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            color: #cbd5e1;
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            outline: none;
            backdrop-filter: blur(5px);
        }

        .share-btn:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.12);
            color: #ffffff;
            transform: translateY(-2px);
        }

        .share-btn:active {
            transform: translateY(0);
        }

        .footnote {
            width: 100%;
            margin-top: 1.5rem;
            font-size: 0.68rem;
            color: #475569;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footnote span { font-weight: 500; }

        /* --- MINIGAME SWITCHER TABS --- */
        .minigame-tabs {
            display: flex;
            gap: 10px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 6px;
            border-radius: 20px;
            width: 100%;
            max-width: 420px;
            margin-bottom: 0.5rem;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
        }

        .minigame-tab {
            flex: 1;
            background: transparent;
            border: none;
            color: var(--text-secondary);
            padding: 0.9rem 1.2rem;
            font-size: 0.95rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            cursor: pointer;
            border-radius: 14px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            font-family: 'Outfit', sans-serif;
            outline: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .minigame-tab.active {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(139, 92, 246, 0.25) 100%);
            border: 1px solid rgba(239, 68, 68, 0.35);
            color: #ffffff;
            box-shadow: 0 0 20px rgba(239, 68, 68, 0.15);
            text-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
        }

        .minigame-tab:hover:not(.active) {
            background: rgba(255, 255, 255, 0.04);
            color: #ffffff;
        }

        /* --- TÓMBOLA DE METÁFORAS GAME --- */
        .tombola-container {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 28px;
            animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        .tombola-wheel-wrapper {
            position: relative;
            width: 290px;
            height: 290px;
            border-radius: 50%;
            padding: 10px;
            background: #0d0f1a;
            border: 8px solid #1e293b;
            box-shadow: 
                0 15px 35px rgba(0, 0, 0, 0.7),
                inset 0 3px 8px rgba(255, 255, 255, 0.04),
                inset 0 -3px 8px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(139, 92, 246, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Indicador / Puntero superior */
        .tombola-indicator {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #ffd700, #ea580c);
            clip-path: polygon(50% 100%, 0 0, 100% 0);
            z-index: 20;
            filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
            animation: indicatorWiggle 0.15s infinite alternate linear;
            animation-play-state: paused;
        }

        @keyframes indicatorWiggle {
            0% { transform: translateX(-50%) rotate(-8deg); }
            100% { transform: translateX(-50%) rotate(8deg); }
        }

        .tombola-wheel {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: conic-gradient(
                #7f1d1d 0deg 60deg,
                #6b21a8 60deg 120deg,
                #1e3a8a 120deg 180deg,
                #7c2d12 180deg 240deg,
                #064e3b 240deg 300deg,
                #581c87 300deg 360deg
            );
            border: 4px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
            transition: transform 5s cubic-bezier(0.15, 0.85, 0.15, 1);
            box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8);
        }

        /* Centro de la rueda */
        .tombola-wheel-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border: 4px solid rgba(255, 255, 255, 0.1);
            z-index: 10;
            box-shadow: 
                0 4px 10px rgba(0,0,0,0.6),
                0 0 15px rgba(139, 92, 246, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
        }

        /* Textos de la rueda */
        .tombola-segment-text {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 50%;
            height: 30px;
            margin-top: -15px;
            transform-origin: 0% 50%;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding-right: 15px;
            font-size: 0.72rem;
            font-weight: 800;
            font-family: 'Outfit', sans-serif;
            color: rgba(255, 255, 255, 0.95);
            text-transform: uppercase;
            pointer-events: none;
            box-sizing: border-box;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
            letter-spacing: 0.04em;
        }

        /* Rotaciones de segmentos basadas en origen central */
        .seg-0 { transform: rotate(-60deg); }
        .seg-1 { transform: rotate(0deg); }
        .seg-2 { transform: rotate(60deg); }
        .seg-3 { transform: rotate(120deg); }
        .seg-4 { transform: rotate(180deg); }
        .seg-5 { transform: rotate(240deg); }

        /* Botón de Giro */
        .tombola-spin-btn {
            background: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #ffffff;
            padding: 1.1rem 2.8rem;
            border-radius: 40px;
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.1rem;
            letter-spacing: 0.08em;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            outline: none;
            box-shadow: 
                0 10px 25px rgba(234, 88, 12, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            text-transform: uppercase;
        }

        .tombola-spin-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 
                0 12px 30px rgba(234, 88, 12, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 0 15px rgba(255, 215, 0, 0.2);
        }

        .tombola-spin-btn:active:not(:disabled) {
            transform: translateY(1px);
            box-shadow: 0 4px 10px rgba(234, 88, 12, 0.2);
        }

        .tombola-spin-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: #4b5563;
            box-shadow: none;
        }

        /* Tarjeta de Resultados Glassmorphic */
        .tombola-quote-card {
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 24px;
            padding: 1.8rem 2.2rem;
            width: 100%;
            max-width: 440px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transform: translateY(15px);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .tombola-quote-card.show {
            opacity: 1;
            transform: translateY(0);
            border-color: rgba(249, 115, 22, 0.25);
            box-shadow: 
                0 15px 35px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(249, 115, 22, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .tombola-quote-title {
            font-family: 'Outfit', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            color: #f97316;
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }

        .tombola-quote-text {
            font-size: 1.15rem;
            line-height: 1.6;
            color: #f1f5f9;
            font-weight: 500;
            font-style: italic;
        }

        .tombola-quote-author {
            font-size: 0.8rem;
            color: var(--text-secondary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-top: 4px;
        }

        /* --- ESTILOS DE FEEDS DE NOTICIAS REALES DE KAST --- */
        .tombola-details-wrapper {
            display: flex;
            flex-direction: column;
            gap: 20px;
            animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
            width: 100%;
        }

        .details-title-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            padding-bottom: 10px;
            margin-bottom: 5px;
        }

        .details-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.01em;
        }

        /* Contenedor de Noticias Reales */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-height: 480px;
            overflow-y: auto;
            padding-right: 6px;
        }

        .news-list::-webkit-scrollbar {
            width: 6px;
        }

        .news-list::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.01);
            border-radius: 99px;
        }

        .news-list::-webkit-scrollbar-thumb {
            background: rgba(249, 115, 22, 0.2);
            border-radius: 99px;
        }

        .news-list::-webkit-scrollbar-thumb:hover {
            background: rgba(249, 115, 22, 0.4);
        }

        .news-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 16px;
            padding: 1.2rem 1.4rem;
            display: flex;
            flex-direction: column;
            gap: 8px;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .news-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(249, 115, 22, 0.25);
            box-shadow: 0 4px 20px rgba(249, 115, 22, 0.08),
                        inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transform: translateX(4px);
        }

        .news-meta-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .news-badge {
            background: rgba(249, 115, 22, 0.12);
            border: 1px solid rgba(249, 115, 22, 0.35);
            color: #fca5a5;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 3px 10px;
            border-radius: 8px;
            text-shadow: 0 0 8px rgba(249, 115, 22, 0.4);
        }

        .news-time {
            font-size: 0.75rem;
            color: var(--text-secondary);
            font-weight: 600;
        }

        .news-text {
            font-size: 0.9rem;
            line-height: 1.5;
            color: #e2e8f0;
            font-weight: 400;
        }

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

        /* --- RESPONSIVE LAYOUT (Ajustes de una sola columna) --- */
        @media (max-width: 950px) {
            .glass-container {
                padding: 1.8rem 1.2rem;
            }
            
            .countdown-row {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 1.2rem 1.5rem;
                text-align: center;
            }

            .days-box {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                padding-right: 0;
                padding-bottom: 12px;
            }

            .ticker-container {
                justify-content: center;
            }

            .dashboard-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .left-column {
                order: 1;
            }

            .right-column {
                order: 2;
            }

            .chile-svg {
                height: 500px;
                width: 80px;
            }
        }