/* Revolutionary Digital Manifesto Styles */

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

:root {
    /* Revolutionary Color Palette */
    --primary-gold: #FFD700;
    --secondary-gold: #FFC107;
    --accent-gold: #FFEB3B;
    --deep-gold: #FF8F00;
    --revolutionary-red: #D32F2F;
    --digital-blue: #1976D2;
    --future-purple: #7B1FA2;
    --success-green: #388E3C;
    
    /* Neutrals */
    --pure-black: #000000;
    --rich-black: #0D1117;
    --dark-gray: #161B22;
    --medium-gray: #21262D;
    --light-gray: #30363D;
    --border-gray: #373E47;
    --text-gray: #8B949E;
    --pure-white: #FFFFFF;
    --off-white: #F6F8FA;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Spacing System */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
    --shadow-revolutionary: 0 0 30px rgba(211, 47, 47, 0.4);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-toast: 1080;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--pure-white);
    background: var(--rich-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--dark-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loading-container {
    text-align: center;
    max-width: 400px;
}

.loading-logo {
    margin-bottom: var(--space-2xl);
}

.logo-particles {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-lg);
    position: relative;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    animation: rotate 2s linear infinite;
}

.logo-particles::before,
.logo-particles::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: orbit 2s linear infinite;
}

.logo-particles::before {
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.logo-particles::after {
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes orbit {
    from { transform: translateX(-50%) rotate(0deg) translateX(50px) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg) translateX(50px) rotate(-360deg); }
}

.loading-text {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gold);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-sm);
    display: block;
}

.loading-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 300;
    margin-bottom: var(--space-2xl);
}

.loading-progress {
    margin-bottom: var(--space-xl);
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--medium-gray);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.progress-bar::after {
    content: '';
    display: block;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    border-radius: var(--radius-full);
    animation: loadProgress 3s ease-out forwards;
}

@keyframes loadProgress {
    to { width: 100%; }
}

.progress-text {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--primary-gold);
    text-align: center;
}

.loading-messages {
    height: 60px;
    position: relative;
}

.message {
    position: absolute;
    width: 100%;
    opacity: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    transition: opacity 0.3s ease;
}

.message.active {
    opacity: 1;
}

/* Revolutionary Navigation */
.nav-revolution {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gray);
    z-index: var(--z-fixed);
    transition: all var(--transition-normal);
}

.nav-revolution.scrolled {
    background: rgba(13, 17, 23, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.brand-icon {
    width: 48px;
    height: 48px;
    position: relative;
}

.icon-layers {
    width: 100%;
    height: 100%;
    position: relative;
}

.layer {
    position: absolute;
    border-radius: var(--radius-md);
    animation: float 3s ease-in-out infinite;
}

.layer-1 {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    animation-delay: 0s;
}

.layer-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: linear-gradient(135deg, var(--revolutionary-red), var(--deep-gold));
    animation-delay: 0.5s;
}

.layer-3 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    background: linear-gradient(135deg, var(--digital-blue), var(--future-purple));
    animation-delay: 1s;
}

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

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    letter-spacing: 0.1em;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--pure-white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    padding: var(--space-sm) 0;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.link-indicator {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transition: width var(--transition-normal);
}

.nav-link:hover .link-indicator,
.nav-link.active .link-indicator {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: transparent;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    color: var(--pure-white);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.nav-btn:hover {
    background: var(--medium-gray);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.radio-waves {
    width: 100%;
    height: 100%;
    position: relative;
}

.wave {
    position: absolute;
    border: 2px solid currentColor;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.wave:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.wave:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    animation-delay: 0.3s;
}

.wave:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    animation-delay: 0.6s;
}

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

.bot-pulse {
    width: 100%;
    height: 100%;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: botPulse 1.5s ease-in-out infinite;
}

@keyframes botPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--space-sm);
}

.toggle-lines span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pure-white);
    margin: 4px 0;
    transition: all var(--transition-normal);
}

/* Revolutionary Hero Section */
.hero-revolution {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 215, 0, 0.05) 100%);
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    margin-bottom: var(--space-4xl);
}

.hero-badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-frame {
    position: relative;
    width: 400px;
    height: 400px;
}

.frame-corners {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-gold);
}

.corner-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.hero-badge {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    position: relative;
    z-index: 1;
    transition: transform var(--transition-slow);
}

.hero-badge:hover {
    transform: scale(1.05);
}

.badge-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: var(--radius-2xl);
    z-index: 0;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

.hero-text {
    max-width: 600px;
}

.hero-title-container {
    margin-bottom: var(--space-2xl);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    margin-bottom: var(--space-sm);
}

.title-main {
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.title-sub {
    color: var(--pure-white);
    font-size: 0.8em;
}

.title-year {
    color: var(--text-gray);
    font-size: 0.6em;
    font-weight: 600;
}

.word {
    display: inline-block;
    margin-right: var(--space-sm);
    animation: wordReveal 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.word:nth-child(1) { animation-delay: 0.1s; }
.word:nth-child(2) { animation-delay: 0.2s; }
.word:nth-child(3) { animation-delay: 0.3s; }
.word:nth-child(4) { animation-delay: 0.4s; }

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

.hero-description {
    margin-bottom: var(--space-2xl);
}

.description-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.hero-actions {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.action-btn {
    position: relative;
    padding: var(--space-lg) var(--space-2xl);
    border: none;
    border-radius: var(--radius-xl);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-btn.primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--pure-black);
}

.action-btn.secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--border-gray);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.action-btn.primary:hover {
    box-shadow: var(--shadow-gold);
}

.btn-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.hero-stats {
    margin-top: var(--space-4xl);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.stat-visual {
    flex-shrink: 0;
}

.stat-circle {
    width: 80px;
    height: 80px;
    position: relative;
}

.stat-progress {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat-bg {
    fill: none;
    stroke: var(--medium-gray);
    stroke-width: 8;
}

.stat-fill {
    fill: none;
    stroke: var(--primary-gold);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: statProgress 2s ease-out forwards;
}

@keyframes statProgress {
    to {
        stroke-dashoffset: calc(283 - (283 * var(--progress)) / 100);
    }
}

.stat-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    color: var(--text-gray);
    animation: bounce 2s infinite;
}

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

.scroll-text {
    font-size: 0.85rem;
    font-weight: 500;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--text-gray);
    position: relative;
}

.arrow-head {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 8px solid var(--text-gray);
}

/* Section Styles */
.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.header-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 0.1em;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Manifesto Section */
.manifesto-revolution {
    padding: var(--space-5xl) 0;
    position: relative;
    background: linear-gradient(180deg, var(--rich-black) 0%, var(--dark-gray) 100%);
}

.bg-matrix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(211, 47, 47, 0.1) 0%, transparent 50%);
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-2xl);
}

.manifesto-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.manifesto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.manifesto-card:hover::before {
    transform: scaleX(1);
}

.manifesto-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.card-icon {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: var(--radius-lg);
    opacity: 0.2;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-gold);
    z-index: 1;
}

.card-category {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: var(--space-lg);
    line-height: 1.3;
}

.card-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.card-features {
    margin-bottom: var(--space-lg);
}

.feature {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: var(--space-sm);
}

.feature::before {
    content: '✓';
    color: var(--success-green);
    font-weight: bold;
    margin-right: var(--space-sm);
}

.card-progress {
    margin-top: var(--space-lg);
}

.progress-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: var(--space-sm);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--medium-gray);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    border-radius: var(--radius-full);
    width: 0%;
    transition: width 1s ease-out;
}

/* Timeline Section */
.timeline-revolution {
    padding: var(--space-5xl) 0;
    position: relative;
    background: var(--rich-black);
}

.bg-timeline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 215, 0, 0.03) 50%, transparent 100%);
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-gold), var(--secondary-gold));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-4xl);
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
    margin-right: var(--space-2xl);
    margin-left: 0;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.marker-ring {
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rich-black);
    animation: pulse 2s ease-in-out infinite;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    border-radius: 50%;
}

.timeline-content {
    flex: 1;
    margin-left: var(--space-2xl);
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-gray);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: var(--space-sm);
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: var(--space-sm);
}

.timeline-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.timeline-stats {
    display: flex;
    gap: var(--space-lg);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md);
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid var(--primary-gold);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-item.active .marker-ring {
    border-color: var(--revolutionary-red);
    box-shadow: 0 0 20px rgba(211, 47, 47, 0.5);
}

.timeline-item.active .marker-dot {
    background: var(--revolutionary-red);
}

.timeline-item.active .timeline-content {
    border-color: var(--revolutionary-red);
    background: rgba(211, 47, 47, 0.1);
}

/* Future Section */
.future-revolution {
    padding: var(--space-5xl) 0;
    position: relative;
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--rich-black) 100%);
}

.bg-future {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
}

.future-pillar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.future-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.future-pillar:hover::before {
    opacity: 1;
}

.future-pillar:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.icon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.future-pillar:hover .icon-container::before {
    transform: translateX(100%);
}

.icon-container svg {
    width: 36px;
    height: 36px;
    color: var(--pure-black);
    z-index: 1;
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pure-white);
    line-height: 1.3;
}

.pillar-content {
    position: relative;
    z-index: 1;
}

.pillar-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.pillar-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-item span {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Engage Section */
.engage-revolution {
    padding: var(--space-5xl) 0;
    position: relative;
    background: var(--rich-black);
}

.bg-engage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(211, 47, 47, 0.05) 100%);
}

.engage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-4xl);
}

.engage-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    text-align: center;
}

.engage-card.primary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 193, 7, 0.1));
    border-color: var(--primary-gold);
}

.engage-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 36px;
    height: 36px;
    color: var(--pure-black);
}

.engage-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pure-white);
}

.engage-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.engage-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--pure-black);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.engage-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform var(--transition-normal);
}

.engage-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.contact-revolution {
    text-align: center;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
}

.contact-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: var(--space-sm);
}

.contact-content p {
    color: var(--text-gray);
    margin-bottom: var(--space-lg);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

.contact-link:hover {
    color: var(--secondary-gold);
}

.link-arrow {
    transition: transform var(--transition-normal);
}

.contact-link:hover .link-arrow {
    transform: translateX(5px);
}

/* Footer */
.footer-revolution {
    padding: var(--space-4xl) 0 var(--space-2xl);
    position: relative;
    background: var(--dark-gray);
    border-top: 1px solid var(--border-gray);
}

.bg-footer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 215, 0, 0.02) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.logo-icon {
    width: 48px;
    height: 48px;
}

.brand-description {
    color: var(--text-gray);
    line-height: 1.6;
}

.link-group h4 {
    color: var(--pure-white);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.link-group a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: var(--space-sm);
    transition: color var(--transition-normal);
}

.link-group a:hover {
    color: var(--primary-gold);
}

.footer-social h4 {
    color: var(--pure-white);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--pure-black);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border-gray);
}

.footer-copyright p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-normal);
}

.footer-legal a:hover {
    color: var(--primary-gold);
}

/* Revolutionary 7|Bot */
.seven-bot {
    position: fixed;
    bottom: 100px;
    right: var(--space-lg);
    width: 400px;
    height: 600px;
    background: rgba(13, 17, 23, 0.95);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(20px);
    display: none;
    flex-direction: column;
    z-index: var(--z-modal);
    box-shadow: var(--shadow-2xl);
}

.seven-bot.active {
    display: flex;
    animation: slideUp 0.3s ease-out;
}

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

.bot-header {
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.bot-avatar {
    width: 50px;
    height: 50px;
    position: relative;
}

.avatar-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--pure-black);
    border-radius: 50%;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.avatar-core {
    width: 100%;
    height: 100%;
    background: var(--pure-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.core-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

.avatar-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    z-index: 1;
}

.bot-info {
    flex: 1;
}

.bot-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pure-black);
    margin-bottom: var(--space-xs);
}

.bot-status {
    font-size: 0.85rem;
    color: var(--pure-black);
    opacity: 0.7;
}

.bot-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: background var(--transition-normal);
}

.bot-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.bot-close svg {
    width: 20px;
    height: 20px;
    color: var(--pure-black);
}

.bot-messages {
    flex: 1;
    padding: var(--space-lg);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.message {
    display: flex;
    gap: var(--space-sm);
    max-width: 85%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--pure-black);
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: var(--medium-gray);
    color: var(--pure-white);
}

.message-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    backdrop-filter: blur(10px);
}

.user-message .message-content {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--pure-black);
}

.message-content p {
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.bot-input {
    padding: var(--space-lg);
    border-top: 1px solid var(--border-gray);
}

.input-container {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.bot-input input {
    flex: 1;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    color: var(--pure-white);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition-normal);
}

.bot-input input:focus {
    border-color: var(--primary-gold);
}

.bot-input input::placeholder {
    color: var(--text-gray);
}

.send-btn {
    width: 44px;
    height: 44px;
    background: var(--primary-gold);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.send-btn:hover {
    background: var(--secondary-gold);
    transform: scale(1.05);
}

.send-btn svg {
    width: 20px;
    height: 20px;
    color: var(--pure-black);
}

.bot-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.suggestion-btn {
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-full);
    color: var(--text-gray);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.suggestion-btn:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--pure-black);
}

/* Revolutionary Workers Rise FM */
.workers-radio {
    position: fixed;
    bottom: 100px;
    left: var(--space-lg);
    width: 380px;
    background: rgba(13, 17, 23, 0.95);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(20px);
    display: none;
    flex-direction: column;
    z-index: var(--z-modal);
    box-shadow: var(--shadow-2xl);
}

.workers-radio.active {
    display: flex;
    animation: slideUp 0.3s ease-out;
}

.radio-header {
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--revolutionary-red), var(--deep-gold));
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.radio-logo {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pure-black);
    border-radius: 50%;
}

.logo-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    animation: radioWave 2s ease-in-out infinite;
}

.wave-1 {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.wave-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    animation-delay: 0.3s;
}

.wave-3 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    animation-delay: 0.6s;
}

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

.radio-text {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-gold);
    z-index: 1;
}

.radio-info {
    flex: 1;
}

.radio-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: var(--space-xs);
}

.radio-status {
    font-size: 0.85rem;
    color: var(--pure-white);
    opacity: 0.7;
}

.radio-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: background var(--transition-normal);
}

.radio-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.radio-close svg {
    width: 20px;
    height: 20px;
    color: var(--pure-white);
}

.radio-player {
    padding: var(--space-lg);
}

.player-visual {
    margin-bottom: var(--space-lg);
}

.visualizer {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 3px;
    height: 60px;
    margin-bottom: var(--space-lg);
}

.bar {
    width: 4px;
    background: var(--primary-gold);
    border-radius: var(--radius-sm);
    animation: visualize 1s ease-in-out infinite;
}

.bar:nth-child(1) { animation-delay: 0s; }
.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.3s; }
.bar:nth-child(5) { animation-delay: 0.4s; }
.bar:nth-child(6) { animation-delay: 0.5s; }
.bar:nth-child(7) { animation-delay: 0.6s; }
.bar:nth-child(8) { animation-delay: 0.7s; }

@keyframes visualize {
    0%, 100% { height: 10px; }
    50% { height: 40px; }
}

.player-info {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.track-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: var(--space-xs);
}

.track-artist {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.control-btn {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.control-btn:hover {
    background: var(--secondary-gold);
    transform: scale(1.1);
}

.control-btn svg {
    width: 24px;
    height: 24px;
    color: var(--pure-black);
}

.volume-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.volume-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: background var(--transition-normal);
}

.volume-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.volume-btn svg {
    width: 20px;
    height: 20px;
    color: var(--text-gray);
}

.volume-slider {
    flex: 1;
    position: relative;
}

.volume-slider input {
    width: 100%;
    height: 4px;
    background: var(--medium-gray);
    border-radius: var(--radius-full);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.volume-slider input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--primary-gold);
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider input::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--primary-gold);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.radio-features {
    border-top: 1px solid var(--border-gray);
}

.feature-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-gray);
}

.tab-btn {
    flex: 1;
    padding: var(--space-md);
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
}

.tab-btn.active {
    color: var(--primary-gold);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gold);
}

.tab-content {
    padding: var(--space-lg);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.live-info {
    text-align: center;
}

.live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--revolutionary-red);
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.live-indicator span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--revolutionary-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.time {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-gold);
    min-width: 50px;
}

.show {
    font-size: 0.9rem;
    color: var(--pure-white);
}

.radio-chat {
    height: 200px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    margin-bottom: var(--space-md);
}

.chat-message {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.chat-message strong {
    color: var(--primary-gold);
}

.chat-input {
    display: flex;
    gap: var(--space-sm);
}

.chat-input input {
    flex: 1;
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    color: var(--pure-white);
    font-size: 0.85rem;
    outline: none;
}

.chat-input input:focus {
    border-color: var(--primary-gold);
}

.chat-input button {
    padding: var(--space-sm) var(--space-md);
    background: var(--primary-gold);
    border: none;
    border-radius: var(--radius-md);
    color: var(--pure-black);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition-normal);
}

.chat-input button:hover {
    background: var(--secondary-gold);
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    z-index: var(--z-fixed);
}

.fab {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.fab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.fab:hover::before {
    transform: translateX(100%);
}

.fab:hover {
    transform: translateY(-5px) scale(1.1);
}

.radio-fab {
    background: linear-gradient(135deg, var(--revolutionary-red), var(--deep-gold));
}

.bot-fab {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
}

.fab-icon {
    width: 28px;
    height: 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.fab-text {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--pure-black);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-content {
        gap: var(--space-2xl);
    }
    
    .manifesto-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .future-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }
    
    .hero-badge-container {
        order: -1;
    }
    
    .badge-frame {
        width: 300px;
        height: 300px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .manifesto-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-item .timeline-content {
        text-align: left !important;
        margin-left: var(--space-lg) !important;
        margin-right: 0 !important;
    }
    
    .timeline-marker {
        position: absolute;
        left: 0;
    }
    
    .future-grid {
        grid-template-columns: 1fr;
    }
    
    .engage-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }
    
    .seven-bot,
    .workers-radio {
        width: calc(100vw - 2rem);
        left: var(--space-md);
        right: var(--space-md);
    }
    
    .floating-actions {
        bottom: var(--space-md);
        right: var(--space-md);
    }
    
    .fab {
        width: 50px;
        height: 50px;
    }
    
    .fab-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .manifesto-card,
    .future-pillar,
    .engage-card {
        padding: var(--space-lg);
    }
    
    .pillar-features {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .nav-revolution,
    .seven-bot,
    .workers-radio,
    .floating-actions,
    .hero-scroll-indicator {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-revolution {
        min-height: auto;
        padding: var(--space-2xl) 0;
    }
    
    .section-title,
    .hero-title {
        color: black !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-gold: #FFFF00;
        --pure-white: #FFFFFF;
        --pure-black: #000000;
        --text-gray: #CCCCCC;
    }
}

/* Focus Styles */
button:focus,
input:focus,
a:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Selection Styles */
::selection {
    background: var(--primary-gold);
    color: var(--pure-black);
}

::-moz-selection {
    background: var(--primary-gold);
    color: var(--pure-black);
}