/* ============================================
   RED ANGEL SENATE - ULTIMATE WEBSITE THEME
   ============================================ */

:root {
    --bg-primary: #050508;
    --bg-secondary: #0a0a0f;
    --bg-card: #0f0f15;
    --bg-card-hover: #151520;
    --bg-elevated: #12121a;
    
    --red-primary: #ff2d2d;
    --red-dark: #cc0000;
    --red-glow: #ff4444;
    --red-bright: #ff6b6b;
    --red-dim: #991111;
    
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #606060;
    
    --accent-gold: #ffd700;
    --accent-green: #00ff88;
    --accent-cyan: #00d4ff;
    --accent-purple: #a855f7;
    
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-red: rgba(255, 45, 45, 0.3);
    --border-glow: rgba(255, 45, 45, 0.5);
    
    --font-display: 'Orbitron', sans-serif;
    --font-pixel: 'Press Start 2P', monospace;
    --font-mono: 'Share Tech Mono', monospace;
    
    --shadow-glow: 0 0 30px rgba(255, 45, 45, 0.3);
    --shadow-glow-strong: 0 0 60px rgba(255, 45, 45, 0.5);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

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

::selection {
    background: var(--red-primary);
    color: white;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.loader-text {
    font-family: var(--font-pixel);
    font-size: 12px;
    color: var(--red-primary);
    margin: 20px 0;
    letter-spacing: 4px;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: var(--bg-card);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: var(--red-primary);
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

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

/* Scanlines */
.scanlines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    opacity: 0.15;
}

/* Particles */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--red-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s linear infinite;
}

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

/* Ambient Glow */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 600px;
    background: radial-gradient(ellipse at center top, rgba(255, 45, 45, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 32px;
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-normal);
}

.nav.scrolled {
    padding: 12px 32px;
    background: rgba(5, 5, 8, 0.98);
    box-shadow: var(--shadow-glow);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 28px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 45, 45, 0.6));
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 45, 45, 0.6));
}

.loader-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(255, 45, 45, 0.8));
    animation: pulse 2s ease-in-out infinite;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--red-primary);
    letter-spacing: 2px;
}

.logo-badge {
    font-family: var(--font-pixel);
    font-size: 8px;
    background: var(--red-primary);
    color: white;
    padding: 4px 8px;
    border-radius: 2px;
}

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

.nav-links a {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-primary);
    transition: var(--transition-normal);
}

.nav-links a:hover {
    color: var(--red-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-community {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--red-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.nav-community:hover {
    background: var(--red-bright);
    transform: translateY(-2px);
}

.nav-mobile-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 32px 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 45, 45, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 45, 45, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 45, 45, 0.1);
    border: 1px solid var(--border-red);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--red-bright);
    margin-bottom: 32px;
}

.badge-icon {
    font-size: 14px;
}

.badge-separator {
    opacity: 0.3;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-red {
    color: var(--red-primary);
    text-shadow: var(--shadow-glow-strong);
}

.title-white {
    color: var(--text-primary);
    margin-left: 16px;
}

.title-senate {
    display: block;
    font-family: var(--font-pixel);
    font-size: 24px;
    color: var(--text-muted);
    letter-spacing: 8px;
    margin-top: 16px;
}

.hero-tagline {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.hero-quote {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    position: relative;
}

.hero-quote::before,
.hero-quote::after {
    content: '✦';
    margin: 0 16px;
    opacity: 0.6;
}

.hero-subtitle {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.subtitle-highlight {
    font-family: var(--font-pixel);
    font-size: 12px;
    color: var(--red-bright);
    text-shadow: 0 0 20px rgba(255, 45, 45, 0.5);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--red-bright);
    border-color: var(--red-bright);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-strong);
}

.btn-glow {
    box-shadow: var(--shadow-glow);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

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

.btn-secondary:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
    background: rgba(255, 45, 45, 0.1);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    margin-top: 40px;
    z-index: 5;
}

.hero-mockup {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.mockup-frame {
    background: var(--bg-card);
    border: 2px solid var(--red-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-glow-strong);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

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

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.mockup-title {
    margin-left: auto;
    font-size: 12px;
    color: var(--text-muted);
}

.mockup-screen {
    padding: 0;
}

.mockup-img {
    width: 100%;
    display: block;
}

.mockup-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 45, 45, 0.2) 0%, transparent 70%);
    z-index: -1;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 32px 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--red-primary);
    text-shadow: var(--shadow-glow);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.scroll-arrow {
    color: var(--red-primary);
    font-size: 12px;
}

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

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-pixel);
    font-size: 10px;
    color: var(--red-primary);
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 60px;
}

/* About Section */
.about {
    background: var(--bg-secondary);
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-lead {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.about-desc {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 16px;
}

.about-features {
    display: grid;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: var(--transition-normal);
}

.about-feature:hover {
    border-color: var(--red-primary);
    transform: translateX(8px);
}

.af-icon {
    font-size: 32px;
}

.af-content h4 {
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 4px;
}

.af-content p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Senate Section */
.senate {
    background: var(--bg-primary);
    overflow: hidden;
}

.senate-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 45, 45, 0.1) 0%, transparent 50%);
}

.senate-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.senate-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.senate-visual {
    display: flex;
    justify-content: center;
}

.senate-ring {
    position: relative;
    width: 400px;
    height: 400px;
}

.seat {
    position: absolute;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.seat-inner {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border: 2px solid var(--red-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    transition: var(--transition-normal);
}

.seat:hover .seat-inner {
    transform: scale(1.15);
    box-shadow: var(--shadow-glow-strong);
}

.seat-icon {
    font-size: 32px;
}

.seat-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 45, 45, 0.6));
}

.seat-info {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    transition: var(--transition-normal);
    pointer-events: none;
    white-space: nowrap;
    padding-top: 12px;
}

.seat:hover .seat-info {
    opacity: 1;
}

.seat-name {
    display: block;
    font-family: var(--font-pixel);
    font-size: 8px;
    color: var(--red-primary);
    margin-bottom: 4px;
}

.seat-role {
    font-size: 10px;
    color: var(--text-muted);
}

.seat-1 { top: 0; left: 50%; transform: translateX(-50%); }
.seat-2 { top: 70px; right: 20px; }
.seat-3 { bottom: 70px; right: 20px; }
.seat-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.seat-5 { bottom: 70px; left: 20px; }
.seat-6 { top: 70px; left: 20px; }

.senate-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
}

.center-pulse {
    position: absolute;
    inset: 0;
    border: 2px solid var(--red-primary);
    border-radius: 50%;
    animation: centerPulse 2s ease-out infinite;
}

@keyframes centerPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.center-inner {
    position: absolute;
    inset: 10px;
    background: var(--bg-primary);
    border: 3px solid var(--red-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow-strong);
}

.center-icon {
    font-size: 40px;
    color: var(--red-primary);
}

.center-text {
    font-family: var(--font-pixel);
    font-size: 10px;
    color: var(--red-bright);
    margin-top: 4px;
}

.senate-connections {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.connection {
    stroke: var(--red-dim);
    stroke-width: 1;
    stroke-dasharray: 5 5;
    opacity: 0.3;
}

/* Modes Grid */
.senate-modes {
    padding-left: 40px;
}

.modes-title {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 24px;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mode-card {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    transition: var(--transition-normal);
}

.mode-card:hover {
    border-color: var(--red-primary);
    background: var(--bg-card-hover);
}

.mode-icon {
    font-size: 20px;
    color: var(--red-primary);
    margin-bottom: 8px;
}

.mode-name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.mode-desc {
    font-size: 11px;
    color: var(--text-muted);
}

/* Features Section */
.features {
    background: var(--bg-secondary);
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--red-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.feature-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(255, 45, 45, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon {
    font-size: 32px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Screenshots Section */
.screenshots {
    background: var(--bg-primary);
}

.screenshots-header {
    text-align: center;
    margin-bottom: 60px;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.screenshot-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-subtle);
    transition: var(--transition-normal);
}

.screenshot-item:hover {
    border-color: var(--red-primary);
    transform: scale(1.02);
}

.screenshot-item img {
    width: 100%;
    display: block;
}

.shot-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 40px 16px 16px;
    font-size: 12px;
    color: var(--text-secondary);
}

.screenshot-item.main-shot {
    grid-column: span 2;
    grid-row: span 2;
}

/* Coming Soon */
.coming-soon {
    background: var(--bg-secondary);
}

.coming-header {
    text-align: center;
    margin-bottom: 60px;
}

.coming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.coming-card {
    background: var(--bg-card);
    border: 2px dashed var(--border-subtle);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
}

.coming-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--bg-primary);
    font-family: var(--font-pixel);
    font-size: 8px;
    padding: 6px 16px;
    border-radius: 100px;
}

.coming-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.coming-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 12px;
}

.coming-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.coming-cta {
    text-align: center;
}

.coming-cta p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Download Section */
.download {
    background: var(--bg-primary);
    position: relative;
}

.download-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(255, 45, 45, 0.15) 0%, transparent 60%);
}

.download-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.download-main {
    position: relative;
    z-index: 10;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: 12px;
    min-width: 280px;
    transition: var(--transition-normal);
}

.download-btn:hover {
    border-color: var(--red-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.dl-icon {
    width: 40px;
    height: 40px;
    color: var(--red-primary);
}

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

.dl-info {
    flex: 1;
}

.dl-platform {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.dl-detail {
    font-size: 12px;
    color: var(--text-muted);
}

.dl-arrow {
    font-size: 24px;
    color: var(--red-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-normal);
}

.download-btn:hover .dl-arrow {
    opacity: 1;
    transform: translateX(0);
}

.requirements-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 32px;
}

.requirements-box h4 {
    font-family: var(--font-display);
    font-size: 16px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.req-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.req-icon {
    font-size: 24px;
}

.req-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.req-value {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Community */
.community {
    background: var(--bg-secondary);
}

.community-header {
    text-align: center;
    margin-bottom: 60px;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.social-card:hover {
    border-color: var(--red-primary);
    transform: translateY(-4px);
}

.social-card.primary {
    background: var(--red-primary);
    border-color: var(--red-primary);
}

.social-card.primary:hover {
    background: var(--red-bright);
}

.social-icon {
    font-size: 28px;
}

.social-name {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
}

.social-desc {
    font-size: 12px;
    color: var(--text-muted);
}

.social-card.primary .social-desc {
    color: rgba(255,255,255,0.7);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 14px;
}

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

.footer-col h5 {
    font-family: var(--font-display);
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--red-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
}

.footer-copy {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.footer-privacy {
    font-size: 12px;
    color: var(--text-muted);
}

/* Animations */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: animateIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

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

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00ff;
    animation: glitch1 2s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 #00ffff;
    animation: glitch2 3s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
}

@keyframes glitch2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(-2px, -2px); }
}

/* Responsive */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .nav-mobile-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .about-content,
    .senate-main {
        grid-template-columns: 1fr;
    }
    
    .senate-ring {
        margin-bottom: 60px;
    }
    
    .senate-modes {
        padding-left: 0;
    }
    
    .screenshot-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .screenshot-item.main-shot {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .title-senate {
        font-size: 16px;
    }
    
    .hero-subtitle {
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        padding: 24px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .senate-ring {
        transform: scale(0.75);
    }
    
    .modes-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshot-gallery {
        grid-template-columns: 1fr;
    }
    
    .coming-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 350px;
    }
    
    .req-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        gap: 40px;
    }
}
