:root {
    --bg-color: #0d0d12;
    --bg-secondary: #1a1a24;
    --text-primary: #f5f5f7;
    --text-secondary: #b0b0c0;
    --accent-red: #e50914;
    --accent-red-hover: #f40612;
    --accent-blue: #0056e0;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

ul {
    list-style: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Utilities */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Inter', sans-serif;
}

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

.btn-primary:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-2px);
}

.btn-play {
    background-color: white;
    color: black;
    padding: 12px 32px;
    font-size: 1.1rem;
}

.btn-play:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: rgba(109, 109, 110, 0.7);
    color: white;
    padding: 12px 32px;
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background-color: rgba(109, 109, 110, 0.4);
}

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

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--bg-color);
    box-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.nav-content {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 4%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-red);
    letter-spacing: -1px;
}

.logo span {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-left: 50px;
    flex-grow: 1;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-primary);
}

.language-switcher {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 6px 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
}

.language-switcher:hover, .language-switcher:focus {
    border-color: var(--text-primary);
}

.language-switcher option {
    background: var(--bg-color);
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    height: auto;
    display: flex;
    align-items: center;
    padding: 120px 4% 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero_bg.png') center/cover no-repeat;
    z-index: -2;
    animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0d0d12 0%, rgba(13,13,18,0.8) 40%, rgba(13,13,18,0) 100%),
                linear-gradient(0deg, #0d0d12 0%, rgba(13,13,18,0) 30%);
    z-index: -1;
}

.hero-content {
    max-width: 650px;
    margin-top: 30px;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

.badge {
    display: inline-block;
    background-color: var(--accent-red);
    color: white;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-family: 'Oswald', sans-serif;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* Main Content */
.main-content {
    padding: 0 4% 60px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.row {
    margin-bottom: 50px;
}

.row-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox */
    padding: 20px 0;
    margin: -20px 0;
}

.carousel-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.carousel {
    display: flex;
    gap: 15px;
    padding-left: 5px; /* Compensate for hover scale */
}

/* Cards */
.card {
    min-width: 250px;
    height: 140px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--card-shadow);
    z-index: 2;
}

.card-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: var(--transition);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 60%);
    opacity: 0.8;
}

.card:hover .card-img img {
    transform: scale(1.1);
}

.card-info {
    position: absolute;
    bottom: 10px;
    left: 15px;
    right: 15px;
    z-index: 2;
}

.card-info h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.card-info p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    padding: 60px 4% 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--accent-red);
    margin-bottom: 10px;
}

.footer-brand span {
    color: var(--text-primary);
}

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

.footer-note {
    margin-top: 10px;
    font-style: italic;
    opacity: 0.7;
}

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

.link-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-group h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1rem;
}

.link-group a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: var(--accent-red);
}

.video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.video-placeholder {
    text-align: center;
    color: var(--text-primary);
}

.video-placeholder h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--accent-red);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top-color: var(--accent-red);
    border-radius: 50%;
    margin: 30px auto 0;
    animation: spin 1s linear infinite;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero {
        min-height: 500px;
        padding-top: 100px;
    }
    .main-content {
        margin-top: -30px;
    }
    
    .footer-links {
        gap: 30px;
    }
}

/* News Ticker */
.news-ticker-container {
    background-color: var(--accent-red);
    color: white;
    display: flex;
    align-items: center;
    padding: 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 100;
    overflow: hidden;
    height: 40px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
}

.news-ticker-label {
    background-color: #000;
    color: var(--accent-red);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-ticker-label::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 15px solid #000;
}

.news-ticker {
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.news-ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 60s linear infinite;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-ticker-content:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
}

.ticker-item::after {
    content: '///';
    margin-left: 40px;
    opacity: 0.5;
}

.ticker-item:last-child::after {
    content: '';
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Easter Egg Terminal */
.terminal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.terminal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.terminal-window {
    width: 80%;
    max-width: 800px;
    height: 60vh;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 6px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
}

.terminal-header {
    background-color: #222;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

.terminal-body {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
    color: #0f0;
}

.terminal-line {
    margin-bottom: 10px;
    opacity: 0;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    opacity: 0;
}

.terminal-input {
    background: transparent;
    border: none;
    color: #0f0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    flex-grow: 1;
    outline: none;
    caret-color: #0f0;
}

.typing {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #0f0;
    animation: typing 1s steps(40, end), blink-caret .75s step-end infinite;
    animation-fill-mode: forwards;
}

.delay-1 { animation-delay: 1.5s; }
.delay-2 { animation-delay: 3s; }
.delay-3 { 
    animation: fadeIn 0.1s forwards;
    animation-delay: 4.5s; 
}

@keyframes typing {
    from { width: 0; opacity: 1; }
    to { width: 100%; opacity: 1; }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #0f0; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ===== SHARED SECTION STYLES ===== */
.content-section {
    padding: 80px 4%;
    position: relative;
}

.content-section:nth-child(odd) {
    background-color: var(--bg-secondary);
}

.section-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    color: var(--accent-red);
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(229, 9, 20, 0.4);
    padding: 4px 12px;
    border-radius: 2px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 40px;
}

/* ===== QUIZ ===== */
.quiz-section { padding-bottom: 100px; }

.quiz-intro { margin-top: 10px; }

.quiz-start-btn {
    padding: 14px 40px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.quiz-progress {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.quiz-progress-bar {
    flex-grow: 1;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: var(--accent-red);
    transition: width 0.4s ease;
}

.quiz-counter {
    font-family: 'Oswald', sans-serif;
    color: var(--text-secondary);
    font-size: 0.9rem;
    white-space: nowrap;
}

.quiz-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 28px;
    line-height: 1.5;
    text-align: left;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

@media (max-width: 600px) {
    .quiz-options { grid-template-columns: 1fr; }
    .section-title { font-size: 1.8rem; }
    .tl-card { margin-left: 30px !important; margin-right: 0 !important; }
    .tl-item.tl-right .tl-card { margin-left: 30px !important; }
    .tl-dot { left: 0 !important; right: auto !important; }
}

.quiz-opt-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
    padding: 14px 18px;
    border-radius: 4px;
    text-align: left;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    line-height: 1.4;
}

.quiz-opt-btn:hover:not(:disabled) {
    background: rgba(229, 9, 20, 0.15);
    border-color: var(--accent-red);
    transform: translateY(-2px);
}

.quiz-opt-btn.correct {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
    color: #4ade80;
}

.quiz-opt-btn.wrong {
    background: rgba(229, 9, 20, 0.2);
    border-color: var(--accent-red);
    color: #f87171;
}

.quiz-opt-btn.dim {
    opacity: 0.4;
}

.quiz-next-btn {
    margin-top: 8px;
    padding: 12px 32px;
    letter-spacing: 1px;
    animation: fadeIn 0.3s ease forwards;
}

.quiz-score-display {
    margin: 20px 0 12px;
    line-height: 1;
}

.quiz-score-num {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    color: var(--accent-red);
    font-weight: 700;
}

.quiz-score-total {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--text-secondary);
}

.quiz-clearance {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--accent-red);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.quiz-result-msg {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.quiz-result-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== TIMELINE ===== */
.timeline-section {
    background-color: var(--bg-color);
    padding-bottom: 100px;
}

.timeline {
    position: relative;
    margin-top: 50px;
    text-align: left;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent-red) 10%, var(--accent-red) 90%, transparent);
    transform: translateX(-50%);
}

.tl-item {
    display: flex;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
}

.tl-item.tl-left {
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
}

.tl-item.tl-right {
    justify-content: flex-start;
    padding-left: calc(50% + 40px);
}

.tl-dot {
    position: absolute;
    left: 50%;
    top: 18px;
    width: 14px;
    height: 14px;
    background: var(--accent-red);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.2);
    transition: box-shadow 0.3s;
}

.tl-dot-now {
    background: #ff3a3a;
    box-shadow: 0 0 0 6px rgba(229, 9, 20, 0.3), 0 0 20px rgba(229, 9, 20, 0.5);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 6px rgba(229,9,20,0.3), 0 0 20px rgba(229,9,20,0.5); }
    50%       { box-shadow: 0 0 0 10px rgba(229,9,20,0.15), 0 0 30px rgba(229,9,20,0.7); }
}

.tl-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 20px 24px;
    max-width: 380px;
    transition: var(--transition);
}

.tl-card:hover {
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.tl-year {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    color: var(--accent-red);
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.tl-title {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.tl-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0;
}

@media (max-width: 768px) {
    .timeline::before { left: 14px; }
    .tl-item.tl-left, .tl-item.tl-right {
        padding-left: 48px;
        padding-right: 0;
        justify-content: flex-start;
    }
    .tl-dot { left: 14px; }
}

/* ===== JOIN / CTA SECTION ===== */
.join-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #12050a 50%, #0a0a0f 100%);
    padding: 100px 4%;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(229,9,20,0.15);
}

.join-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(229,9,20,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.join-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.join-eyebrow {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: var(--accent-red);
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.8;
    animation: flicker 4s infinite;
}

@keyframes flicker {
    0%, 95%, 100% { opacity: 0.8; }
    96% { opacity: 0.2; }
    97% { opacity: 0.8; }
    98% { opacity: 0.3; }
    99% { opacity: 0.9; }
}

.join-title {
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1;
}

@media (max-width: 768px) {
    .join-title { font-size: 2.2rem; }
}

.join-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.join-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.join-actions .btn {
    padding: 14px 32px;
    font-size: 1rem;
}

/* Signal Bars */
.signal-bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    height: 30px;
}

.signal-bar {
    width: 6px;
    background: var(--accent-red);
    border-radius: 2px;
    animation: signal-pulse 1.4s ease-in-out infinite;
    opacity: 0.6;
}

.signal-bar:nth-child(1) { height: 8px;  animation-delay: 0s;    }
.signal-bar:nth-child(2) { height: 14px; animation-delay: 0.2s;  }
.signal-bar:nth-child(3) { height: 22px; animation-delay: 0.4s;  }
.signal-bar:nth-child(4) { height: 14px; animation-delay: 0.6s;  }
.signal-bar:nth-child(5) { height: 8px;  animation-delay: 0.8s;  }

@keyframes signal-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50%       { opacity: 1;   transform: scaleY(1);   }
}

/* ===== TERMINAL TELEGRAM BUTTON ===== */
.term-tg-btn {
    display: inline-block;
    margin-top: 16px;
    margin-bottom: 8px;
    padding: 10px 20px;
    background: rgba(0, 136, 204, 0.15);
    border: 1px solid rgba(0, 136, 204, 0.5);
    color: #29b6f6;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
    animation: fadeIn 0.5s ease forwards;
}

.term-tg-btn:hover {
    background: rgba(0, 136, 204, 0.3);
    border-color: #29b6f6;
}

