:root {
    --primary-green: #00ff88;
    --dark-green: #003322;
    --darker-green: #001a11;
    --accent-green: #00cc6a;
    --light-green: #88ffcc;
    --bg-dark: #0a0f0d;
    --bg-darker: #050807;
    --text-primary: #e0ffe8;
    --text-secondary: #88ffcc;
    --snake-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated Background */
.snake-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: var(--bg-darker);
    overflow: hidden;
}

.snake-animation::before {
    content: '🐍';
    position: absolute;
    font-size: 40px;
    opacity: 0.03;
    animation: snakeFloat1 30s linear infinite;
    left: 10%;
    top: 20%;
}

.snake-animation::after {
    content: '🐍';
    position: absolute;
    font-size: 50px;
    opacity: 0.04;
    animation: snakeFloat2 25s linear infinite;
    right: 15%;
    top: 60%;
}

@keyframes snakeFloat1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 100px) rotate(90deg);
    }
    50% {
        transform: translate(0, 200px) rotate(180deg);
    }
    75% {
        transform: translate(-100px, 100px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes snakeFloat2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-120px, 80px) rotate(-90deg);
    }
    50% {
        transform: translate(0, -150px) rotate(-180deg);
    }
    75% {
        transform: translate(120px, 80px) rotate(-270deg);
    }
    100% {
        transform: translate(0, 0) rotate(-360deg);
    }
}

@keyframes snakeMove {
    0%, 100% {
        background-position: 0% 50%, 100% 100%, 50% 0%;
    }
    50% {
        background-position: 100% 50%, 0% 0%, 50% 100%;
    }
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(0, 255, 136, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(0, 204, 106, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(136, 255, 204, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(0, 255, 136, 0.2), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(0, 170, 85, 0.3), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: particlesFloat 30s ease-in-out infinite;
}

@keyframes particlesFloat {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 80% 10%, 90% 60%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 30% 70%, 20% 90%, 10% 40%;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 15, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(var(--snake-shadow));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(0, 255, 136, 0.6));
    }
}

.brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: var(--bg-dark) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-logo {
    width: 150px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.4));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.4));
    }
    50% {
        transform: translateY(-10px);
        filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.6));
    }
}

.glitch {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-green);
    text-transform: uppercase;
    position: relative;
    text-shadow: 
        0 0 10px rgba(0, 255, 136, 0.5),
        0 0 20px rgba(0, 255, 136, 0.3),
        0 0 30px rgba(0, 255, 136, 0.2);
    animation: glitch 5s infinite;
}

@keyframes glitch {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
    96% {
        transform: translate(-2px, -2px);
    }
    98% {
        transform: translate(2px, 2px);
    }
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 700px;
    margin: 2rem auto;
    flex-wrap: wrap;
}

.hero-time-unit {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    min-width: 90px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-time-unit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.hero-time-unit:hover::before {
    left: 100%;
}

.hero-time-unit:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.3);
    border-color: var(--primary-green);
}

.hero-time-unit h3 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    color: var(--primary-green);
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.hero-time-unit p {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-green);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Section Styles */
section {
    padding: 60px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.icon-wrapper {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--bg-dark);
    box-shadow: var(--snake-shadow);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
}

/* Vision Section */
.vision-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--dark-green) 50%, var(--bg-dark) 100%);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vision-card {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.vision-card:hover::before {
    left: 100%;
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.2);
    border-color: var(--primary-green);
}

.card-icon {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.vision-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.vision-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Tokenomics Section */
.tokenomics-section {
    background: var(--bg-darker);
}

.tokenomics-content {
    margin-bottom: 4rem;
}

.token-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.token-detail {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
}

.token-detail h3 {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.token-detail .highlight {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: 'Orbitron', sans-serif;
}

.allocation-chart {
    max-width: 400px;
    margin: 3rem auto;
}

.allocation-list {
    max-width: 800px;
    margin: 0 auto;
}

.allocation-item {
    margin-bottom: 1.5rem;
}

.allocation-bar {
    height: 40px;
    background: linear-gradient(90deg, var(--color), transparent);
    border-radius: 10px;
    width: var(--percentage);
    margin-bottom: 0.5rem;
    transition: all 0.5s ease;
    border: 1px solid var(--color);
    animation: barGrow 1s ease-out;
}

@keyframes barGrow {
    from {
        width: 0;
    }
    to {
        width: var(--percentage);
    }
}

.allocation-info {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.allocation-info .percentage {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.allocation-info .label {
    color: var(--text-secondary);
}

.utility-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-green);
}

.utility-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.utility-card {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.utility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.2);
    border-color: var(--primary-green);
}

.utility-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.utility-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.utility-card p {
    color: var(--text-secondary);
}

/* AI Section */
.ai-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--dark-green) 50%, var(--bg-dark) 100%);
}

.ai-content {
    display: grid;
    gap: 3rem;
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ai-feature {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.ai-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-dark);
    margin-bottom: 1.5rem;
    box-shadow: var(--snake-shadow);
}

.ai-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.ai-feature p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.ai-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-box {
    text-align: center;
    padding: 2.5rem;
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: statRotate 3s linear infinite;
}

@keyframes statRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.stat-box h3 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-box p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: block;
    position: relative;
    z-index: 1;
}

/* IDO Section */
.ido-section {
    background: var(--bg-darker);
}

/* Countdown Timer */
.countdown-container {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.05), transparent);
    animation: statRotate 4s linear infinite;
}

.countdown-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-green);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-green);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    min-width: 120px;
    transition: all 0.3s ease;
}

.time-unit:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 30px rgba(0, 255, 136, 0.4);
}

.time-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-green);
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.time-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.time-separator {
    font-size: 3rem;
    color: var(--primary-green);
    font-weight: 700;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.countdown-progress {
    width: 100%;
    height: 8px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    border-radius: 10px;
    width: 0%;
    transition: width 0.5s ease;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

/* IDO Actions */
.ido-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.action-card {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.2);
    border-color: var(--primary-green);
}

.action-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--bg-dark);
    margin: 0 auto 2rem;
    box-shadow: 0 5px 30px rgba(0, 255, 136, 0.4);
}

.action-card h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.action-description {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight-text {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.wallet-connect-info {
    margin-bottom: 1.5rem;
}

.wallet-status {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wallet-status i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.wallet-status.connected {
    border-color: var(--primary-green);
    background: rgba(0, 255, 136, 0.1);
}

.wallet-status.connected span {
    color: var(--primary-green);
    font-weight: 600;
}

.airdrop-notice {
    background: rgba(0, 255, 136, 0.05);
    border-left: 3px solid var(--primary-green);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.airdrop-notice i {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.airdrop-notice p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.ido-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.ido-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.ido-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.action-card .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

.claim-status {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.claim-status.show {
    opacity: 1;
}

.claim-status.success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
}

.claim-status.error {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    color: #ff4444;
}

/* Referral Benefits */
.referral-benefits {
    background: rgba(0, 255, 136, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: var(--text-secondary);
}

.benefit-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* Referral Link Container */
.referral-link-container {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.link-display {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.link-display .ido-input {
    flex: 1;
}

.btn-copy {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: var(--bg-dark);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    min-width: 60px;
}

.btn-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
}

.btn-copy:active {
    transform: scale(0.95);
}

/* Social Share */
.social-share {
    text-align: center;
}

.social-share p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    border: 1px solid rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.share-btn.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.share-btn.telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
}

.share-btn.facebook:hover {
    background: #4267B2;
    border-color: #4267B2;
}

.share-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

/* IDO Stats */
.ido-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.2);
    border-color: var(--primary-green);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.stat-card h4 {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: 'Orbitron', sans-serif;
}

/* Community Section */
.community-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--dark-green) 50%, var(--bg-dark) 100%);
}

.community-content {
    display: grid;
    gap: 4rem;
}

.referral-system {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.referral-system h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-green);
}

.referral-levels {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.level-item {
    text-align: center;
}

.level-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 255, 136, 0.4);
    transition: all 0.3s ease;
}

.level-circle:hover {
    transform: scale(1.1);
}

.level-circle i {
    font-size: 2rem;
    color: var(--bg-dark);
    margin-bottom: 0.5rem;
}

.level-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-dark);
}

.level-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.commission {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
}

.level-connector {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    position: relative;
}

.level-connector::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: -12px;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.total-commission {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 15px;
}

.total-commission p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.total-commission span {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.4rem;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reward-card {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.reward-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.2);
    border-color: var(--primary-green);
}

.reward-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.reward-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.reward-card p {
    color: var(--text-secondary);
}

/* Roadmap Section */
.roadmap-section {
    background: var(--bg-darker);
    overflow: hidden;
}

.timeline-scroll-container {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    padding: 2rem 0 3rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) rgba(0, 255, 136, 0.1);
}

.timeline-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.timeline-scroll-container::-webkit-scrollbar-track {
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
}

.timeline-scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
}

.timeline-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--accent-green);
}

.timeline-scroll {
    display: flex;
    gap: 2rem;
    padding: 0 2rem;
    position: relative;
}

.timeline-scroll::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    z-index: 0;
}

.timeline-item-horizontal {
    min-width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    z-index: 10;
    flex-shrink: 0;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-item-horizontal.active .timeline-marker {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 255, 136, 0.8);
        transform: scale(1.1);
    }
}

.timeline-content {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 1.8rem;
    transition: all 0.3s ease;
    width: 100%;
}

.timeline-content:hover {
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.2);
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.timeline-date {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: var(--bg-dark);
    padding: 0.4rem 0.9rem;
    border-radius: 15px;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    padding: 0.4rem 0 0.4rem 1.2rem;
    color: var(--text-secondary);
    position: relative;
    font-size: 0.9rem;
}

.timeline-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

/* Competitive Section */
.competitive-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--dark-green) 50%, var(--bg-dark) 100%);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) rgba(0, 255, 136, 0.1);
}

.comparison-table::-webkit-scrollbar {
    height: 10px;
}

.comparison-table::-webkit-scrollbar-track {
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    margin: 0 20px;
}

.comparison-table::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

.comparison-table::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1rem;
}

thead th {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: var(--bg-dark);
    padding: 1.5rem;
    font-size: 1.2rem;
    text-align: left;
}

thead th:first-child {
    border-radius: 15px 0 0 15px;
}

thead th:last-child {
    border-radius: 0 15px 15px 0;
}

tbody tr {
    background: rgba(0, 255, 136, 0.05);
    transition: all 0.3s ease;
}

tbody tr:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(5px);
}

tbody td {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

tbody td:first-child {
    border-left: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 15px 0 0 15px;
    font-weight: 600;
    color: var(--text-secondary);
}

tbody td:last-child {
    border-right: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 0 15px 15px 0;
}

.check {
    color: var(--primary-green);
}

.cross {
    color: #ff4444;
}

.warning {
    color: #ffaa00;
}

tbody td i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    padding: 3rem 0 2rem;
}

.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 0.8rem;
    filter: drop-shadow(var(--snake-shadow));
}

.footer-brand h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 15, 13, 0.98);
        width: 100%;
        padding: 2rem 0;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(0, 255, 136, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .glitch {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    /* Timeline mobile adjustments */
    .timeline-item-horizontal {
        min-width: 280px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .footer-simple {
        flex-direction: column;
        text-align: center;
    }

    .level-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }

    .hero-logo {
        width: 100px;
        margin-bottom: 1.5rem;
    }

    .glitch {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-countdown {
        gap: 0.5rem;
    }

    .hero-time-unit {
        min-width: 60px;
        padding: 0.8rem 1rem;
    }

    .hero-time-unit h3 {
        font-size: 1.5rem;
    }

    .hero-time-unit p {
        font-size: 0.65rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .ido-actions {
        grid-template-columns: 1fr;
    }

    .time-value {
        font-size: 2rem;
    }

    .time-unit {
        min-width: 70px;
        padding: 0.8rem 1.2rem;
    }

    .time-separator {
        font-size: 1.5rem;
    }

    .countdown-container {
        padding: 1.5rem 1rem;
    }

    .link-display {
        flex-direction: column;
    }

    .btn-copy {
        width: 100%;
    }

    section {
        padding: 40px 0;
    }

    .vision-card, .ai-feature, .action-card {
        padding: 1.5rem;
    }

    .icon-wrapper {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.8s ease-out;
}

