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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f0fdf4;
}

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

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1f2937;
}

.header-buttons {
    display: none;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 20px;
    height: 2px;
    background-color: #6b7280;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #bbf7d0;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: #6b7280;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #1f2937;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #bbf7d0;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(to right, #16a34a, #059669);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary:hover {
    background: linear-gradient(to right, #15803d, #047857);
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: #6b7280;
    border: none;
    padding: 0.5rem 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-secondary:hover {
    color: #1f2937;
}

.btn-outline {
    background: white;
    color: #1f2937;
    border: 1px solid #bbf7d0;
    border-radius: 0.5rem;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #f0fdf4;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #f0fdf4, #dcfce7);
    padding: 5rem 0;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    text-align: center;
    max-width: 800px;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    color: #16a34a;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(to right, #16a34a, #059669);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-stats {
    width: 100%;
    max-width: 600px;
}

.stats-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #bbf7d0;
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #059669;
    margin-bottom: 0.5rem;
}

.stat-value.positive {
    color: #16a34a;
}

.stat-label {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Stats Section */
.stats-section {
    background: #dcfce7;
    padding: 4rem 0;
}

.stats-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.main-stat {
    text-align: center;
}

.stat-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #16a34a;
    background: rgba(34, 197, 94, 0.2);
    padding: 0.75rem;
    border-radius: 50%;
    border: 1px solid #bbf7d0;
    box-sizing: content-box;
}

.stat-value-large {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.stat-label-large {
    color: #6b7280;
}

/* Features Section */
.features {
    background: white;
    padding: 5rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: #374151;
    max-width: 768px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #dcfce7;
    border-color: #86efac;
    transform: translateY(-2px);
}

.feature-icon {
    background: rgba(34, 197, 94, 0.2);
    padding: 0.75rem;
    border-radius: 0.5rem;
    width: fit-content;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(34, 197, 94, 0.3);
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #16a34a;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #374151;
    line-height: 1.6;
}

/* Trading Section */
.trading {
    background: #f0fdf4;
    padding: 5rem 0;
}

.trading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.trading-text {
    text-align: center;
    max-width: 600px;
}

.trading-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.trading-description {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.trading-panel {
    width: 100%;
    max-width: 500px;
}

.panel-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #bbf7d0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.panel-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.panel-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.panel-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

.tokens-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.token-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.token-item:hover {
    background: #dcfce7;
}

.token-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.token-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to right, #16a34a, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.token-symbol {
    color: #1f2937;
    font-weight: 500;
}

.token-name {
    color: #6b7280;
    font-size: 0.875rem;
}

.token-price {
    text-align: right;
}

.price {
    color: #1f2937;
    font-weight: 500;
}

.change {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    justify-content: flex-end;
}

.change.positive {
    color: #16a34a;
}

.change.negative {
    color: #dc2626;
}

.change-icon {
    width: 0.75rem;
    height: 0.75rem;
}

/* Footer Styles */
.footer {
    background: white;
    border-top: 1px solid #bbf7d0;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-description {
    color: #374151;
    margin: 1.5rem 0;
    max-width: 400px;
}

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

.social-link {
    background: #f0fdf4;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    background: #dcfce7;
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #16a34a;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.link-group-title {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #1f2937;
}

.footer-bottom {
    border-top: 1px solid #bbf7d0;
    margin-top: 3rem;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.copyright {
    color: #6b7280;
    font-size: 0.875rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #1f2937;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .header-buttons {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

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

    .hero-buttons {
        flex-direction: row;
    }

    .stats-main-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trading-content {
        flex-direction: row;
        align-items: center;
    }

    .trading-text {
        text-align: left;
        flex: 1;
    }

    .trading-panel {
        flex: 1;
        margin-left: 3rem;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .trading-title {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}