/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Yellow Theme Colors */
    --primary-yellow: #FFD700;
    --secondary-yellow: #FFA500;
    --light-yellow: #FFFFE0;
    --dark-yellow: #DAA520;
    --orange: #FF8C00;
    --white: #FFFFFF;
    --black: #333333;
    --gray: #666666;
    --light-gray: #F5F5F5;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FFD700, #FFA500);
    --gradient-secondary: linear-gradient(135deg, #FFFFE0, #FFD700);
    --gradient-hero: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    
    /* Fonts */
    --font-primary: 'Comic Neue', cursive;
    --font-heading: 'Fredoka One', cursive;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(255, 215, 0, 0.2);
    --shadow-strong: 0 8px 40px rgba(255, 215, 0, 0.3);
    --shadow-card: 0 6px 30px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    background: var(--light-yellow);
}

.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(10px);
    border-bottom: 3px solid var(--primary-yellow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo .logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
}

.nav-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover {
    color: var(--primary-yellow);
    background: var(--gradient-secondary);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-yellow);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90">🌟</text></svg>') repeat;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.highlight {
    color: var(--light-yellow);
    text-shadow: 0 0 20px rgba(255, 255, 224, 0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background: var(--white);
    color: var(--primary-yellow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    background: var(--light-yellow);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-yellow);
    transform: translateY(-3px);
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    color: var(--light-yellow);
    font-weight: 600;
    margin-top: 0.5rem;
}

.floating-elements {
    position: relative;
    height: 400px;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.main-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0 10px 50px rgba(255, 215, 0, 0.4);
    border: 5px solid rgba(255, 255, 255, 0.8);
    animation: logoFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 60px rgba(255, 215, 0, 0.6);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.emoji {
    position: absolute;
    font-size: 3rem;
    animation: float 4s ease-in-out infinite;
}

.emoji:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.emoji:nth-child(2) { top: 30%; right: 10%; animation-delay: 1s; }
.emoji:nth-child(3) { top: 60%; left: 30%; animation-delay: 2s; }
.emoji:nth-child(4) { top: 20%; right: 30%; animation-delay: 3s; }
.emoji:nth-child(5) { top: 80%; right: 20%; animation-delay: 4s; }

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #F8F8F8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: linear-gradient(135deg, #FFFEF7, #FFF8DC);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 3px solid var(--primary-yellow);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Features Section */
.features {
    background: #F0F0F0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-strong);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

/* Tokenomics Section */
.tokenomics {
    background: #F5F5F5;
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chart-container {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFFEF7, #FFF8DC);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.tokenomics-details {
    space-y: 2rem;
}

.token-info {
    background: #FFFEF0;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid var(--primary-yellow);
}

.token-info h3 {
    font-family: var(--font-heading);
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.token-stat {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.label {
    font-weight: 600;
    color: var(--gray);
}

.value {
    font-weight: 700;
    color: var(--primary-yellow);
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    border: 1px solid var(--primary-yellow);
    cursor: pointer;
    transition: all 0.3s ease;
    word-break: break-all;
}

.contract-address:hover {
    background: var(--primary-yellow);
    color: var(--white);
    transform: scale(1.02);
}

.distribution {
    background: #FFFEF0;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-yellow);
}

.distribution h3 {
    font-family: var(--font-heading);
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.distribution-item {
    margin-bottom: 1rem;
}

.distribution-bar {
    background: #eee;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.bar {
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Roadmap Section */
.roadmap {
    background: #F0F0F0;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-yellow);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    border: 2px solid var(--primary-yellow);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-yellow);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -3.5rem;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -3.5rem;
}

.timeline-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.timeline-date {
    font-weight: 700;
    color: var(--orange);
}

.timeline-item.completed .timeline-content {
    background: var(--gradient-secondary);
}

.timeline-item.active .timeline-content {
    background: var(--gradient-primary);
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
}

.timeline-item.active .timeline-content h3 {
    color: var(--white);
}

/* Partners Section */
.partners {
    background: #F8F8F8;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: #FFFEF7;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-yellow);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.partner-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    border: 3px solid var(--primary-yellow);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.partner-card.featured h3 {
    color: var(--white);
}

.partner-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.partner-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.partner-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

/* Team Section */
.team {
    background: #F0F0F0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-strong);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-family: var(--font-heading);
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-socials a {
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-socials a:hover {
    background: var(--orange);
    transform: scale(1.1);
}

/* Social Section */
.social {
    background: #F5F5F5;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.social-card {
    background: #FFFEF7;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-yellow);
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.social-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.social-count {
    font-weight: 700;
    color: var(--orange);
    display: block;
    margin-top: 1rem;
}

.social-card.twitter:hover { background: linear-gradient(135deg, #1DA1F2, #0d95e8); color: white; }
.social-card.discord:hover { background: linear-gradient(135deg, #7289DA, #5b6eae); color: white; }
.social-card.telegram:hover { background: linear-gradient(135deg, #0088CC, #006ba6); color: white; }
.social-card.reddit:hover { background: linear-gradient(135deg, #FF4500, #e03d00); color: white; }
.social-card.youtube:hover { background: linear-gradient(135deg, #FF0000, #cc0000); color: white; }
.social-card.instagram:hover { background: linear-gradient(135deg, #E4405F, #c13584); color: white; }

.social-card:hover .social-icon,
.social-card:hover h3,
.social-card:hover .social-count {
    color: white;
}

/* Footer */
.footer {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--light-yellow);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--light-yellow);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--light-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-emojis {
    display: flex;
    gap: 1rem;
}

.footer-emojis span {
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.footer-emojis span:nth-child(1) { animation-delay: 0s; }
.footer-emojis span:nth-child(2) { animation-delay: 0.5s; }
.footer-emojis span:nth-child(3) { animation-delay: 1s; }
.footer-emojis span:nth-child(4) { animation-delay: 1.5s; }

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-card);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .main-logo {
        width: 150px;
        height: 150px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 3rem !important;
        padding-right: 0 !important;
    }
    
    .roadmap-timeline::before {
        left: 1rem;
    }
    
    .timeline-content::before {
        left: -2.5rem !important;
        right: auto !important;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .main-logo {
        width: 120px;
        height: 120px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
} 