:root {
    --red-primary: #ff2d55;
    --red-glow: #ff2d5580;
    --cyan-primary: #00d4ff;
    --cyan-glow: #00d4ff80;
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --text-primary: #ffffff;
    --text-secondary: #8a8a9a;
    --gold: #ffd700;
}

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

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}

/* ==================== HEADER ==================== */
.header {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(180deg, rgba(255, 45, 85, 0.1) 0%, transparent 50%, rgba(0, 212, 255, 0.1) 100%);
    position: relative;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--red-primary), #fff, var(--cyan-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px var(--red-glow);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.logo a {
    background: linear-gradient(90deg, var(--red-primary), #fff, var(--cyan-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 20px var(--red-glow)); }
    100% { filter: drop-shadow(0 0 40px var(--cyan-glow)); }
}

.tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.5em;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Header Top */
.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: background 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.3s;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

/* Hamburger animation when open */
.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation */
.nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.nav a {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    text-transform: uppercase;
    transition: color 0.3s, text-shadow 0.3s;
    padding: 0.5rem 1rem;
}

.nav a:hover {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.nav a.active {
    color: var(--gold);
}

/* Navigation Dropdowns */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    cursor: pointer;
}

.nav-dropdown-trigger::after {
    content: ' ▾';
    font-size: 0.7em;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* ==================== VS SECTION ==================== */
.vs-section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    padding: 3rem 2rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.contender {
    text-align: center;
    padding: 2rem;
    position: relative;
    animation: slideIn 0.8s ease-out forwards;
    opacity: 0;
}

.contender.left {
    animation-delay: 0.2s;
}

.contender.right {
    animation-delay: 0.4s;
}

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

.contender-avatar {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    animation: float 4s ease-in-out infinite;
    overflow: hidden;
}

.contender-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contender.left .contender-avatar {
    background: radial-gradient(circle, rgba(255, 45, 85, 0.3) 0%, transparent 70%);
    box-shadow: 0 0 60px var(--red-glow), inset 0 0 60px rgba(255, 45, 85, 0.2);
    border: 3px solid var(--red-primary);
}

.contender.right .contender-avatar {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    box-shadow: 0 0 60px var(--cyan-glow), inset 0 0 60px rgba(0, 212, 255, 0.2);
    border: 3px solid var(--cyan-primary);
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.contender-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contender.left .contender-name {
    color: var(--red-primary);
    text-shadow: 0 0 30px var(--red-glow);
}

.contender.right .contender-name {
    color: var(--cyan-primary);
    text-shadow: 0 0 30px var(--cyan-glow);
}

.contender-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    letter-spacing: 0.1em;
}

/* VS Badge */
.vs-badge {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--gold);
    text-shadow:
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.4);
    animation: vsPulse 1.5s ease-in-out infinite;
    position: relative;
}

.vs-badge::before,
.vs-badge::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    top: 50%;
}

.vs-badge::before {
    right: 100%;
    margin-right: 1rem;
    background: linear-gradient(90deg, transparent, var(--red-primary));
}

.vs-badge::after {
    left: 100%;
    margin-left: 1rem;
    background: linear-gradient(90deg, var(--cyan-primary), transparent);
}

@keyframes vsPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ==================== VOTE SECTION ==================== */
.vote-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.vote-btn {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 1.25rem 2.5rem;
    border: 2px solid;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    background: transparent;
}

.vote-btn.red {
    color: var(--red-primary);
    border-color: var(--red-primary);
}

.vote-btn.red:hover {
    background: var(--red-primary);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--red-glow);
}

.vote-btn.cyan {
    color: var(--cyan-primary);
    border-color: var(--cyan-primary);
}

.vote-btn.cyan:hover {
    background: var(--cyan-primary);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--cyan-glow);
}

/* Vote Results */
.vote-results {
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
}

.vote-bar-container {
    margin-bottom: 1rem;
}

.vote-bar {
    height: 50px;
    border-radius: 25px;
    display: flex;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.vote-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    transition: width 1s ease-out;
    position: relative;
}

.vote-segment.red {
    background: linear-gradient(90deg, var(--red-primary), #ff4d6d);
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.3);
}

.vote-segment.cyan {
    background: linear-gradient(90deg, #00b4d8, var(--cyan-primary));
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.3);
}

.vote-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.vote-labels span:first-child { color: var(--red-primary); }
.vote-labels span:last-child { color: var(--cyan-primary); }

.vote-meta {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==================== INTRODUCTION SECTION ==================== */
.intro-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.intro-section h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.intro-content {
    position: relative;
    padding: 0 1rem;
}

.intro-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 0;
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

.intro-content strong,
.intro-content b {
    color: var(--gold);
    font-weight: 600;
}

.intro-content em {
    color: var(--cyan-primary);
    font-style: normal;
}

/* ==================== BATTLE SECTION ==================== */
.battle-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 0.3em;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, var(--red-primary), var(--gold), var(--cyan-primary));
    margin: 1rem auto 0;
}

/* Battle Card */
.battle-card {
    background: var(--bg-card);
    border-radius: 16px;
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: cardAppear 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.battle-card:nth-child(1) { animation-delay: 0.6s; }
.battle-card:nth-child(2) { animation-delay: 0.75s; }
.battle-card:nth-child(3) { animation-delay: 0.9s; }
.battle-card:nth-child(4) { animation-delay: 1.05s; }
.battle-card:nth-child(5) { animation-delay: 1.2s; }

@keyframes cardAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.battle-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.metric-icon {
    font-size: 1.5rem;
}

.winner-badge {
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.winner-badge.red {
    background: rgba(255, 45, 85, 0.2);
    color: var(--red-primary);
    border: 1px solid var(--red-primary);
}

.winner-badge.cyan {
    background: rgba(0, 212, 255, 0.2);
    color: var(--cyan-primary);
    border: 1px solid var(--cyan-primary);
}

/* Score Bar */
.score-bar-container {
    padding: 1.5rem 2rem;
}

.score-bar {
    height: 40px;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.score-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    transition: width 1s ease-out;
    position: relative;
}

.score-segment.red {
    background: linear-gradient(90deg, var(--red-primary), #ff4d6d);
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.3);
}

.score-segment.cyan {
    background: linear-gradient(90deg, #00b4d8, var(--cyan-primary));
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.3);
}

.score-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.score-labels span:first-child { color: var(--red-primary); }
.score-labels span:last-child { color: var(--cyan-primary); }

/* Analysis Grid */
.analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.analysis-item {
    padding: 1.5rem 2rem;
    background: var(--bg-card);
}

.analysis-item h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.analysis-item.red h4 { color: var(--red-primary); }
.analysis-item.cyan h4 { color: var(--cyan-primary); }

.analysis-item p,
.analysis-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.analysis-text p {
    margin-bottom: 0.75rem;
}

.analysis-text p:last-child {
    margin-bottom: 0;
}

.analysis-item.red .analysis-text strong,
.analysis-item.red .analysis-text b {
    color: var(--red-primary);
    font-weight: 600;
}

.analysis-item.cyan .analysis-text strong,
.analysis-item.cyan .analysis-text b {
    color: var(--cyan-primary);
    font-weight: 600;
}

.analysis-text em {
    color: var(--gold);
    font-style: normal;
}

/* Verdict */
.verdict {
    padding: 1.5rem 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.verdict h4 {
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
}

.verdict p,
.verdict-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.verdict-text p {
    margin-bottom: 0.75rem;
}

.verdict-text p:last-child {
    margin-bottom: 0;
}

.verdict-text strong,
.verdict-text b {
    color: var(--gold);
    font-weight: 600;
}

.verdict-text em {
    color: var(--cyan-primary);
    font-style: normal;
}

/* ==================== WINNER SECTION ==================== */
.winner-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    border-radius: 24px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    animation: winnerGlow 2s ease-in-out infinite alternate;
}

@keyframes winnerGlow {
    0% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.2); }
    100% { box-shadow: 0 0 60px rgba(255, 215, 0, 0.4); }
}

.winner-crown {
    font-size: 4rem;
    animation: crownBounce 2s ease-in-out infinite;
}

@keyframes crownBounce {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.winner-announce {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    margin: 1rem 0;
}

.winner-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: 0.15em;
    text-shadow: 0 0 40px var(--red-glow);
    margin-bottom: 1rem;
}

.winner-name.red {
    color: var(--red-primary);
    text-shadow: 0 0 40px var(--red-glow);
}

.winner-name.cyan {
    color: var(--cyan-primary);
    text-shadow: 0 0 40px var(--cyan-glow);
}

.winner-score {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.winner-summary {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    text-align: left;
}

.winner-summary p {
    margin-bottom: 1rem;
}

.winner-summary p:last-child {
    margin-bottom: 0;
}

.winner-summary strong,
.winner-summary b {
    color: var(--gold);
    font-weight: 600;
}

.winner-summary em {
    color: var(--cyan-primary);
    font-style: normal;
}

/* Score Breakdown */
.score-breakdown {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.score-item {
    text-align: center;
}

.score-item .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.score-item .value {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
}

.score-item.red .value { color: var(--red-primary); }
.score-item.cyan .value { color: var(--cyan-primary); }

/* ==================== CONTENT SECTION ==================== */
.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.content-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.content-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
}

.content-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.content-section ul, .content-section ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-secondary);
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.content-section strong {
    color: var(--text-primary);
}

/* ==================== CARDS GRID ==================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* VS Card (for homepage listings) */
.vs-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.vs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.vs-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
}

.vs-card-contender {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.vs-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.vs-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vs-card-contender.left .vs-card-avatar {
    background: radial-gradient(circle, rgba(255, 45, 85, 0.3) 0%, transparent 70%);
    border: 2px solid var(--red-primary);
}

.vs-card-contender.right .vs-card-avatar {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    border: 2px solid var(--cyan-primary);
}

.vs-card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.vs-card-contender.left .vs-card-name {
    color: var(--red-primary);
}

.vs-card-contender.right .vs-card-name {
    color: var(--cyan-primary);
}

.vs-card-vs {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    margin: 0 1rem;
}

.vs-card-body {
    padding: 1rem 1.5rem;
}

.vs-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.vs-card-excerpt {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.vs-card-footer {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.vs-card-type {
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border-radius: 10px;
    text-transform: uppercase;
}

.vs-card-type.battle {
    background: rgba(255, 45, 85, 0.2);
    color: var(--red-primary);
}

.vs-card-type.comparison {
    background: rgba(0, 212, 255, 0.2);
    color: var(--cyan-primary);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
}

.cta-button {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background: linear-gradient(90deg, var(--red-primary), var(--cyan-primary));
    color: white;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 45, 85, 0.5), 0 0 40px rgba(0, 212, 255, 0.5);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 3rem 2rem 2rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
}

.footer-section h4 {
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    padding: 0.3rem 0;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--cyan-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.modal-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1rem;
    text-align: center;
}

.modal-content p {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
}

.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background: linear-gradient(90deg, var(--red-primary), var(--cyan-primary));
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 45, 85, 0.5);
}

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

.btn-secondary:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

/* ==================== ERROR/404 PAGES ==================== */
.error-section {
    text-align: center;
    padding: 6rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-family: 'Orbitron', monospace;
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 900;
    background: linear-gradient(90deg, var(--red-primary), var(--cyan-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.error-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin: 1rem 0;
}

.error-message {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.error-suggestions {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.error-suggestions p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.suggestion-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.suggestion-links a {
    color: var(--cyan-primary);
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.suggestion-links a:hover {
    color: var(--gold);
}

/* ==================== ABOUT/CONTACT PAGES ==================== */
.page-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.15em;
    text-align: center;
    background: linear-gradient(90deg, var(--red-primary), var(--gold), var(--cyan-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.page-content {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.page-content p {
    margin-bottom: 1.5rem;
}

.page-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .vs-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vs-badge {
        order: -1;
    }

    .vs-badge::before,
    .vs-badge::after {
        display: none;
    }

    .contender-avatar {
        width: 140px;
        height: 140px;
        font-size: 4rem;
    }

    .analysis-grid {
        grid-template-columns: 1fr;
    }

    .score-breakdown {
        flex-direction: column;
        gap: 1.5rem;
    }

    .vote-buttons {
        flex-direction: column;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
        background: var(--bg-dark);
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav.active {
        display: flex;
    }

    .nav > a,
    .nav > .nav-dropdown {
        width: 100%;
        text-align: center;
    }

    .nav a {
        padding: 1rem;
        display: block;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(255, 255, 255, 0.03);
        box-shadow: none;
        border: none;
        border-radius: 0;
        min-width: 100%;
    }

    .nav-dropdown-trigger::after {
        display: none;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .vs-card-header {
        flex-direction: column;
        gap: 1rem;
    }

    .vs-card-vs {
        margin: 0;
    }
}

/* =====================================================
   SHARE BUTTONS
   ===================================================== */

.share-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: center;
}

.share-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    font-family: inherit;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.share-btn .share-icon {
    font-size: 1.1em;
}

.share-btn.whatsapp {
    background: #25D366;
    color: white;
}

.share-btn.facebook {
    background: #1877F2;
    color: white;
}

.share-btn.twitter {
    background: #000000;
    color: white;
}

.share-btn.copy-link {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.share-btn.copy-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* =====================================================
   UP NEXT / ENGAGEMENT
   ===================================================== */

.up-next-section {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border-radius: 16px;
    text-align: center;
}

.up-next-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.up-next-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.up-next-card {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.up-next-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.up-next-type {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.up-next-type.battle {
    color: var(--red-primary);
}

.up-next-type.comparison {
    color: var(--cyan-primary);
}

.up-next-names {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.random-battle-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.random-battle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* =====================================================
   SHARE/UP-NEXT MOBILE RESPONSIVE
   ===================================================== */

@media (max-width: 480px) {
    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
    }

    .up-next-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   LISTING PAGES (Comparisons, Categories)
   ===================================================== */

.page-header {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(180deg, rgba(255, 45, 85, 0.05) 0%, transparent 100%);
}

.page-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(90deg, var(--red-primary), var(--cyan-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.sort-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.sort-tab {
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.sort-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.sort-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

.breadcrumb {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--cyan-primary);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Comparisons Grid */
.comparisons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.card-versus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    gap: 1rem;
}

.card-topic {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
}

.card-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-name {
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.card-score {
    font-size: 0.9rem;
    font-weight: 700;
}

.card-score.red {
    color: var(--red-primary);
}

.card-score.cyan {
    color: var(--cyan-primary);
}

.card-vs {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.card-winner {
    color: var(--gold);
}

.card-views {
    opacity: 0.7;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.category-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 2rem;
}

.random-btn {
    display: inline-block;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--red-primary), var(--cyan-primary));
    border-radius: 50px;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.random-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 45, 85, 0.4);
}

.secondary-btn {
    display: inline-block;
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--text-secondary);
    margin-left: 1rem;
    transition: all 0.3s;
}

.secondary-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.empty-state .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: var(--cyan-primary);
    color: var(--bg-dark);
    border-radius: 25px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .comparisons-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 1rem;
    }

    .sort-tabs {
        flex-wrap: wrap;
    }

    .cta-section {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .secondary-btn {
        margin-left: 0;
    }
}

/* =====================================================
   TOPIC PAGE
   ===================================================== */

.topic-hero {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(180deg, rgba(255, 45, 85, 0.08) 0%, transparent 100%);
}

.topic-avatar-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.topic-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topic-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(90deg, var(--red-primary), var(--cyan-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.topic-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.topic-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.topic-category {
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.topic-record {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.topic-record .wins {
    color: #4ade80;
}

.topic-record .losses {
    color: var(--red-primary);
}

.topic-section {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.topic-section .section-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--gold);
}

/* Result badges on cards */
.card-result {
    font-family: 'Orbitron', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
}

.card-result.won {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.4);
}

.card-result.lost {
    background: rgba(255, 45, 85, 0.2);
    color: var(--red-primary);
    border: 1px solid rgba(255, 45, 85, 0.4);
}

.card-type-badge {
    font-family: 'Orbitron', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.4);
}

.battle-card-type {
    border-color: rgba(102, 126, 234, 0.3);
}

.battle-card-type:hover {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

@media (max-width: 768px) {
    .topic-avatar-large {
        width: 120px;
        height: 120px;
    }

    .topic-meta {
        gap: 1rem;
    }
}

/* =====================================================
   TOPICS LISTING PAGE
   ===================================================== */

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.topic-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.9), rgba(20, 20, 35, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.topic-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.topic-card-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.topic-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topic-card-info {
    flex: 1;
    min-width: 0;
}

.topic-card-name {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topic-card-category {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.topic-card-stats {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.topic-card-stats .stat {
    color: var(--text-secondary);
}

.topic-card-stats .wins {
    color: #4ade80;
}

@media (max-width: 480px) {
    .topics-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
}

/* =====================================================
   HOMEPAGE ENHANCEMENTS
   ===================================================== */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    margin-bottom: 1rem;
}

.section-header .section-title {
    margin-bottom: 0;
}

.view-all-link {
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cyan-primary);
    transition: color 0.3s;
}

.view-all-link:hover {
    color: var(--gold);
}

/* Featured Topics Grid */
.featured-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    padding: 0 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-topic-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.8), rgba(20, 20, 35, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.featured-topic-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.featured-topic-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.75rem;
}

.featured-topic-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-topic-name {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.featured-topic-stats {
    font-size: 0.7rem;
    color: #4ade80;
}

@media (max-width: 768px) {
    .section-header {
        padding: 0 1rem;
    }

    .featured-topics-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
        padding: 0 1rem 1rem;
    }

    .featured-topic-card {
        padding: 1rem 0.5rem;
    }

    .featured-topic-avatar {
        width: 50px;
        height: 50px;
    }

    .featured-topic-name {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .featured-topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================================================
   BREADCRUMB NAVIGATION
   ===================================================== */

.breadcrumb-nav {
    padding: 1rem 2rem;
    font-size: 0.85rem;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb-nav a {
    color: var(--cyan-primary);
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: var(--gold);
}

.breadcrumb-nav .separator {
    color: var(--text-secondary);
    margin: 0 0.5rem;
}

.breadcrumb-nav .current {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }
}

/* =====================================================
   STATS GRID (About Page)
   ===================================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.9), rgba(20, 20, 35, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(90deg, var(--red-primary), var(--cyan-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1rem;
    }
}
