/* ============================================
   SYNAPSE - High-End AI Tech Aesthetic
   Color Palette:
   - Primary Green: #00FF41
   - Cyan Accent: #00D9FF
   - Dark Background: #0A0E27
   - Secondary Dark: #1A1F3A
   - Light Text: #F5F5F5
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0A0E27;
    color: #F5F5F5;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #00FF41, #00D9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #B0B8D4;
}

/* ============================================
   NAVIGATION
   ============================================ */

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

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

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

.logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 255, 65, 0.3));
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00FF41, #00D9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

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

.nav-links a {
    color: #F5F5F5;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #00FF41;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00FF41, #00D9FF);
    transition: width 0.3s ease;
}

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

.cta-button {
    padding: 0.75rem 1.5rem !important;
    border: 2px solid #00FF41;
    border-radius: 6px;
    background: transparent;
    color: #00FF41 !important;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: #00FF41;
    color: #0A0E27 !important;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00FF41, #00D9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #B0B8D4;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.market-action-card {
    position: relative;
    margin-top: 2.5rem;
    padding: 2rem 2.5rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(0, 217, 255, 0.08) 60%, rgba(10, 14, 39, 0.9) 100%);
    border: 1px solid rgba(0, 255, 65, 0.35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.market-action-card::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -100px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.3) 0%, rgba(0, 255, 65, 0) 70%);
    opacity: 0.8;
}

.market-action-card::after {
    content: '';
    position: absolute;
    bottom: -140px;
    left: -120px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.25) 0%, rgba(0, 217, 255, 0) 70%);
    opacity: 0.7;
}

.market-action-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    z-index: 1;
}

.market-signal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(0, 255, 65, 0.2);
    color: #0A0E27;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: marketSignalPulse 2.8s ease-in-out infinite;
}

.market-ticker {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    letter-spacing: 2px;
    color: #00D9FF;
    text-transform: uppercase;
}

.market-action-copy {
    position: relative;
    color: #D1D9FF;
    margin-bottom: 1.75rem;
    z-index: 1;
}

.market-buy-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.05rem 2.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #00FF41, #00D9FF);
    color: #0A0E27;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 18px 40px rgba(0, 255, 65, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.market-buy-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 55px rgba(0, 255, 65, 0.6);
}

.market-buy-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

.neural-network {
    width: 100%;
    max-width: 400px;
    height: 400px;
    animation: float 6s ease-in-out infinite;
}

.neural-network svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(0, 255, 65, 0.2));
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #00FF41, #00D9FF);
    color: #0A0E27;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #00D9FF;
    color: #00D9FF;
}

.btn-secondary:hover {
    background: #00D9FF;
    color: #0A0E27;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.4);
}

.btn-social {
    background: rgba(0, 255, 65, 0.12);
    border: 2px solid rgba(0, 255, 65, 0.6);
    color: #00FF41;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-social:hover {
    background: linear-gradient(135deg, #00FF41, #00D9FF);
    color: #0A0E27;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.45);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
    border-top: 1px solid rgba(0, 255, 65, 0.1);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.features {
    max-width: 1400px;
    margin: 0 auto;
}

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

.feature-card {
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: #00FF41;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-card h3 {
    color: #00FF41;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #B0B8D4;
    font-size: 1rem;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.step {
    position: relative;
    padding: 2rem;
    background: rgba(26, 31, 58, 0.5);
    border-left: 4px solid #00FF41;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(26, 31, 58, 0.8);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.15);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: #00D9FF;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.step h3 {
    color: #00FF41;
    margin-bottom: 1rem;
}

.step p {
    color: #B0B8D4;
}

/* ============================================
   AGENTS SECTION
   ============================================ */

.agents {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #1A1F3A 0%, #0A0E27 100%);
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    max-width: 1400px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #B0B8D4;
    margin-bottom: 3rem;
    text-align: center;
}

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

.agent-card {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.agent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.5s ease;
}

.agent-card:hover::before {
    left: 100%;
}

.agent-card:hover {
    border-color: #00D9FF;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
    transform: translateY(-5px);
}

.agent-card h3 {
    color: #00FF41;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.agent-card p {
    color: #B0B8D4;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.agent-tag {
    display: inline-block;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid #00FF41;
    color: #00FF41;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05), rgba(0, 217, 255, 0.05));
    border-top: 1px solid rgba(0, 255, 65, 0.1);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    max-width: 1400px;
    margin: 0 auto;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #00FF41, #00D9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #B0B8D4;
    font-size: 1.1rem;
}

/* ============================================
   TOKEN HIGHLIGHT SECTION
   ============================================ */

.token-highlight {
    position: relative;
    max-width: 1300px;
    margin: 6rem auto;
    padding: 4rem;
    background: radial-gradient(130% 150% at 50% 50%, rgba(0, 255, 65, 0.08) 0%, rgba(0, 217, 255, 0.05) 55%, rgba(10, 14, 39, 0.95) 100%);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.token-highlight::before,
.token-highlight::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    z-index: 0;
}

.token-highlight::before {
    width: 320px;
    height: 320px;
    top: -100px;
    right: -80px;
    background: rgba(0, 255, 65, 0.25);
}

.token-highlight::after {
    width: 280px;
    height: 280px;
    bottom: -120px;
    left: -80px;
    background: rgba(0, 217, 255, 0.2);
}

.token-highlight-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.token-highlight-copy {
    flex: 1 1 420px;
    position: relative;
}

.token-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(0, 255, 65, 0.15);
    border: 1px solid rgba(0, 255, 65, 0.4);
    color: #00FF41;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.token-highlight-copy h2 {
    margin-bottom: 1rem;
}

.token-highlight-copy p {
    margin-bottom: 2rem;
}

.token-perks {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem 1.5rem;
    margin-bottom: 2.5rem;
}

.token-perks li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #DBE5FF;
    font-size: 1rem;
}

.perk-icon {
    font-size: 1.2rem;
    display: inline-flex;
    margin-top: 0.2rem;
}

.token-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.3);
}

.token-buy-btn:hover {
    box-shadow: 0 30px 60px rgba(0, 255, 65, 0.45);
}

.token-buy-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.token-highlight-visual {
    flex: 1 1 280px;
    min-height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.token-orb {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(60% 60% at 50% 50%, rgba(0, 255, 65, 0.6) 0%, rgba(0, 217, 255, 0.2) 60%, rgba(10, 14, 39, 0.9) 100%);
    box-shadow: 0 0 60px rgba(0, 255, 65, 0.4);
    position: relative;
    animation: pulse-soft 4s ease-in-out infinite;
}

.token-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(0, 217, 255, 0.4);
    animation: orbit-spin 10s linear infinite;
}

.token-orbit-1 {
    width: 280px;
    height: 280px;
}

.token-orbit-2 {
    width: 340px;
    height: 340px;
    animation-duration: 14s;
    border-style: solid;
    border-color: rgba(0, 255, 65, 0.25);
}

.token-pulse {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(0, 255, 65, 0.4);
    filter: blur(40px);
    animation: pulse-soft 3s ease-in-out infinite;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #0A0E27, #1A1F3A);
    border-top: 1px solid rgba(0, 255, 65, 0.1);
    max-width: 1400px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #B0B8D4;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #0A0E27;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #00FF41;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #B0B8D4;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #B0B8D4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #00FF41;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
    color: #6B7280;
    font-size: 0.9rem;
}

/* ============================================
   WALLET MODAL
   ============================================ */

.wallet-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.wallet-modal-content {
    background: linear-gradient(135deg, #0A0E27, #1A1F3A);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.1);
    animation: slideUp 0.3s ease;
}

.wallet-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.wallet-modal-header h2 {
    margin: 0;
    background: linear-gradient(135deg, #00FF41, #00D9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
}

.wallet-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #B0B8D4;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-modal-close:hover {
    color: #00FF41;
}

.wallet-modal-body {
    text-align: center;
}

.wallet-modal-body p {
    margin-bottom: 2rem;
    color: #B0B8D4;
    font-size: 1.1rem;
}

.wallet-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.wallet-button {
    padding: 1rem 1.5rem;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid #00FF41;
    border-radius: 10px;
    color: #00FF41;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wallet-button:hover {
    background: #00FF41;
    color: #0A0E27;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4);
    transform: translateY(-2px);
}

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

.wallet-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid #00FF41;
    border-radius: 8px;
    margin-left: auto;
}

.wallet-connected {
    color: #00FF41;
    font-weight: 600;
    font-size: 0.9rem;
}

.wallet-address {
    color: #B0B8D4;
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        flex-direction: column;
        margin-top: 100px;
        padding: 2rem 1rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .features-grid,
    .agents-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .token-highlight {
        padding: 3rem 2rem;
        margin: 4rem 1.5rem;
    }

    .token-highlight-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .token-highlight-visual {
        align-self: center;
    }

    .token-perks {
        grid-template-columns: 1fr;
    }

    .market-action-card {
        padding: 1.75rem;
    }

    .market-action-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero {
        margin-top: 120px;
        padding: 1.5rem 1rem;
    }

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

    .nav-links {
        gap: 1rem;
        font-size: 0.8rem;
    }

    .logo {
        height: 30px;
    }

    .brand-name {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .wallet-modal-content {
        padding: 1.5rem;
    }

    .wallet-modal-header h2 {
        font-size: 1.4rem;
    }

    .wallet-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .token-highlight {
        margin: 3rem 1rem;
        padding: 2.5rem 1.5rem;
    }

    .token-orbit-2 {
        display: none;
    }

    .token-orbit-1 {
        width: 240px;
        height: 240px;
    }

    .market-action-card {
        margin-top: 2rem;
        padding: 1.5rem 1.75rem;
    }

    .market-buy-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 255, 65, 0.5);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.btn-primary {
    animation: glow 3s ease-in-out infinite;
}

@keyframes pulse-soft {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.8;
    }
}

@keyframes orbit-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes marketSignalPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 18px 0 rgba(0, 255, 65, 0.65);
        transform: scale(1.04);
    }
}
