/* ===== VARIABLES Y RESET ===== */
:root {
    /* Colores Reales Futuristas */
    --primary-purple: #4A1E8A;
    --primary-gold: #FFD700;
    --primary-silver: #C0C0C0;
    --primary-black: #0A0A0A;
    --primary-cyan: #00FFFF;
    --dark-bg: #0A0A0A;
    --dark-card: #121212;
    --dark-border: #222222;
    
    /* Gradientes Épicos */
    --gradient-royal: linear-gradient(135deg, var(--primary-purple), #6A0DAD, #8A2BE2);
    --gradient-gold: linear-gradient(135deg, var(--primary-gold), #FFA500, #FFD700);
    --gradient-cyan: linear-gradient(135deg, var(--primary-cyan), #00BFFF, #1E90FF);
    
    /* Sombras Futuristas */
    --shadow-glow: 0 0 20px rgba(0, 255, 255, 0.3);
    --shadow-gold: 0 0 15px rgba(255, 215, 0, 0.4);
    --shadow-purple: 0 0 15px rgba(74, 30, 138, 0.5);
    
    /* Tipografía */
    --font-title: 'Cinzel', serif;
    --font-body: 'Exo 2', sans-serif;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--primary-silver);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.crown-loader {
    text-align: center;
}

.crown-part {
    display: inline-block;
    width: 40px;
    height: 20px;
    background: var(--gradient-gold);
    margin: 0 5px;
    animation: crownPulse 1.5s infinite;
}

.crown-part:nth-child(2) {
    animation-delay: 0.2s;
}

.crown-part:nth-child(3) {
    animation-delay: 0.4s;
}

.loading-text {
    margin-top: var(--spacing-md);
    font-family: var(--font-title);
    color: var(--primary-gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

@keyframes crownPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* ===== TIPOGRAFÍA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--primary-silver);
    margin-bottom: var(--spacing-sm);
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BOTONES ===== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-royal);
    color: white;
    box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(74, 30, 138, 0.7);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-cyan);
    border: 2px solid var(--primary-cyan);
    box-shadow: var(--shadow-glow);
}

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-royal {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-royal:hover {
    background: var(--gradient-gold);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.btn-futuristic {
    position: relative;
    overflow: hidden;
}

.btn-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-futuristic:hover::before {
    left: 100%;
}

/* ===== NAVEGACIÓN ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-border);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-family: var(--font-title);
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-weight: 700;
}

.logo-highlight {
    color: var(--primary-gold);
    text-shadow: var(--shadow-gold);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--primary-silver);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.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,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-wallet {
    background: var(--gradient-cyan);
    color: var(--dark-bg);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-wallet:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-silver);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
    display: flex;
    gap: 5px;
    background: rgba(10, 10, 10, 0.8);
    padding: 8px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--dark-border);
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--dark-border);
    color: var(--primary-silver);
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--primary-purple);
    color: white;
    border-color: var(--primary-purple);
}

.lang-btn:hover:not(.active) {
    background: rgba(74, 30, 138, 0.3);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

.hero-crown-animation {
    position: relative;
    width: 150px;
    height: 80px;
    margin: 0 auto 3rem;
}

.crown-base {
    position: absolute;
    width: 100%;
    height: 30px;
    background: var(--gradient-gold);
    border-radius: 10px 10px 0 0;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.crown-jewel {
    position: absolute;
    width: 25px;
    height: 25px;
    background: var(--gradient-cyan);
    border-radius: 50%;
    top: 0;
    animation: jewelFloat 3s infinite ease-in-out;
}

.jewel-1 { left: 10%; animation-delay: 0s; }
.jewel-2 { left: 25%; animation-delay: 0.5s; }
.jewel-3 { left: 50%; transform: translateX(-50%); animation-delay: 1s; }
.jewel-4 { left: 65%; animation-delay: 1.5s; }
.jewel-5 { left: 80%; animation-delay: 2s; }

@keyframes jewelFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-gold), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--primary-silver);
}

.hero-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-glow);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--primary-silver);
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-silver);
    opacity: 0.7;
    animation: fadeInOut 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary-cyan), transparent);
    margin-bottom: 10px;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* ===== SECTIONS GENERALES ===== */
.section {
    padding: var(--spacing-xl) 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-silver);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== TOKEN SECTION ===== */
.token-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.tiers-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tier-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tier-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-purple);
}

.tier-card[data-tier="king"] {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(74, 30, 138, 0.2), rgba(255, 215, 0, 0.1));
    border-color: var(--primary-gold);
}

.tier-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.tier-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.tier-title {
    font-size: 1.5rem;
    margin: 0;
}

.tier-requirement {
    margin-left: auto;
    background: var(--primary-purple);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tier-body {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tier-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-silver);
}

.tier-benefit i {
    color: var(--primary-gold);
}

.calculator-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.calculator-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.calculator {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calculator-input {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-with-slider {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    background: linear-gradient(to right, var(--primary-purple), var(--primary-cyan));
    border-radius: 4px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

input[type="number"] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    padding: 10px;
    color: white;
    font-size: 1rem;
    text-align: center;
}

select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    padding: 10px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

.calculator-results {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid var(--dark-border);
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.result-value {
    color: var(--primary-gold);
    font-weight: 600;
}

.burn-animation {
    text-align: center;
    padding: 1rem;
}

.fire-container {
    position: relative;
    height: 60px;
    margin-bottom: 1rem;
}

.flame {
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 40px;
    background: linear-gradient(to top, var(--primary-gold), #FF4500);
    border-radius: 50% 50% 20% 20%;
    animation: flameFlicker 1s infinite alternate;
    transform-origin: bottom;
}

.flame:nth-child(1) {
    left: 30%;
    animation-delay: 0s;
}

.flame:nth-child(2) {
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 50px;
    animation-delay: 0.2s;
}

.flame:nth-child(3) {
    left: 70%;
    animation-delay: 0.4s;
}

@keyframes flameFlicker {
    0% { transform: scaleY(1) translateY(0); opacity: 0.8; }
    100% { transform: scaleY(1.2) translateY(-5px); opacity: 1; }
}

.burn-text {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.2rem;
}

.btn-burn {
    background: linear-gradient(to right, #FF4500, var(--primary-gold));
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-burn:hover {
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.6);
}

/* ===== ACADEMY SECTION ===== */
.academy-container {
    max-width: 1200px;
    margin: 0 auto;
}

.academy-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -30px;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-purple), var(--primary-cyan));
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-royal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary-gold);
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
}

.step-content p {
    color: var(--primary-silver);
    opacity: 0.8;
    font-size: 0.9rem;
}

.courses-preview {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--dark-border);
}

.preview-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.course-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-glow);
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.course-tier {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tier-squire { background: rgba(74, 30, 138, 0.3); color: #9D71FF; }
.tier-knight { background: rgba(0, 150, 255, 0.3); color: #00BFFF; }
.tier-baron { background: rgba(255, 69, 0, 0.3); color: #FF8C00; }

.course-price {
    color: var(--primary-gold);
    font-weight: 600;
}

.course-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: white;
}

.course-desc {
    color: var(--primary-silver);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.course-instructor {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    font-size: 0.9rem;
}

/* ===== CERTIFICATES SECTION ===== */
.certificates-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.nft-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.nft-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nft-card:nth-child(3) {
    grid-column: span 2;
    max-width: 300px;
    margin: 0 auto;
}

.nft-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-glow);
}

.nft-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nft-shine {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.nft-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.nft-info {
    padding: 1.5rem;
}

.nft-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.nft-info p {
    color: var(--primary-silver);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.nft-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--primary-silver);
}

.nft-tier strong {
    color: var(--primary-gold);
}

.nft-id {
    color: var(--primary-cyan);
}

.verification-tool {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 2rem;
}

.verification-tool h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.verification-input {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}

.verification-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    padding: 12px;
    color: white;
    font-size: 1rem;
}

.verification-result {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--dark-border);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cert-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid var(--dark-border);
}

.cert-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.cert-stat-label {
    font-size: 0.8rem;
    color: var(--primary-silver);
    opacity: 0.8;
}

/* ===== GOVERNANCE SECTION ===== */
.governance-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.timelock-dashboard {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 2rem;
}

.timelock-dashboard h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.timelock-queue {
    margin-bottom: 2rem;
}

.queue-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
}

.queue-item:hover {
    border-color: var(--primary-cyan);
    transform: translateX(5px);
}

.queue-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.queue-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-cyan);
    font-size: 0.9rem;
}

.voting-power {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid var(--dark-border);
}

.voting-power h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.voting-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.voting-bar {
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.voting-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary-purple), var(--primary-cyan));
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.voting-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.voting-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.voting-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.voting-label {
    color: var(--primary-silver);
    opacity: 0.8;
}

.proposals-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.proposals-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.proposal-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.proposal-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-purple);
}

.proposal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.proposal-id {
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 0.9rem;
}

.proposal-status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-voting {
    background: rgba(0, 255, 0, 0.2);
    color: #00FF00;
}

.status-pending {
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary-gold);
}

.proposal-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.proposal-desc {
    color: var(--primary-silver);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.proposal-votes {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.vote-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vote-label {
    width: 40px;
    font-weight: 600;
}

.vote-bar {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.vote-fill {
    height: 100%;
    border-radius: 5px;
}

.yes-fill {
    background: linear-gradient(to right, #00FF00, #00CC00);
}

.no-fill {
    background: linear-gradient(to right, #FF0000, #CC0000);
}

.vote-percent {
    width: 50px;
    text-align: right;
    font-weight: 600;
}

/* ===== ECOSYSTEM SECTION ===== */
.ecosystem-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ecosystem-map {
    position: relative;
    height: 400px;
}

.map-node {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--dark-border);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.map-node:hover {
    transform: scale(1.1);
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-glow);
}

.center-node {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(74, 30, 138, 0.2);
    border-color: var(--primary-purple);
    width: 140px;
    height: 140px;
}

.center-node:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.top-node {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--primary-cyan);
}

.right-node {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-gold);
}

.bottom-node {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 69, 0, 0.1);
    border-color: #FF4500;
}

.left-node {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: rgba(0, 255, 0, 0.1);
    border-color: #00FF00;
}

.node-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.node-label {
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.connection-line {
    position: absolute;
    background: linear-gradient(to right, var(--primary-purple), var(--primary-cyan));
    height: 2px;
    z-index: 0;
}

.line-1 {
    top: 130px;
    left: 50%;
    width: 200px;
    transform: translateX(-50%) rotate(90deg);
}

.line-2 {
    top: 50%;
    left: 60px;
    width: 200px;
    transform: translateY(-50%);
}

.line-3 {
    top: 50%;
    right: 60px;
    width: 200px;
    transform: translateY(-50%);
}

.line-4 {
    bottom: 130px;
    left: 50%;
    width: 200px;
    transform: translateX(-50%) rotate(90deg);
}

.live-stats {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 2rem;
}

.live-stats h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.live-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
}

.live-stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
}

.live-stat-icon {
    font-size: 2rem;
}

.live-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

.live-stat-label {
    font-size: 0.9rem;
    color: var(--primary-silver);
    opacity: 0.8;
}

.contract-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
}

.contract-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contract-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.contract-link {
    background: rgba(74, 30, 138, 0.3);
    color: var(--primary-cyan);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--primary-purple);
    transition: all 0.3s ease;
}

.contract-link:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-3px);
}

/* ===== ROADMAP SECTION ===== */
.roadmap-container {
    max-width: 800px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-purple), var(--primary-cyan));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    position: absolute;
    left: -50px;
    top: 0;
    width: 100px;
    text-align: right;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 2rem;
    margin-left: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-glow);
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--primary-purple);
    border-radius: 50%;
    border: 3px solid var(--primary-gold);
}

.timeline-content h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--primary-silver);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.timeline-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-completed {
    background: rgba(0, 255, 0, 0.2);
    color: #00FF00;
}

.status-inprogress {
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary-gold);
}

.status-upcoming {
    background: rgba(0, 255, 255, 0.2);
    color: var(--primary-cyan);
}

/* ===== COMMUNITY SECTION ===== */
.community-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--primary-silver);
    transition: all 0.3s ease;
    width: 80px;
}

.social-link:hover {
    color: var(--primary-gold);
    transform: translateY(-10px);
}

.social-link i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 600;
}

.newsletter {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    padding: 12px;
    color: white;
    font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--dark-border);
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 60px;
}

.footer-titles h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.footer-titles p {
    color: var(--primary-silver);
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-column a {
    color: var(--primary-silver);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dark-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--primary-silver);
    opacity: 0.8;
}

.footer-version {
    color: var(--primary-cyan);
    font-weight: 600;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.2);
}

.modal-header {
    background: var(--gradient-royal);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: white;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-silver);
}

.wallet-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.wallet-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 1rem;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wallet-option:hover {
    background: rgba(74, 30, 138, 0.3);
    border-color: var(--primary-purple);
    transform: translateY(-3px);
}

.wallet-option i {
    font-size: 1.5rem;
}

.wallet-note {
    font-size: 0.9rem;
    color: var(--primary-cyan);
    text-align: center;
    font-style: italic;
}

/* ===== AUDIO PLAYER ===== */
.audio-player {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.audio-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-royal);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-purple);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(74, 30, 138, 0.7);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .tiers-container {
        grid-template-columns: 1fr;
    }
    
    .tier-card[data-tier="king"] {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .token-container,
    .certificates-container,
    .governance-container,
    .ecosystem-container,
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .academy-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .process-step:nth-child(2)::after {
        display: none;
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nft-gallery {
        grid-template-columns: 1fr;
    }
    
    .nft-card:nth-child(3) {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid var(--dark-border);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .academy-process {
        grid-template-columns: 1fr;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .section {
        padding: 3rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}