/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00ff88;
    --secondary-color: #ff6b6b;
    --accent-color: #ffa726;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient-primary: linear-gradient(135deg, #00ff88, #00cc6a);
    --gradient-secondary: linear-gradient(135deg, #ff6b6b, #ff4757);
    --gradient-accent: linear-gradient(135deg, #ffa726, #ff9800);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-glow: 0 0 30px rgba(0, 255, 136, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* CSS-based Icons */
.pepe-icon::before {
    content: "🐸";
    font-size: 1.5em;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-icon {
    margin-right: 8px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--darker-bg);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 45%;
    height: 60%;
    object-fit: cover;
    z-index: 1;
    border-radius: 25px;
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.4), 0 25px 50px rgba(0, 0, 0, 0.6);
    border: 4px solid var(--primary-color);
    animation: imageGlow 4s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 25px rgba(0, 255, 136, 0.3)) brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: translate(-50%, -50%) scale(1.02);
    box-shadow: 0 0 80px rgba(0, 255, 136, 0.6), 0 30px 60px rgba(0, 0, 0, 0.7);
}

@keyframes imageGlow {
    0% {
        box-shadow: 0 0 60px rgba(0, 255, 136, 0.4), 0 25px 50px rgba(0, 0, 0, 0.6);
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        box-shadow: 0 0 90px rgba(0, 255, 136, 0.6), 0 25px 50px rgba(0, 0, 0, 0.6);
        transform: translate(-50%, -50%) scale(1.03);
    }
}

.floating-pepe, .floating-chart, .floating-stonk {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.1;
}

.floating-pepe {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-chart {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-stonk {
    top: 40%;
    right: 30%;
    animation-delay: 4s;
}

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

.hero-content {
    text-align: left;
    z-index: 2;
    max-width: 500px;
    padding: 0 20px;
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
}

.social-icon {
    font-size: 1.2rem;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.title-icon {
    font-size: 2.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Lore Section */
.lore {
    background: var(--card-bg);
}

.lore-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.lore-card {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lore-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.lore-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.lore-card:hover::before {
    opacity: 0.05;
}

.lore-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.lore-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.lore-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics {
    background: var(--darker-bg);
}

.tokenomics-grid {
    display: flex;
    justify-content: center;
    align-items: start;
}

.token-info {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    width: 100%;
}

.token-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.token-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.token-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.token-value {
    color: var(--primary-color);
    font-weight: 700;
}



.tokenomics-note {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-color);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.tokenomics-note p {
    color: var(--primary-color);
    font-weight: 600;
}

/* Roadmap Section */
.roadmap {
    background: var(--card-bg);
}

.roadmap-timeline {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    display: none;
}

.timeline-item {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    flex: 1 1 0;
    min-width: 250px;
    max-width: 350px;
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .roadmap-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    .timeline-item {
        max-width: 100%;
        min-width: 0;
    }
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--dark-bg);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-item.completed .timeline-marker {
    background: var(--primary-color);
}

.timeline-item.active .timeline-marker {
    background: var(--accent-color);
    border-color: var(--accent-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 167, 38, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 167, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 167, 38, 0);
    }
}

.marker-icon {
    font-size: 1.5rem;
}

.timeline-content {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.timeline-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Community Section */
.community {
    background: var(--darker-bg);
}

.community-content {
    max-width: 800px;
    margin: 0 auto;
}

.community-quote {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
}

.community-links h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.community-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    text-align: center;
}

.community-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(0, 255, 136, 0.05);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.community-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.community-card p {
    color: var(--text-secondary);
}

/* How to Buy Section */
.how-to-buy {
    background: var(--card-bg);
}

.buy-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--dark-bg);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    font-size: 3rem;
    margin: 1rem 0;
    display: block;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-card p {
    color: var(--text-secondary);
}

/* Legal Section */
.legal {
    background: var(--darker-bg);
    padding: 50px 0;
}

.legal-content {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.legal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        text-align: center;
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .hero-image {
        position: relative;
        left: 50%;
        top: auto;
        transform: translateX(-50%);
        width: 70%;
        height: auto;
        margin-bottom: 2rem;
        border-radius: 20px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tokenomics-grid {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .title-icon {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        gap: 1rem;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
    }
    
    .marker-icon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-image {
        width: 85%;
        border-radius: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .lore-content {
        grid-template-columns: 1fr;
    }
    
    .buy-steps {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
} 