/* ============================================
   DESIGN TOKENS & VARIABLES
   ============================================ */
:root {
    /* Colors */
    --bg-primary: #06070a;
    --bg-secondary: #0c0e14;
    --bg-tertiary: #12151e;
    --bg-card: rgba(18, 21, 30, 0.6);
    --bg-card-hover: rgba(24, 28, 40, 0.8);

    --text-primary: #f0f2f5;
    --text-secondary: #a0a8b8;
    --text-tertiary: #6b7280;
    --text-accent: #7dd3fc;

    /* Gradient Palette */
    --gradient-primary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --gradient-for: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --gradient-against: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);

    --glow-primary: rgba(59, 130, 246, 0.3);
    --glow-cyan: rgba(6, 182, 212, 0.2);
    --glow-purple: rgba(139, 92, 246, 0.2);

    /* Spacing */
    --section-padding: clamp(4rem, 8vw, 8rem);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-base: 0.3s var(--ease-out-expo);
    --transition-slow: 0.6s var(--ease-out-expo);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ============================================
   CURSOR GLOW
   ============================================ */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s;
    will-change: left, top;
}

/* ============================================
   GLASS CARD
   ============================================ */
.glass-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--glow-cyan);
}

/* ============================================
   GRADIENT TEXT
   ============================================ */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(6, 7, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.6rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-logo em {
    font-style: normal;
    font-weight: 400;
    color: var(--text-secondary);
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: #06b6d4;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.3);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 4rem;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: -7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -50px) scale(1.1); }
    50% { transform: translate(-20px, 30px) scale(0.9); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    background: radial-gradient(circle at center, rgba(6, 7, 10, 0.7) 0%, rgba(6, 7, 10, 0) 70%);
    padding: 3rem 1rem;
    border-radius: var(--radius-xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #06b6d4;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #06b6d4;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 0 100px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(6, 182, 212, 0.6), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, transparent, #06b6d4);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -40%; }
    100% { top: 100%; }
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.float-icon {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.15;
    animation: floatIcon 15s ease-in-out infinite;
}

.fi-1 { top: 15%; left: 10%; animation-delay: 0s; font-size: 2rem; }
.fi-2 { top: 25%; right: 12%; animation-delay: -3s; }
.fi-3 { bottom: 30%; left: 15%; animation-delay: -6s; }
.fi-4 { top: 60%; right: 8%; animation-delay: -9s; font-size: 1.8rem; }
.fi-5 { bottom: 15%; right: 25%; animation-delay: -12s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(10px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

.section-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #06b6d4;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--bg-secondary);
}

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

.about-card {
    padding: 2rem;
    text-align: center;
}

.card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: #06b6d4;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.about-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Comparison Visual */
.comparison-visual {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: var(--gradient-glass);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-side {
    flex: 1;
    padding: 2.5rem;
}

.comparison-side.left {
    background: rgba(16, 185, 129, 0.03);
}

.comparison-side.right {
    background: rgba(59, 130, 246, 0.03);
}

.comparison-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.comparison-side h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.comparison-side ul {
    list-style: none;
}

.comparison-side li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-side li::before {
    content: '→';
    color: var(--text-accent);
    font-weight: 600;
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.vs-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

/* ============================================
   GRADIENT TEXT ALT
   ============================================ */
.gradient-text-alt {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   LOGO TEXT
   ============================================ */
.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-text em {
    font-style: normal;
    font-weight: 400;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 0.15rem;
}

/* ============================================
   HERO MASCOT
   ============================================ */
.hero-mascot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    margin: 0;
    max-width: none;
    opacity: 0.25;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

.mascot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    border: none;
    box-shadow: none;
    animation: mascotFloat 8s ease-in-out infinite;
}

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

/* ============================================
   VOTING SECTION
   ============================================ */
.voting-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.voting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.voting-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(139, 92, 246, 0.15), rgba(244, 63, 94, 0.15));
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.voting-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(139, 92, 246, 0.4), transparent 40%);
    animation: rotateGlow 8s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes rotateGlow {
    100% { transform: rotate(360deg); }
}

.voting-card {
    padding: 2.5rem;
    text-align: center;
}

.voting-card:hover {
    transform: none;
    box-shadow: none;
}

.voting-question {
    margin-bottom: 2rem;
}

.vq-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.voting-question h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
}

/* Email Input */
.voting-email {
    margin-bottom: 2rem;
}

.voting-email label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.email-input-group {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
}

.email-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-tertiary);
    pointer-events: none;
}

.email-input-group input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: all var(--transition-base);
    outline: none;
}

.email-input-group input:focus {
    border-color: #06b6d4;
    background: rgba(6, 182, 212, 0.05);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}

.email-input-group input::placeholder {
    color: var(--text-tertiary);
}

.email-error {
    display: none;
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    animation: shake 0.4s ease;
}

.email-error.show {
    display: block;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Vote Buttons */
.vote-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.vote-btn {
    flex: 1;
    max-width: 180px;
    padding: 1.25rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-primary);
}

.vote-emoji {
    font-size: 1.8rem;
}

.vote-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.vote-sublabel {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.vote-yes:hover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
}

.vote-no:hover {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.2);
}

.vote-btn.selected-yes {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.15);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.vote-btn.selected-no {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.15);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

.vote-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Vote Success */
.vote-success {
    display: none;
    text-align: center;
    padding: 1.5rem 0;
    animation: fadeInUp 0.6s var(--ease-out-expo);
}

.vote-success.show {
    display: block;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    animation: bounce 1s ease-in-out;
}

.vote-success h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.3rem;
}

.vote-success p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

/* 3D Bar Chart */
.voting-results {
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.voting-results:hover {
    transform: none;
    box-shadow: none;
}

.results-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.results-total {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-bottom: 2rem;
}

.results-total span {
    color: #06b6d4;
    font-weight: 700;
}

.bar-chart-3d {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3rem;
    height: 280px;
    padding: 0 1rem;
    perspective: 800px;
}

.bar-3d-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    max-width: 120px;
}

.bar-3d-label-top {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    min-height: 2rem;
}

.yes-column .bar-3d-label-top,
.bar-3d-wrapper:first-child .bar-3d-label-top {
    color: #34d399;
}

.no-column .bar-3d-label-top,
.bar-3d-wrapper:last-child .bar-3d-label-top {
    color: #f87171;
}

.bar-3d-column {
    width: 80px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-5deg) rotateY(-15deg);
    transition: height 1s var(--ease-out-expo);
}

.bar-3d-front {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 8px 8px 0 0;
    transition: height 1.2s var(--ease-out-expo);
}

.yes-column .bar-3d-front {
    background: linear-gradient(180deg, #34d399 0%, #10b981 50%, #059669 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.3),
        0 0 30px rgba(16, 185, 129, 0.3),
        0 10px 30px rgba(16, 185, 129, 0.15);
}

.no-column .bar-3d-front {
    background: linear-gradient(180deg, #f87171 0%, #ef4444 50%, #dc2626 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.3),
        0 0 30px rgba(239, 68, 68, 0.3),
        0 10px 30px rgba(239, 68, 68, 0.15);
}

.bar-3d-side {
    position: absolute;
    bottom: 0;
    right: -15px;
    width: 15px;
    height: 0;
    transform: skewY(-45deg);
    transform-origin: left bottom;
    transition: height 1.2s var(--ease-out-expo);
}

.yes-column .bar-3d-side {
    background: linear-gradient(180deg, #059669 0%, #047857 100%);
}

.no-column .bar-3d-side {
    background: linear-gradient(180deg, #dc2626 0%, #b91c1c 100%);
}

.bar-3d-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    transform: skewX(-45deg) translateX(7.5px) translateY(-15px);
    border-radius: 4px 4px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease 1s;
}

.yes-column .bar-3d-top {
    background: linear-gradient(90deg, #34d399, #10b981);
}

.no-column .bar-3d-top {
    background: linear-gradient(90deg, #f87171, #ef4444);
}

.bar-3d-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.bar-emoji {
    font-size: 1rem;
}

/* ============================================
   DEBATE SECTION
   ============================================ */
.debate-section {
    background: var(--bg-secondary);
}

.debate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.debate-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gradient-glass);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.debate-card:hover {
    transform: none;
    box-shadow: none;
}

.debate-card-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
}

.for-card .debate-card-header {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.08) 0%, transparent 100%);
}

.against-card .debate-card-header {
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.08) 0%, transparent 100%);
}

.debate-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.debate-icon svg {
    width: 24px;
    height: 24px;
}

.debate-icon.for {
    background: var(--gradient-for);
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.debate-icon.against {
    background: var(--gradient-against);
    color: white;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.debate-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.debate-subtitle {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    font-style: italic;
}

.debate-points {
    padding: 0 1.5rem 1.5rem;
}

.debate-points li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.point-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.point-icon.for {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
}

.point-icon.against {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

.point-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.point-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.stat-card {
    padding: 2rem;
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-suffix {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.stat-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 1.5s var(--ease-out-expo);
}

/* Branches */
.branches-section {
    text-align: center;
}

.branches-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.branch-item {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.branch-emoji {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.branch-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.branch-item:hover .branch-name {
    color: var(--text-primary);
}

/* ============================================
   TWEETS 3D SECTION
   ============================================ */
.perspectives-section {
    background: var(--bg-secondary);
}

.tweets-3d-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    perspective: 1200px;
}

.tweet-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.5s var(--ease-out-expo);
    transform-style: preserve-3d;
    position: relative;
    cursor: pointer;
}

.tweet-card:hover {
    transform: translateY(-10px) rotateX(4deg) rotateY(-4deg);
}

.dus-supporter:hover {
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
}

.phd-supporter:hover {
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
}

.tweet-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
    transform: translateZ(20px);
}

.anim-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.anim-avatar::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    animation: spinAvatar 8s linear infinite;
}

.avatar-1 { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }
.avatar-2 { background: linear-gradient(135deg, #f43f5e, #fb7185); }
.avatar-3 { background: linear-gradient(135deg, #10b981, #34d399); }
.avatar-4 { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }

@keyframes spinAvatar {
    100% { transform: rotate(360deg); }
}

.tweet-user {
    flex-grow: 1;
}

.tweet-user h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    color: var(--text-primary);
}

.tweet-user span {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.x-icon {
    font-size: 1.5rem;
    color: var(--text-secondary);
    opacity: 0.5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    transform: translateZ(10px);
}

.tweet-content {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    transform: translateZ(30px);
}

.hashtag {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.hashtag:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    overflow: hidden;
}

.faq-item:hover {
    transform: none;
    box-shadow: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-question:hover {
    color: #06b6d4;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--text-tertiary);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: #06b6d4;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--bg-secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .nav-logo {
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    line-height: 1.7;
    max-width: 320px;
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    transition: color var(--transition-base);
}

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

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

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.footer-note {
    margin-top: 0.3rem;
    font-size: 0.75rem !important;
    color: var(--text-tertiary);
    opacity: 0.6;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PARTICLES
   ============================================ */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.4);
    pointer-events: none;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(6, 7, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 0.5rem;
        transition: right var(--transition-slow);
        z-index: 999;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .comparison-visual {
        flex-direction: column;
    }

    .comparison-divider {
        width: 100%;
        height: 60px;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .float-icon {
        display: none;
    }

    .hero {
        padding: 5rem 1.5rem 3rem;
    }

    .voting-container {
        grid-template-columns: 1fr;
    }

    .bar-chart-3d {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

    .middle-ground {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
    background: rgba(6, 182, 212, 0.3);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-link-hot {
    color: #ffaa00 !important;
    text-shadow: 0 0 10px rgba(255, 170, 0, 0.6), 0 0 20px rgba(255, 85, 0, 0.4);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    animation: hotPulse 1.5s infinite alternate;
}

.nav-link-hot:hover {
    color: #ffdd55 !important;
    text-shadow: 0 0 15px rgba(255, 221, 85, 0.9), 0 0 30px rgba(255, 85, 0, 0.8);
}

.fire-emoji {
    animation: flameFlicker 0.6s infinite alternate;
    display: inline-block;
}

@keyframes hotPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

@keyframes flameFlicker {
    0% { transform: scale(1) rotate(-5deg); opacity: 0.8; }
    50% { transform: scale(1.2) rotate(5deg); opacity: 1; }
    100% { transform: scale(0.9) rotate(-3deg); opacity: 0.9; }
}
