/* ============================================================
   $LOVE — Send The Love | Styles
   A modern, warm, love-themed crypto landing page
   ============================================================ */

/* ===================== CSS VARIABLES ===================== */
:root {
    /* Core palette */
    --bg-dark: #0a0a0f;
    --bg-section: #0d0d14;
    --bg-card: #141420;
    --bg-card-hover: #1a1a2e;

    /* Love colors */
    --pink: #ff4d8d;
    --pink-light: #ff6ba3;
    --pink-soft: #ff8fbf;
    --red: #ff3355;
    --red-soft: #ff5577;
    --purple: #9b59d0;
    --purple-soft: #b37de0;
    --purple-dark: #6a3093;
    --magenta: #e040a0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    --gradient-hero: linear-gradient(180deg, #0a0a0f 0%, #1a0a20 40%, #200a1a 70%, #0a0a0f 100%);
    --gradient-text: linear-gradient(135deg, var(--pink-light), var(--magenta), var(--purple-soft));
    --gradient-glow: linear-gradient(135deg, rgba(255,77,141,0.3), rgba(155,89,208,0.3));
    --gradient-card: linear-gradient(145deg, rgba(255,77,141,0.05), rgba(155,89,208,0.05));

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #b0b0cc;
    --text-muted: #6a6a8e;

    /* Misc */
    --border: rgba(255, 77, 141, 0.12);
    --border-hover: rgba(255, 77, 141, 0.3);
    --shadow-glow: 0 0 30px rgba(255, 77, 141, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --section-pad: 100px;
    --container-max: 1200px;
}

/* ===================== RESET & BASE ===================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================== SCROLL ANIMATIONS ===================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for cards */
.reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal:nth-child(2) { transition-delay: 0.15s; }
.reveal:nth-child(3) { transition-delay: 0.25s; }
.reveal:nth-child(4) { transition-delay: 0.35s; }

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    animation: heartbeat 1.5s ease infinite;
}

.logo-heart {
    font-size: 1.3rem;
    animation: heartbeat 1.5s ease infinite;
}

/* Hero Logo */
.hero-logo {
    margin-bottom: 24px;
}
.hero-logo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    box-shadow: 0 0 40px rgba(255, 77, 141, 0.4), 0 0 80px rgba(155, 89, 208, 0.2);
    animation: heroLogoPulse 3s ease-in-out infinite;
    border: 3px solid rgba(255, 77, 141, 0.3);
}
@keyframes heroLogoPulse {
    0%, 100% { box-shadow: 0 0 40px rgba(255, 77, 141, 0.4), 0 0 80px rgba(155, 89, 208, 0.2); transform: scale(1); }
    50% { box-shadow: 0 0 60px rgba(255, 77, 141, 0.6), 0 0 100px rgba(155, 89, 208, 0.3); transform: scale(1.03); }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.2); }
    28% { transform: scale(1); }
    42% { transform: scale(1.15); }
    56% { transform: scale(1); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

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

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

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

.nav-cta {
    background: var(--gradient-primary) !important;
    color: var(--text-primary) !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255, 77, 141, 0.4);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================== HERO SECTION ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: 120px 24px 80px;
}

/* Gradient Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--pink);
    top: -100px;
    right: -150px;
    animation: float-orb 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--purple);
    bottom: -100px;
    left: -100px;
    animation: float-orb 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--magenta);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    animation: float-orb 12s ease-in-out infinite;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

/* Floating Hearts */
.hearts-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.heart {
    position: absolute;
    bottom: -50px;
    font-size: calc(14px + var(--i) * 1.2px);
    opacity: 0;
    animation: float-heart calc(6s + var(--i) * 0.5s) ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.7s);
    left: calc(var(--i) * 5%);
}

@keyframes float-heart {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(0deg) scale(0.5);
    }
    10% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.5;
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        transform: translateY(-110vh) rotate(calc(var(--i) * 30deg)) scale(1);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 77, 141, 0.1);
    border: 1px solid rgba(255, 77, 141, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pink-light);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 77, 141, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 77, 141, 0.5);
}

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

@keyframes btn-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 77, 141, 0.3); }
    50% { box-shadow: 0 4px 40px rgba(255, 77, 141, 0.6), 0 0 60px rgba(255, 77, 141, 0.2); }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 77, 141, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Contract Address */
.contract-address {
    margin-bottom: 36px;
}

.ca-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.ca-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    max-width: 100%;
    transition: var(--transition);
}

.ca-box:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.06);
}

.ca-text {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.82rem;
    color: var(--pink-light);
    word-break: break-all;
    user-select: all;
}

.ca-copy {
    position: relative;
    background: rgba(255, 77, 141, 0.15);
    border: 1px solid rgba(255, 77, 141, 0.2);
    color: var(--pink-light);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.ca-copy:hover {
    background: rgba(255, 77, 141, 0.25);
    transform: scale(1.05);
}

.copy-tooltip {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: var(--pink);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
}

.copy-tooltip.show {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    font-size: 1.2rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
    animation: scroll-bounce 2s ease infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.5; }
    50% { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
}

/* ===================== SECTION COMMON ===================== */
.section {
    padding: var(--section-pad) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 77, 141, 0.08);
    border: 1px solid rgba(255, 77, 141, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pink-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

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

/* ===================== ABOUT SECTION ===================== */
.about {
    background: var(--bg-section);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.about-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 14px;
    font-size: 1.4rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 77, 141, 0.3);
}

.about-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-highlight {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.about-highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
}

.highlight-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.highlight-emoji {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.highlight-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* ===================== HOW TO BUY SECTION ===================== */
.how-to-buy {
    background: var(--bg-dark);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 48px;
}

.step-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    max-width: 600px;
    width: 100%;
    position: relative;
    transition: all 0.4s ease;
}

.step-card:hover {
    border-color: var(--border-hover);
    transform: translateX(8px);
    box-shadow: var(--shadow-glow);
}

.step-number {
    position: absolute;
    top: -1px;
    right: 24px;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
    pointer-events: none;
}

.step-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.step-tip {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 77, 141, 0.06);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--pink-soft);
}

.step-tip i {
    color: #fbbf24;
    margin-top: 3px;
}

.step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--pink), transparent);
    opacity: 0.3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-connector i {
    position: absolute;
    color: var(--pink);
    font-size: 0.7rem;
    opacity: 0.5;
    animation: pulse-heart 2s ease infinite;
}

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

/* Buy CTA Section */
.buy-cta {
    text-align: center;
    padding: 40px;
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.ca-reminder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.ca-reminder span {
    color: var(--text-muted);
    font-weight: 500;
}

.ca-reminder code {
    color: var(--pink-light);
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.82rem;
    word-break: break-all;
}

.ca-copy-sm {
    background: rgba(255, 77, 141, 0.15);
    border: none;
    color: var(--pink-light);
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.ca-copy-sm:hover {
    background: rgba(255, 77, 141, 0.3);
}

.buy-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================== TOKENOMICS SECTION ===================== */
.tokenomics {
    background: var(--bg-section);
}

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

.token-card {
    text-align: center;
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 28px;
    transition: all 0.4s ease;
}

.token-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.token-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(255, 77, 141, 0.3);
}

.token-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.token-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* Token Info Bar */
.token-info-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 28px 36px;
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    flex-wrap: wrap;
}

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

.info-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-bottom: 4px;
}

.info-value {
    font-size: 1.15rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ===================== COMMUNITY SECTION ===================== */
.community {
    background: var(--bg-dark);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.social-card {
    display: block;
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.social-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(-5deg);
}

.social-icon.twitter {
    background: linear-gradient(135deg, #1a1a2e, #2a2a3e);
    color: #fff;
}

.social-icon.telegram {
    background: linear-gradient(135deg, #0088cc, #00aaee);
    color: white;
}

.social-icon.gecko {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
}

.social-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.social-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--pink-light);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Giveaway Banner */
.giveaway-banner {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.giveaway-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,77,141,0.03), rgba(155,89,208,0.03));
    pointer-events: none;
}

.giveaway-content {
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.giveaway-icon {
    font-size: 3rem;
    flex-shrink: 0;
    animation: bounce-gift 2s ease infinite;
}

@keyframes bounce-gift {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(-5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-4px) rotate(3deg); }
}

.giveaway-text {
    flex: 1;
}

.giveaway-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.giveaway-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===================== FOOTER ===================== */
.footer {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-brand .footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 280px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--pink-light);
    padding-left: 4px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-3px) rotate(-5deg);
    box-shadow: 0 4px 20px rgba(255, 77, 141, 0.4);
}

.footer-bottom {
    padding: 28px 0;
}

.footer-disclaimer {
    padding: 20px 24px;
    background: rgba(255, 77, 141, 0.04);
    border: 1px solid rgba(255, 77, 141, 0.08);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.footer-disclaimer p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.7;
}

.footer-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-email a {
    color: var(--pink-light);
    font-weight: 500;
}

.footer-email a:hover {
    text-decoration: underline;
}

/* ===================== MOBILE RESPONSIVE ===================== */
@media (max-width: 768px) {
    :root {
        --section-pad: 70px;
    }

    /* Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-cta {
        width: fit-content;
    }

    /* Hero */
    .hero {
        padding: 120px 20px 80px;
    }

    .hero-title {
        letter-spacing: -1px;
    }

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

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

    .ca-box {
        flex-direction: column;
        text-align: center;
    }

    .ca-text {
        font-size: 0.72rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .stat-divider {
        display: none;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
    }

    .highlight-content {
        flex-direction: column;
        text-align: center;
    }

    /* Steps */
    .step-card {
        padding: 28px 24px;
    }

    /* Tokenomics */
    .tokenomics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .token-info-bar {
        gap: 20px;
        padding: 24px 20px;
    }

    .info-divider {
        display: none;
    }

    /* Community */
    .community-grid {
        grid-template-columns: 1fr;
    }

    .giveaway-content {
        flex-direction: column;
        text-align: center;
    }

    .giveaway-content .btn {
        max-width: none;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-copy {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-badge {
        font-size: 0.78rem;
    }
}

/* ===================== SELECTION ===================== */
::selection {
    background: rgba(255, 77, 141, 0.3);
    color: white;
}

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

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 77, 141, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 77, 141, 0.5);
}

/* ===================== BODY OVERLAY FOR MOBILE NAV ===================== */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
