/* ========================================
   $SHARKDOG — Clean Theme + PicklesParadise Lore
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #0a1a2e;
    --bg-darker: #05101e;
    --bg-card: rgba(13, 36, 64, 0.92);
    --bg-footer: #040c17;
    
    --cyan: #00E5FF;
    --cyan-glow: rgba(0, 229, 255, 0.35);
    --blue: #00A3FF;
    --coral: #FF6B9D;

    --text: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.4);

    --border: rgba(0, 229, 255, 0.18);
    --border-hover: rgba(0, 229, 255, 0.4);

    --font-body: 'Inter', -apple-system, sans-serif;
    --font-display: 'Fredoka', cursive;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection { background: var(--cyan); color: var(--bg-dark); }
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---- Canvas Particles ---- */
#oceanCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ---- Nav ---- */
#navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 14px 0;
    transition: all 0.4s var(--ease);
}

#navbar.scrolled {
    background: rgba(10, 26, 46, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--cyan);
}

.nav-logo-img {
    width: 38px; height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cyan);
    box-shadow: 0 0 12px var(--cyan-glow);
    transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-img { transform: scale(1.1) rotate(6deg); }

.nav-links { display: flex; gap: 28px; }

.nav-links a {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.25s;
}

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

.nav-socials { display: flex; gap: 8px; }

.social-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    border: 1px solid var(--border);
    transition: all 0.25s;
}

.social-btn:hover {
    background: var(--cyan);
    color: var(--bg-dark);
    border-color: var(--cyan);
    box-shadow: 0 0 16px var(--cyan-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-menu-btn span {
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: all 0.3s;
}

/* ---- Hero ---- */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0d2847 0%, var(--bg-dark) 100%);
}

.hero-video-wrap {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.hero-video {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-video-fallback {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: none; align-items: center; justify-content: center;
    background: radial-gradient(circle at center, #0e3259 0%, var(--bg-dark) 80%);
}

.mascot-bounce-img {
    width: 140px; height: 140px;
    border-radius: 50%; object-fit: cover;
    border: 3px solid var(--cyan);
    box-shadow: 0 0 40px var(--cyan-glow);
}

.hero-video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at center, rgba(10,26,46,0.2) 0%, rgba(10,26,46,0.7) 60%, var(--bg-dark) 100%),
        linear-gradient(180deg, transparent 0%, rgba(10,26,46,0.4) 60%, var(--bg-dark) 100%);
    z-index: 1;
}

.hero-content {
    position: relative; z-index: 10;
    text-align: center;
    max-width: 750px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 18px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--cyan);
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.badge-pulse {
    width: 7px; height: 7px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--cyan);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.6); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 14vw, 9.5rem);
    line-height: 0.95;
    margin-bottom: 10px;
}

.title-shark {
    color: #fff;
    text-shadow: 0 0 40px var(--cyan-glow), 0 4px 0 #0077aa;
}

.title-dog {
    color: var(--cyan);
    text-shadow: 0 0 50px var(--cyan-glow), 0 4px 0 #0099cc;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-dim);
    margin-bottom: 28px;
}

/* CA Box */
.hero-ca { margin-bottom: 28px; }

.ca-box {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 16px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s;
}

.ca-box:hover {
    border-color: var(--cyan);
    background: rgba(0, 229, 255, 0.1);
}

.ca-label {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--bg-dark);
    background: var(--cyan);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: var(--font-display);
}

.ca-text {
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    color: var(--text-dim);
    user-select: all;
    max-width: 340px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ca-copy-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s;
    position: relative;
}

.ca-copy-btn:hover { color: var(--cyan); }

.copy-tooltip {
    position: absolute;
    top: -30px; left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--cyan);
    color: var(--bg-dark);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    white-space: nowrap;
    font-family: var(--font-display);
}

.copy-tooltip.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.ca-box-lg { padding: 14px 20px; }
.ca-box-lg .ca-text { font-size: 0.85rem; max-width: 440px; }

/* Buttons */
.hero-buttons {
    display: flex; gap: 12px;
    justify-content: center; flex-wrap: wrap;
}

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.25s var(--ease);
    font-family: var(--font-display);
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), #00A3FF);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px var(--cyan-glow);
}

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

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-3px);
}

.btn-sm { padding: 8px 18px; font-size: 0.8rem; }

.hero-wave {
    position: absolute;
    bottom: -1px; left: 0; width: 100%;
    z-index: 5; line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

/* ---- Marquee ---- */
.marquee-section {
    background: linear-gradient(90deg, var(--cyan), #00A3FF);
    padding: 10px 0;
    overflow: hidden;
    z-index: 20;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-content {
    display: flex; gap: 48px;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--bg-dark);
    font-weight: 700;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- Sections ---- */
.section { padding: 90px 0; position: relative; }
.section-dark { background: var(--bg-darker); }

.section-tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--cyan);
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: var(--font-display);
}

.section-tag.center { display: block; text-align: center; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text);
}

.section-title.center { text-align: center; }

.cyan-glow-text {
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan-glow);
}

.inline-link {
    color: var(--cyan);
    font-weight: 700;
    border-bottom: 1px dashed var(--cyan);
    transition: opacity 0.2s;
}
.inline-link:hover { opacity: 0.8; }

/* ---- About / Lore Section (Spacious layout, larger mascot video size) ---- */
#about {
    padding: 100px 0;
}

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

.mascot-video-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
    transition: all 0.35s var(--ease);
}

.mascot-video-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 20px 60px var(--cyan-glow);
    transform: translateY(-4px);
}

.about-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
    object-fit: cover;
}

.about-desc {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-stats {
    display: flex; gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

/* ---- Viral Tweet Section (Centered down middle in separate section) ---- */
.text-center-container {
    text-align: center;
}

.section-sub-center {
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 32px;
}

.tweet-centered-wrap {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.cute-tweet-frame {
    max-width: 440px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
    transition: all 0.35s var(--ease);
}

.cute-tweet-frame:hover {
    border-color: var(--cyan);
    box-shadow: 0 20px 60px var(--cyan-glow);
    transform: translateY(-4px);
}

.story-floating-card {
    padding: 36px 40px;
}

.card-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--cyan);
    font-family: var(--font-display);
    display: inline-block;
    margin-bottom: 8px;
}

.card-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.card-text {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 14px;
}

.card-stats {
    display: flex; gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat-pill {
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 600;
    display: flex; align-items: center; gap: 6px;
    transition: all 0.25s;
    font-family: var(--font-display);
    background: rgba(255, 255, 255, 0.03);
}

.stat-pill:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 12px var(--cyan-glow);
}

/* Cute Tweet Frame Inside Floating Card */
.cute-tweet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}

.frame-dots { display: flex; gap: 6px; }
.frame-dots span {
    width: 9px; height: 9px;
    border-radius: 50%;
}
.frame-dots span:nth-child(1) { background: #FF5F56; }
.frame-dots span:nth-child(2) { background: #FFBD2E; }
.frame-dots span:nth-child(3) { background: #27C93F; }

.frame-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--cyan);
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}

.cute-tweet-body {
    padding: 12px;
    background: rgba(0, 0, 0, 0.15);
}

.cute-tweet-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s var(--ease);
}

.tweet-floating-card:hover .cute-tweet-img {
    transform: scale(1.02);
}

/* ---- Wave Dividers ---- */
.wave-divider {
    line-height: 0;
    margin-top: -1px;
    position: relative; z-index: 2;
}

.wave-divider svg { width: 100%; height: 60px; }
.wave-flip { transform: scaleY(-1); margin-top: 0; margin-bottom: -1px; }

/* ---- Chart ---- */
/* ---- Chart Switcher Tabs ---- */
.chart-switcher {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.chart-tab {
    padding: 8px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-family: var(--font-display);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s;
}

.chart-tab:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.chart-tab.active {
    background: linear-gradient(135deg, var(--cyan), #00A3FF);
    color: var(--bg-dark);
    border-color: var(--cyan);
    font-weight: 700;
    box-shadow: 0 0 16px var(--cyan-glow);
}

.chart-container {
    margin-top: 16px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

/* ---- How to Buy ---- */
.steps-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 40px;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 0 16px;
}

.step-num {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 2px solid var(--cyan);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--cyan);
    margin: 0 auto 14px;
    transition: all 0.25s;
    background: var(--bg-card);
}

.step-item:hover .step-num {
    background: linear-gradient(135deg, var(--cyan), #00A3FF);
    color: var(--bg-dark);
    border-color: var(--cyan);
    box-shadow: 0 0 24px var(--cyan-glow);
    transform: scale(1.1);
}

.step-item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: var(--text);
}

.step-item p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.step-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--cyan), transparent);
    opacity: 0.3;
    margin-top: 24px;
    flex-shrink: 0;
}

.buy-ca-section {
    text-align: center;
    margin-top: 40px;
}

/* ---- Footer ---- */
.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; height: 60px; }

.footer-inner {
    background: var(--bg-footer);
    padding: 40px 0 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cyan);
}

.footer-socials { display: flex; gap: 8px; }

.footer-divider {
    height: 1px;
    background: var(--border);
    margin: 28px 0;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 10px;
}

.footer-copy {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    opacity: 0.5;
}

/* ---- Scroll Animations ---- */
.anim {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s var(--ease);
}

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

/* ---- Responsive Mobile Optimization ---- */
@media (max-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .mascot-video-card {
        max-width: 380px;
        margin: 0 auto;
    }
    .about-text-col {
        text-align: center;
    }
    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    
    .nav-inner { padding: 0 16px; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(10, 26, 46, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    .nav-links.open { display: flex; }
    .mobile-menu-btn { display: flex; }
    .nav-socials { display: none; }

    .hero-content { padding: 0 16px; }
    .hero-title { font-size: clamp(3rem, 12vw, 5.5rem); }
    .hero-sub { font-size: 0.95rem; }
    
    .ca-box { max-width: 100%; padding: 8px 12px; }
    .ca-text { font-size: 0.7rem; max-width: 180px; }
    .ca-box-lg .ca-text { font-size: 0.72rem; max-width: 220px; }

    .cute-tweet-frame { max-width: 320px; }

    .steps-row { flex-direction: column; gap: 20px; align-items: center; }
    .step-divider { width: 60px; height: 1px; margin: 0; }

    .footer-top { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 3.2rem; }
    .hero-badge { font-size: 0.6rem; padding: 4px 14px; }
    .ca-text { max-width: 150px; font-size: 0.65rem; }
    .btn { padding: 12px 22px; font-size: 0.82rem; }
    .stat-pill { padding: 6px 14px; font-size: 0.75rem; }
}
