/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #ffffff;
    overflow-x: hidden;
    background: #0a0a0a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    will-change: scroll-position;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    transition: opacity 1s ease-in-out;
    will-change: opacity;
    backface-visibility: hidden;
}

/* Mobile video optimization */
@media (max-width: 768px) {
    .video-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.75) 0%,
        rgba(15, 15, 15, 0.65) 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
    /* Ultra-fine dithering/film grain effect */
    background-image: 
        radial-gradient(circle at 0.5px 0.5px, rgba(255, 255, 255, 0.08) 0.5px, transparent 0),
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 0.5px, transparent 0),
        radial-gradient(circle at 1.5px 1.5px, rgba(255, 255, 255, 0.02) 0.5px, transparent 0);
    background-size: 3px 3px, 6px 6px, 12px 12px;
    background-position: 0 0, 1.5px 1.5px, 3px 3px;
    animation: filmGrain 8s linear infinite;
}

@keyframes filmGrain {
    0%, 100% { 
        background-position: 0 0, 1.5px 1.5px, 3px 3px;
    }
    25% { 
        background-position: 1px 1px, 2.5px 2.5px, 4px 4px;
    }
    50% { 
        background-position: 2px 2px, 0.5px 0.5px, 2px 2px;
    }
    75% { 
        background-position: 1.5px 1.5px, 3px 3px, 1px 1px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0, 255, 157, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    height: clamp(60px, 8vw, 90px);
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.4));
    transition: all 0.3s ease;
    margin-top: 10px;
}

.nav-logo:hover {
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.6));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 2rem 0;
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp 1.2s ease-out;
    z-index: 1;
}

.hero-logo {
    height: clamp(120px, 20vw, 300px);
    width: auto;
    margin-bottom: -1rem;
    filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.6));
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.6));
    }
    to {
        filter: drop-shadow(0 0 60px rgba(255, 107, 53, 0.9));
    }
}

.hero-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 0.3rem;
    margin-top: -0.5rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-description {
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    margin-bottom: 0.8rem;
    margin-top: -0.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-shadow:
        -1px -1px 0 black,
         1px -1px 0 black,
        -1px  1px 0 black,
         1px  1px 0 black;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 18px 36px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    min-width: 180px;
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.4s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(255, 107, 53, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Sections */
.section {
    padding: clamp(60px, 12vw, 120px) 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: clamp(3rem, 8vw, 5rem);
    background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: 1px;
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.5)) drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.6));
    line-height: 1.3;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
}

/* Presale Section */
.presale-hero {
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    position: relative;
}

.presale-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.presale-header {
    text-align: center;
    margin-bottom: 4rem;
}

.presale-tagline {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: 1rem;
    letter-spacing: 1px;
}

.presale-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.presale-left, .presale-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.countdown-container {
    text-align: center;
}

.countdown-container h3 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 16px;
    padding: 1.8rem 1.2rem;
    min-width: 110px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.countdown-value {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 900;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.presale-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-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;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.stat-card.highlight {
    border: 2px solid rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.05);
    animation: pulse 2s infinite;
}

.stat-card.bonus-card {
    border: 2px solid rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.05);
    animation: bonus-pulse 1.5s infinite;
}

@keyframes bonus-pulse {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 50px rgba(255, 215, 0, 0.6); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 0 50px rgba(255, 107, 53, 0.5); }
}

.stat-icon {
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    font-weight: 700;
    color: #ff6b35;
    font-family: 'Orbitron', monospace;
}

.stat-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.stat-value {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-bonus {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: glow-text 2s ease-in-out infinite alternate;
}

@keyframes glow-text {
    from { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

.stat-live {
    color: #00ff9d;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: live-pulse 1.5s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.stat-live::before {
    content: '●';
    color: #00ff9d;
    animation: live-dot 2s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes live-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.presale-address-container {
    text-align: center;
    margin-bottom: 3rem;
}

.address-header {
    margin-bottom: 2rem;
}

.address-header h3 {
    font-size: clamp(2rem, 6vw, 2.8rem);
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: glow-header 3s ease-in-out infinite alternate;
}

@keyframes glow-header {
    from { 
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 107, 53, 0.4);
    }
    to { 
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 50px rgba(255, 107, 53, 0.6);
    }
}

.address-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0;
}

.address-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.address-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    animation: address-glow 2s infinite;
}

@keyframes address-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.address-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.address-text {
    font-family: 'Orbitron', monospace;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: #ffffff;
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    word-break: break-all;
    width: 100%;
    text-align: center;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.copy-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 
        0 6px 20px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Rajdhani', sans-serif;
}

.copy-btn:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 30px rgba(255, 107, 53, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.participation-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.info-icon {
    font-size: 0.7rem;
    font-weight: 700;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 30px;
    text-align: center;
}

.info-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.how-it-works {
    text-align: center;
}

.how-it-works h3 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.step:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 
        0 20px 40px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 
        0 4px 15px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Orbitron', monospace;
}

.step-content h4 {
    color: #ffffff;
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Grid Layouts */
.tokenomics-grid, .stickers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tokenomics-card, .sticker-pack, .contribute-card, .brand-item, .doc-category {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tokenomics-card::before, .sticker-pack::before, .contribute-card::before, .brand-item::before, .doc-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tokenomics-card:hover, .sticker-pack:hover, .contribute-card:hover, .brand-item:hover, .doc-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 157, 0.15);
    border-color: rgba(0, 255, 157, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.tokenomics-card:hover::before, .sticker-pack:hover::before, .contribute-card:hover::before, .brand-item:hover::before, .doc-category:hover::before {
    opacity: 1;
}

.tokenomics-card h3, .sticker-pack h3, .contribute-card h3, .brand-item h3, .doc-category h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: clamp(1.4rem, 4vw, 1.6rem);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.tokenomics-card p, .sticker-pack p, .contribute-card p, .brand-item p, .doc-category p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: clamp(1rem, 3vw, 1.2rem);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Proposals */
.proposals-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.proposal-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.proposal-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #00ff9d 0%, #00d4ff 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.proposal-item:hover {
    transform: translateX(8px);
    border-color: rgba(0, 255, 157, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.proposal-item:hover::before {
    opacity: 1;
}

.proposal-item h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 600;
}

.proposal-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.proposal-status {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.proposal-status.active {
    background: rgba(0, 255, 157, 0.2);
    color: #00ff9d;
    border: 1px solid rgba(0, 255, 157, 0.3);
}

.proposal-status.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.proposal-status.draft {
    background: rgba(108, 117, 125, 0.2);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

/* Contribute */
.contribute-ways {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Tokenomics Details */
.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.chart-placeholder {
    width: min(350px, 90vw);
    height: min(350px, 90vw);
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #ff6b35 0deg 180deg,
        #00ff9d 180deg 324deg,
        #f59e0b 324deg 342deg,
        #00d4ff 342deg 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 60px rgba(255, 107, 53, 0.4);
}

.chart-placeholder::after {
    content: '';
    position: absolute;
    width: min(240px, 64vw);
    height: min(240px, 64vw);
    background: radial-gradient(circle, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-radius: 50%;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.chart-placeholder::before {
    content: '';
    position: absolute;
    z-index: 1;
}

.pie-chart-labels {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.pie-label {
    position: absolute;
    color: #ffffff;
    font-weight: 900;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 1;
    background: rgba(0, 0, 0, 0.85);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-family: 'Orbitron', monospace;
    min-width: 3rem;
    z-index: 10;
}

.presale-label {
    border-color: rgba(255, 107, 53, 0.6);
    background: rgba(255, 107, 53, 0.15);
}

.community-label {
    border-color: rgba(0, 255, 157, 0.6);
    background: rgba(0, 255, 157, 0.15);
}

.marketing-label {
    border-color: rgba(245, 158, 11, 0.6);
    background: rgba(245, 158, 11, 0.15);
}

.development-label {
    border-color: rgba(0, 212, 255, 0.6);
    background: rgba(0, 212, 255, 0.15);
}

/* Removed rotation animation for pie chart
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
} */

/* Performance optimizations */
.chart-placeholder {
    backface-visibility: hidden;
}

/* Improved button hover states */
.btn, .copy-btn, .countdown-item, .stat-card {
    will-change: transform;
    backface-visibility: hidden;
}

/* GPU acceleration for smooth animations */
.hero-content, .nav-menu, .tokenomics-card, .contribute-card {
    transform: translateZ(0);
    backface-visibility: hidden;
}

.tokenomics-legend {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    margin-left: 3rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.legend-item:hover {
    transform: translateX(5px);
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.legend-color {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.legend-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Tokenomics content layout */
.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .chart-placeholder {
        width: min(300px, 85vw);
        height: min(300px, 85vw);
    }
    
    .chart-placeholder::after {
        width: min(200px, 60vw);
        height: min(200px, 60vw);
    }
    
    .pie-label {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
        padding: 0.3rem 0.6rem;
    }
    
    .tokenomics-legend {
        margin-left: 0;
        margin-top: 2rem;
    }
}

.tokenomics-info {
    margin-top: 4rem;
}

.tokenomics-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 157, 0.15);
    border-color: rgba(0, 255, 157, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: clamp(1.4rem, 4vw, 1.6rem);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: clamp(1rem, 3vw, 1.1rem);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Branding */
.brand-assets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* About */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 600;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.about-text ul {
    list-style: none;
    margin-left: 0;
}

.about-text li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.about-text li::before {
    content: '✓';
    color: #00ff9d;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(15, 15, 15, 0.95) 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.15);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section h3 {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    background: linear-gradient(135deg, #00ff9d 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.footer-section ul li a:hover {
    color: #00ff9d;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        backdrop-filter: blur(20px);
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 18px 32px;
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 85px;
        padding: 1.2rem 0.8rem;
    }
    
    .countdown-value {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }
    
    .btn {
        padding: 16px 28px;
        font-size: 1rem;
        min-width: 160px;
    }
    
    .presale-main-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .presale-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .address-box {
        flex-direction: column;
        gap: 1rem;
    }
    
    .address-text {
        min-width: unset;
        width: 100%;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .tokenomics-legend {
        margin-left: 0;
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .legend-item {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .tokenomics-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .chart-legend {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .proposal-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .proposal-status {
        margin-top: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .tokenomics-card, .sticker-pack, .contribute-card, .brand-item, .doc-category {
        padding: 1.5rem;
    }
    
    .proposal-item {
        padding: 1.5rem;
    }
    
    .hero {
        padding: 1rem 0;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        min-width: 140px;
        font-size: 1rem;
    }
    
    .chart-placeholder {
        width: min(280px, 90vw);
        height: min(280px, 90vw);
    }
    
    .chart-placeholder::after {
        width: min(180px, 65vw);
        height: min(180px, 65vw);
    }
    
    .pie-label {
        font-size: clamp(0.8rem, 4vw, 1rem);
        padding: 0.2rem 0.5rem;
        border-radius: 6px;
    }
    
    .tokenomics-legend {
        gap: 0.8rem;
    }
    
    .legend-item {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.8);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff7a47 0%, #fa9d35 100%);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

/* Loading state */
body.loaded {
    opacity: 1;
}

/* Lazy loading optimization */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* Selection styles */
::selection {
    background: rgba(0, 255, 157, 0.3);
    color: #ffffff;
}

/* Focus styles */
*:focus {
    outline: 2px solid rgba(0, 255, 157, 0.5);
    outline-offset: 2px;
}

/* Utility classes */
.text-gradient {
    background: linear-gradient(135deg, #00ff9d 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Accessibility improvements */
@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;
    }
    
    .chart-placeholder {
        animation: none !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .video-overlay {
        background: rgba(0, 0, 0, 0.9);
    }
    
    .nav-menu a,
    .tokenomics-card p,
    .about-text p,
    .presale-info p {
        color: #ffffff;
    }
}

/* Glow animation */
@keyframes glow {
    from {
        text-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
    }
    to {
        text-shadow: 0 0 60px rgba(255, 107, 53, 0.9);
    }
}