/* OptimusBNB Official Website Styles - 2025 Edition */

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

:root {
    /* BSC Brand Colors */
    --primary-yellow: #f3ba2f;
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --dark-bg: #0a0a0a;

    /* Modern UI Colors */
    --accent-cyan: #00d4ff;
    --accent-purple: #6366f1;
    --success-green: #10b981;
    --warning-orange: #f59e0b;

    /* Neutrals */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --container-max-width: 1280px;
    --section-padding: 6rem 0;
    --border-radius: 12px;
    --border-radius-lg: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(243, 186, 47, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--dark-bg);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

/* Ensure all elements use box-sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Base responsive images */
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive text scaling */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.5;
}

/* Flexible button sizing */
.btn {
    padding: clamp(12px, 2vw, 15px) clamp(20px, 4vw, 30px);
    font-size: clamp(0.9rem, 2vw, 1rem);
    min-height: 44px; /* Touch-friendly minimum */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Video Background - Hero Only */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    display: none;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(26, 26, 26, 0.8) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
    z-index: -1;
}

/* Particles Background for Sections */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    background: linear-gradient(45deg, #f3ba2f, #ffd700);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.particle:nth-child(1) {
    width: 3px;
    height: 3px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    width: 5px;
    height: 5px;
    left: 30%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    width: 2px;
    height: 2px;
    left: 50%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    width: 4px;
    height: 4px;
    left: 70%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    width: 3px;
    height: 3px;
    left: 85%;
    animation-delay: 8s;
    animation-duration: 20s;
}

.particle:nth-child(6) {
    width: 6px;
    height: 6px;
    left: 15%;
    animation-delay: 10s;
    animation-duration: 25s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(243, 186, 47, 0.1);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-glow);
}

.logo-video,
.footer-logo-video {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-glow);
    object-fit: cover;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.logo-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-yellow);
    line-height: 1.2;
    white-space: nowrap;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--gray-400);
    line-height: 1.2;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-yellow);
}

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

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

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-yellow);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.btn-primary:hover {
    background: #ffd700;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.btn-outline {
    background: transparent;
    color: var(--primary-yellow);
    border: 1px solid var(--primary-yellow);
}

.btn-outline:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-glow {
    box-shadow: 0 0 30px rgba(243, 186, 47, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(243, 186, 47, 0.4); }
    50% { box-shadow: 0 0 40px rgba(243, 186, 47, 0.6); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

/* Video background only in hero */
.hero .video-background {
    display: block !important;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(243, 186, 47, 0.1);
    border: 1px solid var(--primary-yellow);
    border-radius: 50px;
    color: var(--primary-yellow);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-yellow);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contract-info {
    margin-bottom: 2rem;
}

.contract-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.contract-address {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
    color: var(--primary-yellow);
    background: rgba(243, 186, 47, 0.1);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contract-address:hover {
    background: rgba(243, 186, 47, 0.2);
}

.verification-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.scroll-arrow {
    margin-top: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

/* Remove video background from all sections except hero */
.about, .features, .tokenomics, .roadmap, .community {
    background: var(--dark-bg) !important;
}

.about .video-background,
.features .video-background,
.tokenomics .video-background,
.roadmap .video-background,
.community .video-background {
    display: none !important;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
}

/* About Section */
.about {
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(20px);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(243, 186, 47, 0.1) 0%, rgba(243, 186, 47, 0.05) 100%);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(243, 186, 47, 0.2);
    margin-bottom: 2rem;
}

.highlight-box h3 {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.key-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    background: rgba(243, 186, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.feature-showcase {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    backdrop-filter: blur(20px);
}

.showcase-item {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.showcase-item.active {
    background: rgba(243, 186, 47, 0.1);
    border: 1px solid var(--primary-yellow);
}

.showcase-item h4 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

/* Features Section */
.features {
    background: rgba(10, 10, 10, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-yellow);
}

.feature-card.premium {
    border-color: var(--primary-yellow);
    background: rgba(243, 186, 47, 0.05);
}

.feature-card .feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-details span {
    font-size: 0.875rem;
    color: var(--gray-300);
}

.bot-demo {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(20px);
}

.demo-header h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.command-examples {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.command-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    border: 1px solid rgba(243, 186, 47, 0.2);
}

.command-item code {
    color: var(--primary-yellow);
    font-family: 'Monaco', 'Menlo', monospace;
}

/* Tokenomics Section */
.tokenomics {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%) !important;
    position: relative;
    overflow: hidden;
}

.tokenomics .video-background {
    display: none !important;
}

/* Distribution Chart */
.distribution-chart {
    margin: 4rem 0;
}

.chart-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.pie-chart-container {
    display: flex;
    justify-content: center;
}

.pie-chart {
    width: 300px;
    height: 300px;
    transform: rotate(-90deg);
    filter: drop-shadow(0 0 20px rgba(243, 186, 47, 0.3));
}

.chart-title {
    font-size: 2rem;
    font-weight: 700;
    fill: var(--primary-yellow);
    font-family: var(--font-display);
}

.chart-subtitle {
    font-size: 0.875rem;
    fill: var(--gray-400);
    font-family: var(--font-primary);
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-dot.burned {
    background: #ff4444;
}

.legend-dot.vested {
    background: var(--primary-yellow);
}

.legend-dot.circulating {
    background: #10b981;
}

.legend-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.legend-label {
    font-weight: 600;
    color: white;
}

.legend-value {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Tokenomics Grid */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.tokenomics-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
}

.tokenomics-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 186, 47, 0.3);
    box-shadow: 0 10px 30px rgba(243, 186, 47, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tokenomics-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.card-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.card-percentage {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.tokenomics-card p {
    color: var(--gray-400);
    line-height: 1.6;
}

/* Tax Structure */
.tax-structure {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(243, 186, 47, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(243, 186, 47, 0.2);
}

.tax-structure h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 1rem;
}

.tax-intro {
    text-align: center;
    color: var(--gray-300);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.tax-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.phase-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all 0.3s ease;
}

.phase-card:hover {
    border-color: rgba(243, 186, 47, 0.3);
    background: rgba(0, 0, 0, 0.6);
}

.phase-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.phase-badge {
    display: inline-block;
    background: var(--primary-yellow);
    color: black;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.phase-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.phase-duration {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.phase-taxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tax-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.tax-label {
    color: var(--gray-300);
}

.tax-rate {
    font-weight: 600;
    color: var(--primary-yellow);
}

.community-vote {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.vote-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    width: 100%;
    justify-content: center;
}

.vote-icon {
    font-size: 1.25rem;
}

.vote-divider {
    font-weight: 600;
    color: var(--primary-yellow);
    margin: 0.5rem 0;
}

.phase-description {
    text-align: center;
    color: var(--gray-400);
    margin-top: 1rem;
    font-style: italic;
}

/* Contract Section */
.contract-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.token-details h3,
.trading-section h4 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.details-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label {
    color: var(--gray-400);
    font-weight: 500;
}

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

.trading-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.trading-buttons .btn {
    padding: 1rem;
    text-align: center;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contract-link {
    color: var(--primary-yellow);
    cursor: pointer;
    transition: all 0.3s ease;
}

.contract-link:hover {
    color: #ffd700;
}

@media (max-width: 768px) {
    .chart-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pie-chart {
        width: 250px;
        height: 250px;
    }

    .tax-phases {
        grid-template-columns: 1fr;
    }

    .contract-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trading-buttons {
        grid-template-columns: 1fr;
    }

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

    .tax-structure {
        padding: 2rem;
    }

    .chart-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Hide video on mobile for performance */
    .video-background video {
        display: none;
    }
}

.token-info h3 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
}

.info-grid {
    display: grid;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.info-label {
    color: var(--gray-400);
}

.info-value {
    color: white;
}

.contract-link {
    color: var(--primary-yellow);
    cursor: pointer;
}

.goals-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.goals-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trade-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Roadmap Section */
.roadmap {
    background: rgba(10, 10, 10, 0.8);
}

.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.phase {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    backdrop-filter: blur(20px);
    border-left: 4px solid var(--gray-600);
}

.phase.completed {
    border-left-color: var(--success-green);
}

.phase.current {
    border-left-color: var(--primary-yellow);
    background: rgba(243, 186, 47, 0.05);
}

.phase.upcoming {
    border-left-color: var(--accent-cyan);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.phase-number {
    width: 3rem;
    height: 3rem;
    background: var(--primary-yellow);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
}

.phase-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.phase-status {
    margin-left: auto;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.milestone-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.milestone-list li {
    padding: 0.75rem;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
}

.milestone-list li.completed {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success-green);
}

.milestone-list li.in-progress {
    background: rgba(243, 186, 47, 0.1);
    border: 1px solid var(--primary-yellow);
}

/* Whitepaper Section */
.whitepaper {
    background: rgba(26, 26, 26, 0.5);
    padding: 4rem 0;
}

.whitepaper-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.preview-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
}

.preview-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.preview-card p {
    color: var(--gray-300);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Telegram CTA Section */
.telegram-cta {
    background: rgba(243, 186, 47, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(243, 186, 47, 0.2);
}

.telegram-cta h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--gray-300);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Section Styles (Privacy, Terms, etc.) */
.page-section {
    padding: 8rem 0 4rem;
    background: var(--dark-bg);
    position: relative;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.page-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(243, 186, 47, 0.1);
    border: 1px solid var(--primary-yellow);
    border-radius: 50px;
    color: var(--primary-yellow);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.page-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    display: block;
    margin-bottom: 0.5rem;
}

.page-stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.content-section h2 {
    color: var(--primary-yellow);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(243, 186, 47, 0.2);
}

.content-section h2:first-of-type {
    margin-top: 2rem;
}

.content-section h3 {
    color: var(--primary-yellow);
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
}

.content-section h4 {
    color: white;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
}

.content-section p {
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.content-section ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.content-section li {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.content-section li strong {
    color: var(--primary-yellow);
    font-weight: 600;
}

/* Whitepaper Specific Styles */
.whitepaper-hero {
    background: linear-gradient(135deg, rgba(243, 186, 47, 0.15) 0%, rgba(0, 0, 0, 0.95) 70%);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(243, 186, 47, 0.2);
}

.whitepaper-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(243,186,47,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.wp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.wp-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(243, 186, 47, 0.15);
    border: 1px solid var(--primary-yellow);
    border-radius: 50px;
    color: var(--primary-yellow);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wp-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffffff 70%, var(--primary-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.wp-subtitle {
    font-size: 1.4rem;
    color: var(--gray-300);
    margin-bottom: 4rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.wp-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.wp-stat {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.wp-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 186, 47, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.wp-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    display: block;
}

.wp-stat-label {
    font-size: 0.95rem;
    color: var(--gray-400);
    font-weight: 500;
}

.wp-nav {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin: 4rem auto 6rem;
    position: sticky;
    top: 20px;
    z-index: 100;
    max-width: 1000px;
}

.wp-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.wp-nav-item {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    color: var(--gray-300) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.wp-nav-item:hover {
    background: rgba(243, 186, 47, 0.1);
    color: var(--primary-yellow) !important;
    transform: translateY(-2px);
    border-color: rgba(243, 186, 47, 0.3);
}

.wp-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.wp-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.wp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
}

.wp-section h2 {
    color: var(--primary-yellow) !important;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(243, 186, 47, 0.2);
    position: relative;
}

.wp-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-yellow);
}

.wp-section h3 {
    color: var(--primary-yellow) !important;
    font-size: 2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
}

.wp-section h4 {
    color: #ffffff !important;
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
    font-weight: 600;
}

.wp-section p {
    color: var(--gray-300) !important;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.15rem;
}

.wp-section ul {
    margin: 2rem 0;
    padding-left: 2rem;
}

.wp-section li {
    color: var(--gray-300) !important;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.wp-section li strong {
    color: var(--primary-yellow) !important;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(243, 186, 47, 0.1) 0%, rgba(243, 186, 47, 0.05) 100%);
    border: 1px solid rgba(243, 186, 47, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 3px 3px 0 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 186, 47, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h4 {
    color: var(--primary-yellow) !important;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-300) !important;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.tokenomics-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-yellow);
}

.tokenomics-card:hover {
    transform: translateY(-8px);
    border-color: rgba(243, 186, 47, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.tokenomics-card .card-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    display: block;
}

.tokenomics-card .card-label {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.tokenomics-card p {
    color: var(--gray-400) !important;
    font-size: 1rem;
    margin: 0;
}

.roadmap-phase {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-yellow);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.phase-badge {
    background: var(--primary-yellow);
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.phase-status {
    color: var(--primary-yellow);
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(135deg, rgba(243, 186, 47, 0.2) 0%, rgba(243, 186, 47, 0.05) 100%);
    border-radius: var(--border-radius-lg);
    padding: 5rem 3rem;
    text-align: center;
    margin: 5rem 0;
    border: 1px solid rgba(243, 186, 47, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(243, 186, 47, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-section h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    color: var(--primary-yellow) !important;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    color: var(--gray-300) !important;
}

@media (max-width: 768px) {
    .page-section { padding: 6rem 0 3rem; }
    .page-header { margin-bottom: 3rem; padding: 1rem 0; }
    .page-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .page-stat { padding: 1rem 0.75rem; }
    .page-content { padding: 0 1rem; }
    .content-section { padding: 2rem 1.5rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; gap: 1rem; }
    
    .wp-title { font-size: 2.5rem; }
    .wp-stats { grid-template-columns: repeat(2, 1fr); }
    .wp-nav-list { flex-direction: column; }
    .wp-content { padding: 0 1rem; }
    .wp-section { padding: 2.5rem 2rem; }
    .cta-section { padding: 3rem 2rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .phase-header { flex-direction: column; align-items: flex-start; }
}

.whitepaper-content {
    max-width: 1000px;
    margin: 0 auto;
}

.wp-navigation {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
}

.wp-nav-item {
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.wp-nav-item.active {
    color: var(--primary-yellow);
    border-bottom-color: var(--primary-yellow);
}

.wp-nav-item:hover {
    color: var(--primary-yellow);
}

.wp-sections {
    position: relative;
    min-height: 500px;
}

.wp-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.wp-section.active {
    display: block;
}

.wp-section h3 {
    color: var(--primary-yellow);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.wp-section h4 {
    color: var(--primary-yellow);
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
}

.wp-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.wp-section li {
    margin-bottom: 0.5rem;
    color: var(--gray-300);
}

.wp-download {
    text-align: center;
    margin-top: 3rem;
}

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

/* Community Section */
.community {
    background: rgba(10, 10, 10, 0.8);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.community-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: white;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.community-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-xl);
}

.community-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.community-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.community-cta {
    color: var(--primary-yellow);
    font-weight: 600;
    margin-top: 1rem;
    display: block;
}

.newsletter-signup {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(20px);
}

.newsletter-content h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: var(--gray-400);
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-main {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.logo-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.logo-tagline {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.footer-description {
    color: var(--gray-400);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--primary-yellow);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

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

.footer-contract {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
}

.footer-contract code {
    color: var(--primary-yellow);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    background: rgba(243, 186, 47, 0.1);
    border-radius: 4px;
}

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

/* Mobile Navigation Styles */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
        border-left: 1px solid rgba(243, 186, 47, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content,
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .community-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .wp-navigation {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

    .command-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .trade-buttons {
        justify-content: center;
    }

    .phase-header {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

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

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

    .feature-card,
    .community-card {
        padding: 1.5rem;
    }

    .newsletter-signup,
    .bot-demo {
        padding: 2rem;
    }

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

/* Copy to clipboard animation */
.copy-feedback {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    z-index: 10000;
    animation: copyFeedback 2s ease-in-out;
}

@keyframes copyFeedback {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    20% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    80% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
}

/* Loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 186, 47, 0.2), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
input:focus {
    outline: 2px solid var(--primary-yellow);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-yellow: #ffff00;
        --gray-400: #ffffff;
        --gray-300: #ffffff;
    }
}

/* Additional mobile menu overlay */
.nav-links::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-links.active::before {
    opacity: 1;
    visibility: visible;
}

/* Video background mobile optimization */
@media (max-width: 768px) {
    .video-background {
        display: none;
    }

    body {
        background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-black) 50%, var(--dark-bg) 100%);
    }
}

/* Enhanced mobile styles for better touch interaction */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        padding: 1rem 1.5rem;
    }

    .nav-link {
        font-size: 1.125rem;
        padding: 0.5rem;
    }

    .contract-address {
        font-size: 0.75rem;
        padding: 1rem;
        word-break: break-all;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 4rem 0 2rem;
    }

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

    .section-padding {
        padding: 3rem 0;
    }
}

/* Large screen optimizations */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

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

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

/* Print styles */
@media print {
    .video-background,
    .hamburger,
    .scroll-indicator,
    .btn-glow {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .section-title,
    .hero-title {
        color: black !important;
    }
}

/* ========================================
   BURN ANNOUNCEMENT SECTION - 2026 UPDATE
======================================== */
.burn-announcement {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0505 50%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.burn-card {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15) 0%, rgba(26, 26, 26, 0.95) 50%, rgba(243, 186, 47, 0.1) 100%);
    border: 2px solid rgba(255, 68, 68, 0.4);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(255, 68, 68, 0.2), 0 0 100px rgba(243, 186, 47, 0.1);
}

.burn-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.burn-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.burn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.9) 100%);
}

.burn-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.burn-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4444 0%, #ff6b35 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

.burn-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.fire-icon {
    display: inline-block;
    animation: flicker 1.5s ease-in-out infinite alternate;
}

@keyframes flicker {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.burn-subtitle {
    font-size: 1.1rem;
    color: var(--gray-300);
    margin-bottom: 2.5rem;
}

.burn-schedule {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.burn-event {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.25rem 1.75rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.burn-event.completed {
    border-color: rgba(255, 68, 68, 0.5);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.2);
}

.burn-event.upcoming {
    border-color: rgba(243, 186, 47, 0.5);
    box-shadow: 0 0 20px rgba(243, 186, 47, 0.2);
}

.burn-date {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffd700 100%);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    min-width: 65px;
}

.burn-date .day {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: black;
    line-height: 1;
}

.burn-date .month {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
}

.burn-details {
    text-align: left;
}

.burn-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff4444;
}

.burn-label {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.burn-status {
    font-size: 1.75rem;
}

.burn-divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff4444, var(--primary-yellow));
    border-radius: 2px;
}

.burn-results {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-icon {
    font-size: 1.25rem;
}

.result-text {
    font-size: 0.95rem;
    color: var(--gray-200);
}

.result-text strong {
    color: var(--primary-yellow);
}

.burn-footer {
    font-size: 0.95rem;
    color: var(--gray-400);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Simple Tax Structure Styles */
.tax-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.tax-highlight {
    background: rgba(243, 186, 47, 0.1);
    border: 2px solid var(--primary-yellow);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
}

.tax-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tax-icon {
    font-size: 3rem;
}

.tax-info {
    text-align: left;
}

.tax-rate-big {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-yellow);
    font-family: var(--font-display);
    line-height: 1;
}

.tax-desc {
    font-size: 1.1rem;
    color: var(--gray-300);
    font-weight: 600;
}

.tax-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tax-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--gray-200);
}

.check-icon {
    font-size: 1.1rem;
}

.no-marketing-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 1rem 1.5rem;
    border-radius: 50px;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-size: 1rem;
    font-weight: 600;
    color: #10b981;
}

/* Responsive burn section */
@media (max-width: 768px) {
    .burn-card {
        padding: 2rem 1.5rem;
    }
    
    .burn-title {
        font-size: 1.5rem;
    }
    
    .burn-schedule {
        flex-direction: column;
        gap: 1rem;
    }
    
    .burn-divider {
        width: 3px;
        height: 30px;
    }
    
    .burn-event {
        width: 100%;
        justify-content: center;
    }
    
    .burn-results {
        flex-direction: column;
        gap: 1rem;
    }
    
    .result-item {
        width: 100%;
        justify-content: center;
    }
    
    .tax-highlight {
        padding: 1.5rem;
    }
    
    .tax-main {
        flex-direction: column;
        text-align: center;
    }
    
    .tax-info {
        text-align: center;
    }
    
    .tax-rate-big {
        font-size: 2.5rem;
    }
}

/* About Video Showcase */
.about-video-showcase {
    margin-bottom: 2rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(243, 186, 47, 0.3);
    box-shadow: 0 0 30px rgba(243, 186, 47, 0.2);
}

.showcase-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
}

.video-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem 1rem 1rem;
    color: var(--primary-yellow);
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}