/* ================================================
   WETHENORTH.LIVE - NORTHERN MINIMALISM DESIGN
   Version: 1.0
   Theme: Canadian Dark Red Minimalist
   ================================================ */

/* ========================================
   CSS VARIABLES - COLOR PALETTE
   ======================================== */
:root {
    /* Primary Colors - Dark Red */
    --primary: #d11515;
    --primary-dark: #b01111;
    --primary-darker: #8a0d0d;
    --primary-light: #e62222;

    /* Transparent Variations */
    --primary-05: rgba(209, 21, 21, 0.05);
    --primary-10: rgba(209, 21, 21, 0.1);
    --primary-20: rgba(209, 21, 21, 0.2);
    --primary-40: rgba(209, 21, 21, 0.4);
    --primary-60: rgba(209, 21, 21, 0.6);

    /* Background Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #151515;
    --bg-hover: #202020;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --text-dark: #666666;

    /* Gray Scale */
    --gray-dark: #4a4e54;
    --gray-1: #cccccc;
    --gray-2: #dddddd;
    --gray-3: #e0e0e0;
    --gray-4: #f0f0f0;

    /* Accent Colors */
    --success: #00cc66;
    --warning: #ffaa00;
    --danger: #ff3333;
    --info: #3399ff;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.6);

    /* Glow Effects */
    --glow-red: 0 0 20px var(--primary-40);
    --glow-red-strong: 0 0 30px var(--primary-60);

    /* Typography */
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ========================================
   NORTHERN LIGHTS CANVAS
   ======================================== */
#northern-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
}

.main-content {
    min-height: 60vh;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--primary-20);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    color: var(--text-primary);
}

.logo-img {
    width: 140px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(var(--glow-red));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-fast);
}

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

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: var(--primary);
    background: var(--primary-10);
}

.nav-link.active::after {
    width: 80%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition-fast);
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--text-primary), var(--gray-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--primary-10);
    border: 1px solid var(--primary-40);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-light);
    box-shadow: var(--glow-red-strong), var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-primary);
    box-shadow: var(--glow-red);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--gray-dark);
}

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

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
}

/* ========================================
   PAGE HERO
   ======================================== */
.page-hero {
    text-align: center;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--primary-05) 0%, transparent 100%);
    border-bottom: 1px solid var(--primary-20);
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    line-height: 1.8;
}

a {
    color: var(--primary);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.1rem;
}

/* ========================================
   CARDS
   ======================================== */
.content-card, .content-card-full {
    background: var(--bg-card);
    border: 1px solid var(--primary-20);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.content-card:hover, .content-card-full:hover {
    border-color: var(--primary-40);
    box-shadow: var(--glow-red), var(--shadow-lg);
    transform: translateY(-4px);
}

.content-card img, .content-card-full img {
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

/* ========================================
   TOPICS GRID
   ======================================== */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.topic-card {
    background: var(--bg-card);
    border: 1px solid var(--primary-20);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
}

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

.topic-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(var(--glow-red));
}

.topic-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-light);
}

.topic-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.topic-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.topic-link:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

/* ========================================
   CRYPTO WIDGET
   ======================================== */
.crypto-section {
    background: linear-gradient(180deg, var(--primary-05) 0%, transparent 100%);
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.crypto-card {
    background: var(--bg-card);
    border: 1px solid var(--primary-20);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.crypto-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-red), var(--shadow-lg);
    transform: translateY(-4px);
}

.crypto-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.crypto-name h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.crypto-symbol {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.crypto-icon {
    font-size: 2.5rem;
    opacity: 0.6;
}

.crypto-price {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
}

.crypto-change {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    display: inline-block;
}

.crypto-change.positive {
    color: var(--success);
    background: rgba(0, 204, 102, 0.1);
}

.crypto-change.negative {
    color: var(--danger);
    background: rgba(255, 51, 51, 0.1);
}

.crypto-details {
    border-top: 1px solid var(--primary-20);
    padding-top: var(--spacing-md);
}

.crypto-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-xs);
}

.crypto-detail .label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.crypto-detail .value {
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.crypto-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--primary-20);
}

/* ========================================
   INTRO SECTION
   ======================================== */
.intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
    align-items: start;
    margin-bottom: var(--spacing-xl);
}

.intro-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--primary-20);
}

.intro-content h2 {
    margin-bottom: var(--spacing-md);
}

/* ========================================
   RESOURCES
   ======================================== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.resource-category h3 {
    color: var(--primary-light);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-40);
}

.resource-list {
    list-style: none;
}

.resource-list li {
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-md);
    position: relative;
}

.resource-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.resource-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.resource-list a:hover {
    color: var(--primary-light);
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary-20);
    transition: all var(--transition-normal);
}

.gallery-item:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-red);
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: var(--spacing-sm);
    background: var(--bg-card);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ========================================
   PLATFORM NAVIGATION
   ======================================== */
.platform-nav-section {
    background: linear-gradient(180deg, transparent 0%, var(--primary-05) 100%);
}

.platform-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.platform-card {
    background: var(--bg-card);
    border: 1px solid var(--primary-20);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

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

.platform-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.platform-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-light);
}

.platform-card p {
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

/* ========================================
   PAGE FRESHNESS
   ======================================== */
.page-freshness {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--primary-10);
    border: 1px solid var(--primary-40);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-lg);
}

.page-freshness p {
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

/* ========================================
   FEATURES LIST
   ======================================== */
.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.feature-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--spacing-lg);
    background: var(--bg-card);
    border: 1px solid var(--primary-20);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-red);
}

.feature-icon {
    font-size: 3.5rem;
    text-align: center;
}

.feature-content h3 {
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
}

/* ========================================
   STATS GRID
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--primary-20);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

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

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: var(--spacing-xs);
}

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

/* ========================================
   ACCESS PAGE - MIRRORS
   ======================================== */
.mirrors-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.mirror-card {
    background: var(--bg-card);
    border: 1px solid var(--primary-20);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.mirror-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--primary-20);
}

.status-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.status-online {
    background: var(--success);
    box-shadow: 0 0 10px var(--success);
}

.status-indicator.status-offline {
    background: var(--danger);
}

.status-text {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.9rem;
}

.reliability-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.reliability-label {
    color: var(--text-muted);
}

.reliability-value {
    color: var(--primary-light);
    font-weight: 600;
}

.mirror-url-section {
    margin-bottom: var(--spacing-md);
}

.mirror-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.onion-address {
    background: var(--bg-primary);
    border: 1px solid var(--primary-40);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    font-size: 0.95rem;
    color: var(--primary-light);
    word-break: break-all;
    margin-bottom: var(--spacing-sm);
}

.copy-btn {
    width: 100%;
    padding: var(--spacing-sm);
    background: var(--primary);
    color: var(--text-primary);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.copy-btn:hover {
    background: var(--primary-light);
    box-shadow: var(--glow-red);
}

.mirror-metrics {
    display: flex;
    justify-content: space-around;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--primary-20);
}

.metric {
    text-align: center;
}

.metric-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.metric-value {
    font-family: var(--font-mono);
    color: var(--text-primary);
    font-weight: 600;
}

/* ========================================
   CONNECTION STEPS
   ======================================== */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.step-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--spacing-lg);
    background: var(--bg-card);
    border: 1px solid var(--primary-20);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    box-shadow: var(--glow-red);
}

.step-content h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-light);
}

/* ========================================
   ALERTS
   ======================================== */
.alert {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    border-left: 4px solid;
}

.alert h2, .alert h3, .alert h4 {
    margin-top: 0;
}

.alert-warning {
    background: rgba(255, 170, 0, 0.1);
    border-color: var(--warning);
}

.alert-info {
    background: rgba(51, 153, 255, 0.1);
    border-color: var(--info);
}

.alert-danger {
    background: rgba(255, 51, 51, 0.1);
    border-color: var(--danger);
}

/* ========================================
   PGP KEY
   ======================================== */
.pgp-key {
    background: var(--bg-primary);
    border: 1px solid var(--primary-40);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--primary-light);
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-all;
}

.verification-steps {
    list-style: decimal;
    padding-left: var(--spacing-lg);
}

.verification-steps li {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

.access-features {
    list-style: none;
}

.access-features li {
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    position: relative;
    color: var(--text-secondary);
}

/* ========================================
   BEST PRACTICES
   ======================================== */
.best-practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.practice-card {
    background: var(--bg-card);
    border: 1px solid var(--primary-20);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
}

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

.practice-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.practice-card h3 {
    margin-bottom: var(--spacing-md);
    color: var(--primary-light);
}

.practice-card ul {
    list-style: none;
}

.practice-card li {
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.practice-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* ========================================
   FAQ
   ======================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--primary-20);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-red);
}

.faq-question {
    color: var(--primary-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.3rem;
}

.faq-answer p {
    margin-bottom: var(--spacing-md);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-10) 0%, var(--primary-05) 100%);
}

.cta-card {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--glow-red), var(--shadow-xl);
}

.cta-card h2 {
    margin-bottom: var(--spacing-md);
}

.cta-card p {
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--primary-20);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-column h3 {
    color: var(--primary-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.footer-column p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--primary-20);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--primary-light);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: var(--glow-red);
    }
    50% {
        box-shadow: var(--glow-red-strong);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: var(--spacing-md);
        border-top: 1px solid var(--primary-20);
        box-shadow: var(--shadow-lg);
    }

    .nav.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .feature-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .crypto-grid, .topics-grid, .platform-nav-grid, .best-practices-grid {
        grid-template-columns: 1fr;
    }
}

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

    .btn {
        width: 100%;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.hidden {
    display: none;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   STATISTICS SECTION
   ======================================== */
.stats-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--primary-20);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--glow-red-strong), var(--shadow-lg);
}

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

.stat-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    filter: grayscale(0.3);
    transition: all var(--transition-normal);
}

.stat-card:hover .stat-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    text-shadow: var(--glow-red);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.stat-detail {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========================================
   TIMELINE SECTION
   ======================================== */
.timeline-section {
    background: var(--bg-primary);
}

.timeline {
    max-width: 900px;
    margin: var(--spacing-xl) auto 0;
    position: relative;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: var(--glow-red);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.6s ease;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--glow-red), var(--shadow-md);
    z-index: 2;
    transition: all var(--transition-normal);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.15);
    box-shadow: var(--glow-red-strong), var(--shadow-lg);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--primary-20);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.timeline-item:hover .timeline-content {
    border-color: var(--primary);
    box-shadow: var(--glow-red), var(--shadow-lg);
    transform: translateX(5px);
}

.timeline-date {
    display: inline-block;
    background: var(--primary-10);
    color: var(--primary);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-mono);
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--primary-20);
}

.timeline-content h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Timeline Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline {
        padding-left: 40px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-marker {
        left: -25px;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--spacing-md);
    }

    .stat-card {
        padding: var(--spacing-lg);
    }

    .stat-number {
        font-size: 2.5rem;
    }
}
