/* ==========================================================================
   SymphonyRecomp - Modern Gothic Aesthetic Design System
   ========================================================================== */

:root {
    --bg-primary: #0a090f;
    --bg-secondary: #12101a;
    --bg-card: rgba(23, 20, 36, 0.7);
    --bg-card-hover: rgba(33, 28, 52, 0.85);
    --bg-glass: rgba(18, 15, 29, 0.75);
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(225, 45, 57, 0.4);
    --border-gold: rgba(245, 185, 66, 0.4);

    --text-main: #f0eef5;
    --text-muted: #9e96b3;
    --text-dim: #6c6480;

    --accent-red: #e62035;
    --accent-red-glow: rgba(230, 32, 53, 0.5);
    --accent-gold: #f5b942;
    --accent-gold-glow: rgba(245, 185, 66, 0.4);
    --accent-cyan: #38bdf8;
    --accent-purple: #a855f7;
    --accent-green: #22c55e;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 25px var(--accent-red-glow);

    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #2b2540;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

/* Typography */
h1, h2, h3, h4, .font-gothic {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #ff8a95 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.logo-icon {
    color: var(--accent-red);
    font-size: 1.3rem;
    filter: drop-shadow(0 0 8px var(--accent-red));
}

.logo-accent {
    color: var(--accent-red);
}

.badge-tag {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(245, 185, 66, 0.15);
    color: var(--accent-gold);
    border: 1px solid var(--border-gold);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.nav-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

.btn-mister-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.2) 0%, rgba(16, 185, 129, 0.3) 100%);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.5);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.2);
}

.btn-mister-nav:hover {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #022c19 !important;
    border-color: #34d399;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    filter: brightness(0.65) saturate(1.2);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(11, 10, 16, 0.4) 0%, rgba(10, 9, 15, 0.95) 85%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 960px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 32, 53, 0.15);
    border: 1px solid rgba(230, 32, 53, 0.4);
    color: #ff9da8;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(230, 32, 53, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-description strong {
    color: #fff;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red) 0%, #b81425 100%);
    color: #fff;
    box-shadow: 0 6px 20px var(--accent-red-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(230, 32, 53, 0.6);
}

.btn-secondary {
    background: rgba(36, 30, 56, 0.8);
    color: #fff;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(50, 42, 78, 0.9);
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    color: #fff;
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* HERO STATS */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    padding: 16px 12px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* SECTION COMMONS */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* MULTIPLAYER SECTION */
.section-multiplayer {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.multiplayer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.multiplayer-radar-box {
    background: #0f0d17;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-lg);
}

.radar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.radar-ping {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-green);
    font-weight: 600;
}

.ping-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
}

#radarCanvas {
    width: 100%;
    height: auto;
    background: #08070d;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 12px;
}

.radar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.leg-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.box-color {
    width: 10px;
    height: 10px;
    border-radius: 2px;
}

.box-blue { background: #38bdf8; }
.box-orange { background: #f97316; }
.box-green { background: #22c55e; }

.dot-color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-white { background: #fff; box-shadow: 0 0 6px #fff; }
.dot-red { background: #ef4444; box-shadow: 0 0 6px #ef4444; }

.radar-controls {
    display: flex;
    gap: 10px;
}

.multiplayer-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.m-feature-card {
    display: flex;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 18px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.m-feature-card:hover {
    border-color: var(--accent-cyan);
    transform: translateX(6px);
}

.mf-icon {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    min-width: 40px;
    height: 40px;
    background: rgba(56, 189, 248, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.mf-info h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.mf-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px 24px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.fc-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.fc-badge-danger { background: rgba(230, 32, 53, 0.15); color: #ff8a95; border: 1px solid rgba(230, 32, 53, 0.3); }
.fc-badge-gold { background: rgba(245, 185, 66, 0.15); color: var(--accent-gold); border: 1px solid var(--border-gold); }
.fc-badge-purple { background: rgba(168, 85, 247, 0.15); color: #d8b4fe; border: 1px solid rgba(168, 85, 247, 0.3); }
.fc-badge-cyan { background: rgba(56, 189, 248, 0.15); color: #7dd3fc; border: 1px solid rgba(56, 189, 248, 0.3); }
.fc-badge-blue { background: rgba(59, 130, 246, 0.15); color: #93c5fd; border: 1px solid rgba(59, 130, 246, 0.3); }
.fc-badge-magic { background: rgba(236, 72, 153, 0.15); color: #f472b6; border: 1px solid rgba(236, 72, 153, 0.3); }
.fc-badge-retro { background: rgba(249, 115, 22, 0.15); color: #fdba74; border: 1px solid rgba(249, 115, 22, 0.3); }
.fc-badge-green { background: rgba(34, 197, 94, 0.15); color: #86efac; border: 1px solid rgba(34, 197, 94, 0.3); }

.fc-icon {
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.fc-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.fc-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.fc-list {
    list-style: none;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}

.fc-list li {
    font-size: 0.8rem;
    color: #cfcad9;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc-list li i {
    color: var(--accent-green);
    font-size: 0.75rem;
}

/* SHORTCUTS TABLE */
.shortcuts-search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto 32px;
}

.shortcuts-search-box i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: var(--text-dim);
}

.shortcuts-search-box input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 14px 18px 14px 48px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.shortcuts-search-box input:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 20px var(--accent-red-glow);
}

.table-responsive {
    overflow-x: auto;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.shortcuts-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.shortcuts-table th {
    background: rgba(33, 28, 52, 0.6);
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--accent-gold);
    border-bottom: 1px solid var(--border-color);
}

.shortcuts-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: #d1ccd9;
}

.shortcuts-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

kbd {
    background: #1b162b;
    border: 1px solid #3d3559;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.75rem;
    font-family: monospace;
    color: #fff;
    box-shadow: 0 2px 0 #100d1c;
}

/* CREDITS & EVOLUTION */
.credits-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.author-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.author-badge i {
    font-size: 2rem;
    color: var(--accent-gold);
    background: rgba(245, 185, 66, 0.1);
    padding: 16px;
    border-radius: var(--radius-md);
}

.author-badge h3 {
    font-size: 1.4rem;
}

.author-badge p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.credits-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.evolution-box {
    background: rgba(15, 13, 23, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.evolution-box h4 {
    font-size: 0.95rem;
    color: var(--accent-gold);
    margin-bottom: 14px;
}

.evolution-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.evolution-tags span {
    font-size: 0.8rem;
    background: rgba(34, 197, 94, 0.1);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.25);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

/* MISTER 4 ALL SPOTLIGHT & HOW TO PLAY */
.text-gradient-emerald {
    background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mister-spotlight-card {
    background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.12) 0%, rgba(12, 10, 18, 0.95) 70%);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1), 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.mister-spotlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, #34d399, transparent);
}

.mister-spotlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.35);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.mister-spotlight-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: center;
}

.mister-brand-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.mister-bolt {
    color: #facc15;
    text-shadow: 0 0 12px rgba(250, 204, 21, 0.6);
}

.mister-green-text {
    color: #34d399;
    text-shadow: 0 0 16px rgba(52, 211, 153, 0.4);
}

.mister-version-badge {
    font-family: var(--font-body);
    font-size: 0.75rem;
    background: #064e3b;
    color: #6ee7b7;
    border: 1px solid #059669;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.mister-spotlight-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mister-features-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mister-features-tags span {
    font-size: 0.8rem;
    background: rgba(16, 185, 129, 0.1);
    color: #a7f3d0;
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
}

.mister-features-tags span i {
    color: #34d399;
}

.mister-spotlight-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(8, 7, 13, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.btn-mister-primary {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    color: #032014 !important;
    font-weight: 800;
    font-size: 1rem;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    border: none;
}

.btn-mister-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
    filter: brightness(1.1);
}

.btn-youtube-mister {
    background: rgba(239, 68, 68, 0.12);
    color: #fca5a5 !important;
    border: 1px solid rgba(239, 68, 68, 0.35);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-youtube-mister:hover {
    background: rgba(239, 68, 68, 0.25);
    border-color: #ef4444;
    color: #fff !important;
    transform: translateY(-2px);
}

/* 3 STEPS GRID */
.mister-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.mister-step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.mister-step-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.mister-step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.mister-step-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.35);
    letter-spacing: 0.5px;
}

.mister-step-icon {
    font-size: 1.5rem;
    color: #34d399;
}

.mister-step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff;
}

.mister-step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.text-link {
    color: #34d399;
    text-decoration: underline;
    font-weight: 600;
}

.text-link:hover {
    color: #6ee7b7;
}

/* DEV COMPILATION ACCORDION / BOX */
.dev-box {
    background: #0b0913;
    border: 1px solid #231c33;
    border-radius: var(--radius-lg);
    padding: 28px;
}

.dev-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.dev-box h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}

.dev-box-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 20px;
    line-height: 1.5;
}

.dev-steps-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}

.dev-step-item label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 600;
}

.code-box {
    background: #06050a;
    border: 1px solid #2d2642;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: monospace;
    font-size: 0.8rem;
    color: #7dd3fc;
}

.btn-copy {
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-copy:hover {
    color: #fff;
}

@media (max-width: 850px) {
    .mister-spotlight-content {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
.footer {
    background: #06050a;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-left p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 24px;
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .multiplayer-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
}
