/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #fef7e7 0%, #fdf1d8 100%);
    overflow-x: hidden;
    position: relative;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed navbar */
}

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fef7e7 0%, #fdf1d8 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.honey-jar {
    position: relative;
    width: 100px;
    height: 120px;
    background: linear-gradient(135deg, #ffd93d 0%, #ffb74d 50%, #ff9800 100%);
    border: 5px solid #2d3436;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 
        inset 0 2px 8px rgba(255, 255, 255, 0.3),
        inset 0 -2px 8px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(45, 52, 54, 0.2);
}

/* Jar lid */
.honey-jar::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: linear-gradient(135deg, #d7ccc8 0%, #bcaaa4 50%, #8d6e63 100%);
    border: 4px solid #2d3436;
    border-radius: 15px;
    box-shadow: 
        0 4px 15px rgba(45, 52, 54, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}

/* Honey filling */
.honey-jar::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(
        to top, 
        #ffc107 0%, 
        #ffd93d 50%,
        #ffc107 var(--fill-height, 0%), 
        transparent var(--fill-height, 0%)
    );
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 2px 6px rgba(255, 255, 255, 0.4),
        inset 0 -2px 6px rgba(255, 193, 7, 0.6);
}

/* Hide honey dipper for original design */
.honey-dipper {
    display: none;
}

/* Hide jar lid for original design */
.jar-lid {
    display: none;
}

/* Brown HONEY label */
.honey-jar-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #8d6e63 0%, #795548 50%, #5d4037 100%);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    border: 2px solid #2d3436;
    z-index: 2;
    box-shadow: 
        0 2px 6px rgba(45, 52, 54, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

/* Add honey drip effect when filling */
.honey-jar.filling::after {
    box-shadow: 
        inset 0 2px 6px rgba(255, 255, 255, 0.5),
        inset 0 -2px 6px rgba(255, 193, 7, 0.8),
        0 0 20px rgba(255, 217, 61, 0.6);
}

/* Hide bubbles for original design */
.honey-jar .honey-bubble {
    display: none;
}

.honey-bubble:nth-child(3) {
    width: 4px;
    height: 4px;
    left: 30%;
    bottom: 12px;
    animation-delay: 0s;
}

.honey-bubble:nth-child(4) {
    width: 3px;
    height: 3px;
    left: 60%;
    bottom: 18px;
    animation-delay: 1s;
}

.honey-bubble:nth-child(5) {
    width: 5px;
    height: 5px;
    left: 45%;
    bottom: 10px;
    animation-delay: 2s;
}

.loading-bees {
    display: flex;
    gap: 10px;
}

.loading-bee {
    font-size: 2rem;
    animation: beeCircle 2s ease-in-out infinite;
}

.loading-bee:nth-child(1) { animation-delay: 0s; }
.loading-bee:nth-child(2) { animation-delay: 0.3s; }
.loading-bee:nth-child(3) { animation-delay: 0.6s; }

.loading-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff8c00;
    text-align: center;
    animation: loadingPulse 1.5s ease-in-out infinite;
}

.loading-progress {
    width: 250px;
    height: 6px;
    background: rgba(255, 140, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.loading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffc107, #ff8c00, #ffa500);
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

.loading-progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShine 1.5s ease-in-out infinite;
}

.loading-percentage {
    text-align: center;
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: #ff8c00;
}

@keyframes jarGlow {
    0%, 100% { 
        box-shadow: 
            inset 0 2px 8px rgba(255, 255, 255, 0.3),
            inset 0 -2px 8px rgba(0, 0, 0, 0.1),
            0 8px 25px rgba(45, 52, 54, 0.2);
    }
    50% { 
        box-shadow: 
            inset 0 2px 12px rgba(255, 255, 255, 0.4),
            inset 0 -2px 12px rgba(0, 0, 0, 0.15),
            0 12px 35px rgba(45, 52, 54, 0.3);
    }
}

@keyframes bubbleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-15px) scale(1.2);
        opacity: 0.9;
    }
}

@keyframes honeyDrip {
    0%, 70% { 
        transform: translateX(-50%) scaleY(1);
        opacity: 0.8;
    }
    80% { 
        transform: translateX(-50%) scaleY(1.3);
        opacity: 1;
    }
    90% { 
        transform: translateX(-50%) scaleY(0.8);
        opacity: 0.6;
    }
    100% { 
        transform: translateX(-50%) scaleY(1);
        opacity: 0.8;
    }
}

@keyframes beeCircle {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-15px) rotate(90deg); 
    }
    50% { 
        transform: translateY(0px) rotate(180deg); 
    }
    75% { 
        transform: translateY(15px) rotate(270deg); 
    }
}

@keyframes loadingPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes progressShine {
    0% { 
        transform: translateX(-20px);
    }
    100% { 
        transform: translateX(250px);
    }
}

/* Background Icon Animations */
.bg-icon {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

@keyframes floatUpDown {
    0%, 100% { 
        transform: translateZ(0) translateY(0px) rotate(0deg);
        opacity: var(--base-opacity, 0.1);
    }
    25% { 
        transform: translateZ(0) translateY(-20px) rotate(5deg);
        opacity: calc(var(--base-opacity, 0.1) * 1.5);
    }
    50% { 
        transform: translateZ(0) translateY(-30px) rotate(-3deg);
        opacity: calc(var(--base-opacity, 0.1) * 0.8);
    }
    75% { 
        transform: translateZ(0) translateY(-10px) rotate(3deg);
        opacity: calc(var(--base-opacity, 0.1) * 1.2);
    }
}

@keyframes slideHorizontal {
    0% { 
        transform: translateZ(0) translateX(-20px) translateY(0px);
        opacity: 0.06;
    }
    50% { 
        transform: translateZ(0) translateX(20px) translateY(-10px);
        opacity: 0.12;
    }
    100% { 
        transform: translateZ(0) translateX(-20px) translateY(0px);
        opacity: 0.06;
    }
}

@keyframes robotMove {
    0%, 100% { 
        transform: translateZ(0) translateX(0px) translateY(0px) rotate(0deg);
        opacity: 0.05;
    }
    33% { 
        transform: translateZ(0) translateX(15px) translateY(-15px) rotate(10deg);
        opacity: 0.08;
    }
    66% { 
        transform: translateZ(0) translateX(-10px) translateY(-20px) rotate(-5deg);
        opacity: 0.1;
    }
}

@keyframes coinFloat {
    0%, 100% { 
        transform: translateZ(0) translateY(0px) scale(1) rotate(0deg);
        opacity: 0.07;
    }
    25% { 
        transform: translateZ(0) translateY(-25px) scale(1.1) rotate(90deg);
        opacity: 0.1;
    }
    50% { 
        transform: translateZ(0) translateY(-35px) scale(0.9) rotate(180deg);
        opacity: 0.12;
    }
    75% { 
        transform: translateZ(0) translateY(-15px) scale(1.05) rotate(270deg);
        opacity: 0.09;
    }
}

@keyframes sparkleFloat {
    0%, 100% { 
        transform: translateZ(0) scale(0.5) rotate(0deg);
        opacity: 0.04;
    }
    25% { 
        transform: translateZ(0) scale(1.2) rotate(90deg);
        opacity: 0.08;
    }
    50% { 
        transform: translateZ(0) scale(0.8) rotate(180deg);
        opacity: 0.06;
    }
    75% { 
        transform: translateZ(0) scale(1.1) rotate(270deg);
        opacity: 0.07;
    }
}

@keyframes chainMove {
    0%, 100% { 
        transform: translateZ(0) translateX(0px) translateY(0px);
        opacity: 0.06;
    }
    50% { 
        transform: translateZ(0) translateX(30px) translateY(-20px);
        opacity: 0.1;
    }
}

@keyframes chartFloat {
    0%, 100% { 
        transform: translateZ(0) translateY(0px) rotate(0deg);
        opacity: 0.06;
    }
    33% { 
        transform: translateZ(0) translateY(-18px) rotate(2deg);
        opacity: 0.09;
    }
    66% { 
        transform: translateZ(0) translateY(-25px) rotate(-2deg);
        opacity: 0.11;
    }
}

@keyframes starTwinkle {
    0%, 100% { 
        transform: translateZ(0) scale(0.3) rotate(0deg);
        opacity: 0.05;
    }
    20% { 
        transform: translateZ(0) scale(1) rotate(72deg);
        opacity: 0.1;
    }
    40% { 
        transform: translateZ(0) scale(0.6) rotate(144deg);
        opacity: 0.08;
    }
    60% { 
        transform: translateZ(0) scale(1.2) rotate(216deg);
        opacity: 0.12;
    }
    80% { 
        transform: translateZ(0) scale(0.4) rotate(288deg);
        opacity: 0.06;
    }
}

@keyframes hexRotate {
    0% { 
        transform: translateZ(0) rotate(0deg) scale(1);
        opacity: 0.03;
    }
    25% { 
        transform: translateZ(0) rotate(90deg) scale(1.1);
        opacity: 0.05;
    }
    50% { 
        transform: translateZ(0) rotate(180deg) scale(0.9);
        opacity: 0.04;
    }
    75% { 
        transform: translateZ(0) rotate(270deg) scale(1.05);
        opacity: 0.06;
    }
    100% { 
        transform: translateZ(0) rotate(360deg) scale(1);
        opacity: 0.03;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Ensure main content appears above background decorations */
section {
    position: relative;
    z-index: 10;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff8c00;
}

.honey-icon {
    font-size: 1.8rem;
    margin-right: 8px;
}

.logo-text {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff8c00;
}

.nav-menu a[href$=".pdf"] {
    position: relative;
    color: #ff8c00;
    font-weight: 600;
}

.nav-menu a[href$=".pdf"]:after {
    content: " 📄";
    font-size: 0.8em;
    margin-left: 4px;
}

.nav-menu a[href$=".pdf"]:hover {
    color: #ffa500;
}

.cta-button {
    background: linear-gradient(135deg, #ff8c00, #ffa500) !important;
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #ff8c00;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.bee-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.gradient-text {
    background: linear-gradient(135deg, #ff8c00, #ffa500, #ffb84d);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    background: #f8f8f8;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff8c00;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.floating-element.bee {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.floating-element.honey {
    top: 60%;
    right: 30%;
    animation-delay: -2s;
}

.floating-element.chart {
    bottom: 20%;
    left: 10%;
    animation-delay: -4s;
}

.floating-element.ai {
    top: 30%;
    right: 10%;
    animation-delay: -1s;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-card {
    background: linear-gradient(135deg, #fef9f0, #fdf5e6);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 140, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.about-card p {
    color: #666;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #fef7e7, #fdf1d8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    background: white;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff8c00, #ffa500);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.2);
}

.timeline-item.active .timeline-dot {
    animation: pulse 2s infinite;
}

.timeline-content {
    background: linear-gradient(135deg, #fef9f0, #fdf5e6);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.1);
    width: 45%;
    margin: 0 5%;
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: scale(1.05);
}

.timeline-content h3 {
    color: #ff8c00;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    background: linear-gradient(135deg, #fef7e7, #fdf1d8);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tokenomics-chart {
    display: flex;
    justify-content: center;
}

.pie-chart {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(
        #ff8c00 0% 30%,
        #ffa500 30% 50%,
        #ffb84d 50% 65%,
        #ffc266 65% 80%,
        #ffd480 80% 90%,
        #ffe599 90% 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-center {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.chart-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff8c00;
}

.chart-supply {
    font-size: 0.9rem;
    color: #666;
}

.tokenomics-breakdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.1);
    transition: transform 0.3s ease;
}

.breakdown-item:hover {
    transform: translateX(10px);
}

.breakdown-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.color-1 { background: #ff8c00; }
.color-2 { background: #ffa500; }
.color-3 { background: #ffb84d; }
.color-4 { background: #ffc266; }
.color-5 { background: #ffd480; }
.color-6 { background: #ffe599; }

.breakdown-info h4 {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.percentage {
    font-weight: 700;
    color: #ff8c00;
    font-size: 0.9rem;
}

.breakdown-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Community Section */
.community {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: white;
    text-align: center;
}

.community-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.community-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.community-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.community-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    padding: 50px 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer p {
    color: #ccc;
}

/* Scrolling Bee Companion */
.scroll-bee {
    position: fixed;
    font-size: 2.5rem;
    z-index: 999;
    pointer-events: none;
    transition: all 0.3s ease;
    animation: beeFloat 3s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.scroll-bee.buzzing {
    animation: beeBuzz 0.5s ease-in-out;
}

@keyframes beeFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(-5deg); 
    }
    25% { 
        transform: translateY(-10px) rotate(5deg); 
    }
    50% { 
        transform: translateY(-15px) rotate(-3deg); 
    }
    75% { 
        transform: translateY(-5px) rotate(3deg); 
    }
}

@keyframes beeBuzz {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-10deg); }
    50% { transform: scale(1.05) rotate(10deg); }
    75% { transform: scale(1.08) rotate(-5deg); }
}

/* Background Decorations - Optimized Honeycomb */
.bg-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    will-change: transform;
}

.honeycomb-cell {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 193, 7, 0.02);
    border: 1px solid rgba(255, 140, 0, 0.06);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0); /* Force hardware acceleration */
}

.honeycomb-cell.animate {
    animation: honeycombGlow 8s ease-in-out infinite;
}

.honeycomb-cell.filled {
    background: rgba(255, 193, 7, 0.04);
    border-color: rgba(255, 140, 0, 0.1);
}

.honeycomb-cell.golden {
    background: rgba(255, 193, 7, 0.06);
    border-color: rgba(255, 140, 0, 0.15);
    box-shadow: inset 0 0 8px rgba(255, 193, 7, 0.1);
}

@keyframes honeycombGlow {
    0%, 100% { 
        opacity: 0.3;
        transform: translateZ(0) scale(1);
    }
    25% { 
        opacity: 0.6;
        transform: translateZ(0) scale(1.01);
    }
    50% { 
        opacity: 0.9;
        transform: translateZ(0) scale(1.03);
    }
    75% { 
        opacity: 0.5;
        transform: translateZ(0) scale(1.01);
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .about-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .timeline-item {
        flex-direction: column !important;
    }
    
    .timeline-content {
        width: 80%;
        margin: 20px 0;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .community-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .about-card {
        padding: 30px 20px;
    }
} 