/* ================================
   TORZON LUXURY EMPORIUM - STYLES
   Premium Cyber-Luxury Design
   ================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors - Deep Luxury */
    --midnight-navy: #0a0e27;
    --royal-purple: #6b2dd9;
    --deep-violet: #4a1a8a;
    --space-black: #050814;

    /* Luxury Accents */
    --champagne-gold: #d4af37;
    --rose-gold: #b76e79;
    --platinum: #e5e4e2;
    --bronze: #cd7f32;

    /* Cyber Neon */
    --electric-cyan: #00f0ff;
    --neon-magenta: #ff006e;
    --laser-green: #39ff14;
    --neon-purple: #b537f2;

    /* Gradients */
    --gradient-luxury: linear-gradient(135deg, #6b2dd9 0%, #d4af37 50%, #00f0ff 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #b76e79 100%);
    --gradient-cyber: linear-gradient(135deg, #00f0ff 0%, #ff006e 100%);
    --gradient-purple: linear-gradient(135deg, #6b2dd9 0%, #b537f2 100%);

    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #999;
    --dark-gray: #333;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;
    --card-padding: 30px;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 70px rgba(0, 0, 0, 0.4);

    /* Gold Glow */
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.5),
                 0 0 40px rgba(212, 175, 55, 0.3),
                 0 0 60px rgba(212, 175, 55, 0.2);

    /* Cyber Glow */
    --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5),
                 0 0 40px rgba(0, 240, 255, 0.3);
}

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

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--space-black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
}

.gradient-text-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== ANIMATED BACKGROUND ===== */
#luxury-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, var(--space-black) 0%, var(--midnight-navy) 100%);
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Morphing Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: morph-float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    top: 10%;
    left: -10%;
    background: radial-gradient(circle, var(--royal-purple), transparent);
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    bottom: 20%;
    right: -15%;
    background: radial-gradient(circle, var(--electric-cyan), transparent);
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--champagne-gold), transparent);
    animation-delay: -14s;
}

@keyframes morph-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 50% 50% 50% 50%;
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
        border-radius: 60% 40% 60% 40%;
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
        border-radius: 40% 60% 40% 60%;
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
        border-radius: 55% 45% 55% 45%;
    }
}

/* ===== HEADER NAVIGATION ===== */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.luxury-header.scrolled {
    padding: 15px 0;
    background: rgba(5, 8, 20, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.luxury-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.logo-icon {
    font-size: 1.8rem;
    animation: float-gentle 3s ease-in-out infinite;
}

.logo-main {
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.logo-tag {
    font-size: 0.7rem;
    color: var(--champagne-gold);
    letter-spacing: 2px;
    font-weight: 400;
}

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

/* Navigation Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--champagne-gold);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--champagne-gold);
}

.nav-link-cta {
    padding: 10px 25px;
    background: var(--gradient-luxury);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
    border-color: var(--champagne-gold);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 120px 0 80px;
    position: relative;
}

.hero-content {
    padding: 0 60px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--champagne-gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-out 0.2s both;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.title-line-1 {
    font-weight: 400;
    font-size: 2rem;
    color: var(--platinum);
    letter-spacing: 8px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.title-line-2 {
    font-weight: 900;
    font-size: 5rem;
    letter-spacing: 5px;
    text-shadow: var(--glow-gold);
    animation: fadeInUp 1s ease-out 0.4s both, shimmer 3s ease-in-out infinite;
}

.title-line-3 {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--electric-cyan);
    letter-spacing: 3px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--platinum);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 0.7s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Audiowide', monospace;
    font-size: 2.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--champagne-gold), transparent);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeIn 1s ease-out 0.8s both;
}

.btn-luxury {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

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

.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: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-gold);
    border-color: var(--champagne-gold);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 2px solid var(--electric-cyan);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeIn 1s ease-out 0.5s both;
}

.floating-card {
    position: absolute;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    animation: float-card 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--champagne-gold);
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 5%;
    animation-delay: -1.3s;
}

.card-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: -2.6s;
}

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

/* ===== SECTION COMMON STYLES ===== */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--champagne-gold);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: var(--platinum);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* ===== INTRO SECTION ===== */
.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.intro-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-card {
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(10px);
    border-color: var(--champagne-gold);
}

.highlight-icon {
    font-size: 2rem;
    color: var(--champagne-gold);
    margin-bottom: 15px;
}

.highlight-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--white);
}

.highlight-card p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ===== CRYPTO SECTION ===== */
.crypto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.crypto-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(107, 45, 217, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.crypto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-luxury);
    transition: left 0.5s ease;
}

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

.crypto-card:hover {
    transform: translateY(-10px);
    border-color: var(--royal-purple);
    box-shadow: 0 15px 40px rgba(107, 45, 217, 0.3);
}

.crypto-card.featured {
    border-color: var(--champagne-gold);
    background: rgba(212, 175, 55, 0.05);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    background: var(--gradient-gold);
    color: var(--midnight-navy);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.crypto-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.crypto-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    border-radius: 50%;
    font-size: 1.5rem;
}

.crypto-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.crypto-symbol {
    color: var(--medium-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.crypto-price {
    font-family: 'Audiowide', monospace;
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.crypto-change {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 5px 12px;
    border-radius: 8px;
    display: inline-block;
}

.crypto-change.positive {
    color: var(--laser-green);
    background: rgba(57, 255, 20, 0.1);
}

.crypto-change.negative {
    color: var(--neon-magenta);
    background: rgba(255, 0, 110, 0.1);
}

.crypto-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.detail-label {
    color: var(--medium-gray);
}

.detail-value {
    color: var(--white);
    font-weight: 600;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 35px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.03);
    border-color: var(--champagne-gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-luxury);
    border-radius: 15px;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 25px;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.feature-link {
    color: var(--champagne-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.feature-link:hover {
    gap: 12px;
    text-shadow: var(--glow-gold);
}

/* ===== STATISTICS SHOWCASE ===== */
.stats-showcase {
    background: rgba(255, 255, 255, 0.02);
    padding: 80px 0;
    margin: 80px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(107, 45, 217, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: var(--royal-purple);
    box-shadow: 0 10px 30px rgba(107, 45, 217, 0.3);
}

.stat-icon {
    font-size: 3rem;
    color: var(--champagne-gold);
    margin-bottom: 20px;
}

.stat-big-number {
    font-family: 'Audiowide', monospace;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-big-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-detail {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

/* ===== HOW IT WORKS ===== */
.steps-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 35px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--champagne-gold);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(10px);
    box-shadow: -5px 0 20px rgba(212, 175, 55, 0.2);
}

.step-number {
    font-family: 'Audiowide', monospace;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.step-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

/* ===== RESOURCES SECTION ===== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.resource-category {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.resource-category:hover {
    border-color: var(--electric-cyan);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}

.resource-category-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--electric-cyan);
    display: flex;
    align-items: center;
    gap: 10px;
}

.resource-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resource-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    border-left: 2px solid transparent;
}

.resource-link:hover {
    background: rgba(0, 240, 255, 0.05);
    color: var(--electric-cyan);
    border-left-color: var(--electric-cyan);
    transform: translateX(5px);
}

/* ===== PLATFORM NAV SECTION ===== */
.platform-nav-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
}

.platform-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.nav-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(107, 45, 217, 0.2);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.nav-card.featured {
    border-color: var(--champagne-gold);
    background: rgba(212, 175, 55, 0.05);
}

.featured-label {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    background: var(--gradient-gold);
    color: var(--midnight-navy);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
}

.nav-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--royal-purple);
    box-shadow: 0 20px 50px rgba(107, 45, 217, 0.3);
}

.nav-card-icon {
    font-size: 3rem;
    color: var(--champagne-gold);
    margin-bottom: 25px;
}

.nav-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--white);
}

.nav-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.nav-card-link {
    color: var(--electric-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.nav-card-link:hover {
    gap: 15px;
    text-shadow: var(--glow-cyan);
}

/* ===== TIMESTAMP SECTION ===== */
.timestamp-section {
    padding: 40px 0;
}

.timestamp-box {
    padding: 20px 30px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--platinum);
}

.timestamp-box i {
    color: var(--champagne-gold);
    font-size: 1.2rem;
}

/* ===== FOOTER ===== */
.luxury-footer {
    background: rgba(5, 8, 20, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icon {
    font-size: 2rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-stats {
    display: flex;
    gap: 30px;
}

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

.footer-stat strong {
    font-family: 'Audiowide', monospace;
    font-size: 1.5rem;
    color: var(--champagne-gold);
}

.footer-stat span {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--champagne-gold);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    gap: 25px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--champagne-gold);
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: var(--gradient-luxury);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--glow-gold);
}

/* ===== LINKS ===== */
.external-link,
.internal-link {
    color: var(--electric-cyan);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.external-link:hover,
.internal-link:hover {
    color: var(--champagne-gold);
    border-bottom-color: var(--champagne-gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-visual {
        display: none;
    }

    .title-line-2 {
        font-size: 4rem;
    }

    .features-grid,
    .crypto-grid,
    .stats-grid,
    .resources-grid,
    .platform-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(5, 8, 20, 0.98);
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s ease;
        align-items: center;
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        left: 0;
    }

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

    .title-line-1 {
        font-size: 1.5rem;
    }

    .title-line-2 {
        font-size: 3rem;
    }

    .title-line-3 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .features-grid,
    .crypto-grid,
    .stats-grid,
    .resources-grid,
    .platform-nav-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

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

    .title-line-2 {
        font-size: 2.5rem;
    }

    .btn-luxury {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
