:root {
    --bg-base: #030303;
    --bg-surface: #0a0a0a;
    --bg-card: rgba(15, 15, 15, 0.6);
    --sol-green: #14F195;
    --sol-purple: #9945FF;
    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;
    --border-color: rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; 
}

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

h1, h2, h3, h4, .logo span, .card-value {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.border-container {
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
}

/* Typography Enhancements */
.gradient-text {
    background: linear-gradient(90deg, var(--sol-green), var(--sol-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text-alt {
    background: linear-gradient(90deg, var(--sol-purple), var(--sol-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-left {
    text-align: left;
    margin-bottom: 30px;
}

/* Scroll Animation Initial State */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(20, 241, 149, 0.1);
    border: 1px solid rgba(20, 241, 149, 0.2);
    border-radius: 50px;
    color: var(--sol-green);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 5%;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.logo img {
    height: 44px;
    width: 44px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(20, 241, 149, 0.5));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--sol-green);
    transition: width 0.3s ease;
}

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

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

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 80px 30px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--border-color);
}

.mobile-menu.open {
    right: 0;
}

.close-menu-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-links a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--sol-green);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: none;
}

.btn-outline {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--sol-green);
    color: var(--sol-green);
    box-shadow: 0 0 20px rgba(20, 241, 149, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, var(--sol-green), var(--sol-purple));
    color: #000;
    box-shadow: 0 4px 20px rgba(20, 241, 149, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(153, 69, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 140px 5% 60px;
}

.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.blob {
    position: absolute;
    filter: blur(140px);
    opacity: 0.3;
    border-radius: 50%;
    animation: drift 15s infinite alternate ease-in-out;
}

.green-blob {
    width: 600px;
    height: 600px;
    background: var(--sol-green);
    top: -200px;
    left: -100px;
}

.purple-blob {
    width: 500px;
    height: 500px;
    background: var(--sol-purple);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 80px) scale(1.15); }
}

.hero-content {
    text-align: center;
    max-width: 850px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 650px;
}

/* Smart Contract Box */
.contract-wrapper {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.contract-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px 14px 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.contract-box:hover {
    border-color: rgba(20, 241, 149, 0.4);
    background: rgba(20, 241, 149, 0.05);
}

.contract-address {
    font-family: monospace;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-right: 15px;
    word-break: break-all;
}

.copy-btn {
    background: var(--sol-green);
    color: #000;
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.contract-box:hover .copy-btn {
    transform: scale(1.05);
}

.copy-tooltip {
    position: absolute;
    bottom: -35px;
    background: var(--sol-green);
    color: #000;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.copy-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    animation: floatToken 6s infinite alternate ease-in-out;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(20, 241, 149, 0.3) 0%, transparent 60%);
    z-index: 1;
    filter: blur(25px);
}

@keyframes floatToken {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(4deg); }
}

/* Sections General */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    font-weight: 800;
}

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

/* About Section */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-paragraph {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--sol-purple);
    padding: 24px;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
}

.stat-box:nth-child(2) { border-left-color: var(--sol-green); }
.stat-box:nth-child(3) { border-left-color: #3b82f6; }

.stat-box:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.stat-box h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.stat-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Tokenomics */
.tokenomics {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-base), var(--bg-surface), var(--bg-base));
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.token-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.token-card:hover {
    transform: translateY(-8px);
    border-color: rgba(20, 241, 149, 0.2);
    background: rgba(25, 25, 25, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.token-card.highlight {
    background: linear-gradient(180deg, rgba(153, 69, 255, 0.08) 0%, rgba(20, 241, 149, 0.05) 100%);
    border: 1px solid rgba(153, 69, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.token-card.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--sol-green), var(--sol-purple));
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--sol-green), var(--sol-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.card-value {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.card-label {
    color: var(--sol-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Roadmap */
.roadmap {
    padding: 100px 0;
}

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

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 60px;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 3px solid var(--sol-purple);
    z-index: 2;
}

.active-dot {
    background: var(--sol-green);
    border-color: var(--sol-green);
    box-shadow: 0 0 15px var(--sol-green);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.timeline-content ul {
    list-style: none;
    color: var(--text-secondary);
}

.timeline-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.timeline-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--sol-purple);
}

.border-highlight {
    border-color: rgba(20, 241, 149, 0.4);
    background: linear-gradient(135deg, rgba(20, 241, 149, 0.03), transparent);
}

.tag {
    display: inline-block;
    background: rgba(20, 241, 149, 0.15);
    color: var(--sol-green);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 10px;
    vertical-align: middle;
}

/* Dashboard Preview */
.dashboard-preview {
    padding: 100px 0 120px;
}

.dashboard-card {
    background: var(--bg-card);
    border: 1px solid rgba(153, 69, 255, 0.3);
    border-radius: 24px;
    padding: 60px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.dash-glow {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(153, 69, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.dash-header {
    position: relative;
    z-index: 2;
}

.dash-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--sol-green), var(--sol-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dash-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.dash-ui-mockup {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mockup-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-weight: 500;
}

.mockup-bar {
    height: 8px;
    border-radius: 4px;
    width: 60%;
    background: rgba(255, 255, 255, 0.1);
}

.mockup-bar.green {
    background: linear-gradient(90deg, var(--sol-green), rgba(20, 241, 149, 0.2));
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
}

.coming-soon-overlay h3 {
    font-size: 1.8rem;
    color: var(--sol-green);
    margin-bottom: 5px;
}

.coming-soon-overlay p {
    color: var(--text-primary);
    font-weight: 600;
}

/* Professional Footer */
.footer-professional {
    background-color: #050505;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 20px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(20, 241, 149, 0.2));
}

.footer-about-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 350px;
}

.footer-links-col h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col ul li {
    margin-bottom: 12px;
}

.footer-links-col ul li a {
    color: var(--text-secondary);
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links-col ul li a:hover {
    color: var(--sol-green);
}

.legal-disclaimer {
    color: rgba(161, 161, 170, 0.6);
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    text-align: center;
    color: rgba(161, 161, 170, 0.8);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding-top: 150px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        width: 100%;
    }
    
    .contract-box {
        max-width: 90vw;
    }
    
    .contract-address {
        font-size: 0.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-dot {
        left: 1px;
    }
    
    .timeline-item {
        padding-left: 40px;
    }
}
