:root {
    --jet-black: #0a0a0a;
    --dark-charcoal: #111111;
    --buzz-yellow: #e0a800;
    --stinger-orange: #c98f0a;
    --text-light: #f8f9fa;
    --text-gray: #cbd5e1;
    --card-bg: #161616;
    --border-glow: rgba(224, 168, 0, 0.4);
    --receive-green: #2ecc71;
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
    background: var(--jet-black);
    color: var(--text-light);
    font-family: 'Segoe UI', system-ui, -apple-system, 'Roboto', sans-serif;
    line-height: 1.5;
}
.container { max-width:1400px; margin:0 auto; padding:0 20px; }

/* Header */
.main-header {
    background: #050505;
    border-bottom: 3px solid var(--buzz-yellow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-logo-img, .footer-logo-img {
    height: 52px;
    width: auto;
    border-radius: 50%;
    background: #000;
    padding: 4px;
    transition: all 0.2s;
}
.spinning-logo {
    animation: spinWheel 6s linear infinite;
    cursor: pointer;
}
.spinning-logo:hover {
    animation: spinWheel 1s linear infinite, lightningGlow 0.5s infinite alternate;
}
@keyframes spinWheel {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes lightningGlow {
    0% { filter: drop-shadow(0 0 2px white); opacity: 0.8; }
    100% { filter: drop-shadow(0 0 15px #fff0a0) drop-shadow(0 0 25px yellow); opacity: 1; }
}
.extra-wheel-container {
    text-align: center;
    margin: 2rem 0;
}
.extra-spinning-logo {
    width: 120px;
    height: auto;
    border-radius: 50%;
    background: #000;
    padding: 8px;
    cursor: pointer;
    transition: 0.2s;
}
.extra-spinning-logo:hover {
    transform: scale(1.1);
    animation: spinWheel 0.8s linear infinite, lightningGlow 0.4s infinite alternate;
}
.logo-icon { color: var(--buzz-yellow); font-size: 2rem; }
.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--buzz-yellow), #ffdd88);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.subtitle { color: var(--text-gray); font-size: 0.75rem; letter-spacing: 1px; }
.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(224,168,0,0.15);
    padding: 6px 15px;
    border-radius: 40px;
    border: 1px solid var(--buzz-yellow);
}
.live-dot {
    width: 10px; height: 10px;
    background: var(--buzz-yellow);
    border-radius: 50%;
    animation: blink 1.2s infinite;
}
/* Start button */
.start-trip-wrapper {
    text-align: center;
    margin: 1rem 0 0.5rem;
}
.btn-start-trip {
    background: var(--buzz-yellow);
    color: #000;
    font-weight: bold;
    font-size: 1.4rem;
    padding: 12px 32px;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 12px rgba(224,168,0,0.6);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.btn-start-trip:hover { transform: scale(1.02); background: #c98f0a; color: white; }
.hidden-start { display: none !important; }

/* Donation card */
.donation-card {
    background: linear-gradient(135deg, #1e1a0c, #111);
    border-radius: 24px;
    padding: 1.5rem;
    margin: 2rem auto 1rem auto;
    border: 2px solid var(--buzz-yellow);
    text-align: center;
    max-width: 800px;
}
.donation-icon { font-size: 2.5rem; color: var(--buzz-yellow); }
.donation-card h2 { font-size: 1.6rem; border: none; padding:0; margin-bottom:0.5rem; }
.donation-call {
    background: rgba(224,168,0,0.2);
    display: inline-block;
    padding: 0.2rem 1rem;
    border-radius: 40px;
    margin-bottom: 0.5rem;
}
.cashapp { font-family: monospace; background:#000; padding:0.2rem 0.6rem; border-radius:12px; color:#00d632; }
.donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00d632;
    color: #000;
    font-weight: bold;
    padding: 0.6rem 1.5rem;
    border-radius: 60px;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: 0.2s;
}
.donate-btn:hover { transform: scale(1.02); background: #00b029; }

/* Rotating donation messages - enhanced */
.donation-message-rotator {
    background: linear-gradient(90deg, rgba(224,168,0,0.1), rgba(255,200,50,0.2), rgba(224,168,0,0.1));
    border-left: 4px solid var(--buzz-yellow);
    border-right: 4px solid var(--buzz-yellow);
    border-radius: 60px;
    padding: 12px 20px;
    margin: 1rem auto 2rem auto;
    max-width: 800px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffecb3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    animation: borderPulse 2s infinite alternate;
}
@keyframes borderPulse {
    0% { border-color: var(--buzz-yellow); box-shadow: 0 0 0 rgba(224,168,0,0.3); }
    100% { border-color: #ffdd88; box-shadow: 0 0 12px rgba(224,168,0,0.6); }
}
.donation-message-rotator i {
    color: var(--buzz-yellow);
    font-size: 1.2rem;
    opacity: 0.8;
}
#rotatingMessage {
    flex: 1;
    line-height: 1.4;
}

/* Hero */
.hero-section { text-align: center; padding: 1.5rem 0 1rem; }
.hero-section h1 {
    font-size: 2rem;
    background: linear-gradient(90deg, #ff0000, #ff7700, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
    background-size: 400%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbowMove 6s linear infinite;
}
@keyframes rainbowMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}
.journey-start-label {
    font-size: 1rem;
    color: var(--buzz-yellow);
    margin-top: 0.5rem;
    letter-spacing: 1px;
    font-weight: bold;
}
.countdown-box {
    transition: box-shadow 0.2s, border-color 0.2s;
}
.countdown-box.glow-pulse {
    box-shadow: 0 0 15px var(--buzz-yellow);
    border-color: var(--buzz-yellow);
    animation: pulseGlow 1s infinite alternate;
}
@keyframes pulseGlow {
    from { box-shadow: 0 0 5px var(--buzz-yellow); }
    to { box-shadow: 0 0 25px #ffcc33; }
}
.countdown-wrapper { display: flex; justify-content: center; gap: 0.8rem; flex-wrap: wrap; margin: 1rem 0; }
.countdown-box { background: var(--card-bg); border: 1px solid #2c2c2c; border-radius: 12px; padding: 0.4rem 0.8rem; min-width: 60px; text-align: center; }
.countdown-box span:first-child { font-size: 1.4rem; font-weight: bold; color: var(--buzz-yellow); }
.google-link { display: inline-flex; align-items: center; gap: 8px; background: var(--buzz-yellow); color: #000; padding: 0.3rem 1rem; border-radius: 40px; text-decoration: none; transition: 0.2s; }
.data-indicator { background: #1a1a1a; border-radius: 40px; padding: 0.5rem 1rem; display: flex; align-items: center; gap: 1rem; justify-content: center; flex-wrap: wrap; border: 1px solid var(--buzz-yellow); margin: 1rem 0; }
.receive-light { width: 12px; height: 12px; background: var(--receive-green); border-radius: 50%; animation: receivePulse 1.2s infinite; }
.data-btn { background: #2c2c2c; border: 1px solid var(--buzz-yellow); color: white; padding: 0.2rem 0.8rem; border-radius: 40px; cursor: pointer; }
.data-btn:hover { background: var(--buzz-yellow); color: black; }

/* Cards with animated borders */
.tracking-card, .map-card, .weather-card, .stats-card, .social-hub, .waypoints-card, .itinerary-card, .community-hub {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid #2c2c2c;
    margin: 1.5rem 0;
    padding: 1.2rem;
    transition: all 0.2s;
}
.tracking-card:hover, .map-card:hover, .weather-card:hover, .stats-card:hover, .community-hub:hover {
    border-color: var(--buzz-yellow);
    box-shadow: 0 0 12px var(--border-glow);
}
h2 { font-size: 1.4rem; margin-bottom: 0.8rem; border-left: 4px solid var(--buzz-yellow); padding-left: 0.8rem; }
.tracking-header { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.switch { position: relative; display: inline-block; width: 52px; height: 26px; }
.switch input { opacity:0; width:0; height:0; }
.slider { position: absolute; cursor: pointer; top:0; left:0; right:0; bottom:0; background:#444; transition:0.3s; border-radius:34px; }
.slider:before { position: absolute; content:""; height:20px; width:20px; left:3px; bottom:3px; background:white; transition:0.3s; border-radius:50%; }
input:checked + .slider { background: var(--buzz-yellow); }
input:checked + .slider:before { transform:translateX(26px); }
.status-badge { display: flex; align-items: center; gap:0.5rem; padding:0.2rem 0.8rem; border-radius:40px; background:#2a2a2a; }
.status-badge.connected { background:#1e3a2e; color:#2ecc71; }

/* Location bar */
.location-info-bar {
    background: #111;
    border-radius: 16px;
    padding: 0.6rem 1rem;
    margin: 1rem 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    border: 1px solid var(--buzz-yellow);
}
.location-coords, .location-place, .bearing-display, .datetime-display {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.5);
    padding: 0.2rem 0.6rem;
    border-radius: 40px;
    font-size: 0.85rem;
}
.bearing-badge { background: #2c2c2c; padding: 2px 8px; border-radius: 20px; margin-left: 5px; }

/* Telemetry */
.telemetry-prominent {
    background: linear-gradient(145deg, #141414, #0c0c0c);
    border-radius: 24px;
    padding: 1rem;
    border: 1px solid var(--buzz-yellow);
}
.telemetry-row { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 0.8rem; }
.telemetry-big { background: #1f1f1f; border-radius: 18px; padding: 0.4rem 0.8rem; text-align: center; min-width: 110px; }
.tele-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-gray); }
.tele-value { font-size: 1.8rem; font-weight: 800; color: var(--buzz-yellow); line-height: 1; }
.tele-unit { font-size: 0.8rem; color: var(--text-gray); }
.telemetry-item { background: #1c1c1c; padding: 0.2rem 0.8rem; border-radius: 40px; font-size: 0.8rem; }
.telemetry-item strong { color: var(--buzz-yellow); margin-right: 6px; }

/* Map */
#journey-map { height: 420px; width: 100%; border-radius: 16px; margin-bottom: 0.8rem; border: 1px solid #2c2c2c; }
.map-control-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1rem; justify-content: center; }
.map-ctrl-btn {
    background: #2c2c2c;
    border: 1px solid var(--buzz-yellow);
    color: white;
    padding: 5px 12px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: 0.2s;
}
.map-ctrl-btn.active { background: var(--buzz-yellow); color: black; font-weight: bold; }
.map-ctrl-btn:hover { background: #3a3a3a; }
.highlight-btn { background: #4a3a1a; border-color: #ffcc33; }
.map-controls { display: flex; flex-direction: column; gap: 0.6rem; }
#route-slider { width: 100%; height: 4px; background: #2c2c2c; border-radius: 4px; }
#route-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; background: var(--buzz-yellow); border-radius: 50%; cursor: pointer; }
.slider-labels { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--text-gray); }
.button-group { display: flex; gap: 0.8rem; justify-content: center; }
.action-btn {
    background: var(--buzz-yellow);
    color: black;
    border: none;
    padding: 6px 16px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}
.action-btn:hover { background: var(--stinger-orange); transform: scale(0.96); }
.action-btn.reset { background: #444; color: white; }
.action-btn.small { padding: 4px 12px; font-size: 0.8rem; }

/* Weather */
.weather-grid { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.weather-icon i { font-size: 3rem; color: var(--buzz-yellow); }
.weather-details { flex: 1; display: grid; grid-template-columns: repeat(auto-fit, minmax(130px,1fr)); gap: 0.3rem; }
.weather-location { font-size: 1.1rem; font-weight: bold; grid-column: 1/-1; }
.weather-temp { font-size: 1.6rem; font-weight: bold; color: var(--buzz-yellow); }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px,1fr)); gap: 0.8rem; margin-bottom: 0.8rem; }
.stat-item { background: #1c1c1c; border-radius: 12px; padding: 0.6rem; display: flex; align-items: center; gap: 0.8rem; }
.stat-item i { font-size: 1.6rem; color: var(--buzz-yellow); }
.stat-item span:first-child { font-size: 1.4rem; font-weight: bold; }

/* Social Hub */
.top-hub { margin-top: 0; margin-bottom: 1rem; }
.social-links-grid { display: flex; justify-content: center; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.3rem; }
.social-link-card {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1c1c1c;
    padding: 4px 12px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
    border: 1px solid var(--buzz-yellow);
}
.social-link-card i { font-size: 1.1rem; }
.social-link-card.youtube { color: #ff0000; border-color: #ff0000; }
.social-link-card.youtube:hover { background: #ff0000; color: white; }
.social-link-card.tiktok { color: #69c9d0; border-color: #69c9d0; }
.social-link-card.tiktok:hover { background: #000; color: #fff; border-color: #fff; }
.social-link-card.instagram { color: #e4405f; border-color: #e4405f; }
.social-link-card.instagram:hover { background: #e4405f; color: white; }

/* Waypoints table */
.table-wrapper { overflow-x: auto; }
#waypoints-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.75rem;
    background: #0c0c0c;
}
#waypoints-table th, #waypoints-table td {
    padding: 8px 6px;
    text-align: left;
    border-bottom: 1px solid #2c2c2c;
    vertical-align: top;
}
#waypoints-table th { background: #050505; color: var(--buzz-yellow); }
.nearby-highlight-yellow {
    background-color: #5c481f !important;
    animation: blinkYellow 0.8s infinite alternate;
}
.nearby-highlight-red {
    background-color: #8b2c1a !important;
    animation: blinkRed 0.5s infinite alternate;
}
@keyframes blinkYellow {
    from { background-color: #5c481f; border-left: 3px solid #e0a800; }
    to { background-color: #846a2c; border-left: 3px solid #ffdd88; }
}
@keyframes blinkRed {
    from { background-color: #8b2c1a; border-left: 3px solid #ff4444; }
    to { background-color: #c0392b; border-left: 3px solid #ff8888; }
}
#waypoints-table a { color: var(--buzz-yellow); }

/* Itinerary */
.itinerary-controls { display: flex; gap: 0.8rem; margin-bottom: 0.8rem; }
.itinerary-item { background: #111; border-radius: 12px; border: 1px solid #2c2c2c; margin-bottom: 0.6rem; overflow: hidden; }
.itinerary-header { background: rgba(224,168,0,0.1); padding: 0.6rem 0.8rem; cursor: pointer; display: flex; justify-content: space-between; font-weight: bold; font-size: 0.9rem; }
.itinerary-content { padding: 0 0.8rem 0.8rem; display: none; border-top: 1px solid #2c2c2c; font-size: 0.85rem; }
.itinerary-content.show { display: block; }
.itinerary-content p { margin: 0.4rem 0; display: flex; gap: 6px; }
.itinerary-content i { width: 20px; color: var(--buzz-yellow); }
.campground-detail { background: #0a0a0a; border-radius: 12px; padding: 0.5rem; margin: 0.4rem 0; border-left: 3px solid var(--buzz-yellow); }

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left:0; top:0;
    width:100%; height:100%;
    background-color: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
}
.modal-content {
    background: #181818;
    margin: auto;
    padding: 1rem;
    border: 2px solid var(--buzz-yellow);
    border-radius: 20px;
    width: 95%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
}
.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--buzz-yellow);
}
#data-log-table { width:100%; border-collapse: collapse; font-size:0.7rem; }
#data-log-table th, #data-log-table td { border:1px solid #2c2c2c; padding:5px; }

/* Footer */
.main-footer { background: #050505; border-top: 2px solid var(--buzz-yellow); padding: 1rem 0; margin-top: 2rem; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-gray); text-decoration: none; font-size: 0.8rem; }
.footer-links a:hover { color: var(--buzz-yellow); }
.copyright { font-size: 0.7rem; color: var(--text-gray); }

/* Art images */
.art-bike {
    position: fixed;
    z-index: 15;
    cursor: pointer;
    transition: transform 0.2s ease;
    pointer-events: auto;
}
.art-bike:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 6px rgba(224,168,0,0.6));
}
.art-bike-1 {
    bottom: 20px;
    left: 20px;
    width: 240px;
    opacity: 0.35;
}
.art-bike-2 {
    position: fixed;
    bottom: 25%;
    left: -240px;
    width: 220px;
    opacity: 0.25;
    transition: none;
}
.art-bike-2.animate {
    animation: slideAcross 14s linear forwards;
}
@keyframes slideAcross {
    0%   { left: -240px; }
    100% { left: 100vw; }
}
.art-bike-3 {
    bottom: 20px;
    right: 20px;
    width: 240px;
    opacity: 0.35;
}
@media (max-width: 768px) {
    .art-bike {
        display: none;
    }
}

/* Responsive */
@media (max-width:680px) {
    .container { padding: 0 12px; }
    .logo-text { font-size: 1.2rem; }
    .hero-section h1 { font-size: 1.5rem; }
    .tele-value { font-size: 1.4rem; }
    .btn-start-trip { font-size: 1rem; padding: 8px 20px; }
    .map-control-buttons { gap: 5px; }
    .map-ctrl-btn { font-size: 0.7rem; padding: 4px 8px; }
    .extra-spinning-logo { width: 80px; }
    .social-links-grid { gap: 0.5rem; }
    .social-link-card { padding: 4px 10px; font-size: 0.75rem; }
    .donation-message-rotator { font-size: 0.9rem; padding: 8px 12px; }
}

/* Animations */
@keyframes blink { 0%,100%{ opacity:1; } 50%{ opacity:0.4; } }
@keyframes receivePulse { 0%{ opacity:0.3; transform:scale(0.8); } 100%{ opacity:1; transform:scale(1.2); } }
.bike-marker-flash { animation: flashBike 0.4s ease 2; }
@keyframes flashBike { 0% { filter: drop-shadow(0 0 0px gold); } 50% { filter: drop-shadow(0 0 12px #f5c542); } }
.bike-marker .direction-arrow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    text-shadow: 0 0 2px black;
    pointer-events: none;
}

/* Interactive Grid */
.interactive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.interactive-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid #2c2c2c;
    transition: 0.2s;
}
.interactive-card:hover {
    border-color: var(--buzz-yellow);
}
.interactive-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--buzz-yellow);
    border-left: 3px solid var(--buzz-yellow);
    padding-left: 0.6rem;
}
.interactive-card textarea,
.interactive-card input[type="text"],
.interactive-card input[type="number"],
.interactive-card select {
    width: 100%;
    padding: 6px 10px;
    margin: 5px 0;
    background: #0c0c0c;
    border: 1px solid #2c2c2c;
    color: white;
    border-radius: 12px;
    font-size: 0.85rem;
}
.interactive-card button {
    margin-top: 5px;
}
.message-list, .qa-list, .sponsor-list {
    max-height: 150px;
    overflow-y: auto;
    background: #0c0c0c;
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 8px;
    font-size: 0.8rem;
}
.message-item, .qa-item, .sponsor-item {
    border-bottom: 1px solid #2c2c2c;
    padding: 5px;
}
#photoGallery img {
    max-width: 100%;
    border-radius: 12px;
    margin: 4px 0;
    cursor: pointer;
    transition: transform 0.2s;
}
#photoGallery img:hover {
    transform: scale(1.02);
}
.admin-only {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px dashed #e0a800;
}
#randomMoment {
    background: #0c0c0c;
    padding: 10px;
    border-radius: 12px;
    margin: 8px 0;
}
.audio-note {
    font-size: 0.7rem;
    color: var(--text-gray);
    margin-top: 5px;
}
/* Compact Community Hub */
.community-hub.compact { padding: 1rem; }
.button-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem; justify-content: center; }
.popup-btn { background: #2c2c2c; border: 1px solid var(--buzz-yellow); color: white; padding: 6px 14px; border-radius: 40px; cursor: pointer; font-size: 0.85rem; transition: 0.2s; }
.popup-btn:hover { background: var(--buzz-yellow); color: black; }
.live-summary-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.summary-card { background: #1a1a1a; border-radius: 16px; padding: 0.8rem; border-left: 4px solid var(--buzz-yellow); }
.summary-card h3 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--buzz-yellow); }
.people-grid, .photo-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.5rem; }
.people-grid img, .photo-grid img { width: 80px; height: 80px; object-fit: cover; border-radius: 12px; cursor: pointer; }
.modal-popup { display: none; position: fixed; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.85); z-index: 2000; align-items: center; justify-content: center; }
.popup-content { background: #181818; border: 2px solid var(--buzz-yellow); border-radius: 24px; padding: 1.5rem; max-width: 500px; width: 90%; max-height: 80vh; overflow-y: auto; position: relative; }
.large-popup { max-width: 800px; }
.close-popup { position: absolute; top: 10px; right: 18px; font-size: 28px; cursor: pointer; color: var(--buzz-yellow); }
.admin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1rem; }
.admin-card { background: #0c0c0c; border-radius: 16px; padding: 0.8rem; }
.admin-card input, .admin-card textarea, .admin-card select { width: 100%; margin: 5px 0; background: #2c2c2c; border: 1px solid #444; color: white; border-radius: 8px; padding: 6px; }
.collapsible-card .card-header { cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.collapse-icon { transition: transform 0.3s; }
.card-content.collapsed { display: none; }
.card-content.expanded { display: block; }
#playlistEmbed iframe { width: 100%; height: 80px; border-radius: 12px; }
.data-indicator-inline { background: #1a1a1a; border-radius: 40px; padding: 0.5rem 1rem; display: flex; align-items: center; gap: 1rem; justify-content: center; flex-wrap: wrap; border: 1px solid var(--buzz-yellow); margin-bottom: 1rem; }
.map-ctrl-btn.prominent { background: var(--buzz-yellow); color: black; font-weight: bold; padding: 8px 20px; font-size: 0.9rem; box-shadow: 0 0 8px rgba(224,168,0,0.6); }
.map-ctrl-btn.prominent:hover { background: #c98f0a; transform: scale(1.02); }
.start-wheel { margin-top: 1.5rem; }
.bottom-wheel { margin: 2rem 0 1rem; text-align: center; }
.clear-data-btn { background: #8b2c1a; border: none; color: white; padding: 4px 12px; border-radius: 20px; margin-left: 8px; cursor: pointer; }
.clear-data-btn:hover { background: #c0392b; }

<style>
    a { color: white !important; }
    a:hover { color: #ddd !important; }
</style>
/* Default (unvisited) link color */
a:link {
    color: white;
}

/* Visited link color (optional, can match unvisited) */
a:visited {
    color: #cccccc;   /* or white, or light gray */
}

/* Hover (already white, but keep for consistency) */
a:hover {
    color: white;
}
a, a:link, a:visited, a:hover, a:active {
    color: white;
}
@keyframes glowPulse {
    0% { box-shadow: 0 0 0 0 rgba(224,168,0,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(224,168,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(224,168,0,0); }
}
.map-ctrl-btn.highlight-btn {
    animation: glowPulse 1.5s infinite;
    border-color: #e0a800;
    background: rgba(224,168,0,0.2);
}