/* Base Styles and Variables */
:root {
    --pepe-green: #5cdb5c;
    --pepe-green-dark: #3ca63c;
    --pepe-yellow: #ffeb3b;
    --pepe-purple: #9c27b0;
    --pepe-blue: #29b6f6;
    --pepe-pink: #ff4081;
    --background-primary: #f0fff0;
    --background-secondary: #e6fffa;
    --text-primary: #333;
    --text-secondary: #666;
    --border-radius: 12px;
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Comic Neue', cursive;
    background-color: var(--background-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url('images/grid-pattern.svg');
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bubblegum Sans', cursive;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.highlight {
    color: var(--pepe-green-dark);
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--pepe-yellow);
    border-radius: 3px;
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--pepe-green), var(--pepe-blue), var(--pepe-purple), var(--pepe-yellow));
    border-radius: 5px;
}

/* Navigation */
header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.8rem;
    color: var(--pepe-green-dark);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--pepe-green);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.nav-links a:hover {
    color: var(--pepe-green-dark);
}

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

.community-btn {
    background-color: var(--pepe-green);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.community-btn:hover {
    background-color: var(--pepe-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 50px 50px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(240, 255, 240, 0.9) 0%, rgba(230, 255, 250, 0.9) 100%);
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    margin-bottom: 1rem;
    font-size: 4rem;
    line-height: 1.1;
    animation: float 3s ease-in-out infinite;
}

.hero-content h2 {
    color: var(--pepe-purple);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--pepe-green);
    color: white;
    box-shadow: 0 4px 15px rgba(92, 219, 92, 0.4);
}

.btn-primary:hover {
    background-color: var(--pepe-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(92, 219, 92, 0.6);
}

.btn-secondary {
    background-color: var(--pepe-yellow);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.4);
}

.btn-secondary:hover {
    background-color: #ffd600;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 235, 59, 0.6);
}

.hero-image {
    width: 45%;
    max-width: 500px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.hero-image img {
    width: 100%;
    height: auto;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 2.5rem;
    animation: float-around 15s linear infinite;
    opacity: 0.7;
}

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

.f2 {
    top: 70%;
    left: 20%;
    animation-duration: 25s;
    animation-delay: -2s;
}

.f3 {
    top: 30%;
    right: 15%;
    animation-duration: 18s;
    animation-delay: -7s;
}

.f4 {
    top: 80%;
    right: 25%;
    animation-duration: 22s;
    animation-delay: -10s;
}

.f5 {
    top: 40%;
    left: 50%;
    animation-duration: 23s;
    animation-delay: -15s;
}

@keyframes float-around {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(50px, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* About Section */
#about {
    padding: 100px 0;
    background-color: var(--background-secondary);
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Features Section */
#features {
    padding: 100px 0;
    background-color: var(--background-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--pepe-green), var(--pepe-blue));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: auto;
}

.feature-card h3 {
    color: var(--pepe-green-dark);
    margin-bottom: 15px;
}

/* Tokenomics Section */
#tokenomics {
    padding: 100px 0;
    background-color: var(--background-secondary);
    position: relative;
}

.tokenomics-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.token-info {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.token-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.token-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.token-card h3 {
    color: var(--pepe-purple);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.token-card p {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.token-card ul {
    list-style-type: none;
}

.token-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.token-card ul li::before {
    content: '🐸';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.9rem;
}

.token-chart {
    flex: 1;
    min-width: 300px;
}

.token-chart h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--pepe-blue);
}

.chart-container {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    height: 350px;
    overflow: hidden;
}

.chart-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.chart-placeholder img {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
}

/* Roadmap Section */
#roadmap {
    padding: 100px 0;
    background-color: var(--background-primary);
    position: relative;
}

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

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--pepe-green), var(--pepe-blue), var(--pepe-purple));
    border-radius: 3px;
}

.roadmap-item {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 50px;
    position: relative;
    width: 50%;
}

.roadmap-item:nth-child(even) {
    margin-left: 50%;
}

.roadmap-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    position: absolute;
    top: 0;
    z-index: 2;
}

.roadmap-item:nth-child(odd) .roadmap-icon {
    right: -40px;
}

.roadmap-item:nth-child(even) .roadmap-icon {
    left: -40px;
}

.roadmap-icon img {
    width: 60%;
    height: auto;
}

.roadmap-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    width: calc(100% - 50px);
    transition: all 0.3s ease;
}

.roadmap-item:nth-child(odd) .roadmap-content {
    margin-right: 50px;
}

.roadmap-item:nth-child(even) .roadmap-content {
    margin-left: 50px;
}

.roadmap-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.roadmap-content h3 {
    color: var(--pepe-blue);
    margin-bottom: 10px;
}

.roadmap-content h4 {
    color: var(--pepe-green-dark);
    margin-bottom: 15px;
}

.roadmap-content ul {
    list-style-type: none;
}

.roadmap-content ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.roadmap-content ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
}

/* Community Section */
#community {
    padding: 100px 0;
    background-color: var(--background-secondary);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

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

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    transform: rotate(10deg);
}

.telegram {
    background-color: #0088cc;
}

.twitter {
    background-color: #1da1f2;
}

.discord {
    background-color: #7289da;
}

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

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
}

.footer-logo img {
    height: 30px;
    margin-right: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .roadmap-timeline::before {
        left: 40px;
    }
    
    .roadmap-item {
        width: 100%;
        margin-left: 0 !important;
        padding-left: 80px;
    }
    
    .roadmap-item:nth-child(odd) .roadmap-icon,
    .roadmap-item:nth-child(even) .roadmap-icon {
        left: 0;
    }
    
    .roadmap-item:nth-child(odd) .roadmap-content,
    .roadmap-item:nth-child(even) .roadmap-content {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    #hero {
        flex-direction: column;
        padding: 120px 20px 50px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 50px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        width: 80%;
        max-width: 350px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 20px;
        justify-content: center;
    }
}