/* ===========================
   DOUBLE T — Tralalero Tralala
   Ocean Night Theme
   =========================== */

:root {
  --bg-deep:    #020b18;
  --bg-ocean:   #041525;
  --bg-card:    #071e35;
  --bg-card2:   #0a2540;
  --ocean-1:    #0ea5e9;
  --ocean-2:    #38bdf8;
  --ocean-3:    #7dd3fc;
  --ocean-dark: #0369a1;
  --wave-deep:  #0c3a5e;
  --star-white: #e0f2fe;
  --moon:       #fef9c3;
  --foam:       rgba(125,211,252,0.15);
  --text-white: #f0f9ff;
  --text-muted: #7dd3fc;
  --border:     rgba(14,165,233,0.18);
  --glow-sm:    0 0 20px rgba(14,165,233,0.25);
  --glow-md:    0 0 50px rgba(14,165,233,0.3);
  --glow-lg:    0 0 80px rgba(14,165,233,0.2);
}

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

body {
  background: var(--bg-deep);
  color: var(--text-white);
  font-family: 'Boogaloo', sans-serif;
  font-size: 18px;
  overflow-x: hidden;
  position: relative;
}

/* ── STARFIELD BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(56,189,248,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 5%, rgba(14,165,233,0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(12,58,94,0.6) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── PARTICLES (stars + bubbles) ── */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp linear infinite;
  opacity: 0.5;
}

.particle.star {
  animation: twinkle ease-in-out infinite;
  border-radius: 2px;
  background: #fff !important;
  box-shadow: 0 0 4px #fff !important;
}

@keyframes floatUp {
  0%   { transform: translateY(110vh) scale(0); opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.4); }
}

/* ── WAVE DIVIDER ── */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 1;
}
.wave-divider svg { display: block; width: 100%; }

/* ── OCEAN FLOOR LINE ── */
.ocean-floor {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--ocean-1), var(--ocean-2), transparent);
  opacity: 0.4;
  position: relative;
  z-index: 1;
}

/* ── NAVBAR ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(24px);
  background: rgba(2,11,24,0.88);
  border-bottom: 1px solid var(--border);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  font-family: 'Bangers', cursive;
  font-size: 28px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--ocean-2), var(--ocean-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  text-shadow: none;
  filter: drop-shadow(0 0 8px rgba(56,189,248,0.5));
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
  letter-spacing: 0.5px;
}

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

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--ocean-dark), var(--ocean-1));
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  border: 1px solid rgba(56,189,248,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14,165,233,0.45);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--ocean-1);
  color: var(--ocean-2);
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--ocean-1);
  color: #fff;
  box-shadow: 0 8px 30px rgba(14,165,233,0.4);
}

.btn-large { padding: 16px 36px; font-size: 18px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* Moon decoration */
.hero::after {
  content: '🌙';
  position: absolute;
  top: 100px;
  right: 60px;
  font-size: 64px;
  opacity: 0.7;
  animation: moonGlow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes moonGlow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(254,249,195,0.4)); }
  50%       { filter: drop-shadow(0 0 30px rgba(254,249,195,0.8)); }
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.tralala-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--ocean-dark), var(--ocean-1));
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: pulse 2s ease-in-out infinite;
  border: 1px solid rgba(56,189,248,0.4);
  box-shadow: var(--glow-sm);
}

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

.hero-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(60px, 10vw, 100px);
  line-height: 0.95;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #ffffff, var(--ocean-2), var(--ocean-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(56,189,248,0.3));
}

.hero-subtitle-text {
  display: block;
  font-size: clamp(28px, 5vw, 48px);
  background: linear-gradient(135deg, var(--ocean-3), #e0f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 6px;
  margin-top: 4px;
}

.hero-desc {
  font-size: 20px;
  color: #93c5fd;
  margin: 24px 0 12px;
  line-height: 1.6;
}

.hero-desc strong { color: var(--ocean-2); }

.tralala-text {
  font-family: 'Bangers', cursive;
  font-size: 22px;
  letter-spacing: 4px;
  margin-bottom: 32px;
  color: var(--ocean-3);
  animation: waveColor 4s linear infinite;
}

@keyframes waveColor {
  0%   { color: var(--ocean-3); text-shadow: 0 0 10px rgba(125,211,252,0.4); }
  50%  { color: #e0f2fe;        text-shadow: 0 0 20px rgba(224,242,254,0.6); }
  100% { color: var(--ocean-3); text-shadow: 0 0 10px rgba(125,211,252,0.4); }
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* ── CA BOX ── */
.ca-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 20px;
  max-width: 560px;
  box-shadow: var(--glow-sm);
}

.ca-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ocean-2);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.ca-address {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: var(--text-muted);
  word-break: break-all;
  flex: 1;
  line-height: 1.6;
  cursor: pointer;
}

.ca-copy-btn {
  background: var(--ocean-dark);
  border: 1px solid var(--ocean-1);
  color: var(--ocean-2);
  padding: 6px 14px;
  border-radius: 8px;
  font-family: 'Boogaloo', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.ca-copy-btn:hover {
  background: var(--ocean-1);
  color: #fff;
}

/* ── HERO SHARK CARD ── */
.hero-shark {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shark-card {
  position: relative;
  width: 320px;
  height: 420px;
  border-radius: 28px;
  background: #0a2d52;
  border: 1.5px solid rgba(56,189,248,0.35);
  box-shadow:
    0 0 0 1px rgba(56,189,248,0.08),
    0 30px 80px rgba(2,11,24,0.8),
    0 0 60px rgba(14,165,233,0.2),
    inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

/* Stars inside card */
.card-star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px #fff;
}
.cs1 { top: 18px; left: 30px;  animation: twinkle 2.1s ease-in-out infinite; }
.cs2 { top: 35px; left: 120px; animation: twinkle 3.3s ease-in-out infinite 0.5s; width: 4px; height: 4px; }
.cs3 { top: 20px; right: 40px; animation: twinkle 2.7s ease-in-out infinite 1s; }
.cs4 { top: 55px; right: 80px; animation: twinkle 1.9s ease-in-out infinite 0.3s; }

/* Moon */
.card-moon {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 36px;
  animation: moonGlow 4s ease-in-out infinite;
  line-height: 1;
}

/* Shark scene */
.shark-scene {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  flex: 1;
  justify-content: flex-end;
  padding-bottom: 4px;
  z-index: 2;
}

.shark-glow {
  position: absolute;
  bottom: 20px;
  width: 160px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(14,165,233,0.35), transparent 70%);
  border-radius: 50%;
  animation: shadowPulse 3s ease-in-out infinite;
}

.shark-img {
  width: 280px;
  height: auto;
  object-fit: contain;
  animation: sharkFloat 3.5s ease-in-out infinite;
  filter:
    drop-shadow(0 0 30px rgba(14,165,233,0.55))
    drop-shadow(0 12px 24px rgba(2,11,24,0.8));
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
}

.shark-img:hover {
  filter:
    drop-shadow(0 0 50px rgba(56,189,248,0.8))
    drop-shadow(0 12px 24px rgba(2,11,24,0.8));
}

.shark-img.clicked {
  transform: scale(1.08) rotate(3deg);
}

/* Water section */
.water-section {
  width: 100%;
  height: 100px;
  position: relative;
  flex-shrink: 0;
}

.water-surface {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: linear-gradient(180deg,
    rgba(14,100,170,0.7) 0%,
    rgba(8,60,110,0.9)  50%,
    rgba(4,30,60,1)     100%
  );
}

/* Animated wave on water surface */
.water-surface::before {
  content: '';
  position: absolute;
  top: -1px; left: -20%;
  width: 140%;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,11 C50,0 100,22 150,11 C200,0 250,22 300,11 C350,0 400,22 400,11 L400,22 L0,22 Z' fill='rgba(56,189,248,0.25)'/%3E%3C/svg%3E") repeat-x;
  background-size: 400px 22px;
  animation: waveMove 3s linear infinite;
}

.water-surface::after {
  content: '';
  position: absolute;
  top: 8px; left: -30%;
  width: 160%;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,8 C66,0 133,16 200,8 C267,0 333,16 400,8 L400,16 L0,16 Z' fill='rgba(14,165,233,0.15)'/%3E%3C/svg%3E") repeat-x;
  background-size: 400px 16px;
  animation: waveMove 4.5s linear infinite reverse;
}

@keyframes waveMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(400px); }
}

/* Bubbles */
.bubbles { position: absolute; inset: 0; pointer-events: none; }

.bubble {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(125,211,252,0.5);
  background: rgba(125,211,252,0.05);
  animation: bubbleRise linear infinite;
}

.b1 { width: 8px;  height: 8px;  left: 20%;  bottom: 0; animation-duration: 3s;   animation-delay: 0s; }
.b2 { width: 5px;  height: 5px;  left: 40%;  bottom: 0; animation-duration: 2.4s; animation-delay: 0.8s; }
.b3 { width: 10px; height: 10px; left: 60%;  bottom: 0; animation-duration: 3.5s; animation-delay: 0.3s; }
.b4 { width: 6px;  height: 6px;  left: 75%;  bottom: 0; animation-duration: 2.8s; animation-delay: 1.2s; }
.b5 { width: 4px;  height: 4px;  left: 85%;  bottom: 0; animation-duration: 2.2s; animation-delay: 0.5s; }

@keyframes bubbleRise {
  0%   { transform: translateY(0) scale(1);    opacity: 0.6; }
  80%  { opacity: 0.4; }
  100% { transform: translateY(-110px) scale(1.3); opacity: 0; }
}

/* Badge */
.shark-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(14,165,233,0.18);
  border: 1px solid rgba(56,189,248,0.4);
  border-radius: 20px;
  padding: 4px 16px;
  font-family: 'Bangers', cursive;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--ocean-3);
  white-space: nowrap;
  z-index: 5;
  backdrop-filter: blur(8px);
}

/* Animations */
@keyframes sharkFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes shadowPulse {
  0%, 100% { transform: scaleX(1);   opacity: 0.5; }
  50%       { transform: scaleX(0.75); opacity: 0.8; }
}

@keyframes moonGlow {
  0%, 100% { filter: drop-shadow(0 0 8px  rgba(254,249,195,0.4)); }
  50%       { filter: drop-shadow(0 0 24px rgba(254,249,195,0.9)); }
}

/* ── BEACH WAVE (hero bottom) ── */
.hero-wave {
  position: relative;
  z-index: 1;
  margin-top: -2px;
}

/* ── SECTIONS ── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text-white);
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 60px;
}

.highlight {
  background: linear-gradient(135deg, var(--ocean-1), var(--ocean-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ABOUT ── */
.about {
  background: linear-gradient(180deg, #041525 0%, #061c30 100%);
  position: relative;
}

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

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(14,165,233,0.05), transparent 60%);
  pointer-events: none;
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: var(--ocean-1);
  box-shadow: var(--glow-md);
}

.card-icon { font-size: 48px; margin-bottom: 16px; }

.about-card h3 {
  font-family: 'Bangers', cursive;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--ocean-2);
  margin-bottom: 12px;
}

.about-card p {
  color: #93c5fd;
  line-height: 1.6;
  font-size: 17px;
}

/* ── MARQUEE ── */
.marquee-wrapper {
  background: linear-gradient(90deg,
    var(--wave-deep), var(--ocean-dark), var(--ocean-1), var(--ocean-dark), var(--wave-deep));
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(14,165,233,0.3);
  border-bottom: 1px solid rgba(14,165,233,0.3);
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  font-family: 'Bangers', cursive;
  font-size: 20px;
  letter-spacing: 2px;
  color: #fff;
  padding: 0 8px;
  text-shadow: 0 0 10px rgba(125,211,252,0.5);
}

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

/* ── TOKENOMICS ── */
.tokenomics {
  background: linear-gradient(180deg, #061c30 0%, var(--bg-deep) 100%);
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.token-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s;
}

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

.token-num {
  font-family: 'Bangers', cursive;
  font-size: 36px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--ocean-1), var(--ocean-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.token-label {
  color: var(--text-muted);
  font-size: 15px;
  letter-spacing: 1px;
}

.donut-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.donut-chart {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(
    var(--ocean-1)    0% 80%,
    var(--ocean-dark) 80% 90%,
    #1d4ed8           90% 95%,
    #60a5fa           95% 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(14,165,233,0.3);
}

.donut-inner {
  width: 110px;
  height: 110px;
  background: var(--bg-deep);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.donut-inner small {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 4px;
}

.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: #93c5fd;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-1 { background: var(--ocean-1); }
.dot-2 { background: var(--ocean-dark); }
.dot-3 { background: #1d4ed8; }
.dot-4 { background: #60a5fa; }

/* ── COMMUNITY TOKEN BANNER ── */
.community-token-banner {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(3,105,161,0.15));
  border: 1px solid rgba(56,189,248,0.3);
  border-radius: 20px;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
}

.community-token-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(56,189,248,0.08), transparent 60%);
  pointer-events: none;
}

.ctb-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.ctb-icon { font-size: 40px; flex-shrink: 0; }

.ctb-title {
  font-family: 'Bangers', cursive;
  font-size: 32px;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--ocean-2), var(--ocean-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.ctb-sub {
  color: #93c5fd;
  font-size: 16px;
  line-height: 1.6;
}

/* ── HOW TO BUY ── */
.how-to-buy {
  background: linear-gradient(180deg, var(--bg-deep), #061c30);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s;
}

.step:hover {
  border-color: var(--ocean-1);
  box-shadow: var(--glow-md);
}

.step-num {
  font-family: 'Bangers', cursive;
  font-size: 48px;
  color: var(--ocean-2);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  text-shadow: 0 0 15px rgba(56,189,248,0.5);
}

.step-body h3 {
  font-family: 'Bangers', cursive;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--text-white);
  margin-bottom: 8px;
}

.step-body p {
  color: #93c5fd;
  font-size: 16px;
  line-height: 1.6;
}

/* ── MEMES ── */
.memes {
  background: linear-gradient(180deg, #061c30, var(--bg-deep));
}

.meme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.meme-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.meme-card:hover {
  transform: translateY(-8px) rotate(1deg);
  border-color: var(--ocean-2);
  box-shadow: var(--glow-md);
}

.meme-card--featured {
  border-color: rgba(56,189,248,0.4);
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(7,30,53,0.9));
}

.meme-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.big-emoji  { font-size: 64px; line-height: 1; }
.moon-emoji { font-size: 48px; }
.meme-shoes { font-size: 36px; }
.chart-meme { font-size: 48px; letter-spacing: -8px; }
.chart-line { display: block; }

.meme-caption {
  color: var(--text-muted);
  font-size: 15px;
  font-style: italic;
}

/* ── MEME GALLERY IMAGES ── */
.meme-grid--6 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .meme-grid--6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.meme-card--img {
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
}

.meme-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #071e35;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meme-img-cover {
  background: #071e35;
}

.meme-real-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.4s ease;
  display: block;
}

.meme-card--img:hover .meme-real-img {
  transform: scale(1.06);
}

/* ── COMMUNITY ── */
.community {
  background: linear-gradient(180deg, var(--bg-deep), #061c30);
}

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

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-decoration: none;
  color: var(--text-white);
  transition: all 0.3s;
  cursor: pointer;
}

.social-card:hover { transform: translateY(-8px); }

.social-twitter:hover {
  border-color: #38bdf8;
  box-shadow: 0 20px 60px rgba(56,189,248,0.25);
}

.social-tg:hover {
  border-color: #2aabee;
  box-shadow: 0 20px 60px rgba(42,171,238,0.25);
}

.social-tiktok:hover {
  border-color: #ff2d55;
  box-shadow: 0 20px 60px rgba(255,45,85,0.25);
}

.social-jup:hover {
  border-color: #a78bfa;
  box-shadow: 0 20px 60px rgba(167,139,250,0.25);
}

.social-dex:hover {
  border-color: #22c55e;
  box-shadow: 0 20px 60px rgba(34,197,94,0.2);
}

.social-icon {
  font-size: 48px;
  font-family: 'Boogaloo', sans-serif;
  color: var(--ocean-2);
}

.social-name {
  font-family: 'Bangers', cursive;
  font-size: 24px;
  letter-spacing: 2px;
}

.social-handle { color: var(--text-muted); font-size: 15px; }

/* ── FOOTER ── */
footer {
  background: #01080f;
  border-top: 1px solid var(--border);
  padding: 60px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(14,165,233,0.04), transparent);
  pointer-events: none;
}

.footer-content { max-width: 700px; margin: 0 auto; }
.footer-shark { font-size: 48px; margin-bottom: 12px; display: block; }

.footer-title {
  font-family: 'Bangers', cursive;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--ocean-2);
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(56,189,248,0.4);
}

.footer-disclaimer {
  font-size: 13px;
  color: #4a8ab0;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(56,189,248,0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 100px 20px 40px;
    gap: 32px;
  }

  .hero::after { font-size: 40px; top: 80px; right: 20px; }

  .hero-buttons { justify-content: center; }

  .ca-box {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .ca-address { font-size: 7px; }

  .shark-card  { width: 260px; height: 340px; }
  .shark-emoji { font-size: 110px; }
  .shoe-wrap   { font-size: 36px; }
  .nav-links   { display: none; }

  .donut-wrapper { flex-direction: column; gap: 32px; }

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