/* Enhanced Ares Market CSS - Ultra-Modern Styling and Animations */

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

:root {
    /* Enhanced Color Palette */
    --background: #0a0a0a;
    --foreground: #f5f5f5;
    --card: #1a1a1a;
    --card-foreground: #f5f5f5;
    --primary: #8B0000;
    --primary-foreground: #f5f5f5;
    --secondary: #696969;
    --secondary-foreground: #f5f5f5;
    --muted: #2a2a2a;
    --muted-foreground: #a0a0a0;
    --accent: #CD853F;
    --accent-foreground: #0a0a0a;
    --destructive: #DC143C;
    --border: #333333;
    --radius: 0.75rem;
    
    /* Animation Variables */
    --transition-fast: 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-normal: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
    
    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
    font-feature-settings: 'kern' 1, 'liga' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

body.loaded {
    opacity: 1;
}

/* Enhanced Container with Animated Background */
.container {
    min-height: 100vh;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(205, 133, 63, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0a0a0a 50%, #1a1a1a 75%, #0a0a0a 100%);
    background-size: 400% 400%, 400% 400%, 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
    position: relative;
}

.container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(139, 0, 0, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(205, 133, 63, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    animation: floatBackground 20s ease-in-out infinite;
}

.container > * {
    position: relative;
    z-index: 2;
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: var(--muted);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 8px;
    border: 2px solid var(--muted);
    transition: all var(--transition-normal);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--destructive) 0%, var(--accent) 100%);
    transform: scale(1.1);
}

/* Advanced Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%, 0% 50%, 0% 50%; }
    25% { background-position: 100% 50%, 50% 100%, 100% 50%; }
    50% { background-position: 50% 100%, 100% 50%, 50% 100%; }
    75% { background-position: 50% 0%, 50% 0%, 50% 0%; }
}

@keyframes floatBackground {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(139, 0, 0, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 60px rgba(139, 0, 0, 0.8);
        transform: scale(1.02);
    }
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(1deg); }
    66% { transform: translateY(-5px) rotate(-1deg); }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(60px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

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

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--accent); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(205, 133, 63, 0.3)); }
    50% { filter: drop-shadow(0 0 25px rgba(205, 133, 63, 0.6)); }
}

/* Enhanced Utility Classes */
.spartan-glow {
    box-shadow: 0 0 40px rgba(139, 0, 0, 0.5);
    transition: all var(--transition-normal);
    position: relative;
}

.spartan-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.spartan-glow:hover {
    box-shadow: 0 0 80px rgba(139, 0, 0, 0.8);
    transform: translateY(-2px);
}

.spartan-glow:hover::before {
    opacity: 0.7;
}

.shield-glow {
    position: relative;
    overflow: hidden;
}

.shield-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.2) 0%, transparent 70%);
    animation: pulseGlow 6s ease-in-out infinite;
    z-index: 1;
}

.shield-glow > * {
    position: relative;
    z-index: 2;
}

.typewriter {
    overflow: hidden;
    border-right: 4px solid var(--accent);
    white-space: nowrap;
    animation: typing 4s steps(40, end), blink-caret 0.75s step-end infinite;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.hover-scale {
    transition: all var(--transition-normal);
    cursor: pointer;
    transform-origin: center;
}

.hover-scale:hover {
    transform: scale(1.08) translateY(-8px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(139, 0, 0, 0.4);
}

.float-animation {
    animation: floatAnimation 8s ease-in-out infinite;
}

.shimmer-effect {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    background-size: 200% 100%;
    animation: shimmer 2.5s infinite;
}

.glow-animation {
    animation: glow 3s ease-in-out infinite;
}

/* Enhanced Navigation */
.terminal-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(205, 133, 63, 0.4);
    transition: all var(--transition-normal);
}

.terminal-nav.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-bottom-color: rgba(205, 133, 63, 0.6);
}

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

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
    transition: padding var(--transition-normal);
}

.terminal-nav.scrolled .nav-content {
    padding: var(--space-md) 0;
}

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

.logo {
    height: 5rem;
    width: auto;
    transition: all var(--transition-normal);
    filter: drop-shadow(0 0 15px rgba(205, 133, 63, 0.4));
}

.terminal-nav.scrolled .logo {
    height: 4rem;
}

.logo:hover {
    filter: drop-shadow(0 0 30px rgba(205, 133, 63, 0.8));
    transform: scale(1.08);
}

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

.nav-item {
    background: none;
    border: none;
    color: var(--muted-foreground);
    font-size: var(--text-sm);
    font-weight: 600;
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    border-bottom: 2px solid transparent;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: all var(--transition-normal);
    transform: translateX(-50%);
    border-radius: 0 0 2px 2px;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transition: all var(--transition-normal);
    transform: translateX(-50%);
    border-radius: 2px 2px 0 0;
}

.nav-item:hover::before,
.nav-item.active::before {
    width: 100%;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 80%;
}

.nav-item:hover,
.nav-item.active {
    color: var(--accent);
    transform: translateY(-3px);
    text-shadow: 0 0 10px rgba(205, 133, 63, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: var(--space-sm);
    transition: all var(--transition-normal);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--accent);
    transition: all var(--transition-normal);
    border-radius: 3px;
}

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

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

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

/* Enhanced Hero Section */
.hero-section {
    padding: 10rem var(--space-lg) 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulseGlow 10s ease-in-out infinite;
    z-index: 1;
}

.hero-content {
    max-width: 70rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    margin-bottom: var(--space-2xl);
    color: var(--foreground);
    text-shadow: 0 0 30px rgba(205, 133, 63, 0.4);
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: var(--accent);
    margin-bottom: var(--space-2xl);
    font-weight: 700;
    animation: fadeInUp 1s ease-out 0.5s both;
    text-shadow: 0 0 20px rgba(205, 133, 63, 0.3);
}

.hero-tagline {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--muted-foreground);
    max-width: 50rem;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 1s both;
    line-height: 1.8;
    font-weight: 500;
}

/* Enhanced Sections */
.section {
    padding: var(--space-4xl) var(--space-lg);
    position: relative;
}

.section:nth-child(even) {
    background: rgba(26, 26, 26, 0.4);
}

.section-container {
    max-width: 100rem;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-3xl);
    color: var(--foreground);
    position: relative;
    display: inline-block;
    width: 100%;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: translateX(-50%);
    border-radius: 3px;
}

/* Enhanced About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    margin-top: var(--space-3xl);
}

.about-text {
    animation: slideInFromLeft 1s ease-out;
}

.about-description {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2xl);
    color: var(--foreground);
    line-height: 1.8;
    font-weight: 400;
}

.feature-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.feature-card {
    background: var(--card);
    padding: var(--space-2xl);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(205, 133, 63, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-lg);
    display: block;
}

.feature-title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--accent);
}

.feature-desc {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.about-image {
    animation: slideInFromRight 1s ease-out;
    text-align: center;
}

.image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: all var(--transition-normal);
}

.image:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

/* Enhanced Features Section */
.features-section {
    background: rgba(26, 26, 26, 0.3);
}

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

.feature-item {
    background: var(--card);
    padding: var(--space-2xl);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item .feature-icon {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-lg);
    display: block;
    transition: all var(--transition-normal);
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-item .feature-title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--accent);
}

.feature-item .feature-desc {
    color: var(--muted-foreground);
    line-height: 1.7;
    font-size: var(--text-base);
}

/* Enhanced Mirror Cards */
.mirrors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.mirror-card {
    background: var(--card);
    padding: var(--space-2xl);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.mirror-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.mirror-card:hover::before {
    opacity: 0.8;
}

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

.mirror-icon {
    font-size: var(--text-2xl);
}

.mirror-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--accent);
}

.mirror-url {
    font-family: 'IBM Plex Mono', monospace;
    background: var(--muted);
    padding: var(--space-md);
    border-radius: calc(var(--radius) - 2px);
    font-size: var(--text-sm);
    word-break: break-all;
    margin-bottom: var(--space-lg);
    border: 1px solid var(--border);
}

.mirror-status {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 600;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Enhanced FAQ Section */
.faq-grid {
    display: grid;
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.faq-item {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    padding: var(--space-xl);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: rgba(205, 133, 63, 0.1);
}

.faq-icon {
    font-size: var(--text-xl);
}

.faq-answer {
    padding: 0 var(--space-xl) var(--space-xl);
    color: var(--muted-foreground);
    line-height: 1.8;
    font-size: var(--text-base);
}

/* Enhanced Crypto Cards */
.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.crypto-card {
    background: var(--card);
    padding: var(--space-2xl);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.crypto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(205, 133, 63, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.crypto-card:hover::before {
    opacity: 1;
}

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

.crypto-icon {
    font-size: var(--text-3xl);
}

.crypto-title {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--accent);
}

.crypto-description {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.crypto-features {
    list-style: none;
    padding: 0;
}

.crypto-features li {
    padding: var(--space-sm) 0;
    color: var(--foreground);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.crypto-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}

/* Enhanced Rules Cards */
.rules-grid {
    display: grid;
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.rules-card {
    background: var(--card);
    padding: var(--space-2xl);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
    position: relative;
}

.rules-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 0 var(--radius) var(--radius) 0;
}

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

.rules-number {
    background: var(--accent);
    color: var(--accent-foreground);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--text-lg);
}

.rules-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--accent);
}

.rules-description {
    color: var(--muted-foreground);
    line-height: 1.8;
}

/* Vendor Benefits Section */
.vendor-benefits {
    margin-top: var(--space-3xl);
    padding: var(--space-2xl);
    background: rgba(26, 26, 26, 0.5);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.vendor-benefits h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-xl);
    text-align: center;
}

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

.benefit-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.benefit-icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
}

.benefit-item h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.benefit-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Enhanced Ordering Section */
.ordering-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    margin-top: var(--space-3xl);
}

.ordering-description {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2xl);
    color: var(--foreground);
    line-height: 1.8;
}

.steps-container {
    display: grid;
    gap: var(--space-lg);
}

.step-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
    align-items: flex-start;
}

.step-number {
    background: var(--accent);
    color: var(--accent-foreground);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.step-content p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.ordering-image {
    text-align: center;
}

/* Enhanced Security Section */
.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    margin-top: var(--space-3xl);
}

.security-description {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2xl);
    color: var(--foreground);
    line-height: 1.8;
}

.security-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.security-feature {
    background: var(--card);
    padding: var(--space-lg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition-normal);
}

.security-icon {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

.security-feature h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.security-feature p {
    color: var(--muted-foreground);
    line-height: 1.6;
    font-size: var(--text-sm);
}

.security-image {
    text-align: center;
}

/* Mission Section */
.mission-content {
    margin-top: var(--space-3xl);
}

.mission-description {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2xl);
    color: var(--foreground);
    line-height: 1.8;
}

.mission-values {
    margin-top: var(--space-3xl);
}

.mission-values h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-xl);
    text-align: center;
}

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

.value-item {
    background: var(--card);
    padding: var(--space-lg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition-normal);
}

.value-icon {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

.value-item h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.value-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Crypto Comparison Table */
.crypto-comparison {
    margin-top: var(--space-3xl);
}

.crypto-comparison h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-lg);
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--muted);
    color: var(--accent);
    font-weight: 700;
}

.comparison-table td {
    color: var(--foreground);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Security Warning */
.security-warning {
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: var(--radius);
}

.security-warning h3 {
    color: var(--destructive);
    margin-bottom: var(--space-md);
    font-size: var(--text-lg);
    font-weight: 700;
}

.security-warning p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer-content {
    margin-top: var(--space-3xl);
}

.disclaimer-description {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2xl);
    color: var(--foreground);
    line-height: 1.8;
}

.disclaimer-warning {
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: var(--radius);
}

.disclaimer-warning h3 {
    color: var(--destructive);
    margin-bottom: var(--space-md);
    font-size: var(--text-lg);
    font-weight: 700;
}

.disclaimer-warning p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: var(--space-4xl) var(--space-lg) var(--space-2xl);
    color: var(--muted-foreground);
    border-top: 2px solid rgba(205, 133, 63, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-brand {
    text-align: left;
}

.footer-logo img {
    display: block;
    margin-bottom: var(--space-lg);
    max-width: 140px;
    filter: drop-shadow(0 0 10px rgba(205, 133, 63, 0.3));
}

.footer-tagline {
    font-size: var(--text-base);
    color: var(--accent);
    margin-bottom: var(--space-lg);
    font-style: italic;
    font-weight: 500;
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--muted-foreground);
}

.footer-title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
    color: var(--foreground);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.footer-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin-top: var(--space-sm);
    border-radius: 2px;
}

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

.footer-link {
    color: var(--muted-foreground);
    font-size: var(--text-base);
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all var(--transition-normal);
    color: var(--accent);
}

.footer-link:hover {
    color: var(--accent);
    padding-left: 25px;
    transform: translateX(5px);
}

.footer-link:hover::before {
    opacity: 1;
    left: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .crypto-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        padding: var(--space-2xl);
        gap: var(--space-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        border-top: 1px solid var(--border);
    }
    
    .nav-menu.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        padding: 8rem var(--space-lg) 6rem;
        min-height: 80vh;
    }
    
    .section {
        padding: var(--space-3xl) var(--space-lg);
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .mirrors-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        text-align: center;
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1.125rem, 5vw, 1.5rem);
    }
    
    .section-title {
        font-size: clamp(1.875rem, 6vw, 2.5rem);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .feature-item {
        padding: var(--space-lg);
    }
}

/* Accessibility Enhancements */
.keyboard-navigation *:focus {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.high-contrast {
    --background: #000000;
    --foreground: #ffffff;
    --card: #1a1a1a;
    --border: #666666;
    --accent: #ffff00;
}

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

/* Print Styles */
@media print {
    .terminal-nav,
    .mobile-menu-toggle,
    .footer {
        display: none;
    }
    
    .container {
        background: white;
        color: black;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

