/* ==================== Reset & Base Styles ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Main colors */
    --primary-color: #ff6b00;
    --secondary-color: #2fc022;
    --accent-color: #ff9d00;
    --background-dark: #05051a;
    --background-medium: #0c0c2c;
    --background-light: #1a1a4a;
    --text-primary: #ffffff;
    --text-secondary: #ccffcc;
    --text-tertiary: #a9c69a;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    
    /* Animation Speeds */
    --transition-slow: 0.5s ease;
    --transition-medium: 0.3s ease;
    --transition-fast: 0.15s ease;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-circle: 50%;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-medium);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

section {
    padding: var(--spacing-lg) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.divider {
    height: 3px;
    width: 60px;
    background: var(--gradient-primary);
    margin: 0 auto;
    margin-top: var(--spacing-xs);
    border-radius: var(--border-radius-sm);
}

/* ==================== Typography ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-medium);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.5);
}

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

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

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

.glow-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glow-btn:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: glowEffect 3s infinite;
    z-index: -1;
}

@keyframes glowEffect {
    0% {
        transform: rotate(30deg) translateX(-300%);
    }
    100% {
        transform: rotate(30deg) translateX(300%);
    }
}

/* ==================== Header & Navigation ==================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color var(--transition-medium);
    padding: var(--spacing-xs) 0;
}

header.scrolled {
    background-color: rgba(5, 5, 26, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0;
    color: var(--text-primary);
}

.logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links ul {
    display: flex;
}

.nav-links li {
    margin-left: var(--spacing-md);
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 700;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-primary);
    transition: width var(--transition-medium);
}

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

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

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all var(--transition-medium);
    background-color: var(--text-primary);
    border-radius: var(--border-radius-sm);
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 10, 40, 0.3) 0%, rgba(5, 5, 26, 0.5) 100%);
    padding-top: 80px;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(47, 192, 34, 0.1) 0%, rgba(5, 5, 26, 0) 70%);
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-color);
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
}

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

/* Rabbit styling */
.rabbit-container {
    position: relative;
    animation: rabbitHop 2s ease-in-out infinite;
    z-index: 3;
}

.rabbit {
    width: 200px;
    height: 200px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.7));
}

/* Robot styling */
.robot-container {
    position: absolute;
    z-index: 2;
}

.robot1 {
    top: -100px;
    right: 50px;
    animation: flyRobot1 15s linear infinite;
}

.robot2 {
    bottom: -80px;
    left: 20px;
    animation: flyRobot2 18s linear infinite;
}

.robot3 {
    top: 50%;
    left: -100px;
    animation: flyRobot3 20s linear infinite;
}

.robot {
    width: 80px;
    height: 100px;
    position: relative;
}

.robot-head {
    width: 50px;
    height: 40px;
    background: #888;
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.robot-eye {
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    top: 15px;
    animation: blinkEyes 3s infinite;
}

.robot-eye.left {
    left: 10px;
}

.robot-eye.right {
    right: 10px;
}

.robot-antenna {
    width: 5px;
    height: 15px;
    background: #555;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.robot-body {
    width: 60px;
    height: 70px;
    background: #777;
    border-radius: 10px;
    margin: -5px auto 0;
    position: relative;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    overflow: visible;
}

.robot-arm {
    width: 40px;
    height: 8px;
    background: #666;
    position: absolute;
    top: 20px;
}

.left-arm {
    left: -35px;
    transform-origin: right center;
    animation: moveLeftArm 4s infinite;
}

.right-arm {
    right: -35px;
    transform-origin: left center;
    animation: moveRightArm 4s infinite;
}

.carrot {
    position: absolute;
    width: 20px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 10px 5px 5px 10px;
    right: -15px;
    top: -5px;
}

.carrot:before {
    content: '';
    position: absolute;
    top: -5px;
    right: 2px;
    width: 8px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Floating carrots */
.carrots-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-carrot {
    position: absolute;
    font-size: 2rem;
    animation: floatCarrot 15s linear infinite;
    opacity: 1;
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.8));
    z-index: 5;
}

.carrot1 {
    top: 10%;
    left: 5%;
    animation-duration: 20s;
    animation-delay: 1s;
}

.carrot2 {
    top: 30%;
    right: 15%;
    animation-duration: 25s;
    animation-delay: 5s;
}

.carrot3 {
    bottom: 20%;
    left: 20%;
    animation-duration: 18s;
    animation-delay: 2s;
}

.carrot4 {
    top: 60%;
    right: 5%;
    animation-duration: 22s;
    animation-delay: 8s;
}

.carrot5 {
    bottom: 5%;
    left: 40%;
    animation-duration: 30s;
    animation-delay: 4s;
}

/* New larger carrots with custom animations */
.carrot6 {
    top: 45%;
    left: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
    width: 90px;
    height: 90px;
    z-index: 10;
}

.carrot7 {
    top: 15%;
    right: 10%;
    animation-duration: 17s;
    animation-delay: 3s;
    width: 90px;
    height: 90px;
    z-index: 10;
}

/* Stars styling */
.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 40px 70px, white, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 50px 160px, white, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 90px 40px, white, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 130px 80px, white, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 160px 120px, white, rgba(0, 0, 0, 0));
    background-repeat: repeat;
    background-size: 200px 200px;
}

.star1 {
    opacity: 0.5;
    animation: starsAnimation 50s linear infinite;
}

.star2 {
    opacity: 0.3;
    animation: starsAnimation 100s linear infinite;
    background-size: 300px 300px;
    background-position: 50px 50px;
}

.star3 {
    opacity: 0.7;
    animation: starsAnimation 150s linear infinite;
    background-size: 400px 400px;
    background-position: 100px 100px;
}

/* Animations */
@keyframes rabbitHop {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes flyRobot1 {
    0% {
        transform: translate(-500px, 100px) rotate(10deg);
    }
    50% {
        transform: translate(250px, -50px) rotate(-5deg);
    }
    100% {
        transform: translate(800px, 100px) rotate(10deg);
    }
}

@keyframes flyRobot2 {
    0% {
        transform: translate(800px, 0) rotate(-15deg);
    }
    50% {
        transform: translate(400px, 100px) rotate(10deg);
    }
    100% {
        transform: translate(-200px, 0) rotate(-15deg);
    }
}

@keyframes flyRobot3 {
    0% {
        transform: translate(-100px, -100px) rotate(5deg);
    }
    50% {
        transform: translate(400px, 50px) rotate(-10deg);
    }
    100% {
        transform: translate(900px, -100px) rotate(5deg);
    }
}

@keyframes blinkEyes {
    0%, 45%, 50%, 95%, 100% {
        transform: scaleY(1);
        background: var(--accent-color);
    }
    48%, 98% {
        transform: scaleY(0.1);
        background: #fff;
    }
}

@keyframes moveLeftArm {
    0%, 100% {
        transform: rotate(-20deg);
    }
    50% {
        transform: rotate(20deg);
    }
}

@keyframes moveRightArm {
    0%, 100% {
        transform: rotate(20deg);
    }
    50% {
        transform: rotate(-20deg);
    }
}

@keyframes floatCarrot {
    0% {
        transform: translate(-100px, 0) rotate(0deg) scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.8));
    }
    25% {
        transform: translate(calc(50vw - 50px), calc(25vh - 50px)) rotate(90deg) scale(1.2);
        filter: drop-shadow(0 0 15px rgba(255, 107, 0, 1));
    }
    50% {
        transform: translate(calc(100vw + 100px), calc(50vh - 100px)) rotate(180deg) scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.8));
    }
    75% {
        transform: translate(calc(50vw + 50px), calc(75vh + 50px)) rotate(270deg) scale(1.2);
        filter: drop-shadow(0 0 15px rgba(255, 107, 0, 1));
    }
    100% {
        transform: translate(-100px, calc(100vh + 100px)) rotate(360deg) scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.8));
    }
}

@keyframes starsAnimation {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(1000px);
    }
}

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

/* ==================== Contract Section ==================== */
.contract {
    background-color: var(--background-medium);
    padding: var(--spacing-md) 0;
}

.contract-card {
    background: var(--background-light);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contract-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(108, 0, 255, 0.05) 0%, rgba(0, 229, 255, 0.05) 100%);
    z-index: -1;
}

.contract-card h2 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.8rem;
}

.contract-address {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(0, 0, 0, 0.2);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-sm);
}

.address {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--accent-color);
    overflow-wrap: break-word;
    word-break: break-all;
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: all var(--transition-medium);
}

.copy-btn:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.copy-success {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-top: var(--spacing-xs);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.copy-success.show {
    opacity: 1;
}

/* ==================== About Section ==================== */
.about {
    background-color: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.about:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at right top, rgba(255, 107, 0, 0.05) 0%, rgba(5, 5, 26, 0) 70%);
    z-index: 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
}

.feature {
    background: var(--background-light);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    width: 300px;
    text-align: center;
    transition: transform var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature:hover {
    transform: translateY(-10px);
}

.interactive-feature {
    cursor: pointer;
}

.interactive-feature:hover::after {
    content: '🥕';
    position: absolute;
    font-size: 2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: popCarrot 0.5s forwards;
    opacity: 0;
}

@keyframes popCarrot {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.feature h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.feature p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.interactive-element {
    margin-top: var(--spacing-md);
    text-align: center;
}

.carrot-btn {
    background: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.5);
}

.carrot-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(47, 192, 34, 0.6);
}

.carrot-btn:active {
    transform: translateY(-2px);
}

.carrot-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: transform 0.5s ease-out;
}

.carrot-btn:hover::after {
    transform: rotate(30deg) translate(50%, 50%);
}

/* ==================== Tokenomics Section ==================== */
.tokenomics {
    background-color: var(--background-medium);
    position: relative;
    overflow: hidden;
}

.tokenomics:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at left center, rgba(0, 229, 255, 0.05) 0%, rgba(5, 5, 26, 0) 70%);
    z-index: 0;
}

.tokenomics-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.tokenomics-chart {
    max-width: 500px;
    margin: 0 auto;
}

.chart-container {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: var(--border-radius-circle);
    background: var(--background-light);
    margin: 0 auto;
    display: flex;
    overflow: hidden;
}

.chart-segment {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-origin: center;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    transition: transform var(--transition-medium);
}

.chart-segment:hover {
    transform: scale(1.05);
}

.segment-label {
    position: absolute;
    transform: translateX(-50%);
    white-space: nowrap;
}

.segment1 {
    background: var(--primary-color);
    clip-path: polygon(50% 50%, 50% 0, 100% 0, 100% 100%, 50% 100%);
}

.segment2 {
    background: var(--secondary-color);
    clip-path: polygon(50% 50%, 50% 0, 0 0, 0%, 50%);
}

.segment3 {
    background: var(--accent-color);
    clip-path: polygon(50% 50%, 0 50%, 0 100%, 50% 100%);
}

.segment4 {
    background: #ff5e62;
    clip-path: polygon(50% 50%, 50% 100%, 100% 100%);
}

.segment5 {
    background: #a64dff;
    clip-path: polygon(50% 50%, 100% 50%, 100% 0);
}

.tokenomics-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.tokenomics-item {
    background: var(--background-light);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    width: 220px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tokenomics-item h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.tokenomics-item p {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 700;
}

/* ==================== Roadmap Section ==================== */
.roadmap {
    background-color: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.roadmap:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at right bottom, rgba(108, 0, 255, 0.05) 0%, rgba(5, 5, 26, 0) 70%);
    z-index: 0;
}

.roadmap-content {
    position: relative;
    z-index: 1;
}

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

.roadmap-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-sm);
}

.roadmap-item {
    position: relative;
    padding-bottom: var(--spacing-lg);
}

.roadmap-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: var(--border-radius-circle);
    z-index: 1;
    box-shadow: 0 0 15px rgba(255, 149, 0, 0.7);
}

.roadmap-content-box {
    background: var(--background-light);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    width: calc(50% - 30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.roadmap-item:nth-child(odd) .roadmap-content-box {
    margin-left: auto;
}

.roadmap-item:nth-child(even) .roadmap-content-box {
    margin-right: auto;
}

.roadmap-content-box:before {
    content: '';
    position: absolute;
    top: 10px;
    width: 20px;
    height: 20px;
    background: var(--background-light);
    transform: rotate(45deg);
}

.roadmap-item:nth-child(odd) .roadmap-content-box:before {
    left: -10px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.roadmap-item:nth-child(even) .roadmap-content-box:before {
    right: -10px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.roadmap-content-box h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.roadmap-content-box ul {
    padding-left: var(--spacing-sm);
}

.roadmap-content-box li {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    position: relative;
    padding-left: var(--spacing-xs);
}

.roadmap-content-box li:before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: -10px;
}

/* ==================== Buy Section ==================== */
.buy {
    background-color: var(--background-medium);
    position: relative;
    overflow: hidden;
}

.buy:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 149, 0, 0.05) 0%, rgba(5, 5, 26, 0) 70%);
    z-index: 0;
}

.buy-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.buy-option {
    background: var(--background-light);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    width: 300px;
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.buy-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.buy-option i {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.buy-option h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.buy-option p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.buy-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.buy-step {
    position: relative;
    background: var(--background-light);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    width: 200px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--text-primary);
    width: 30px;
    height: 30px;
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(255, 149, 0, 0.5);
}

.buy-step h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    margin-top: var(--spacing-xs);
}

.buy-step p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

/* ==================== Community Section ==================== */
.community {
    background-color: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.community:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(47, 192, 34, 0.05) 0%, rgba(5, 5, 26, 0) 70%);
    z-index: 0;
}

.community-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg) auto;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.social-link {
    background: var(--background-light);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    width: 200px;
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.interactive-social {
    cursor: pointer;
}

.social-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(47, 192, 34, 0.3);
}

.social-link i {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.social-link span {
    font-weight: 700;
    font-size: 1.1rem;
}

.social-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 192, 34, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carrot-icon {
    font-size: 5rem;
    animation: spinCarrot 5s linear infinite;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
}

.interactive-social:hover .social-hover {
    opacity: 1;
}

.interactive-social:hover .carrot-icon {
    opacity: 1;
    transform: scale(1) rotate(360deg);
}

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

.telegram {
    color: #0088cc;
}

.twitter {
    color: #1DA1F2;
}

.discord {
    color: #7289DA;
}

.reddit {
    color: #FF4500;
}

.community-counter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    position: relative;
}

.interactive-counter {
    cursor: pointer;
}

.counter {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: var(--spacing-xs);
    transition: color 0.3s ease;
}

.counter-carrot {
    position: absolute;
    font-size: 1.5rem;
    top: -20px;
    right: -20px;
    opacity: 0;
    transform: scale(0) rotate(0deg);
    transition: all 0.3s ease;
}

.interactive-counter:hover .counter {
    color: var(--secondary-color);
}

.interactive-counter:hover .counter-carrot {
    opacity: 1;
    transform: scale(1) rotate(20deg);
}

/* Easter egg section */
.easter-egg {
    margin-top: var(--spacing-lg);
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.rabbit-hole {
    width: 100px;
    height: 100px;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.rabbit-hole-text {
    color: var(--text-primary);
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.rabbit-hole:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--primary-color);
}

.rabbit-hole:active {
    transform: scale(0.95);
}

.counter-item h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* ==================== Footer ==================== */
footer {
    background-color: var(--background-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(47, 192, 34, 0.05) 0%, rgba(5, 5, 26, 0) 100%);
    z-index: 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.footer-logo h2 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.footer-logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-logo p {
    color: var(--text-tertiary);
    margin: 0;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-links a {
    color: var(--text-secondary);
    transition: color var(--transition-medium);
}

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

.copyright {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.copyright p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin: 0;
    margin-bottom: var(--spacing-xs);
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ==================== Back to Top Button ==================== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.5);
    transition: all var(--transition-medium);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    border: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.7);
}

/* ==================== Media Queries ==================== */
@media screen and (max-width: 1024px) {
    html {
        font-size: 14px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 400px;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 101;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100%;
        background: var(--background-medium);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right var(--transition-medium);
        z-index: 100;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links li {
        margin: var(--spacing-sm) 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .roadmap-timeline:before {
        left: 20px;
    }
    
    .roadmap-dot {
        left: 20px;
    }
    
    .roadmap-content-box {
        width: calc(100% - 50px);
        margin-left: 40px !important;
    }
    
    .roadmap-item:nth-child(even) .roadmap-content-box:before,
    .roadmap-item:nth-child(odd) .roadmap-content-box:before {
        left: -10px;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        right: auto;
        border-right: none;
        border-top: none;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .feature,
    .buy-option,
    .social-link {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .footer-links ul {
        justify-content: center;
    }
}
