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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

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

/* Header */
.header {
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
}

.pump-text {
    color: #ffffff;
}

.eats-text {
    color: #06c16a;
}

.ticker {
    background: linear-gradient(45deg, #06c16a, #05a85a);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 10px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #06c16a;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #06c16a, #05a85a);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 193, 106, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #06c16a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #06c16a, #05a85a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contract Address */
.contract-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333;
    border-radius: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contract-label {
    color: #06c16a;
    font-weight: 600;
    font-size: 1.1rem;
}

.contract-value {
    color: #ccc;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    letter-spacing: 1px;
    word-break: break-all;
}

/* Sections */
.section {
    padding: 100px 0;
    border-bottom: 1px solid #222;
}

.section:last-of-type {
    border-bottom: none;
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #ffffff, #06c16a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-text {
    font-size: 1.2rem;
    color: #ccc;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.8;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 193, 106, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #06c16a;
}

.feature p {
    color: #999;
    line-height: 1.6;
}

/* Steps */
.steps {
    display: grid;
    gap: 40px;
    margin-top: 60px;
}

.step {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #06c16a, #05a85a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #06c16a;
}

.step-content p {
    color: #ccc;
    line-height: 1.6;
}

/* Claim Section */
.claim-box {
    background: linear-gradient(135deg, rgba(6, 193, 106, 0.1), rgba(5, 168, 90, 0.1));
    border: 2px solid #06c16a;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-top: 40px;
}

.claim-instructions h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #06c16a;
}

.claim-instructions ol {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
    color: #ccc;
    line-height: 1.8;
}

.claim-instructions li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #06c16a, #05a85a);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 193, 106, 0.3);
}

/* Privacy Section */
.privacy-section {
    background: rgba(6, 193, 106, 0.05);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 80px 0;
}

.privacy-notice {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #06c16a;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.privacy-notice h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #06c16a;
}

.privacy-notice p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Links */
.twitter-link {
    color: #06c16a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.twitter-link:hover {
    color: #05a85a;
}

/* Footer */
.footer {
    width: 100%;
    background: #0a0a0a;
    border-top: 1px solid #333;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 20px;
}

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

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

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

.footer-link {
    color: #999;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #06c16a;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .contract-address {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
        margin-top: 30px;
    }
    
    .contract-value {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .claim-box {
        padding: 30px 20px;
    }
    
    .footer-wrapper {
        padding: 40px 20px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .claim-box {
        padding: 20px 15px;
    }
    
    .privacy-notice {
        padding: 20px 15px;
    }
}

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

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover effects */
.feature,
.step,
.claim-box {
    transition: all 0.3s ease;
}

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

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #06c16a, #05a85a);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #05a85a, #06c16a);
}
