:root {
    --glow: #6c5ce7;
    --leo-color: #4169E1;
    --andrea-color: #228B22;
    --text: #ffffff;
    --glass-bg: rgba(255,255,255,0.05);
    --glass-border: rgba(255,255,255,0.1);
    
    --night: #0d1b2a;
    --dusk: #1b3358;
    --sunset-orange: #ff8c42;
    --sunset-pink: #ef476f;
    --grass: #101a0d;
    --grass-dark: #080f07;
    --gold: #ffd23f;
    --cream: #fdf6e9;
    --diamond: #5fd6e3;
}

body {
    margin: 0;
    font-family: 'Red Hat Display', sans-serif;
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    background: transparent;
}


.hidden {
    display: none !important;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    margin-right: 1.5rem;
    font-weight: 300;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--glow);
}

button {
    font-family: 'Red Hat Display', sans-serif;
    background: linear-gradient(135deg, #ef476f, #ff8c42);
    border: 2px solid #000;
    color: var(--text);
    padding: 0.75rem 1.25rem;
    border-radius: 24px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 0 #b0324c, 0 4px 12px rgba(0,0,0,0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #b0324c, 0 6px 16px rgba(0,0,0,0.5);
}

button:active {
    transform: translateY(4px);
    box-shadow: 0 0px 0 #b0324c, 0 0px 4px rgba(0,0,0,0.4);
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Glass cards */
.glass-card {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid var(--glass-border);
    border-radius: 32px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255,255,255,0.05);
}

/* Login */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}


.login-card {
    width: 100%;
    max-width: 400px;
    text-align: center;
    background: rgba(10, 10, 30, 0.85);
    backdrop-filter: blur(10px);
    border: 2px solid #00f3ff;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5), inset 0 0 20px rgba(0, 243, 255, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
}

.login-card h2 {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
    font-family: \'Press Start 2P\', monospace;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 0;
}

.login-card input {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00f3ff;
    color: #fff;
    font-family: \'Press Start 2P\', monospace;
    font-size: 0.8rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 0 5px rgba(0,243,255,0.3);
    border-radius: 4px;
    box-sizing: border-box;
}

.login-card button {
    width: 100%;
    background: transparent;
    border: 2px solid #ff00ff;
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff;
    box-shadow: 0 0 10px rgba(255,0,255,0.5), inset 0 0 10px rgba(255,0,255,0.3);
    font-family: \'Press Start 2P\', monospace;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.login-card button:hover {
    background: rgba(255,0,255,0.2);
    box-shadow: 0 0 20px rgba(255,0,255,0.8), inset 0 0 20px rgba(255,0,255,0.5);
    transform: none;
}


/* --- Fireworks --- */
.mc-fw-trail {
    position: absolute;
    width: 3px; height: 3px;
    background: #fff8d0;
    box-shadow: 0 0 4px 1px rgba(255,255,255,0.85);
    animation-name: fw-rise;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
@keyframes fw-rise {
    0%   { transform: translateY(0); opacity: 1; }
    85%  { opacity: 1; }
    100% { transform: translateY(var(--rise, -200px)); opacity: 0; }
}
.mc-fw-particle {
    position: absolute;
    width: 5px; height: 5px;
    background: var(--pc, #fff);
    box-shadow: 0 0 3px 1px var(--pc, #fff);
    border-radius: 50%;
    animation-name: fw-particle;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
@keyframes fw-particle {
    0%   { transform: translate(0, 0) scale(1); opacity: 1; }
    70%  { opacity: 1; }
    100% { transform: translate(var(--dx, 0px), var(--dy, 0px)) scale(0.4); opacity: 0; }
}

/* Dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.clock-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clock-card.leo {
    box-shadow: 0 0 20px rgba(65, 105, 225, 0.2);
}

.clock-card.andrea {
    box-shadow: 0 0 20px rgba(34, 139, 34, 0.2);
}

.clock-face {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid var(--glass-border);
    position: relative;
    margin-bottom: 1rem;
}

.clock-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom;
    background: white;
    border-radius: 4px;
}
.hour-hand { width: 4px; height: 40px; margin-left: -2px; }
.minute-hand { width: 2px; height: 60px; margin-left: -1px; }
.second-hand { width: 1px; height: 65px; background: red; margin-left: 0; }

.center-stats {
    text-align: center;
    font-size: 1.2rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: #ccc;
}

.stat-card .value {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Shows */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.show-card {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.show-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin: 0.5rem 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--leo-color), var(--andrea-color));
}

/* Memories */
.masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.photo-card {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    padding: 1rem;
}

.photo-card img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
}

/* Upload */
.upload-zone {
    border: 2px dashed var(--glass-border);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--glow);
    background: rgba(255,255,255,0.1);
}

.upload-preview {
    max-width: 100%;
    max-height: 300px;
    margin: 1rem 0;
    border-radius: 8px;
    display: none;
}

/* Settings */
.settings-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.settings-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.settings-sidebar-item {
    padding: 1rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s;
}

.settings-sidebar-item:hover, .settings-sidebar-item.active {
    background: rgba(255,255,255,0.1);
}

.channel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

select, input[type="text"], input[type="password"] {
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.5rem;
    border-radius: 4px;
    font-family: inherit;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal {
    max-width: 500px;
    width: 100%;
}
.modal img {
    width: 100%;
    border-radius: 8px;
}

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

#mc-banner-root {
--night: #0d1b2a;
--dusk: #1b3358;
--sunset-orange: #ff8c42;
--sunset-pink: #ef476f;
--grass: #101a0d;
--grass-dark: #080f07;
--gold: #ffd23f;
--cream: #fdf6e9;
--diamond: #5fd6e3;
--mtn-far: #6a5a86;
--mtn-near: #9c6f8e;

position: relative;
display: flex;
flex-direction: column;
width: 100vw;
min-height: 100vh;
background: linear-gradient(180deg, var(--night) 0%, var(--dusk) 45%, var(--sunset-orange) 100%);
transition: background 4s ease;
overflow-x: hidden;
font-family: 'VT323', monospace;
box-sizing: border-box;
margin: 0;
}

#mc-banner-root * { box-sizing: border-box; }

.mc-sky {
position: absolute;
top: 0; left: 0; right: 0; height: 100%;
overflow: hidden;
pointer-events: none;
opacity: var(--star-visibility, 1);
transition: opacity 3s ease;
}

.mc-star {
position: absolute;
background: #ffffff;
border-radius: 0;
image-rendering: pixelated;
animation: star-twinkle ease-in-out infinite;
}
@keyframes star-twinkle {
0%, 100% { opacity: 0.1; filter: brightness(0.7); }
50% { opacity: 1; filter: brightness(1.6); }
}

.mc-sky-breathe {
position: absolute;
top: 0; left: 0; right: 0; height: 100%;
pointer-events: none;
background: radial-gradient(ellipse 70% 60% at 50% 18%, rgba(255,255,255,0.14), rgba(255,255,255,0) 65%);
mix-blend-mode: soft-light;
animation: sky-breathe 9s ease-in-out infinite;
z-index: 1;
}
@keyframes sky-breathe {
0%, 100% { opacity: 0.3; transform: scale(1); }
50% { opacity: 1; transform: scale(1.06); }
}

.mc-sky-cycle {
position: absolute;
top: 0; left: 0; right: 0; height: 100%;
pointer-events: none;
background: linear-gradient(180deg, rgba(120,90,210,0.28) 0%, rgba(255,140,90,0.16) 55%, rgba(255,210,120,0.1) 100%);
mix-blend-mode: hue;
animation: sky-hue-cycle 22s linear infinite;
z-index: 1;
}
@keyframes sky-hue-cycle {
0% { filter: hue-rotate(0deg); }
100% { filter: hue-rotate(360deg); }
}

.mc-clouds {
position: absolute;
top: 0; left: 0; right: 0; height: 100%;
overflow: hidden;
pointer-events: none;
}

.mc-cloud {
position: absolute;
image-rendering: pixelated;
opacity: var(--cloud-opacity, 0.55);
filter: drop-shadow(0 0 0 transparent);
animation: cloud-drift linear infinite;
}
.mc-cloud-px {
position: absolute;
background: color-mix(in srgb, var(--cloud-color, #e8d4dc) 55%, #fff8ef 45%);
box-shadow: 0 0 12px 2px var(--cloud-color, #e8d4dc), 0 2px 0 0 rgba(0,0,0,0.18);
transition: background-color 4s ease, box-shadow 4s ease;
}

.mc-fireworks {
position: absolute;
top: 0; left: 0; right: 0; height: 65%;
pointer-events: none;
z-index: 3;
overflow: visible;
}

.mc-fw-trail {
position: absolute;
width: 3px; height: 3px;
background: #fff8d0;
box-shadow: 0 0 4px 1px rgba(255,255,255,0.85);
image-rendering: pixelated;
animation-name: fw-rise;
animation-timing-function: ease-out;
animation-fill-mode: forwards;
}
@keyframes fw-rise {
0%   { transform: translateY(0); opacity: 1; }
85%  { opacity: 1; }
100% { transform: translateY(var(--rise, -200px)); opacity: 0; }
}

.mc-fw-particle {
position: absolute;
width: 5px; height: 5px;
background: var(--pc, #fff);
box-shadow: 0 0 3px 1px var(--pc, #fff);
image-rendering: pixelated;
animation-name: fw-particle;
animation-timing-function: ease-out;
animation-fill-mode: forwards;
}
@keyframes fw-particle {
0%   { transform: translate(0, 0) scale(1); opacity: 1; }
70%  { opacity: 1; }
100% { transform: translate(var(--dx, 0px), var(--dy, 0px)) scale(0.4); opacity: 0; }
}
@keyframes cloud-drift {
from { transform: translateX(-140px); }
to { transform: translateX(calc(100vw + 140px)); }
}

.mc-sun-halo {
position: absolute;
top: var(--orb-top, 22%); left: var(--orb-left, 78%);
transform: translate(-50%, -50%);
width: 560px; height: 560px;
border-radius: 50%;
background: radial-gradient(circle,
var(--halo-c1, rgba(253,246,233,0.38)) 0%,
var(--halo-c2, rgba(253,246,233,0.22)) 18%,
var(--halo-c3, rgba(253,246,233,0.11)) 34%,
var(--halo-c4, rgba(253,246,233,0.05)) 50%,
rgba(253,246,233,0) 72%);
filter: blur(6px);
animation: halo-breathe 6s ease-in-out infinite;
pointer-events: none;
transition: top 3s ease, left 3s ease;
}
@keyframes halo-breathe {
0%, 100% { transform: translate(-50%, -50%) scale(0.97); opacity: 0.85; }
50% { transform: translate(-50%, -50%) scale(1.04); opacity: 1; }
}

.mc-sun-pixel {
position: absolute;
top: var(--orb-top, 22%); left: var(--orb-left, 78%);
transform: translate(-50%, -50%);
width: 84px; height: 84px;
image-rendering: pixelated;
background: var(--orb-mid, #fdf6e9);
cursor: pointer;
pointer-events: auto;
z-index: 4;
clip-path: polygon(
35% 0%, 65% 0%, 65% 5%, 75% 5%, 75% 10%, 85% 10%, 85% 15%, 90% 15%,
90% 25%, 95% 25%, 95% 35%, 100% 35%, 100% 65%, 95% 65%, 95% 75%, 90% 75%,
90% 85%, 85% 85%, 85% 90%, 75% 90%, 75% 95%, 65% 95%, 65% 100%, 35% 100%,
35% 95%, 25% 95%, 25% 90%, 15% 90%, 15% 85%, 10% 85%, 10% 75%, 5% 75%,
5% 65%, 0% 65%, 0% 35%, 5% 35%, 5% 25%, 10% 25%, 10% 15%, 15% 15%,
15% 10%, 25% 10%, 25% 5%, 35% 5%
);
animation: sun-pulse 6s ease-in-out infinite;
transition: top 3s ease, left 3s ease, background-color 3s ease, transform 0.2s ease;
}
.mc-sun-pixel:hover {
transform: translate(-50%, -50%) scale(1.12);
}
.mc-sun-inner-glow {
position: absolute;
top: 8%; left: 8%; right: 8%; bottom: 8%;
border-radius: 50%;
background: radial-gradient(circle at 50% 50%, var(--orb-hi, #fffdf6) 0%, rgba(255,255,255,0.5) 35%, rgba(255,255,255,0) 70%);
mix-blend-mode: screen;
filter: blur(3px);
animation: surface-glow 4.5s ease-in-out infinite;
pointer-events: none;
}
@keyframes surface-glow {
0%, 100% { opacity: 0.55; }
50% { opacity: 0.95; }
}
.mc-sun-pixel::before,
.mc-sun-pixel::after {
content: "";
position: absolute;
image-rendering: pixelated;
animation: crater-breathe 8s ease-in-out infinite;
}
.mc-sun-pixel::before {
top: 20%; left: 18%; width: 15%; height: 15%;
background: #9a9a9a;
box-shadow:
34px 12px 0 5px #d0d0d0,
10px 42px 0 -2px #8a8a8a;
animation-delay: 0s;
}
.mc-sun-pixel::after {
top: 54%; left: 50%; width: 13%; height: 13%;
background: #7c7c7c;
box-shadow:
-24px -4px 0 -2px #b0b0b0,
6px -32px 0 3px #999999;
animation-delay: 1.8s;
}
@keyframes crater-breathe {
0%, 100% { opacity: calc(0.4 * var(--star-visibility, 1) * var(--star-visibility, 1) * var(--star-visibility, 1)); }
50% { opacity: calc(0.8 * var(--star-visibility, 1) * var(--star-visibility, 1) * var(--star-visibility, 1)); }
}
@keyframes sun-pulse {
0%, 100% { filter: brightness(0.96) drop-shadow(0 0 14px var(--orb-glow, rgba(253,246,233,0.6))); }
50% { filter: brightness(1.08) drop-shadow(0 0 26px var(--orb-glow, rgba(253,246,233,0.6))); }
}

.mc-ground-dots {
position: absolute;
left: 0; right: 0; bottom: 0; height: 26%;
pointer-events: none;
background-image: radial-gradient(rgba(255,255,255,0.9) 1px, transparent 1px);
background-size: 14px 14px;
mix-blend-mode: difference;
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='%23fff' stop-opacity='0'/%3E%3Cstop offset='30%25' stop-color='%23fff' stop-opacity='0.15'/%3E%3Cstop offset='50%25' stop-color='%23fff' stop-opacity='0.35'/%3E%3Cstop offset='65%25' stop-color='%23fff' stop-opacity='0.55'/%3E%3Cstop offset='80%25' stop-color='%23fff' stop-opacity='0.75'/%3E%3Cstop offset='100%25' stop-color='%23fff' stop-opacity='0.95'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0,55 Q25,40 50,55 T100,55 T150,55 T200,55 L200,100 L0,100 Z' fill='url(%23g)'/%3E%3C/svg%3E");
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='%23fff' stop-opacity='0'/%3E%3Cstop offset='30%25' stop-color='%23fff' stop-opacity='0.15'/%3E%3Cstop offset='50%25' stop-color='%23fff' stop-opacity='0.35'/%3E%3Cstop offset='65%25' stop-color='%23fff' stop-opacity='0.55'/%3E%3Cstop offset='80%25' stop-color='%23fff' stop-opacity='0.75'/%3E%3Cstop offset='100%25' stop-color='%23fff' stop-opacity='0.95'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0,55 Q25,40 50,55 T100,55 T150,55 T200,55 L200,100 L0,100 Z' fill='url(%23g)'/%3E%3C/svg%3E");
-webkit-mask-repeat: repeat-x;
mask-repeat: repeat-x;
-webkit-mask-size: 220px 100%;
mask-size: 220px 100%;
animation: ground-wave-drift 16s linear infinite, ground-dots-breathe 10s ease-in-out infinite;
}
@keyframes ground-wave-drift {
0% { -webkit-mask-position: 0 0; mask-position: 0 0; }
100% { -webkit-mask-position: 220px 0; mask-position: 220px 0; }
}
@keyframes ground-dots-breathe {
0%, 100% { opacity: 0.55; }
50% { opacity: 0.9; }
}

.mc-hills-front {
position: absolute;
bottom: 0; left: 0; right: 0; height: 11%;
background: var(--grass);
image-rendering: pixelated;
transition: background-color 4s ease;
clip-path: polygon(
0% 100%, 0% 45%, 3% 45%, 3% 60%, 6% 60%, 6% 35%, 9% 35%, 9% 55%,
12% 55%, 12% 30%, 15% 30%, 15% 50%, 18% 50%, 18% 40%, 21% 40%, 21% 62%,
24% 62%, 24% 32%, 27% 32%, 27% 48%, 30% 48%, 30% 28%, 33% 28%, 33% 55%,
36% 55%, 36% 38%, 39% 38%, 39% 58%, 42% 58%, 42% 34%, 45% 34%, 45% 50%,
48% 50%, 48% 30%, 51% 30%, 51% 60%, 54% 60%, 54% 40%, 57% 40%, 57% 55%,
60% 55%, 60% 32%, 63% 32%, 63% 48%, 66% 48%, 66% 28%, 69% 28%, 69% 58%,
72% 58%, 72% 36%, 75% 36%, 75% 52%, 78% 52%, 78% 30%, 81% 30%, 81% 50%,
84% 50%, 84% 38%, 87% 38%, 87% 60%, 90% 60%, 90% 34%, 93% 34%, 93% 55%,
96% 55%, 96% 40%, 100% 40%, 100% 100%
);
}

.mc-block {
position: absolute;
width: 22px; height: 22px;
image-rendering: pixelated;
border: 2px solid rgba(0,0,0,0.35);
animation: float-up linear infinite;
opacity: 0.9;
}
@keyframes float-up {
0% { transform: translateY(20px) rotate(0deg); opacity: 0; }
10% { opacity: 0.9; }
90% { opacity: 0.9; }
100% { transform: translateY(-460px) rotate(25deg); opacity: 0; }
}

.mc-content {
position: relative;
z-index: 5;
display: flex;
flex: 1 0 auto;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 40px 24px 30px;
width: 100%;
pointer-events: none;
}

.mc-content a,
.mc-content button {
pointer-events: auto;
}

.mc-eyebrow {
font-family: 'Press Start 2P', monospace;
font-size: 11px;
letter-spacing: 3px;
color: var(--cream);
text-shadow: 2px 2px 0 #000;
margin-bottom: 14px;
opacity: 0.9;
}

.mc-title {
font-family: 'Press Start 2P', monospace;
font-size: clamp(22px, 5vw, 40px);
line-height: 1.4;
margin: 0 0 6px 0;
background: linear-gradient(90deg, var(--gold), var(--sunset-pink), var(--diamond), var(--gold));
background-size: 300% auto;
-webkit-background-clip: text;
background-clip: text;
color: transparent;
animation: shimmer 4s linear infinite;
text-shadow: none;
filter: drop-shadow(3px 3px 0 #000);
}
@keyframes shimmer {
to { background-position: 300% center; }
}

.mc-subtitle {
font-family: 'VT323', monospace;
font-size: 26px;
color: var(--cream);
text-shadow: 2px 2px 0 #000;
margin-bottom: 22px;
letter-spacing: 1px;
}

.mc-tagline {
display: inline-block;
font-family: 'Press Start 2P', monospace;
font-size: 13px;
color: var(--night);
background: var(--gold);
padding: 10px 18px;
border-radius: 4px;
box-shadow: 0 4px 0 #b8860b, 0 4px 12px rgba(0,0,0,0.4);
margin-bottom: 28px;
animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-4px); }
}

.mc-info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 12px;
width: 100%;
max-width: 560px;
margin: 0 auto 24px auto;
justify-items: center;
}

.mc-card {
width: 100%;
background: rgba(13, 27, 42, 0.65);
border: 2px solid rgba(255, 255, 255, 0.15);
border-radius: 6px;
padding: 14px 10px;
backdrop-filter: blur(2px);
text-align: center;
}

.mc-card-icon {
margin-bottom: 6px;
display: flex;
justify-content: center;
}
.mc-card-icon svg {
width: 40px;
height: 40px;
color: #ffffff;
}

.mc-card-label {
font-family: 'Press Start 2P', monospace;
font-size: 8px;
color: var(--diamond);
letter-spacing: 1px;
margin-bottom: 6px;
text-transform: uppercase;
}

.mc-card-value {
font-family: 'VT323', monospace;
font-size: 20px;
color: var(--cream);
}

.mc-ip-box {
font-family: 'Press Start 2P', monospace;
font-size: 15px;
color: #ffffff;
background: #a3e635;
border: 2px solid #ffffff;
border-radius: 6px;
padding: 12px 22px;
box-shadow: 0 4px 0 #6b9e1f, 0 6px 16px rgba(0,0,0,0.4);
letter-spacing: 1px;
margin: 0 auto 16px auto;
text-align: center;
}

.mc-footer {
font-family: 'VT323', monospace;
font-size: 18px;
color: rgba(253, 246, 233, 0.75);
text-shadow: 1px 1px 0 #000;
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
flex-wrap: wrap;
width: 100%;
text-align: center;
}

.mc-footer strong { color: var(--sunset-pink); }
.mc-footer svg { width: 24px; height: 24px; color: var(--sunset-orange); vertical-align: -6px; }

.mc-status-line {
font-family: 'VT323', monospace;
font-size: 20px;
color: var(--cream);
text-shadow: 1px 1px 0 #000;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
margin-bottom: 18px;
}

.mc-status-dot {
position: relative;
width: 20px; height: 20px;
background: #888;
image-rendering: pixelated;
clip-path: polygon(
30% 0%, 70% 0%, 70% 10%, 80% 10%, 80% 20%, 90% 20%, 90% 40%, 100% 40%,
100% 60%, 90% 60%, 90% 80%, 80% 80%, 80% 90%, 70% 90%, 70% 100%, 30% 100%,
30% 90%, 20% 90%, 20% 80%, 10% 80%, 10% 60%, 0% 60%, 0% 40%, 10% 40%,
10% 20%, 20% 20%, 20% 10%, 30% 10%
);
filter: drop-shadow(0 0 3px rgba(136,136,136,0.7)) drop-shadow(0 0 7px rgba(136,136,136,0.4));
flex-shrink: 0;
z-index: 1;
}
.mc-status-dot::before {
content: "";
position: absolute;
top: 50%; left: 50%;
width: 64px; height: 64px;
transform: translate(-50%, -50%);
border-radius: 50%;
background: radial-gradient(circle, rgba(136,136,136,0.6) 0%, rgba(136,136,136,0.22) 45%, rgba(136,136,136,0) 75%);
filter: blur(2px);
z-index: -1;
transition: background 0.4s ease;
}
.mc-status-dot.online {
background: #7cfc00;
filter: drop-shadow(0 0 4px rgba(124,252,0,0.9)) drop-shadow(0 0 10px rgba(124,252,0,0.6)) drop-shadow(0 0 18px rgba(124,252,0,0.35));
animation: status-pulse 3.2s steps(2, jump-none) infinite;
}
.mc-status-dot.online::before {
background: radial-gradient(circle, rgba(124,252,0,0.9) 0%, rgba(124,252,0,0.4) 40%, rgba(124,252,0,0) 75%);
animation: status-halo-breathe 2.4s ease-in-out infinite;
}
.mc-status-dot.offline {
background: #ff5555;
filter: drop-shadow(0 0 4px rgba(255,85,85,0.9)) drop-shadow(0 0 10px rgba(255,85,85,0.55)) drop-shadow(0 0 16px rgba(255,85,85,0.3));
}
.mc-status-dot.offline::before {
background: radial-gradient(circle, rgba(255,85,85,0.85) 0%, rgba(255,85,85,0.35) 40%, rgba(255,85,85,0) 75%);
animation: status-halo-breathe 3.6s ease-in-out infinite;
}
@keyframes status-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.55; }
}
@keyframes status-halo-breathe {
0%, 100% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.75; }
50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.mc-links {
display: flex;
gap: 14px;
flex-wrap: wrap;
justify-content: center;
align-items: stretch;
margin: 0 auto 18px auto;
width: 100%;
max-width: 560px;
}

@media (min-width: 700px) {
.mc-links {
flex-wrap: nowrap;
max-width: none;
}
.mc-link-btn {
white-space: nowrap;
}
}

@media (max-width: 480px) {
.mc-info-grid {
grid-template-columns: 1fr;
justify-items: stretch;
max-width: 320px;
}
.mc-content {
padding-top: 24px;
padding-bottom: 20px;
}
}

.mc-link-btn {
font-family: 'Press Start 2P', monospace;
font-size: 11px;
color: #fff;
text-decoration: none;
padding: 12px 18px;
border-radius: 6px;
border: 2px solid #000;
letter-spacing: 0.5px;
transition: transform 0.15s ease;
display: inline-flex;
align-items: center;
justify-content: center;
text-align: center;
}
.mc-link-btn:hover { transform: translateY(-2px); }

.mc-link-discord {
background: #5865F2;
box-shadow: 0 4px 0 #3841a8;
}
.mc-link-curseforge {
background: var(--sunset-pink);
box-shadow: 0 4px 0 #a02c4c;
}
.mc-link-voicechat {
background: var(--diamond);
color: #ffffff;
box-shadow: 0 4px 0 #2fa3b2;
}

.mc-voicechat-note {
font-family: 'VT323', monospace;
font-size: 19px;
color: var(--gold);
background: rgba(13, 27, 42, 0.65);
border: 2px dashed rgba(255, 210, 63, 0.6);
border-radius: 6px;
padding: 8px 16px;
margin: 0 auto 20px auto;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
width: fit-content;
max-width: 100%;
text-align: center;
}
.mc-voicechat-note svg { width: 28px; height: 28px; color: #ffffff; flex-shrink: 0; }


.rainbow-text {
    background: linear-gradient(to right, red, orange, yellow, #00f3ff, #ff00ff, blue, violet);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow-anim 5s linear infinite;
    background-size: 400% 100%;
    font-family: \'Press Start 2P\', monospace;
}
@keyframes rainbow-anim {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
