/* ============================================
   DARK MATTER MARKET - PREMIUM COSMIC DESIGN
   Unique Black Hole / Event Horizon Theme
   Version 2.0 - Luxury Edition
   ============================================ */

/* CSS Variables - Premium Palette */
:root {
    --void: #000000;
    --deep-space: #020208;
    --nebula: #0a0a18;
    --cosmic-dust: #12121f;
    
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.06);
    
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-glow: rgba(212, 175, 55, 0.4);
    
    --cosmic-blue: #3b82f6;
    --cosmic-blue-light: #60a5fa;
    --cosmic-blue-glow: rgba(59, 130, 246, 0.3);
    
    --plasma-purple: #8b5cf6;
    --plasma-glow: rgba(139, 92, 246, 0.3);
    
    --stellar-cyan: #22d3ee;
    --stellar-glow: rgba(34, 211, 238, 0.3);
    
    --text-white: #ffffff;
    --text-silver: #c0c4d0;
    --text-grey: #6b7280;
    --text-dark: #374151;
    
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    --font-display: 'Orbitron', 'SF Pro Display', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    --ease-premium: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition: all 0.4s var(--ease-premium);
    --transition-slow: all 0.8s var(--ease-premium);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--void);
    color: var(--text-white);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

::selection {
    background: var(--gold);
    color: var(--void);
}

/* ============================================
   COSMIC BACKGROUND - PREMIUM ANIMATION
   ============================================ */

.cosmic-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Deep Space Gradient */
.cosmic-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--deep-space) 0%, var(--void) 100%);
}

/* Animated Stars */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stars::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    box-shadow:
        100vw 10vh 0 0 rgba(255,255,255,0.8),
        20vw 30vh 0 0 rgba(255,255,255,0.6),
        80vw 50vh 0 -1px rgba(255,255,255,0.9),
        40vw 70vh 0 0 rgba(255,255,255,0.5),
        90vw 20vh 0 -1px rgba(255,255,255,0.7),
        60vw 80vh 0 0 rgba(255,255,255,0.6),
        30vw 15vh 0 -1px rgba(255,255,255,0.8),
        70vw 40vh 0 0 rgba(255,255,255,0.4),
        15vw 60vh 0 0 rgba(255,255,255,0.9),
        85vw 85vh 0 -1px rgba(255,255,255,0.5),
        50vw 5vh 0 0 rgba(255,255,255,0.7),
        25vw 95vh 0 0 rgba(255,255,255,0.6),
        95vw 65vh 0 -1px rgba(255,255,255,0.8),
        5vw 45vh 0 0 rgba(255,255,255,0.5),
        75vw 25vh 0 0 rgba(255,255,255,0.9);
    animation: twinkle 4s ease-in-out infinite;
}

.stars::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow:
        35vw 22vh 0 0 var(--gold),
        65vw 78vh 0 0 var(--stellar-cyan),
        12vw 55vh 0 0 var(--plasma-purple),
        88vw 33vh 0 0 var(--cosmic-blue-light),
        45vw 90vh 0 0 var(--gold-light);
    animation: twinkle 3s ease-in-out infinite reverse;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Nebula Cloud */
.nebula {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 30%);
    animation: nebulaDrift 60s ease-in-out infinite;
}

@keyframes nebulaDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-3%, 2%) scale(1.02); }
    66% { transform: translate(2%, -2%) scale(0.98); }
}

/* Central Black Hole */
.black-hole {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
}

.black-hole-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #000 60%, transparent 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 60px 30px rgba(0, 0, 0, 0.9),
        0 0 120px 60px rgba(0, 0, 0, 0.5);
}

.accretion-disk {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(75deg);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        var(--gold) 30deg,
        var(--cosmic-blue) 90deg,
        var(--plasma-purple) 150deg,
        var(--stellar-cyan) 210deg,
        var(--gold) 270deg,
        transparent 360deg
    );
    opacity: 0.15;
    filter: blur(20px);
    animation: accretionSpin 30s linear infinite;
}

.lensing-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(var(--void), var(--void)) padding-box,
                linear-gradient(135deg, var(--gold), var(--cosmic-blue), var(--plasma-purple)) border-box;
    opacity: 0.3;
    animation: lensing 8s ease-in-out infinite;
}

@keyframes accretionSpin {
    from { transform: translate(-50%, -50%) rotateX(75deg) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotateX(75deg) rotate(360deg); }
}

@keyframes lensing {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
}

/* Cosmic Dust Particles */
.cosmic-dust {
    position: absolute;
    inset: 0;
}

.dust-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    filter: blur(1px);
}

.dust-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: floatParticle 15s ease-in-out infinite;
}

.dust-particle:nth-child(2) {
    top: 60%;
    right: 15%;
    background: var(--stellar-cyan);
    animation: floatParticle 18s ease-in-out infinite reverse;
}

.dust-particle:nth-child(3) {
    bottom: 30%;
    left: 25%;
    background: var(--plasma-purple);
    animation: floatParticle 20s ease-in-out infinite;
}

.dust-particle:nth-child(4) {
    top: 40%;
    right: 30%;
    animation: floatParticle 12s ease-in-out infinite reverse;
}

.dust-particle:nth-child(5) {
    bottom: 15%;
    right: 10%;
    background: var(--cosmic-blue-light);
    animation: floatParticle 22s ease-in-out infinite;
}

@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(30px, -20px) scale(1.2); opacity: 0.8; }
    50% { transform: translate(-20px, 30px) scale(0.8); opacity: 0.4; }
    75% { transform: translate(15px, 15px) scale(1.1); opacity: 0.7; }
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================
   PREMIUM HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Premium Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text-white);
}

.logo-icon {
    width: 50px;
    height: 50px;
    position: relative;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    color: var(--text-silver);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
}

.nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--gold-glow), transparent);
    opacity: 0;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--text-white);
}

.nav a:hover::before {
    opacity: 1;
}

.nav a.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav a svg {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: var(--text-grey);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.nav-dropdown .dropdown-trigger:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.nav-dropdown .chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.nav-dropdown:hover .chevron {
    transform: rotate(180deg);
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-dropdown .dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.nav-dropdown .dropdown-menu a svg {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

/* Language Selector */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
}

.lang-selector a {
    font-size: 18px;
    text-decoration: none;
    opacity: 0.5;
    transition: var(--transition);
    filter: grayscale(100%);
}

.lang-selector a:hover,
.lang-selector a.active {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--glass-border);
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--text-silver);
    text-decoration: none;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-nav a:hover {
    background: var(--glass);
    color: var(--gold);
}

.mobile-nav-divider {
    display: block;
    font-size: 0.75rem;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 20px 8px;
    margin-top: 8px;
    border-top: 1px solid var(--glass-border);
}

.mobile-lang {
    display: flex;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main {
    flex: 1;
    padding-top: 100px;
}

/* ============================================
   PREMIUM HERO SECTION
   ============================================ */

.hero {
    padding: 80px 0 120px;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 32px;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-badge span:last-child {
    font-size: 13px;
    font-weight: 600;
    color: var(--success);
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--gold) 50%, var(--stellar-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-title .subtitle {
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-silver);
    margin-top: 16px;
    font-family: var(--font-body);
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-silver);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 540px;
}

/* Premium Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
}

.stat {
    text-align: center;
    padding: 20px 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Premium Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--void);
    box-shadow: 0 10px 30px var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--gold-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--void);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn.success {
    background: var(--success);
    color: white;
}

/* Daily Tip */
.daily-tip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: var(--radius-lg);
    margin-top: 32px;
}

.daily-tip svg {
    width: 24px;
    height: 24px;
    color: var(--stellar-cyan);
    flex-shrink: 0;
}

.daily-tip span {
    font-size: 14px;
    color: var(--text-silver);
}

.daily-tip strong {
    color: var(--stellar-cyan);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.black-hole-visual {
    position: relative;
    width: 400px;
    height: 400px;
}

.event-horizon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #000 50%, transparent 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 80px 40px rgba(0, 0, 0, 0.9),
        inset 0 0 40px 20px rgba(0, 0, 0, 1);
    animation: eventHorizonPulse 4s ease-in-out infinite;
}

@keyframes eventHorizonPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

.accretion-disk-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(70deg);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--gold) 0deg,
        var(--cosmic-blue) 60deg,
        var(--plasma-purple) 120deg,
        var(--stellar-cyan) 180deg,
        var(--gold-light) 240deg,
        var(--cosmic-blue-light) 300deg,
        var(--gold) 360deg
    );
    opacity: 0.6;
    filter: blur(8px);
    animation: diskRotate 20s linear infinite;
}

@keyframes diskRotate {
    from { transform: translate(-50%, -50%) rotateX(70deg) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotateX(70deg) rotate(360deg); }
}

.gravitational-lens {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 3px solid transparent;
    border-radius: 50%;
    background: linear-gradient(var(--void), var(--void)) padding-box,
                linear-gradient(135deg, var(--gold), var(--cosmic-blue), var(--plasma-purple), var(--gold)) border-box;
    animation: lensGlow 6s ease-in-out infinite;
}

@keyframes lensGlow {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}

.particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: orbitParticle 8s linear infinite;
}

.particles span:nth-child(1) {
    background: var(--gold);
    animation-delay: 0s;
}

.particles span:nth-child(2) {
    background: var(--stellar-cyan);
    animation-delay: -1.3s;
}

.particles span:nth-child(3) {
    background: var(--plasma-purple);
    animation-delay: -2.6s;
}

.particles span:nth-child(4) {
    background: var(--cosmic-blue-light);
    animation-delay: -4s;
}

.particles span:nth-child(5) {
    background: var(--gold-light);
    animation-delay: -5.3s;
}

.particles span:nth-child(6) {
    background: var(--success);
    animation-delay: -6.6s;
}

@keyframes orbitParticle {
    0% {
        transform: rotate(0deg) translateX(160px) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: rotate(360deg) translateX(160px) rotate(-360deg);
        opacity: 0;
    }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   PREMIUM MIRROR CARDS - REDESIGNED
   ============================================ */

.mirrors-preview {
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.02), transparent);
}

.mirrors-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mirror-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 32px;
    padding: 28px 36px;
    background: linear-gradient(135deg, rgba(10, 10, 30, 0.8), rgba(5, 5, 20, 0.9));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    transition: var(--transition);
    overflow: hidden;
}

.mirror-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gold), var(--cosmic-blue));
    opacity: 0;
    transition: var(--transition);
}

.mirror-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.03), transparent 30%);
    opacity: 0;
    transition: var(--transition);
}

.mirror-card:hover {
    transform: translateX(8px);
    border-color: var(--gold);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(212, 175, 55, 0.08);
}

.mirror-card:hover::before {
    opacity: 1;
}

.mirror-card:hover::after {
    opacity: 1;
}

.mirror-card[data-status="online"] .status-indicator { --status-color: var(--success); }
.mirror-card[data-status="slow"] .status-indicator { --status-color: var(--warning); }
.mirror-card[data-status="offline"] .status-indicator { --status-color: var(--danger); }

/* Status Indicator */
.mirror-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 90px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.online { 
    color: var(--success); 
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}
.status-badge.slow { 
    color: var(--warning); 
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
}
.status-badge.offline { 
    color: var(--danger); 
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 10px currentColor;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px currentColor; }
    50% { opacity: 0.6; transform: scale(1.3); box-shadow: 0 0 20px currentColor; }
}

.region {
    font-size: 11px;
    color: var(--text-grey);
    padding: 4px 10px;
    background: var(--glass);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mirror URL - Main Focus */
.mirror-url {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--stellar-cyan);
    word-break: break-all;
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: var(--radius-md);
    position: relative;
    z-index: 1;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mirror-url::before {
    content: '🧅';
    font-size: 18px;
    flex-shrink: 0;
}

.mirror-card:hover .mirror-url {
    border-color: rgba(34, 211, 238, 0.4);
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(0, 0, 0, 0.4));
}

/* Speed Indicator */
.mirror-speed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 70px;
}

.speed-bars {
    display: flex;
    gap: 3px;
    height: 20px;
    align-items: flex-end;
}

.speed-bars span {
    width: 4px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

.speed-bars span:nth-child(1) { height: 6px; }
.speed-bars span:nth-child(2) { height: 12px; }
.speed-bars span:nth-child(3) { height: 18px; }

.mirror-card[data-status="slow"] .speed-bars span:nth-child(3) { opacity: 0.2; }
.mirror-card[data-status="offline"] .speed-bars span:nth-child(2),
.mirror-card[data-status="offline"] .speed-bars span:nth-child(3) { opacity: 0.2; }

.speed-label {
    font-size: 10px;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Actions */
.mirror-actions {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.mirror-actions .btn {
    min-width: 120px;
    justify-content: center;
}

/* Mirrors Page - Legend & Guide */
.mirrors-list {
    margin-bottom: 60px;
}

.mirrors-legend {
    margin-bottom: 60px;
    padding: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

.mirrors-legend h3,
.mirrors-guide h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 28px;
}

.legend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.legend-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend-item p {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.6;
}

.mirrors-guide {
    padding: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

.mirrors-guide .steps-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mirrors-guide .steps-list li strong {
    color: var(--text-white);
}

.mirrors-guide .steps-list li span {
    font-size: 14px;
    color: var(--text-grey);
}

/* Responsive for Mirrors */
@media (max-width: 1024px) {
    .mirror-card {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .mirror-header {
        flex-direction: row;
        justify-content: center;
    }
    
    .mirror-url {
        justify-content: center;
    }
    
    .mirror-speed {
        flex-direction: row;
        gap: 12px;
    }
    
    .mirror-actions {
        justify-content: center;
    }
    
    .legend-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mirror-card {
        padding: 24px;
    }
    
    .mirror-url {
        font-size: 12px;
        padding: 14px 16px;
    }
}

/* ============================================
   SEO CONTENT LAYOUT - UNIQUE DESIGN
   ============================================ */

.seo-content {
    padding: 100px 0;
}

.seo-content .content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
}

.content-main {
    position: relative;
}

.content-main h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-white);
    margin: 48px 0 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main h2::before {
    content: '';
    width: 4px;
    height: 32px;
    background: linear-gradient(180deg, var(--gold), var(--cosmic-blue));
    border-radius: 2px;
}

.content-main h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin: 28px 0 14px;
}

.content-main p {
    color: var(--text-silver);
    margin-bottom: 18px;
}

.content-main strong {
    color: var(--text-white);
}

/* Feature List */
.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-silver);
    transition: var(--transition);
}

.feature-list li:hover {
    border-color: var(--gold);
    transform: translateX(4px);
}

.feature-list li::before {
    content: '◈';
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}

/* Steps List */
.steps-list {
    list-style: none;
    counter-reset: steps;
    margin: 24px 0;
}

.steps-list li {
    position: relative;
    padding: 20px 20px 20px 70px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    color: var(--text-silver);
    counter-increment: steps;
    transition: var(--transition);
}

.steps-list li:hover {
    border-color: var(--cosmic-blue);
}

.steps-list li::before {
    content: counter(steps);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--cosmic-blue), var(--plasma-purple));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* Sidebar */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.info-card {
    padding: 28px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.info-card h4 {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.stats-mini .stat-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--glass-border);
}

.stats-mini .stat-row:last-child {
    border-bottom: none;
}

.stats-mini span {
    color: var(--text-grey);
}

.stats-mini strong {
    font-family: var(--font-mono);
    color: var(--stellar-cyan);
}

.trending-topic {
    color: var(--gold-light);
    font-style: italic;
    line-height: 1.6;
}

.news-list {
    list-style: none;
}

.news-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--glass-border);
}

.news-list li:last-child {
    border-bottom: none;
}

.news-date {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-grey);
    margin-bottom: 4px;
}

.news-title {
    font-size: 14px;
    color: var(--text-silver);
}

/* ============================================
   FEATURES SECTION - HEXAGON LAYOUT
   ============================================ */

.features {
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.02), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 40px 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--gold-glow), transparent, var(--cosmic-blue-glow));
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 50%;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--cosmic-blue));
    opacity: 0.3;
    z-index: -1;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--gold);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.6;
}

/* ============================================
   GUIDES SECTION - CARD STACK
   ============================================ */

.guides-preview {
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.02), transparent);
}

/* Home Page Guide Cards */
.guides-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.guide-card-home {
    display: flex;
    flex-direction: column;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.guide-card-home:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.guide-card-image {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.guide-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.guide-icon-fallback {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-icon-fallback svg {
    width: 48px;
    height: 48px;
    color: var(--gold);
}

.guide-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.guide-card-badge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--stellar-cyan);
    background: rgba(6, 182, 212, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 12px;
}

.guide-card-home h3 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.guide-card-desc {
    font-size: 0.85rem;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.guide-card-home .btn-sm {
    padding: 10px 16px;
    font-size: 0.85rem;
    width: fit-content;
}

.guide-card-home .btn-sm svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .guides-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .guides-grid-home {
        grid-template-columns: 1fr;
    }
    
    .guide-card-image {
        height: 140px;
    }
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.guide-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.guide-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.guide-card:hover::before {
    opacity: 1;
}

.guide-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cosmic-blue-glow), var(--plasma-glow));
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.guide-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-white);
}

.guide-card h3 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 8px;
    transition: var(--transition);
}

.guide-card:hover h3 {
    color: var(--gold);
}

.guide-card .guide-category {
    font-size: 12px;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Guides Page - Categories */
.guides-categories {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.guide-category {
    padding: 32px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

.guide-category > h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--glass-border);
}

.guide-category > h2 svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    max-width: 24px;
    flex-shrink: 0;
}

/* Global SVG size fix for guides */
.guides-categories svg,
.guide-category svg,
.guide-card svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    max-width: 24px;
    flex-shrink: 0;
}

.guide-category .guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.guide-category .guide-card {
    padding: 16px 20px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.guide-category .guide-card h3 {
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
}

.guide-thumbnail {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--glass);
    padding: 4px;
}

.guide-arrow {
    font-size: 1.2rem;
    color: var(--text-grey);
    transition: var(--transition);
    margin-left: auto;
}

.guide-category .guide-card:hover .guide-arrow {
    color: var(--gold);
    transform: translateX(4px);
}

.guide-category .guide-card:hover .guide-thumbnail {
    transform: scale(1.05);
}

/* ============================================
   FAQ SECTION - ACCORDION
   ============================================ */

.faq-preview {
    background: linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.02), transparent);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    padding: 28px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--stellar-cyan);
}

.faq-item h3 {
    font-size: 1.05rem;
    color: var(--text-white);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-item h3::before {
    content: '?';
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--stellar-cyan), var(--cosmic-blue));
    color: var(--void);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-item p {
    color: var(--text-grey);
    font-size: 14px;
    line-height: 1.7;
    padding-left: 40px;
}

/* ============================================
   FOOTER - PREMIUM
   ============================================ */

.footer {
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-grey);
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.footer-section a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-grey);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--text-white);
    transform: translateX(4px);
}

.footer-section svg {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-grey);
}

.dmca-notice {
    font-family: var(--font-mono);
    font-size: 11px !important;
    color: var(--text-grey);
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-grey);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

/* ============================================
   PAGE CONTENT STYLES
   ============================================ */

.page-content {
    padding: 40px 0 100px;
}

.page-header {
    margin-bottom: 48px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-grey);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--text-grey);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--text-white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-grey);
}

/* Alert Box */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

.alert.info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.alert svg {
    width: 24px;
    height: 24px;
    color: var(--cosmic-blue);
    flex-shrink: 0;
}

.alert p {
    color: var(--text-silver);
    font-size: 14px;
}

/* ============================================
   COPY NOTIFICATION
   ============================================ */

.copy-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    animation: notificationSlide 0.4s var(--ease-bounce);
    z-index: 10000;
}

@keyframes notificationSlide {
    from {
        transform: translateX(100px) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

/* ============================================
   GUIDES PAGES
   ============================================ */

/* Global SVG constraint for guide pages */
.guide-article svg,
.page-content svg:not(.hero-visual svg) {
    max-width: 32px;
    max-height: 32px;
}

.guide-article {
    padding: 40px 0 100px;
}

/* Guide Hero Image */
.guide-hero-image {
    margin: 30px auto 40px;
    max-width: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 20px;
}

.guide-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

.guide-header {
    margin-bottom: 48px;
}

.guide-category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--cosmic-blue-glow), var(--plasma-glow));
    border: 1px solid var(--cosmic-blue);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.guide-content {
    max-width: 800px;
}

.guide-section {
    margin-bottom: 48px;
}

.guide-section h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.guide-section h2 svg {
    width: 28px;
    height: 28px;
    min-width: 28px;
    max-width: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

.guide-section h3 {
    font-size: 1.15rem;
    color: var(--stellar-cyan);
    margin: 24px 0 14px;
}

.guide-section p {
    color: var(--text-silver);
    margin-bottom: 16px;
}

.step-list {
    list-style: none;
    counter-reset: guide-steps;
}

.step-list li {
    position: relative;
    padding: 18px 18px 18px 60px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    color: var(--text-silver);
    counter-increment: guide-steps;
    transition: var(--transition);
}

.step-list li:hover {
    border-color: var(--gold);
}

.step-list li::before {
    content: counter(guide-steps);
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--void);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.check-list {
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 12px 0 12px 36px;
    color: var(--text-silver);
    border-bottom: 1px solid var(--glass-border);
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 16px;
}

.warning-box, .info-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.warning-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.02));
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.warning-box svg {
    color: var(--warning);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.info-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.02));
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.info-box svg {
    color: var(--cosmic-blue);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.guide-footer {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}

.guide-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.guide-updated {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-grey);
}

/* ============================================
   ADDITIONAL PAGE STYLES
   ============================================ */

/* Sitemap */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.sitemap-section {
    padding: 28px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

.sitemap-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.sitemap-section h2 svg {
    width: 22px;
    height: 22px;
}

.sitemap-list {
    list-style: none;
}

.sitemap-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

.sitemap-list li:last-child {
    border-bottom: none;
}

.sitemap-list a {
    color: var(--text-silver);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.sitemap-list a:hover {
    color: var(--gold);
}

/* Error Pages */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error-content {
    max-width: 500px;
}

.error-icon svg {
    width: 100px;
    height: 100px;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0.8;
}

.error-page h1 {
    font-family: var(--font-display);
    font-size: 8rem;
    background: linear-gradient(135deg, var(--gold), var(--cosmic-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.error-page h2 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 16px;
}

.error-page p {
    color: var(--text-grey);
    margin-bottom: 32px;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
}

.contact-card {
    padding: 28px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    margin-bottom: 20px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-glow), var(--cosmic-blue-glow));
    border-radius: 50%;
    margin-bottom: 20px;
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    color: var(--gold);
}

.contact-card h3 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-grey);
    font-size: 14px;
}

.contact-form {
    padding: 36px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: var(--text-grey);
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-glow);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        order: -1;
        min-height: 300px;
    }
    
    .black-hole-visual {
        width: 300px;
        height: 300px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .seo-content .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-sidebar {
        position: static;
    }
    
    .mirrors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav, .lang-selector {
        display: none;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat {
        width: 100%;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .mirrors-grid,
    .guides-grid,
    .faq-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .error-page h1 {
        font-size: 5rem;
    }
}

/* Hidden SEO Keywords */
.seo-keywords {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

/* SEO Footer Content */
.seo-footer-content {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.02), transparent);
    border-top: 1px solid var(--glass-border);
}

.seo-footer-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.seo-footer-content h3 {
    font-size: 1.2rem;
    color: var(--text-white);
    margin: 30px 0 15px;
}

.seo-footer-content p {
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.seo-footer-content strong {
    color: var(--stellar-cyan);
}

.seo-footer-content ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.seo-footer-content li {
    padding: 12px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-grey);
    font-size: 0.9rem;
}

.seo-footer-content li strong {
    color: var(--gold);
}

@media (max-width: 768px) {
    .seo-footer-content ul {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   STATUS PAGE STYLES
   ============================================ */

.status-overview {
    margin-bottom: 48px;
}

.status-card.operational {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-xl);
}

.status-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    margin-bottom: 24px;
}

.status-icon svg {
    width: 40px;
    height: 40px;
    color: var(--success);
}

.status-card h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--success);
    margin-bottom: 8px;
}

.status-card p {
    color: var(--text-grey);
}

.status-list {
    margin-bottom: 48px;
}

.status-list h2,
.status-stats h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 24px;
}

.status-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 20px 28px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.status-item:hover {
    border-color: var(--gold);
    transform: translateX(4px);
}

.status-indicator {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border-radius: 50%;
}

.status-item.online .status-indicator { background: rgba(16, 185, 129, 0.15); }
.status-item.slow .status-indicator { background: rgba(245, 158, 11, 0.15); }
.status-item.offline .status-indicator { background: rgba(239, 68, 68, 0.15); }

.status-item .status-dot {
    width: 12px;
    height: 12px;
}

.status-item.online .status-dot { background: var(--success); color: var(--success); }
.status-item.slow .status-dot { background: var(--warning); color: var(--warning); }
.status-item.offline .status-dot { background: var(--danger); color: var(--danger); }

.status-info strong {
    display: block;
    color: var(--text-white);
    margin-bottom: 4px;
}

.status-text {
    font-size: 14px;
}

.status-item.online .status-text { color: var(--success); }
.status-item.slow .status-text { color: var(--warning); }
.status-item.offline .status-text { color: var(--danger); }

.status-meta {
    font-size: 13px;
    color: var(--text-grey);
    padding: 6px 14px;
    background: var(--glass);
    border-radius: var(--radius-full);
    text-transform: capitalize;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.stat-card .stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 13px;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .status-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }
    
    .status-indicator {
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SITEMAP PAGE STYLES
   ============================================ */

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.sitemap-section {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 30px;
}

.sitemap-section.full-width {
    grid-column: 1 / -1;
}

.sitemap-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.sitemap-section h2 svg {
    width: 24px;
    height: 24px;
}

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: 10px;
}

.sitemap-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: var(--radius-md);
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.sitemap-list a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    transform: translateX(5px);
}

.sitemap-list .icon {
    font-size: 1.2rem;
}

.sitemap-guides-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sitemap-category h3 {
    font-size: 1rem;
    color: var(--stellar-cyan);
    margin-bottom: 12px;
    text-transform: capitalize;
}

.sitemap-category .sitemap-list a {
    font-size: 0.85rem;
    padding: 10px 12px;
}

.sitemap-xml-section {
    margin-top: 40px;
    padding: 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    text-align: center;
}

.sitemap-xml-section h2 {
    color: var(--text-white);
    margin-bottom: 20px;
}

.xml-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.xml-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--stellar-cyan);
    text-decoration: none;
    font-family: var(--font-mono);
    transition: var(--transition);
}

.xml-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.xml-link svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.contact-form-section {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.contact-form-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.contact-form-section h2 svg {
    width: 28px;
    height: 28px;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form small {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--text-grey);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info .info-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.contact-info .info-card h3 svg {
    width: 20px;
    height: 20px;
}

.contact-info .info-card ul {
    padding-left: 20px;
    color: var(--text-grey);
}

.contact-info .info-card ul li {
    margin-bottom: 8px;
}

.contact-info .info-card.warning {
    border-color: var(--warning);
}

.contact-info .info-card.warning h3 {
    color: var(--warning);
}

.form-result .success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    border-radius: var(--radius-md);
    color: var(--success);
    margin-top: 20px;
}

.form-result .success svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ============================================
   TOOLS PAGE STYLES (PGP Generator, Link Checker)
   ============================================ */

.tools-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.tool-section {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.tool-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.tool-section h2 svg {
    width: 28px;
    height: 28px;
}

.tool-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tool-sidebar .info-card.highlight {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.tool-sidebar .info-card.danger {
    border-color: var(--danger);
    background: rgba(239, 68, 68, 0.05);
}

.tool-sidebar .info-card.danger h3 {
    color: var(--danger);
}

.pgp-form .form-group,
.checker-form .form-group {
    margin-bottom: 24px;
}

.pgp-form label,
.checker-form label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.pgp-form input,
.pgp-form textarea,
.checker-form input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-family: var(--font-mono);
    font-size: 0.95rem;
    transition: var(--transition);
}

.pgp-form input:focus,
.pgp-form textarea:focus,
.checker-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
}

.keys-result {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.key-section {
    margin-bottom: 30px;
}

.key-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--stellar-cyan);
    margin-bottom: 12px;
}

.key-section h3 svg {
    width: 20px;
    height: 20px;
}

.key-section.private h3 {
    color: var(--warning);
}

.key-section textarea {
    width: 100%;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    resize: vertical;
}

.key-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.tool-sidebar textarea {
    width: 100%;
    padding: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    resize: none;
    margin-bottom: 12px;
}

/* Link Checker Results */
.check-result {
    margin-top: 30px;
}

.result-card {
    padding: 30px;
    border-radius: var(--radius-xl);
    text-align: center;
}

.result-card.success {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success);
}

.result-card.danger {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid var(--danger);
}

.result-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.result-icon svg {
    width: 100%;
    height: 100%;
}

.result-card.success .result-icon svg {
    color: var(--success);
}

.result-card.danger .result-icon svg {
    color: var(--danger);
}

.result-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.result-card.success h3 {
    color: var(--success);
}

.result-card.danger h3 {
    color: var(--danger);
}

.signature-display {
    margin: 20px 0;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    text-align: left;
}

.signature-display label {
    font-size: 0.85rem;
    color: var(--text-grey);
}

.signature-display code {
    display: block;
    margin-top: 8px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--stellar-cyan);
    word-break: break-all;
}

.safe-message {
    color: var(--success);
    font-weight: 600;
}

.official-links {
    margin-top: 20px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    text-align: left;
}

.official-links h4 {
    color: var(--text-white);
    margin-bottom: 12px;
}

.official-links ul {
    list-style: none;
    padding: 0;
}

.official-links li {
    margin-bottom: 8px;
}

.official-links code {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--stellar-cyan);
}

/* Signed Links Table */
.signed-links-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.signed-links-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--success);
    margin-bottom: 16px;
}

.signed-links-section h3 svg {
    width: 22px;
    height: 22px;
}

.signed-links-table {
    overflow-x: auto;
}

.signed-links-table table {
    width: 100%;
    border-collapse: collapse;
}

.signed-links-table th,
.signed-links-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.signed-links-table th {
    font-size: 0.85rem;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signed-links-table td {
    font-size: 0.9rem;
}

.signed-links-table .monospace {
    font-family: var(--font-mono);
    color: var(--text-light);
}

.signed-links-table .signature {
    color: var(--stellar-cyan);
}

.mirror-badge {
    padding: 4px 10px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--cosmic-blue);
}

/* Warning list styles */
.warning-list li {
    color: var(--danger);
}

/* Spinner animation */
.spinner {
    animation: spin 1s linear infinite;
    width: 20px;
    height: 20px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1024px) {
    .sitemap-grid,
    .tools-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .sitemap-guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .sitemap-guides-grid {
        grid-template-columns: 1fr;
    }
    
    .xml-links {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   BLUR PROTECTED MIRROR CARDS
   Premium Gateway Entry System
   ============================================ */

.mirror-card.blur-protected {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.mirror-content-blur {
    filter: blur(8px);
    opacity: 0.6;
    pointer-events: none;
    user-select: none;
    transition: all 0.4s var(--ease-premium);
}

.mirror-card.blur-protected:hover .mirror-content-blur {
    filter: blur(12px);
    opacity: 0.4;
}

.mirror-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(10, 10, 30, 0.8) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    backdrop-filter: blur(4px);
    z-index: 10;
    opacity: 1;
    transition: all 0.4s var(--ease-premium);
}

.mirror-card.blur-protected:hover .mirror-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(20, 10, 40, 0.85) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.enter-market-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--void);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: var(--radius-lg);
    box-shadow: 
        0 4px 20px var(--gold-glow),
        0 0 40px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.enter-market-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-premium);
}

.enter-market-btn:hover::before {
    transform: translateX(100%);
}

.enter-market-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 
        0 8px 30px var(--gold-glow),
        0 0 60px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.enter-market-btn:active {
    transform: scale(0.98);
}

.enter-market-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.enter-market-btn span {
    white-space: nowrap;
}

.mirror-number {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-grey);
    opacity: 0.8;
    letter-spacing: 1px;
}

/* Pulse animation for the button */
@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 
            0 4px 20px var(--gold-glow),
            0 0 40px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 
            0 4px 30px var(--gold-glow),
            0 0 60px rgba(212, 175, 55, 0.4);
    }
}

.enter-market-btn {
    animation: pulse-gold 3s ease-in-out infinite;
}

.enter-market-btn:hover {
    animation: none;
}

/* Alternative color schemes for different statuses */
.mirror-card.blur-protected[data-status="online"] .enter-market-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.mirror-card.blur-protected[data-status="slow"] .enter-market-btn {
    background: linear-gradient(135deg, var(--warning) 0%, #fbbf24 100%);
}

.mirror-card.blur-protected[data-status="offline"] .enter-market-btn {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
    pointer-events: none;
    opacity: 0.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .enter-market-btn {
        padding: 14px 24px;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .enter-market-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .mirror-card.blur-protected {
        min-height: 180px;
    }
}

@media (max-width: 480px) {
    .enter-market-btn {
        padding: 12px 20px;
        font-size: 0.75rem;
        gap: 8px;
    }
    
    .enter-market-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .mirror-number {
        font-size: 0.75rem;
    }
}