/* ===== ROOT VARIABLES ===== */
:root {
    /* Primary Colors - Dark Theme */
    --primary-bg: #0a0a0f;
    --secondary-bg: #12121a;
    --tertiary-bg: #1a1a24;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-disabled: rgba(255, 255, 255, 0.4);
    
    /* Golden Theme */
    --golden: #daa520;
    --golden-light: #f4d03f;
    --golden-dark: #b8860b;
    --golden-gradient: linear-gradient(135deg, var(--golden), var(--golden-light));
    --golden-gradient-light: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(244, 208, 63, 0.05));
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --purple: #8b5cf6;
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glass-blur: blur(20px);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-3xl: 24px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Font Sizes */
    --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;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    
    /* Z-index */
    --z-header: 1000;
    --z-sidebar: 1001;
    --z-overlay: 999;
    --z-theme: 1002;
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] {
    --primary-bg: #f8fafc;
    --secondary-bg: #ffffff;
    --tertiary-bg: #f1f5f9;
    --card-bg: rgba(0, 0, 0, 0.03);
    --card-border: rgba(0, 0, 0, 0.1);
    
    --text-primary: #1e293b;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-disabled: #94a3b8;
    
    --glass-bg: rgba(0, 0, 0, 0.05);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding-left: var(--space-lg);
        padding-right: var(--space-lg);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--text-base);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--golden-gradient);
    color: #000;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border-color: var(--golden);
    color: var(--golden);
}

.btn-outline:hover {
    background: var(--golden);
    color: #000;
    transform: translateY(-2px);
}

.btn-connect {
    background: var(--golden-gradient);
    color: #000;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-connect:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-connect {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-sm);
}

@media (max-width: 768px) {
    .section-title {
        font-size: var(--text-3xl);
    }
}

.section-subtitle {
    color: var(--text-muted);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--golden-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: var(--z-theme);
}

.btn-theme {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.btn-theme:hover {
    background: var(--tertiary-bg);
    transform: rotate(30deg);
}

.btn-theme .dark-icon {
    display: none;
}

[data-theme="light"] .btn-theme .light-icon {
    display: none;
}

[data-theme="light"] .btn-theme .dark-icon {
    display: block;
}

/* ===== HEADER ===== */
.header {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    z-index: var(--z-header);
    transition: all var(--transition-normal);
}
canvas {
    display: block;
    box-sizing: border-box;
    height: 300px;
    width: 616px;
    background: url(/webassets/img/coin2.png) no-repeat center center;
    background-size: 140px;
    background-position-y: 43px;
}

.header.scrolled {
    background: var(--primary-bg);
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-dark {
    display: none;
}

[data-theme="light"] .logo-light {
    display: none;
}

[data-theme="light"] .logo-dark {
    display: block;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--golden-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Desktop Navigation */
.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--golden);
    background: var(--golden-gradient-light);
}

.dropdown-menu {
    background: var(--secondary-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    box-shadow: var(--shadow-xl);
}

.dropdown-item {
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--golden-gradient-light);
    color: var(--golden);
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: 1px solid var(--card-border);
    background: transparent;
    padding: 0.5rem;
    border-radius: var(--radius-md);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

[data-theme="light"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== MOBILE SIDEBAR ===== */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--secondary-bg);
    border-left: 1px solid var(--card-border);
    z-index: var(--z-sidebar);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
}

.sidebar-brand .logo {
    height: 32px;
}

.sidebar-close {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: var(--radius-sm);
}

.sidebar-close:hover {
    background: var(--tertiary-bg);
}

.sidebar-content {
    padding: 1.5rem;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-menu > li > a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--text-primary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.sidebar-menu > li > a:hover,
.sidebar-menu > li > a.active {
    background: var(--golden-gradient-light);
    color: var(--golden);
}

.sidebar-menu > li > a i {
    width: 24px;
    text-align: center;
}

.has-submenu {
    position: relative;
}

.has-submenu > a i.bi-chevron-down {
    margin-left: auto;
    transition: transform var(--transition-fast);
}

.has-submenu.active > a i.bi-chevron-down {
    transform: rotate(180deg);
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 2.5rem;
}

.has-submenu.active .submenu {
    max-height: 500px;
}

.submenu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.submenu li a:hover {
    color: var(--golden);
    background: var(--tertiary-bg);
}

.sidebar-connect {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--golden-gradient);
    color: #000;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    font-weight: 600;
    text-align: center;
    justify-content: center;
}

.sidebar-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
}

.theme-toggle-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.theme-switch {
    display: flex;
    gap: 0.5rem;
    background: var(--tertiary-bg);
    padding: 0.25rem;
    border-radius: var(--radius-lg);
}

.theme-option {
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.theme-option.active {
    background: var(--secondary-bg);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--tertiary-bg);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.25rem;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--golden);
    color: #000;
    transform: translateY(-2px);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--golden-gradient);
    opacity: 0.1;
    filter: blur(40px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 20%;
    animation: float 25s ease-in-out infinite;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 30%;
    animation: float 18s ease-in-out infinite reverse;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to right, transparent, var(--golden), transparent);
    opacity: 0.1;
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

.hero-content {
    padding-right: 1rem;
}

@media (max-width: 992px) {
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
}

.hero-title {
    font-size: var(--text-5xl);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: var(--text-4xl);
    }
}

.hero-subtitle {
    font-size: var(--text-2xl);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
    }
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    min-width: 180px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--golden-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
}

.stat-content h3 {
    font-size: var(--text-xl);
    margin-bottom: 0.25rem;
    color: var(--golden);
}

.stat-content p {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .hero-visual {
        height: 400px;
        margin-top: 2rem;
    }
}

.main-coin {
    position: relative;
    width: auto;
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

@media (max-width: 768px) {
    .main-coin {
        width: 200px;
        height: 200px;
    }
}

.coin-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(218, 165, 32, 0.3));
}

.coin-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--golden) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(20px);
    z-index: 1;
}

.orbit-coins {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.orbit-1 {
    width: 400px;
    height: 400px;
    animation: rotate 20s linear infinite;
}

.orbit-2 {
    width: 320px;
    height: 320px;
    animation: rotate 25s linear infinite reverse;
}

.orbit-3 {
    width: 450px;
    height: 450px;
    animation: rotate 30s linear infinite;
}

.orbit-4 {
    width: 380px;
    height: 380px;
    animation: rotate 22s linear infinite reverse;
}

.orbit-coin {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    animation: counter-rotate 20s linear infinite;
}

.orbit-coin img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.3));
}

.orbit-1 .orbit-coin {
    animation-duration: 20s;
}

.orbit-2 .orbit-coin {
    animation-duration: 25s;
}

.orbit-3 .orbit-coin {
    animation-duration: 30s;
}

.orbit-4 .orbit-coin {
    animation-duration: 22s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes counter-rotate {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) rotate(-360deg);
    }
}

/* ===== OVERVIEW SECTION ===== */
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--golden);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--golden-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--golden);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: var(--text-xl);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tags span {
    background: var(--golden-gradient-light);
    color: var(--golden);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
}

/* ===== ECOSYSTEM SECTION ===== */
.ecosystem-section {
    background: var(--secondary-bg);
    position: relative;
}

.section-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.ecosystem-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--golden-gradient);
    opacity: 0.05;
    filter: blur(60px);
}

.shape-left {
    top: 20%;
    left: -150px;
}

.shape-right {
    bottom: 20%;
    right: -150px;
}

.ecosystem-img-container {
    position: absolute;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.ecosystem-content {
    padding: 2rem;
}

@media (max-width: 768px) {
    .ecosystem-content {
        padding: 1rem;
    }
}

.ecosystem-content h3 {
    font-size: var(--text-2xl);
    margin-bottom: 1.5rem;
    color: var(--golden);
}

.ecosystem-content > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: var(--text-lg);
}

.ecosystem-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ecosystem-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.ecosystem-list li i {
    color: var(--golden);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* ===== TECHNOLOGY SECTION ===== */
.tech-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-normal);
    text-align: center;
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: var(--golden);
    box-shadow: var(--shadow-xl);
}

.tech-icon {
    width: 64px;
    height: 64px;
    background: var(--golden-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #000;
}

.tech-card h4 {
    font-size: var(--text-xl);
    margin-bottom: 1rem;
}

.tech-card p {
    color: var(--text-muted);
    font-size: var(--text-base);
}

/* ===== ROADMAP SECTION ===== */
.roadmap-section {
    position: relative;
    overflow: hidden;
}

.roadmap-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.roadmap-container {
    position: relative;
    padding: 2rem 0;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--card-border);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 50%;
    left: 0;
    height: 4px;
    background: var(--golden-gradient);
    transform: translateY(-50%);
    z-index: 2;
    transition: width 0.5s ease;
}

.timeline-node {
    position: relative;
    z-index: 3;
    text-align: center;
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.timeline-node:hover {
    transform: scale(1.1);
}

.timeline-node.active .node-year {
    color: var(--golden);
    font-weight: 700;
}

.timeline-node.active .node-circle {
    background: var(--golden);
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
    transform: scale(1.2);
}

.node-circle {
    width: 20px;
    height: 20px;
    background: var(--tertiary-bg);
    border: 3px solid var(--card-border);
    border-radius: 50%;
    margin: 0 auto 1rem;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 3;
}

.node-year {
    font-size: var(--text-xl);
    font-weight: 600;
    transition: color var(--transition-normal);
    background: var(--primary-bg);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
}

.quarters-container {
    position: relative;
    height: 400px;
    margin: 3rem auto;
    max-width: 600px;
}

.year-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: var(--golden-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: var(--shadow-xl);
}

.year-center span {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: #000;
}

.quarter {
    position: absolute;
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.quarter:hover {
    transform: scale(1.1);
}

.quarter-circle {
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--golden);
    transition: all var(--transition-normal);
}

.quarter:hover .quarter-circle {
    background: var(--golden-gradient);
    color: #000;
    border-color: var(--golden);
}

.quarter-1 {
    top: 10%;
    left: 25%;
}

.quarter-2 {
    top: 10%;
    right: 25%;
}

.quarter-3 {
    bottom: 10%;
    left: 25%;
}

.quarter-4 {
    bottom: 10%;
    right: 25%;
}

.roadmap-details {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    margin-top: 3rem;
}

.year-details {
    display: none;
}

.year-details.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.year-details h3 {
    font-size: var(--text-2xl);
    margin-bottom: 1rem;
    color: var(--golden);
}

.year-details > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: var(--text-lg);
}

.quarter-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quarter-info {
    padding: 1.5rem;
    background: var(--tertiary-bg);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--golden);
}

.quarter-info h4 {
    font-size: var(--text-lg);
    margin-bottom: 1rem;
    color: var(--golden);
}

.quarter-info ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quarter-info li {
    color: var(--text-muted);
    font-size: var(--text-sm);
    position: relative;
    padding-left: 1rem;
}

.quarter-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--golden);
}

/* ===== TOKENOMICS SECTION ===== */
.token-details-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
}

.token-param {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--card-border);
}

.token-param:last-child {
    border-bottom: none;
}

.param-label {
    color: var(--text-muted);
    font-weight: 500;
}

.param-value {
    font-weight: 600;
    color: var(--golden);
}

.distribution-chart-container {
    height: 300px;
    position: relative;
}

.distribution-grid {
    margin-top: 3rem;
}

.dist-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-left: 4px solid;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
    transition: transform var(--transition-normal);
}

.dist-item:hover {
    transform: translateY(-5px);
}

.dist-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.dist-info h5 {
    font-size: var(--text-base);
    margin-bottom: 0.5rem;
}

.dist-info p {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.dist-info small {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

/* ===== WHITEPAPER SECTION ===== */
.whitepaper-section {
    background: var(--secondary-bg);
}

.whitepaper-content {
    padding-right: 2rem;
}

@media (max-width: 992px) {
    .whitepaper-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
}

.whitepaper-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 992px) {
    .feature {
        justify-content: center;
    }
}

.feature i {
    color: var(--golden);
}

.feature span {
    color: var(--text-muted);
}

.whitepaper-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .whitepaper-buttons {
        justify-content: center;
    }
}

.whitepaper-visual {
    position: relative;
    padding: 2rem;
}

.whitepaper-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--golden-gradient);
    border-radius: var(--radius-2xl);
    opacity: 0.1;
    z-index: 1;
}

.whitepaper-visual img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* ===== COMMUNITY SECTION ===== */
.community-stats {
    margin-bottom: 3rem;
}

.community-stat {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: transform var(--transition-normal);
}

.community-stat:hover {
    transform: translateY(-5px);
    border-color: var(--golden);
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: var(--golden-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #000;
}

.community-stat h3 {
    font-size: var(--text-2xl);
    margin-bottom: 0.5rem;
    color: var(--golden);
}

.community-stat p {
    color: var(--text-muted);
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.community-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.community-link i {
    font-size: 1.25rem;
}

.community-link.discord {
    background: #5865F2;
    color: white;
}

.community-link.twitter {
    background: #1DA1F2;
    color: white;
}

.community-link.telegram {
    background: #26A5E4;
    color: white;
}

.community-link.github {
    background: #333;
    color: white;
}

.community-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--secondary-bg);
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg) !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
    font-size: var(--text-base);
}

.accordion-button:not(.collapsed) {
    background: var(--golden-gradient-light);
    color: var(--golden);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23daa520'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--card-border);
}

/* ===== CONTACT SECTION ===== */
.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

.contact-info {
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .contact-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

.contact-info h4,
.contact-form h4 {
    font-size: var(--text-xl);
    margin-bottom: 2rem;
    color: var(--golden);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--golden);
    margin-top: 0.25rem;
}

.contact-item h5 {
    font-size: var(--text-base);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    background: var(--tertiary-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    width: 100%;
    transition: all var(--transition-normal);
}

.form-control:focus {
    border-color: var(--golden);
    box-shadow: 0 0 0 0.25rem rgba(218, 165, 32, 0.25);
    background: var(--tertiary-bg);
    color: var(--text-primary);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-bg);
    padding: var(--space-3xl) 0 var(--space-xl);
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to right, transparent, var(--golden), transparent);
    opacity: 0.1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    margin-bottom: 0.5rem;
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer h4 {
    font-size: var(--text-lg);
    margin-bottom: 1.5rem;
    color: var(--golden);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--golden);
}

.newsletter p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    background: var(--tertiary-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
}

.newsletter-form button {
    background: var(--golden);
    color: #000;
    border: none;
    width: 50px;
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.newsletter-form button:hover {
    background: var(--golden-light);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.footer-legal {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer-legal {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

.footer-legal a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--golden);
}

/* ===== MODAL ===== */
.modal-content {
    background: var(--secondary-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    color: var(--text-primary);
}

.modal-header {
    border-bottom: 1px solid var(--card-border);
    padding: 1.5rem;
}

.modal-title {
    color: var(--golden);
    font-weight: 600;
}

.btn-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.btn-close:hover {
    color: var(--golden);
}

.modal-body {
    padding: 1.5rem;
}

.wallet-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.wallet-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    width: 100%;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.wallet-option:hover {
    border-color: var(--golden);
    transform: translateX(5px);
}

.wallet-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wallet-info {
    flex: 1;
    text-align: left;
}

.wallet-info h6 {
    margin-bottom: 0.25rem;
    font-size: var(--text-base);
}

.wallet-info p {
    color: var(--text-muted);
    font-size: var(--text-sm);
    margin-bottom: 0;
}

.wallet-option i {
    color: var(--text-muted);
}

.modal-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--golden-gradient-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--golden);
}

.modal-note i {
    color: var(--golden);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.modal-note p {
    color: var(--text-muted);
    font-size: var(--text-sm);
    margin-bottom: 0;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1199.98px) {
    .quarter-1 { left: 20%; }
    .quarter-2 { right: 20%; }
    .quarter-3 { left: 20%; }
    .quarter-4 { right: 20%; }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--secondary-bg);
        border-radius: var(--radius-xl);
        padding: 1rem;
        margin-top: 1rem;
        border: 1px solid var(--card-border);
    }
    
    .nav-link {
        margin: 0.25rem 0;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .main-coin {
        width: 200px;
        height: 200px;
    }
    
    .orbit-1 { width: 350px; height: 350px; }
    .orbit-2 { width: 280px; height: 280px; }
    .orbit-3 { width: 400px; height: 400px; }
    .orbit-4 { width: 330px; height: 330px; }
    
    .quarters-container {
        height: 350px;
    }
    
    .year-center {
        width: 120px;
        height: 120px;
    }
    
    .year-center span {
        font-size: var(--text-2xl);
    }
    
    .quarter-circle {
        width: 70px;
        height: 70px;
        font-size: var(--text-lg);
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .hero-section {
        padding-top: 100px;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-xl);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .stat-card {
        min-width: 160px;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .main-coin {
        width: 180px;
        height: 180px;
    }
    
    .orbit-coin {
        width: 50px;
        height: 50px;
    }
    
    .quarters-container {
        height: 300px;
        margin: 2rem auto;
    }
    
    .year-center {
        width: 100px;
        height: 100px;
    }
    
    .quarter {
        transform: scale(0.9);
    }
    
    .quarter:hover {
        transform: scale(1);
    }
    
    .quarter-1, .quarter-3 {
        left: 15%;
    }
    
    .quarter-2, .quarter-4 {
        right: 15%;
    }
    
    .quarter-circle {
        width: 60px;
        height: 60px;
        font-size: var(--text-base);
    }
    
    .timeline {
        margin-bottom: 3rem;
        padding: 0;
    }
    
    .node-year {
        font-size: var(--text-lg);
        padding: 0.25rem 0.5rem;
    }
    
    .quarter-details {
        grid-template-columns: 1fr;
    }
    
    .distribution-grid .col-lg-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575.98px) {
    .theme-toggle {
        top: 1rem;
        right: 1rem;
    }
    
    .btn-theme {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: fixed;
    bottom: 20px;
    right: 20px;
}

    
    .hero-title {
        font-size: var(--text-2xl);
    }
    
    .section-title {
        font-size: var(--text-2xl);
    }
    
    .hero-visual {
        height: 250px;
    }
    
    .main-coin {
        width: 150px;
        height: 150px;
    }
    
    .orbit-1 { width: 300px; height: 300px; }
    .orbit-2 { width: 240px; height: 240px; }
    .orbit-3 { width: 350px; height: 350px; }
    .orbit-4 { width: 280px; height: 280px; }
    
    .quarters-container {
        height: 250px;
    }
    
    .year-center {
        width: 80px;
        height: 80px;
    }
    
    .year-center span {
        font-size: var(--text-xl);
    }
    
    .quarter-circle {
        width: 50px;
        height: 50px;
        font-size: var(--text-sm);
    }
    
    .quarter-1, .quarter-3 {
        left: 10%;
    }
    
    .quarter-2, .quarter-4 {
        right: 10%;
    }
    
    .distribution-grid .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .community-links {
        flex-direction: column;
        align-items: center;
    }
    
    .community-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .mobile-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .mobile-sidebar.active {
        right: 0;
    }
}