/* Fixed Width Design - No Responsive */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Auto-Scaling Layout */
html, body {
    width: 100%;
    min-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* GPU acceleration for animations */
.hero-logo-image,
.floating-icon,
.tiger-emoji,
.stars,
.twinkling,
.web3-grid {
    will-change: transform;
    transform: translateZ(0);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Web3 Enhanced Background System */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 210, 63, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(74, 20, 140, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a0033 25%, #2d1b69 50%, #1a0033 75%, #0a0a0a 100%);
    animation: gradientShift 30s ease-in-out infinite;
    z-index: -6;
    pointer-events: none;
}

/* Web3 Enhanced Background Elements */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ff6b35, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 210, 63, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #ff6b35, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 210, 63, 0.6), transparent),
        radial-gradient(1px 1px at 160px 20px, rgba(255, 107, 53, 0.4), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: starfield 200s linear infinite;
    z-index: -5;
}

.twinkling {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 30px 40px, rgba(255, 107, 53, 0.6), transparent),
        radial-gradient(1px 1px at 60px 80px, rgba(255, 210, 63, 0.8), transparent),
        radial-gradient(1px 1px at 100px 60px, rgba(255, 107, 53, 0.4), transparent);
    background-repeat: repeat;
    background-size: 300px 200px;
    animation: twinkling 100s linear infinite;
    z-index: -4;
}

/* Web3 Grid Background */
.web3-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: -3;
}

/* Blockchain Network Lines */
.blockchain-network {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
}

/* Floating Crypto Elements */
.crypto-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Enhanced Keyframes */
@keyframes starfield {
    from { transform: translateY(0px); }
    to { transform: translateY(-2000px); }
}

@keyframes twinkling {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

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

@keyframes gradientShift {
    0%, 100% { 
        background: 
            radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 210, 63, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 40% 60%, rgba(74, 20, 140, 0.2) 0%, transparent 50%),
            linear-gradient(135deg, #0a0a0a 0%, #1a0033 25%, #2d1b69 50%, #1a0033 75%, #0a0a0a 100%);
    }
    25% { 
        background: 
            radial-gradient(circle at 80% 30%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 20% 70%, rgba(255, 210, 63, 0.18) 0%, transparent 50%),
            radial-gradient(circle at 60% 20%, rgba(74, 20, 140, 0.25) 0%, transparent 50%),
            linear-gradient(135deg, #0a0a0a 0%, #2d1b69 25%, #4a148c 50%, #2d1b69 75%, #0a0a0a 100%);
    }
    50% { 
        background: 
            radial-gradient(circle at 60% 80%, rgba(255, 107, 53, 0.18) 0%, transparent 50%),
            radial-gradient(circle at 40% 20%, rgba(255, 210, 63, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(74, 20, 140, 0.15) 0%, transparent 50%),
            linear-gradient(135deg, #0a0a0a 0%, #4a148c 25%, #1a0033 50%, #4a148c 75%, #0a0a0a 100%);
    }
    75% { 
        background: 
            radial-gradient(circle at 30% 60%, rgba(255, 107, 53, 0.22) 0%, transparent 50%),
            radial-gradient(circle at 70% 40%, rgba(255, 210, 63, 0.16) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(74, 20, 140, 0.18) 0%, transparent 50%),
            linear-gradient(135deg, #0a0a0a 0%, #1a0033 25%, #2d1b69 50%, #1a0033 75%, #0a0a0a 100%);
    }
}

/* Web3 Pulse Animations */
@keyframes web3Pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes cryptoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}

@keyframes networkPulse {
    0%, 100% { stroke-dashoffset: 0; opacity: 0.3; }
    50% { stroke-dashoffset: -20; opacity: 0.8; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 0, 51, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    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;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
}

.logo-image:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.5));
}

.nav-logo .logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd23f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

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

.nav-link:hover {
    color: #ff6b35;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: #ff6b35;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ff6b35;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
}

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

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

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

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .nav-logo .logo-text {
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(26, 0, 51, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 107, 53, 0.3);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 12px;
        border: 1px solid transparent;
        background: rgba(255, 255, 255, 0.05);
        margin: 0.5rem 0;
        display: block;
    }
    
    .nav-link:hover,
    .nav-link.active {
        transform: translateY(0);
        background: rgba(255, 107, 53, 0.2);
        border-color: rgba(255, 107, 53, 0.5);
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile Nav Link Animation */
    .nav-link.slide-in {
        animation: slideInFromRight 0.3s ease forwards;
    }
    
    @keyframes slideInFromRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* Auto-Scaling Container */
.container {
    width: 1200px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Override all responsive containers */
.nav-container,
.hero-container {
    width: 1200px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive Container */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

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

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .nav-link,
    .btn,
    .cta-button,
    .primary-btn,
    .secondary-btn {
        min-height: 44px;
        min-width: 44px;
        padding: 0.75rem 1.5rem;
    }
    
    /* Remove hover effects on touch devices */
    .nav-link:hover,
    .btn:hover,
    .cta-button:hover {
        transform: none;
    }
    
    /* Add active states for touch feedback */
    .nav-link:active,
    .btn:active,
    .cta-button:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    /* Improve text readability */
    body {
        font-size: 16px;
        line-height: 1.6;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    /* Optimize button sizes */
    .btn,
    .cta-button,
    .primary-btn,
    .secondary-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
        min-height: 48px;
        min-width: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    /* Improve form inputs */
    input,
    textarea,
    select {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 1rem;
        border-radius: 12px;
        min-height: 48px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Optimize card layouts */
    .card,
    .feature-card,
    .nft-card {
        margin-bottom: 1.5rem;
        border-radius: 16px;
        padding: 1.5rem;
    }
    
    /* Improve spacing */
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    /* Mobile-specific gallery optimizations */
    .gallery-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .gallery-container::-webkit-scrollbar {
        display: none;
    }
    
    .gallery-track {
        display: flex;
        gap: 1rem;
        padding: 1rem;
    }
    
    .gallery-item {
        flex: 0 0 280px;
        height: 350px;
    }
    
    /* Mobile tokenomics layout */
    .tax-structure {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tax-section {
        padding: 1.5rem;
    }
    
    /* Mobile timeline */
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline-item {
        margin-bottom: 2rem;
    }
    
    .timeline-content {
        margin-left: 1rem;
    }
    
    /* Mobile FAQ */
    .faq-container {
        gap: 1rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    /* Mobile features grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Mobile about content */
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* NFT Page Mobile Optimizations */
    .nft-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .nft-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .nft-collection {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .nft-card {
        aspect-ratio: 1;
    }
    
    .mint-interface {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .quantity-controls {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .quantity-input {
        text-align: center;
        font-size: 1.2rem;
        padding: 1rem;
    }
    
    /* Swap Page Mobile Optimizations */
    .swap-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .swap-interface {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .swap-input-group {
        margin-bottom: 1.5rem;
    }
    
    .token-input {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .token-selector {
        min-width: 120px;
        padding: 0.75rem;
    }
    
    .swap-arrow {
        margin: 1rem 0;
        font-size: 1.5rem;
    }
    
    .swap-info {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .recent-transactions {
        margin-top: 2rem;
    }
    
    .transaction-item {
        padding: 1rem;
        margin-bottom: 0.5rem;
    }
    
    /* AI Page Mobile Optimizations */
    .ai-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .ai-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .generator-panel {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .suggestion-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .suggestion-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .ai-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .history-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .history-item {
        aspect-ratio: 1;
    }
    
    .carousel-slide {
        padding: 1rem;
    }
    
    .view-controls {
        gap: 0.5rem;
    }
    
    .filter-controls {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    /* Further optimize text sizes */
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-tagline {
        font-size: 1rem !important;
    }
    
    /* Optimize button layouts */
    .hero-buttons,
    .button-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn,
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    /* Optimize stats display */
    .hero-stats,
    .stats-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 107, 53, 0.2);
    }
    
    /* Optimize gallery for small screens */
    .gallery-item {
        flex: 0 0 250px;
        height: 300px;
    }
    
    /* Optimize forms */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Small screen specific optimizations */
    .container {
        padding: 0 1rem;
    }
    
    /* NFT small screen */
    .nft-collection {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nft-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* AI small screen */
    .ai-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .suggestion-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .suggestion-btn {
        padding: 1rem;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .ai-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .history-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Swap small screen */
    .swap-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Contract address mobile */
    .contract-address {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        font-size: 0.9rem;
        word-break: break-all;
    }
    
    /* Timeline mobile */
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    /* FAQ mobile */
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    /* Features mobile */
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
    }
    
    .nav-menu.active {
        width: 250px;
        padding: 4rem 1.5rem 2rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image,
    .hero-logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* WHITEPAPER PAGE STYLES */
.whitepaper-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.9) 0%, rgba(26, 0, 51, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.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(255,107,53,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInLeft 1s ease;
}

.hero-title .title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35 0%, #ffd23f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.hero-title .title-sub {
    display: block;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 2rem 0;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

.whitepaper-preview {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg);
    animation: float 6s ease-in-out infinite;
}

.preview-pages {
    position: relative;
}

.preview-page {
    width: 300px;
    height: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    position: relative;
}

.preview-page.page-2 {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: -1;
    opacity: 0.7;
    transform: scale(0.95);
}

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

.page-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #ffd23f 100%);
    border-radius: 8px;
}

.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.content-line {
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-bottom: 1rem;
}

.content-line.short {
    width: 60%;
}

.content-block {
    height: 100px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    margin-top: 2rem;
}

.content-chart {
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 210, 63, 0.1) 100%);
    border-radius: 8px;
    margin-bottom: 2rem;
    position: relative;
}

.content-chart::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #ff6b35;
    border-radius: 1px;
}

.preview-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

/* Table of Contents */
.toc-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.toc-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.toc-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.toc-item:hover::before {
    left: 100%;
}

.toc-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.toc-item.active {
    background: rgba(255, 107, 53, 0.15);
    border-color: #ff6b35;
}

.toc-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    min-width: 60px;
}

.toc-content h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.toc-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.toc-arrow {
    margin-left: auto;
    color: #ff6b35;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.toc-item:hover .toc-arrow {
    transform: translateX(5px);
}

/* Whitepaper Sections */
.whitepaper-section {
    padding: 6rem 0;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.whitepaper-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.whitepaper-section:nth-child(even) {
    background: rgba(0, 0, 0, 0.2);
}

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

.section-number {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 107, 53, 0.1);
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.section-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* Content Grids */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-text h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-text h3:first-child {
    margin-top: 0;
}

.content-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-list {
    list-style: none;
    padding: 0;
}

.highlight-list li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.highlight-list li::before {
    content: '🐅';
    position: absolute;
    left: 0;
    top: 0;
}

.highlight-list strong {
    color: #ff6b35;
}

/* Statistics Cards */
.content-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.overview-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.overview-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-10px);
}

.overview-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.overview-item h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.overview-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Relaunch Story */
.relaunch-story {
    margin-top: 4rem;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.relaunch-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.feature-item i {
    color: #ff6b35;
}

/* Tokenomics */
.tokenomics-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.token-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
}

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

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

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

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    word-break: break-all;
}

.tax-structure {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
}

.tax-breakdown {
    display: grid;
    gap: 2rem;
}

.tax-type h4 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.tax-items {
    display: grid;
    gap: 0.8rem;
}

.tax-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.tax-percentage {
    background: #ff6b35;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 50px;
    text-align: center;
}

.tax-description {
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
}

/* Mechanism Grid */
.mechanism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mechanism-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mechanism-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.mechanism-icon {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.mechanism-item h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.mechanism-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Architecture */
.architecture-overview {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.arch-item h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

.tech-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: 0.8rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
}

.tech-feature i {
    color: #ff6b35;
}

.security-list {
    display: grid;
    gap: 1.5rem;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.security-item i {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.security-item h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.security-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Roadmap Timeline */
.roadmap-timeline {
    position: relative;
    margin: 3rem 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff6b35, rgba(255, 107, 53, 0.3));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 107, 53, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-item.completed .timeline-marker {
    background: #ff6b35;
    border-color: #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.timeline-item.active .timeline-marker {
    background: #ffd23f;
    border-color: #ffd23f;
    box-shadow: 0 0 20px rgba(255, 210, 63, 0.5);
    animation: pulse 2s infinite;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateX(10px);
}

.timeline-date {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: #ff6b35;
    border-radius: 50%;
}

.timeline-item.completed li::before {
    content: '✅';
    background: none;
    font-size: 0.8rem;
    width: auto;
    height: auto;
    top: 0;
}

.timeline-item.active li::before {
    background: #ffd23f;
    content: '🔄';
    font-size: 0.8rem;
    width: auto;
    height: auto;
    top: 0;
}

.timeline-item:not(.completed):not(.active) li::before {
    content: '📋';
    background: none;
    font-size: 0.8rem;
    width: auto;
    height: auto;
    top: 0;
}

/* Governance */
.governance-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.governance-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.governance-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-10px);
}

.governance-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.governance-item h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.governance-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.community-stats {
    margin-top: 4rem;
}

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

/* Whitepaper Illustrations */
.whitepaper-illustration {
    margin: 2rem 0;
    text-align: center;
}

.section-illustration {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.section-illustration.large {
    max-width: 800px;
}

.section-illustration:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #ff6b35;
}

.illustration-caption {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.illustration-caption i {
    color: #ff6b35;
}

.section-illustration {
    cursor: pointer;
}

.section-illustration.loaded {
    animation: fadeIn 0.5s ease;
}

.section-illustration.error {
    opacity: 0.5;
    filter: grayscale(100%);
}

/* Image Lightbox */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-lightbox.show {
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.lightbox-caption {
    text-align: center;
    margin-top: 1rem;
    color: white;
}

.lightbox-caption h3 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.lightbox-caption p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: #ff6b35;
    transform: scale(1.1);
}

.lightbox-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.lightbox-action-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ffd23f 100%);
    border: none;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.lightbox-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* AI Image Generation */
.generate-image-section {
    margin: 2rem 0;
}

.btn-ai {
    background: linear-gradient(135deg, #ff6b35 0%, #ffd23f 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.btn-ai:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-ai:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.image-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.image-placeholder.large {
    min-height: 300px;
}

.image-placeholder:hover {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.placeholder-content {
    color: rgba(255, 255, 255, 0.6);
}

.placeholder-content i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    display: block;
}

.placeholder-content p {
    margin: 0;
    font-size: 1.1rem;
}

/* Generating State */
.generating-state {
    color: white;
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 107, 53, 0.3);
    border-top: 3px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 1rem auto;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #ffd23f);
    border-radius: 2px;
    animation: loading-progress 3s ease-in-out infinite;
}

@keyframes loading-progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Generated Image */
.generated-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.generated-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.image-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.generated-image-container:hover .image-actions {
    opacity: 1;
}

.image-action-btn {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-action-btn:hover {
    background: #ff6b35;
    transform: scale(1.1);
}

/* Error State */
.error-state {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.error-state i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    display: block;
}

/* Download Section */
.download-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 210, 63, 0.1) 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

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

.download-text h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.download-features {
    display: grid;
    gap: 1rem;
}

.download-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.download-features .feature-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    width: 20px;
}

.download-actions {
    text-align: center;
}

.btn.large {
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
}

.download-info {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Reading Progress */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #ffd23f);
    width: 0%;
    transition: width 0.3s ease;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 107, 53, 0.5);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-color: #4caf50;
}

.notification-error {
    border-color: #f44336;
}

.notification-info {
    border-color: #2196f3;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
}

.notification-close:hover {
    color: white;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: perspective(1000px) rotateY(-15deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(-15deg) translateY(-20px); }
}

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* AUTO-SCALING LAYOUT - DISABLE ALL RESPONSIVE DESIGN */
/* This section overrides all responsive styles above */

/* Force auto-scaling layout on all devices */
html, body {
    width: 100% !important;
    min-width: 1200px !important;
    margin: 0 auto !important;
    overflow-x: hidden !important;
}

/* Override all containers */
.container,
.nav-container,
.hero-container {
    width: 1200px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

/* Force desktop layout */
.hero-content {
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: center !important;
    text-align: left !important;
}

.hero-left {
    text-align: left !important;
}

.hero-stats {
    display: flex !important;
    flex-direction: row !important;
    gap: 2rem !important;
    justify-content: flex-start !important;
}

.hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem !important;
    justify-content: flex-start !important;
}

/* Force desktop navigation */
.nav-menu {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 2rem !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    padding: 0 !important;
    right: auto !important;
}

.mobile-menu-toggle {
    display: none !important;
}

.mobile-menu-overlay {
    display: none !important;
}

/* Force desktop grid layouts */
.features-grid,
.about-content,
.nft-collection,
.ai-showcase,
.history-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
}

.tax-structure {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
}

/* Force desktop gallery */
.gallery-track {
    display: flex !important;
    gap: 1rem !important;
    padding: 2rem !important;
}

.gallery-item {
    flex: 0 0 300px !important;
    height: 400px !important;
    min-width: 300px !important;
}

/* Force desktop forms */
.form-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem !important;
}

.suggestion-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
    gap: 0.8rem !important;
}

/* Force desktop buttons */
.btn,
.cta-button,
.primary-btn,
.secondary-btn {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    min-height: auto !important;
    min-width: auto !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
}

/* Force desktop text sizes */
.section-title {
    font-size: 2.5rem !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
}

.section-subtitle {
    font-size: 1.2rem !important;
    text-align: center !important;
    margin-bottom: 3rem !important;
}

.hero-title {
    font-size: 3rem !important;
    text-align: left !important;
}

.hero-tagline {
    font-size: 1.2rem !important;
}

/* Force desktop contract address */
.contract-address {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    text-align: center !important;
    font-size: 1rem !important;
    word-break: break-all !important;
}

/* Force desktop timeline */
.timeline-content h3 {
    font-size: 1.5rem !important;
}

.timeline-content p {
    font-size: 1rem !important;
}

/* Force desktop FAQ */
.faq-question h3 {
    font-size: 1.2rem !important;
}

/* Force FAQ display */
.faq {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.faq-container {
    display: block !important;
    visibility: visible !important;
}

.faq-item {
    display: block !important;
    visibility: visible !important;
    margin-bottom: 1rem !important;
}

.faq-question {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.faq-answer {
    display: block !important;
    visibility: visible !important;
}

.faq-item:first-child .faq-answer {
    max-height: 200px !important;
    padding: 1.5rem 2rem !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

.faq-item.active .faq-answer {
    max-height: 200px !important;
    padding: 1.5rem 2rem !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

/* Force desktop features */
.feature-card h3 {
    font-size: 1.5rem !important;
}

.feature-card p {
    font-size: 1rem !important;
}

/* Disable all mobile optimizations */
.mobile-optimized * {
    all: unset !important;
}

.reduced-animations * {
    animation-duration: initial !important;
    transition-duration: initial !important;
}

.reduced-animations .stars,
.reduced-animations .twinkling,
.reduced-animations .web3-grid,
.reduced-animations .crypto-elements {
    display: block !important;
}

/* Force show all background elements */
.stars,
.twinkling,
.web3-grid,
.crypto-elements,
.blockchain-network {
    display: block !important;
}

/* Performance optimizations for low-end devices */
.reduced-animations * {
    animation-duration: 0.3s !important;
    transition-duration: 0.3s !important;
}

.reduced-animations .stars,
.reduced-animations .twinkling,
.reduced-animations .web3-grid,
.reduced-animations .crypto-elements {
    display: none !important;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .stars,
    .twinkling,
    .web3-grid,
    .crypto-elements {
        animation: none !important;
    }
}

/* Intersection Observer animations */
.about-card,
.feature-card,
.timeline-item,
.faq-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-card.animate-in,
.feature-card.animate-in,
.timeline-item.animate-in,
.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Image loading optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"].lazy-loaded {
    opacity: 1;
}

/* Gallery image specific styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Image error states */
.image-loading {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.3), rgba(255, 210, 63, 0.3));
    background-size: 400% 400%;
    animation: imageLoadingGradient 2s ease infinite;
    border-radius: 12px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-error,
.image-placeholder {
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.1);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes imageLoadingGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Critical resource hints */
.preload-hint {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 210, 63, 0.1) 0%, transparent 70%);
    animation: rotate 25s linear infinite reverse;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

/* Hero Left Side */
.hero-left {
    text-align: left;
    animation: fadeInLeft 1s ease;
}

.hero-left .tiger-mascot {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: flex-start;
}

.hero-left .mascot-container {
    justify-content: flex-start;
}

.hero-left .hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-align: left;
}

.hero-left .hero-tagline {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-left .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-align: left;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.hero-left .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

/* Hero Right Side */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

.hero-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    position: relative;
    z-index: 3;
}

.hero-logo-image {
    height: 300px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.5));
    animation: logoFloat 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hero-logo-image:hover {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 0 50px rgba(255, 107, 53, 0.8));
}

.logo-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    animation: floatAround 8s ease-in-out infinite;
    opacity: 0.8;
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.floating-icon:nth-child(4) {
    bottom: 10%;
    right: 15%;
    animation-delay: 6s;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-15px) rotate(270deg); }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tiger Mascot */
.tiger-mascot {
    position: relative;
    margin-bottom: 2rem;
}

.mascot-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.tiger-emoji {
    font-size: 6rem;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
    cursor: pointer;
    transition: all 0.3s ease;
}

.tiger-emoji:hover {
    transform: scale(1.1) rotate(10deg);
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.8));
}

.mascot-speech-bubble {
    background: rgba(255, 255, 255, 0.95);
    color: #2d1b69;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    position: relative;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
    opacity: 0;
    transform: translateX(20px);
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.mascot-speech-bubble p {
    margin: 0;
    font-size: 1rem;
}

.bubble-tail {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid rgba(255, 255, 255, 0.95);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0; }
    50% { transform: translateY(-10px) translateX(0px); opacity: 1; }
    100% { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Global gradient text */
.gradient-text {
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd23f, #ff6b35);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Global tagline items */
.tagline-item {
    display: inline-block;
    margin: 0 0.5rem;
    color: #ffd23f;
    text-shadow: 0 0 10px rgba(255, 210, 63, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.tagline-item:nth-child(2) { animation-delay: 0.5s; }
.tagline-item:nth-child(3) { animation-delay: 1s; }

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(255, 210, 63, 0.5); }
    to { text-shadow: 0 0 20px rgba(255, 210, 63, 0.8), 0 0 30px rgba(255, 210, 63, 0.4); }
}

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

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #ff6b35;
    border-bottom: 2px solid #ff6b35;
    transform: rotate(45deg);
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b35, #ffd23f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Tiger Gallery Section */
.tiger-gallery {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.9) 0%, rgba(45, 27, 105, 0.8) 50%, rgba(74, 20, 140, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.tiger-gallery::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(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

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

.gallery-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1rem;
    padding: 2rem;
}

.gallery-item {
    min-width: 300px;
    height: 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(255, 210, 63, 0.1));
}

.gallery-item:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: brightness(0.8) saturate(1.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1) saturate(1.4);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd23f;
    text-shadow: 0 0 10px rgba(255, 210, 63, 0.5);
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.gallery-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.gallery-btn:active {
    transform: scale(0.95);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

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

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

.about-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd23f;
}

.about-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics {
    padding: 6rem 0;
}

.tokenomics-content {
    display: grid;
    gap: 3rem;
}

.contract-info {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.contract-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd23f;
}

.contract-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: #ff6b35;
    word-break: break-all;
}

.copy-btn {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid #ff6b35;
    border-radius: 8px;
    color: #ff6b35;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
}

.copy-btn:hover {
    background: rgba(255, 107, 53, 0.4);
    transform: scale(1.1);
}

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

.tax-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.tax-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd23f;
}

.tax-rate {
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.tax-breakdown {
    margin-top: 2rem;
}

.tax-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tax-item:last-child {
    border-bottom: none;
}

.tax-label {
    color: rgba(255, 255, 255, 0.8);
}

.tax-percent {
    color: #ff6b35;
    font-weight: 700;
}

/* Roadmap Section */
.roadmap {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.3) 0%, rgba(26, 0, 51, 0.5) 100%);
    position: relative;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ff6b35, #ffd23f, #ff6b35);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin: 3rem 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #ffd23f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    z-index: 2;
}

.timeline-item.completed .timeline-marker {
    background: linear-gradient(45deg, #4caf50, #8bc34a);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

.timeline-item.active .timeline-marker {
    background: linear-gradient(45deg, #ff6b35, #ffd23f);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.8), 0 0 50px rgba(255, 107, 53, 0.3); }
    100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    width: 45%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-content:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
}

.timeline-content h3 {
    color: #ffd23f;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #ffd23f;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.1);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
}

.feature-card h3 {
    color: #ffd23f;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.8) 0%, rgba(45, 27, 105, 0.6) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.1);
}

.faq-question h3 {
    color: #ffd23f;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #ff6b35;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
}

.faq-item:first-child .faq-answer {
    max-height: 200px !important;
    padding: 1.5rem 2rem !important;
    opacity: 1 !important;
}

.faq-item:first-child {
    background: rgba(255, 107, 53, 0.1) !important;
    border-left: 4px solid #ff6b35 !important;
}

.faq-item:first-child .faq-question {
    color: #ff6b35 !important;
}

.faq-item:first-child .faq-question i {
    transform: rotate(180deg) !important;
    color: #ff6b35 !important;
}

.faq-item.active .faq-answer {
    max-height: 200px !important;
    padding: 1.5rem 2rem !important;
    opacity: 1 !important;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* NFT Section */
.nft-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.3) 0%, rgba(26, 0, 51, 0.5) 100%);
    position: relative;
}

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

.nft-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nft-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.nft-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    margin-bottom: 0.5rem;
}

.nft-stat .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

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

.nft-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.nft-card.featured {
    border: 2px solid #ffd23f;
    box-shadow: 0 0 30px rgba(255, 210, 63, 0.3);
}

.nft-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.nft-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.nft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.nft-card:hover .nft-image img {
    transform: scale(1.1);
}

.nft-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.nft-rarity {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nft-rarity.common {
    background: rgba(128, 128, 128, 0.9);
    color: white;
}

.nft-rarity.uncommon {
    background: rgba(30, 255, 0, 0.9);
    color: black;
}

.nft-rarity.rare {
    background: rgba(0, 112, 255, 0.9);
    color: white;
}

.nft-rarity.epic {
    background: rgba(163, 53, 238, 0.9);
    color: white;
}

.nft-rarity.legendary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: black;
}

.nft-info {
    padding: 1.5rem;
}

.nft-info h3 {
    color: #ffd23f;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.nft-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.nft-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
}

.btn-mint {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-mint:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.nft-mint-section {
    margin-top: 4rem;
    text-align: center;
}

.mint-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.mint-container h3 {
    color: #ffd23f;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mint-container p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.mint-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1rem;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: rgba(255, 107, 53, 0.4);
    transform: scale(1.1);
}

.quantity {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd23f;
    min-width: 50px;
    text-align: center;
}

.total-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b35;
}

.mint-button {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* SWAP Section */
.swap-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.8) 0%, rgba(45, 27, 105, 0.6) 100%);
}

.swap-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.swap-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.swap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.swap-header h3 {
    color: #ffd23f;
    font-size: 1.5rem;
    font-weight: 700;
}

.swap-settings {
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.swap-settings:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ff6b35;
}

.token-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.token-input-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.balance {
    cursor: pointer;
    transition: color 0.3s ease;
}

.balance:hover {
    color: #ff6b35;
}

.input-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.token-amount {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    outline: none;
}

.token-amount::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.token-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.token-selector:hover {
    background: rgba(255, 255, 255, 0.15);
}

.token-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.swap-arrow {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.swap-arrow i {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swap-arrow i:hover {
    background: rgba(255, 107, 53, 0.3);
    transform: rotate(180deg);
}

.swap-info {
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.swap-rate {
    text-align: center;
    margin-bottom: 1rem;
    color: #ffd23f;
    font-weight: 600;
}

.swap-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.green {
    color: #4ade80 !important;
}

.swap-button {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.swap-info-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    height: fit-content;
}

.swap-info-panel h4 {
    color: #ffd23f;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.swap-info-panel ul {
    list-style: none;
    margin-bottom: 2rem;
}

.swap-info-panel li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.swap-info-panel li i {
    color: #4ade80;
}

.quick-amounts h5 {
    color: #ffd23f;
    margin-bottom: 1rem;
}

.amount-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.amount-btn {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #ff6b35;
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.amount-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    transform: scale(1.05);
}

/* NFT Hero Section */
.nft-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.4) 0%, rgba(26, 0, 51, 0.6) 100%);
}

.nft-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nft-hero-left {
    animation: fadeInLeft 1s ease;
}

.nft-hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.nft-hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.nft-hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature-item i {
    color: #ff6b35;
    font-size: 1.2rem;
}

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

.nft-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

.nft-showcase {
    position: relative;
}

.showcase-nft {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    animation: float 4s ease-in-out infinite;
}

.showcase-nft img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

/* NFT Stats Section */
.nft-stats-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

/* NFT Collection */
.nft-collection {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.5) 0%, rgba(74, 20, 140, 0.3) 100%);
}

.collection-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-color: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

/* Mint Section Enhancements */
.nft-mint-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.mint-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.mint-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-nft {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.preview-nft img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.preview-rarity {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

.mint-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mint-form h3 {
    color: #ffd23f;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.mint-form p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.price-breakdown {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.price-row.total {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.8rem;
    font-weight: 700;
    color: #ff6b35;
    font-size: 1.1rem;
}

.mint-info {
    text-align: center;
    margin-top: 1rem;
}

.mint-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Swap Hero Section */
.swap-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.8) 0%, rgba(45, 27, 105, 0.6) 100%);
}

.swap-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.swap-hero-left {
    animation: fadeInLeft 1s ease;
}

.swap-hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.swap-hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.swap-hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.swap-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

.swap-preview {
    position: relative;
}

.preview-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    text-align: center;
}

.token-pair {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.token-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.token-icon-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swap-arrow-large {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.live-rate {
    color: #ffd23f;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Swap Main Section */
.swap-main {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.3) 0%, rgba(26, 0, 51, 0.5) 100%);
}

/* Settings Panel */
.settings-panel {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: none;
}

.settings-panel.active {
    display: block;
}

.setting-item {
    margin-bottom: 1.5rem;
}

.setting-item label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.slippage-options {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.slippage-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slippage-btn.active,
.slippage-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
    color: #ff6b35;
}

.custom-slippage {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
    width: 80px;
    outline: none;
}

.deadline-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.deadline-input input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
    width: 80px;
    outline: none;
}

/* Enhanced Token Input */
.token-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.token-symbol {
    font-weight: 700;
    color: white;
}

.token-name {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.token-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.action-btn {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #ff6b35;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(255, 107, 53, 0.3);
}

/* Market Info */
.info-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-section:last-child {
    border-bottom: none;
}

.info-section h4,
.info-section h5 {
    color: #ffd23f;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.market-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.benefits-list li i {
    color: #4ade80;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.badge i {
    color: #ff6b35;
}

/* Recent Transactions */
.recent-transactions {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.transactions-table {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1.5fr 0.5fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    align-items: center;
}

.table-header {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    color: #ffd23f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.table-row:last-child {
    border-bottom: none;
}

.swap-type {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.swap-type.buy {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.swap-type.sell {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.tx-link {
    color: #ff6b35;
    transition: all 0.3s ease;
}

.tx-link:hover {
    color: #ffd23f;
    transform: scale(1.1);
}

/* Token Modal */
.token-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.95) 0%, rgba(45, 27, 105, 0.95) 100%);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

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

.modal-header h3 {
    color: #ffd23f;
    margin: 0;
}

.close {
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff6b35;
}

.token-search {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.token-search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    outline: none;
    font-size: 1rem;
}

.token-search input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.token-list {
    max-height: 300px;
    overflow-y: auto;
}

.token-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.token-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.token-option img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.token-details {
    display: flex;
    flex-direction: column;
}

.token-details .symbol {
    font-weight: 700;
    color: white;
}

.token-details .name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* AI Hero Section */
.ai-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.8) 0%, rgba(74, 20, 140, 0.6) 100%);
}

.ai-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ai-hero-left {
    animation: fadeInLeft 1s ease;
}

.ai-hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.ai-hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.ai-hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.ai-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

.ai-showcase {
    position: relative;
    width: 400px;
    height: 400px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    height: 100%;
}

.showcase-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: float 6s ease-in-out infinite;
}

.showcase-item:nth-child(2) {
    animation-delay: -1.5s;
}

.showcase-item:nth-child(3) {
    animation-delay: -3s;
}

.showcase-item:nth-child(4) {
    animation-delay: -4.5s;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-overlay span {
    font-size: 0.9rem;
    font-weight: 600;
}

.ai-glow-effect {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

/* AI Generator Section */
.ai-generator {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.5) 0%, rgba(45, 27, 105, 0.3) 100%);
}

.generator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.generator-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffd23f;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    line-height: 1.5;
    resize: vertical;
    outline: none;
    transition: all 0.3s ease;
}

.form-group textarea:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.prompt-suggestions {
    margin-top: 1rem;
}

.suggestion-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.suggestion-label {
    color: #ffd23f;
    font-size: 1rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.random-meme-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border: none;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.random-meme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.suggestion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.8rem;
}

.suggestion-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: white;
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(5px);
}

.suggestion-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group select:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.form-group select option {
    background: #2d1b69;
    color: white;
}

.quality-slider {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.quality-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    cursor: pointer;
}

.quality-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.quality-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.advanced-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.option-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ff6b35;
}

.option-item label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    cursor: pointer;
    margin: 0;
}

.generation-controls {
    text-align: center;
    margin-top: 2rem;
}

.generate-btn {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    min-width: 200px;
}

.generation-info {
    margin-top: 1rem;
}

.generation-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Result Panel */
.result-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.result-container {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-state {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.placeholder-content i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.placeholder-content h3 {
    color: #ffd23f;
    margin-bottom: 1rem;
}

/* Loading State */
.loading-state {
    text-align: center;
    width: 100%;
}

.ai-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loading-brain {
    font-size: 4rem;
    color: #ff6b35;
    animation: pulse 2s infinite;
}

.loading-text h3 {
    color: #ffd23f;
    margin-bottom: 0.5rem;
}

.loading-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.loading-bar {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 3px;
    animation: loading-progress 3s ease-in-out infinite;
}

@keyframes loading-progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Result State */
.result-state {
    width: 100%;
}

.generated-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.generated-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.generated-image:hover .image-overlay {
    opacity: 1;
}

.image-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(255, 107, 53, 0.8);
    transform: scale(1.1);
}

.result-info h4 {
    color: #ffd23f;
    margin-bottom: 1rem;
}

.result-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.result-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stat {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.stat:last-child {
    border-bottom: none;
}

/* AI Gallery Section */
.ai-gallery {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    color: #ffd23f;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.overlay-actions {
    display: flex;
    gap: 0.5rem;
}

.overlay-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.overlay-btn:hover {
    background: rgba(255, 107, 53, 0.8);
}

.gallery-load-more {
    text-align: center;
}

/* Generated History Section */
.generated-history {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.8) 0%, rgba(45, 27, 105, 0.5) 100%);
}

.history-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.view-controls {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
    color: #ff6b35;
}

.filter-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-controls select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    outline: none;
}

.filter-controls select option {
    background: #2d1b69;
    color: white;
}

.clear-btn {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-btn:hover {
    background: rgba(239, 68, 68, 0.3);
}

/* History Grid */
.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    min-height: 200px;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.empty-state i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: #ffd23f;
    margin-bottom: 1rem;
}

.history-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.history-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.3);
}

.history-item-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.history-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.history-item:hover .history-item-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.history-item:hover .image-overlay {
    opacity: 1;
}

.image-actions {
    display: flex;
    gap: 0.5rem;
}

.image-action-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-action-btn:hover {
    background: rgba(255, 107, 53, 0.8);
    transform: scale(1.1);
}

.history-item-info {
    padding: 1.5rem;
}

.history-item-prompt {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.history-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.like-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.like-btn:hover,
.like-btn.liked {
    color: #ff6b35;
}

/* History Carousel */
.history-carousel {
    position: relative;
    margin: 2rem 0;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.carousel-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-btn:hover {
    background: rgba(255, 107, 53, 0.8);
}

.carousel-btn.prev {
    left: 1rem;
}

.carousel-btn.next {
    right: 1rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ff6b35;
    transform: scale(1.2);
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.pagination-info {
    color: rgba(255, 255, 255, 0.8);
}

.pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.page-btn:hover,
.page-btn.active {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
    color: #ff6b35;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-ellipsis {
    color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem;
}

/* AI Stats Section */
.ai-stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.3) 0%, rgba(26, 0, 51, 0.5) 100%);
}

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

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

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd23f;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Community Section */
.community {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.social-link.telegram:hover {
    border-color: #0088cc;
    box-shadow: 0 15px 30px rgba(0, 136, 204, 0.3);
}

.social-link.twitter:hover {
    border-color: #1da1f2;
    box-shadow: 0 15px 30px rgba(29, 161, 242, 0.3);
}

.social-icon {
    font-size: 3rem;
    color: #ff6b35;
}

.social-link.telegram .social-icon {
    color: #0088cc;
}

.social-link.twitter .social-icon {
    color: #1da1f2;
}

.social-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.social-info p {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.5));
}

.footer-logo .logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd23f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
}

.footer-text p:first-child {
    font-weight: 600;
    color: #ffd23f;
    margin-bottom: 0.5rem;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transform: translateX(400px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.notification.show {
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    /* Logo responsive */
    .logo-image {
        height: 35px;
    }
    
    .hero-logo-image {
        height: 80px;
    }
    
    .footer-logo-image {
        height: 40px;
    }
    
    .nav-logo .logo-text,
    .footer-logo .logo-text {
        font-size: 1.2rem;
    }
    
    /* Hero responsive */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-left .tiger-mascot {
        justify-content: center;
    }
    
    .hero-left .mascot-container {
        justify-content: center;
    }
    
    .hero-left .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-left .hero-tagline {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-left .hero-description {
        text-align: center;
        font-size: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-left .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-logo-image {
        height: 200px;
    }
    
    .logo-glow-effect {
        width: 300px;
        height: 300px;
    }
    
    .floating-icon {
        font-size: 1.5rem;
    }
    
    /* Gallery responsive */
    .gallery-item {
        min-width: 250px;
        height: 300px;
    }
    
    .gallery-track {
        padding: 1rem;
    }
    
    .gallery-controls {
        margin-top: 1rem;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .tax-structure {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }
    
    .contract-address {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .notification {
        right: 1rem;
        left: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .tiger-emoji {
        font-size: 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .tax-rate {
        font-size: 2rem;
    }
    
    /* Gallery mobile */
    .gallery-item {
        min-width: 200px;
        height: 250px;
    }
    
    .gallery-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .nav-menu {
        gap: 0.3rem;
    }
    
    .nav-link {
        font-size: 0.6rem;
    }
    
    /* Logo mobile */
    .logo-image {
        height: 30px;
    }
    
    .hero-logo-image {
        height: 60px;
    }
    
    .footer-logo-image {
        height: 35px;
    }
    
    .nav-logo .logo-text,
    .footer-logo .logo-text {
        font-size: 1rem;
    }
    
    /* Hero mobile */
    .hero-left .hero-title {
        font-size: 2rem;
    }
    
    .hero-left .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-logo-image {
        height: 150px;
    }
    
    .logo-glow-effect {
        width: 250px;
        height: 250px;
    }
    
    .floating-icon {
        font-size: 1.2rem;
    }
    
    /* NFT mobile */
    .nft-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nft-image {
        height: 250px;
    }
    
    .mint-container {
        padding: 1.5rem;
    }
    
    .quantity-selector {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    /* SWAP mobile */
    .swap-card {
        padding: 1.5rem;
    }
    
    .token-input {
        padding: 1rem;
    }
    
    .token-amount {
        font-size: 1.2rem;
    }
    
    .amount-buttons {
        grid-template-columns: 1fr;
    }
    
    /* Mascot responsive */
    .mascot-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .mascot-speech-bubble {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
    
    /* Timeline responsive */
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
    }
    
    /* Features responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    /* FAQ responsive */
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.5rem;
    }
    
    /* NFT responsive */
    .nft-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .nft-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .mint-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    /* SWAP responsive */
    .swap-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .swap-info-panel {
        order: -1;
    }
}

/* ===== SIMPLE FAQ STYLES - ALWAYS VISIBLE ===== */
.faq-section {
    padding: 5rem 0 !important;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(255, 107, 53, 0.05)) !important;
    position: relative;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
}

.simple-faq-container {
    max-width: 800px !important;
    margin: 0 auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.simple-faq-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 107, 53, 0.2) !important;
    border-radius: 15px !important;
    margin-bottom: 2rem !important;
    padding: 2rem !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.simple-faq-item:hover {
    background: rgba(255, 107, 53, 0.1) !important;
    border-color: rgba(255, 107, 53, 0.4) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2) !important;
}

.simple-faq-question {
    color: #ff6b35 !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin: 0 0 1rem 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.simple-faq-answer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.simple-faq-answer p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Special styling for first FAQ item */
.simple-faq-item:first-child {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 210, 63, 0.1)) !important;
    border: 2px solid rgba(255, 107, 53, 0.4) !important;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3) !important;
}

.simple-faq-item:first-child .simple-faq-question {
    color: #ffd23f !important;
    font-size: 1.5rem !important;
}

/* ===== ENHANCED ROADMAP STYLES ===== */
/* Roadmap Goals Styling */
.roadmap-goals {
    margin: 1.5rem 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
}

.goal {
    padding: 0.8rem 1.2rem !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border-left: 4px solid transparent !important;
    margin: 0 !important;
}

.goal.completed {
    background: rgba(76, 175, 80, 0.15) !important;
    border-left-color: #4CAF50 !important;
    color: #81C784 !important;
}

.goal.future {
    background: rgba(255, 107, 53, 0.1) !important;
    border-left-color: #ff6b35 !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.goal:hover {
    transform: translateX(5px) !important;
    background: rgba(255, 107, 53, 0.2) !important;
}

/* Enhanced timeline content for new roadmap */
.timeline-content h3 {
    color: #ffd23f !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
}

.timeline-status {
    display: inline-block !important;
    background: linear-gradient(135deg, #ff6b35, #ffd23f) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-top: 1rem !important;
}
