/* Global Styles */
:root {
    --primary: #ed800b;
    --accent: #1a1a1a;
    --solana: #00FFA3;
    --dark: #1A1A1A;
    --light: #FFFFFF;
    --gray: #F5F5F5;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

section {
    padding: 4rem 0;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 0.5rem auto;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #ff8e02;
    color: var(--light);
}

.btn-primary:hover {
    background-color: #1E4B8B;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--light);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-accent {
    background-color: #ffd700;
    color: var(--dark);
}

.btn-accent:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-solana {
    background-color: #ed800b;
    color: var(--dark);
}

.btn-solana:hover {
    background-color: #00CC88;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Header */
header {
    background-color: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
}

.hero-content {
    text-align: center;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.salary-highlight {
    color: #ed800b;
    position: relative;
    display: inline-block;
}

.salary-highlight:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--accent);
    opacity: 0.5;
    z-index: -1;
}

.subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contract-address {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--gray);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin: 0 auto;
    max-width: fit-content;
}

.contract-address code {
    font-family: monospace;
    margin-right: 1rem;
    font-size: 0.9rem;
}

.copy-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.copy-btn:hover {
    background-color: #1E4B8B;
}

.hero-image {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.token-img {
    animation: float 3s ease-in-out infinite;
}

.solana-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background-color: var(--solana);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: var(--shadow);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Tokenomics Section */
.tokenomics {
    background-color: var(--gray);
}

.tokens-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.token-card {
    background-color: var(--light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
}

.token-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.token-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Meme Section */
.meme-section {
    background-color: var(--light);
}

.meme-carousel {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    margin-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
}

.meme-carousel img {
    scroll-snap-align: start;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-height: 300px;
}

.meme-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Roadmap Section */
.roadmap {
    background-color: var(--gray);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-date {
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.timeline-content {
    background-color: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    color: var(--primary);
}

/* Price Counter */
.price-counter {
    background-color: var(--primary);
    color: white;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.price-counter h3 {
    margin-bottom: 0.5rem;
}

.price-display {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: monospace;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    margin: 1rem 0;
}

/* Community Section */
.community {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-link:hover {
    transform: translateY(-5px);
    background-color: var(--accent);
    color: var(--dark);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive Styles */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
    
    .tokens-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    .hero {
        display: flex;
        align-items: center;
        padding: 10rem 0 6rem;
    }
    
    .hero-content {
        text-align: left;
        flex: 1;
        padding-right: 2rem;
    }
    
    .hero-image {
        flex: 1;
    }
    
    .cta-buttons {
        justify-content: flex-start;
    }
    
    .contract-address {
        margin: 0;
    }
    
    .tokens-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .timeline-item {
        width: 50%;
    }
    
    .timeline-item:nth-child(odd) {
        padding-right: 2rem;
        text-align: right;
        left: 0;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 2rem;
        text-align: left;
        left: 50%;
    }
    
    .timeline-date {
        position: absolute;
        top: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-date {
        right: -10px;
        transform: translateX(100%);
    }
    
    .timeline-item:nth-child(even) .timeline-date {
        left: -10px;
        transform: translateX(-100%);
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--light);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-date {
        position: absolute;
        left: 0;
    }
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.stat-item {
    text-align: center;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: monospace;
    background-color: #1a1a1a;
    padding: 0.5rem;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
/* Moonshot Button */
.btn-moonshot {
    background-color: #ffffff;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-moonshot:hover {
    background-color: #5a35cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(110, 69, 226, 0.4);
}

.btn-moonshot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-moonshot:hover::before {
    left: 100%;
}

/* Adjust the CTA buttons container if needed */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* For mobile responsiveness */
@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-moonshot {
        width: 100%;
        max-width: 220px;
    }
}