
:root {
  --ink: #0A0E1A;
  --ink2: #111827;
  --ink3: #1C2333;
  --gold: #FFCE00;
  --gold2: #FFB300;
  --gold3: #FFF176;
  --teal: #00D4C8;
  --teal2: #00F5E9;
  --coral: #FF5C5C;
  --green: #00E676;
  --white: #FFFFFF;
  --muted: #8899BB;
  --card-bg: #141B2D;
  --border: rgba(255, 206, 0, 0.14);
  --radius: 18px;
  --glow: 0 0 30px rgba(255, 206, 0, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ink);
  color: #D0DCF0;
  overflow-x: hidden;
  cursor: default;
}

/* ══════ CUSTOM CURSOR ══════ */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform .1s;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(255, 206, 0, 0.55);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: left .12s ease, top .12s ease, transform .2s;
}

@media(max-width:600px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ══════ SPLASH ══════ */
#splash {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 40% 40%, #0D1A3A 0%, var(--ink) 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .7s ease, transform .7s ease;
}

#splash.hide {
  opacity: 0;
  transform: scale(1.06);
  pointer-events: none;
}

.splash-ring {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--teal);
  animation: spinRing 1.4s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

.splash-emoji {
  font-size: 4rem;
  position: absolute;
}

.s-title {
  font-family: 'Righteous', cursive;
  font-size: clamp(2.8rem, 9vw, 5rem);
  color: var(--gold);
  letter-spacing: 4px;
  text-shadow: 0 0 40px rgba(255, 206, 0, 0.5);
  animation: fadeSlide .8s .25s both;
}

.s-sub {
  color: var(--teal);
  font-size: .8rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 700;
  animation: fadeSlide .8s .45s both;
  margin-top: 6px;
}

.s-bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  margin-top: 28px;
  overflow: hidden;
  animation: fadeSlide .5s .6s both;
}

.s-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  animation: loadBar 1.6s .7s ease forwards;
}

@keyframes loadBar {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* ══════ PARTICLE CANVAS ══════ */
#particleCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .35;
}

/* ══════ HEADER ══════ */
header {
  position: relative;
  z-index: 2;
  background: linear-gradient(175deg, #060D1F 0%, #0A1530 55%, #0D1A3A 100%);
  padding: 40px 20px 90px;
  text-align: center;
  overflow: hidden;
}

.hdr-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 206, 0, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 206, 0, .04) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  to { background-position: 40px 40px; }
}

.hdr-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 200, .09) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  animation: blobPulse 5s ease-in-out infinite;
}

.hdr-blob2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 206, 0, .07) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  animation: blobPulse 6s 2s ease-in-out infinite;
}

@keyframes blobPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.logo-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.dolphin-btn {
  font-size: 5rem;
  cursor: pointer;
  display: inline-block;
  filter: drop-shadow(0 0 18px rgba(0, 212, 200, .5));
  animation: dolphinFloat 3.5s ease-in-out infinite;
  transition: filter .3s;
}

@keyframes dolphinFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  30% { transform: translateY(-14px) rotate(-8deg); }
  70% { transform: translateY(-8px) rotate(7deg); }
}

.dolphin-btn:hover {
  filter: drop-shadow(0 0 28px rgba(255, 206, 0, .7));
}

.cafe-name {
  font-family: 'Teko', sans-serif;
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold3) 40%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 12px rgba(255, 206, 0, 0.3));
}

.tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  color: var(--teal);
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 700;
}

.badge-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 206, 0, .1);
  border: 1px solid rgba(255, 206, 0, .25);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: badgePop .5s cubic-bezier(.34, 1.56, .64, 1) both;
}

.badge:nth-child(2) { animation-delay: .1s; }
.badge:nth-child(3) { animation-delay: .2s; }

@keyframes badgePop {
  from { opacity: 0; transform: scale(.7); }
  to { opacity: 1; transform: scale(1); }
}

/* SEARCH */
.search-wrap {
  position: relative;
  z-index: 3;
  margin: 20px auto 0;
  max-width: 400px;
  width: calc(100% - 32px);
}

.search-input {
  width: 100%;
  padding: 13px 20px 13px 50px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 206, 0, .25);
  background: rgba(255, 255, 255, .06);
  color: #E8F0FF;
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  outline: none;
  backdrop-filter: blur(12px);
  transition: all .3s;
}

.search-input::placeholder { color: rgba(200, 215, 255, .4); }

.search-input:focus {
  background: rgba(255, 255, 255, .1);
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(255, 206, 0, .2);
  color: #fff;
}

.s-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
}

.h-wave {
  display: block;
  margin-top: 18px;
}

/* ══════ NAV ══════ */
.nav-wrap {
  background: rgba(10, 14, 26, .95);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 206, 0, .12);
}

.nav-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 6px;
  gap: 0;
}

.nav-tabs::-webkit-scrollbar { display: none; }

.nav-tab {
  flex-shrink: 0;
  padding: 14px 18px;
  font-family: 'Righteous', cursive;
  font-size: .82rem;
  color: var(--muted);
  cursor: pointer;
  letter-spacing: 1px;
  white-space: nowrap;
  position: relative;
  transition: color .25s;
}

.nav-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px 2px 0 0;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.nav-tab:hover { color: var(--gold3); }
.nav-tab.active { color: var(--gold); }
.nav-tab.active::after { transform: translateX(-50%) scaleX(1); }

/* ══════ MAIN - FIXED SPACING ══════ */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  position: relative;
  z-index: 1;
}

.menu-section {
  margin-bottom: 60px;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.sec-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 206, 0, .18), rgba(0, 212, 200, .12));
  border: 1px solid rgba(255, 206, 0, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  animation: iconBob 2.5s ease-in-out infinite;
}

@keyframes iconBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.sec-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 600;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* FIXED: Grid with proper gap, no extra height */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

/* FIXED: Card - no forced height, content determines size */
.cat-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s, border-color .3s;
  opacity: 0;
  transform: translateY(26px);
  display: flex;
  flex-direction: column;
}

.cat-card.visible {
  animation: cardIn .5s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

@keyframes cardIn {
  to { opacity: 1; transform: none; }
}

.cat-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(255, 206, 0, .4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .5), var(--glow);
}

/* Card Header - fixed */
.cat-header {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(255, 206, 0, .1) 0%, rgba(0, 212, 200, .07) 100%);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cat-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .07), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}

.cat-card:hover .cat-header::before { left: 130%; }

.c-icon { font-size: 1.3rem; }

.c-title {
  font-family: 'Righteous', cursive;
  font-size: .95rem;
  color: var(--gold);
  letter-spacing: 1px;
  flex: 1;
}

.c-toggle {
  font-size: .85rem;
  color: var(--teal);
  opacity: .8;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.cat-card.collapsed .c-toggle { transform: rotate(-90deg); }

/* FIXED: Card Body - no max-height constraints, natural flow */
.cat-body {
  overflow: hidden;
  transition: max-height .45s ease;
}

.cat-card.collapsed .cat-body { max-height: 0; }

/* FIXED: Items container - no forced max-height */
.cat-items {
  padding: 8px 12px 12px 12px;
}

/* Menu Items - consistent spacing */
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: .9rem;
  font-weight: 500;
  color: #B8CCE8;
  transition: all .2s;
  cursor: pointer;
  border-radius: 10px;
  gap: 12px;
}

.menu-item:last-child { border-bottom: none; }

.menu-item:hover {
  background: rgba(255, 206, 0, .07);
  padding-left: 16px;
  padding-right: 16px;
  border-color: transparent;
  color: #fff;
}

.i-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  transition: all .2s;
}

.menu-item:hover .i-dot {
  background: var(--gold);
  transform: scale(1.6);
}

.i-name {
  flex: 1;
  font-weight: 500;
}

.price {
  font-family: 'Righteous', cursive;
  color: var(--coral);
  font-size: .85rem;
  font-weight: 600;
  background: rgba(255, 92, 92, .12);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item.hidden { display: none; }

/* Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 206, 0, .25);
  animation: rpl .55s ease-out forwards;
  pointer-events: none;
}

@keyframes rpl {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(5); opacity: 0; }
}

.no-results {
  text-align: center;
  padding: 50px 20px;
  display: none;
}

.no-results .big {
  font-size: 3.5rem;
  display: inline-block;
  animation: dolphinFloat 3s ease-in-out infinite;
}

.no-results p {
  font-family: 'Teko', sans-serif;
  font-size: 1.4rem;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: 2px;
}

.scroll-top {
  position: fixed;
  bottom: 22px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--ink);
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 206, 0, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s;
}

.scroll-top:hover {
  transform: translateY(-5px) scale(1.12);
  box-shadow: 0 8px 28px rgba(255, 206, 0, .55);
}

/* ══════ LOCATION SECTION ══════ */
.location-container { background: var(--ink); padding-bottom: 20px; }

.hero {
  margin-top: 0;
  padding: 60px 20px 40px;
  text-align: center;
  background: linear-gradient(160deg, #060D1F 0%, #0A1530 60%, #0D1A3A 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 206, 0, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 206, 0, .04) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: gDrift 22s linear infinite;
}

@keyframes gDrift { to { background-position: 44px 44px; } }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hb1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 206, 0, .07);
  top: -120px;
  right: -80px;
  animation: bPulse 5s ease-in-out infinite;
}

.hb2 {
  width: 350px;
  height: 350px;
  background: rgba(0, 212, 200, .07);
  bottom: -80px;
  left: -60px;
  animation: bPulse 6s 2s ease-in-out infinite;
}

@keyframes bPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }

.hero-emoji {
  font-size: 3.5rem;
  display: inline-block;
  animation: swim 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes swim {
  0%, 100% { transform: translateY(0) rotate(0); }
  30% { transform: translateY(-12px) rotate(-7deg); }
  70% { transform: translateY(-7px) rotate(6deg); }
}

.hero-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold3), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
  margin-top: 8px;
}

.hero-sub {
  color: var(--teal);
  font-size: .8rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  z-index: 2;
  margin-top: 6px;
}

.location-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 16px 80px;
}

.loc-hero {
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

@media(max-width:600px) { .loc-hero { grid-template-columns: 1fr; } }

.loc-info h2 {
  font-family: 'Teko', sans-serif;
  font-size: 2rem;
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
}

.loc-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.loc-row:last-child { border: none; }

.loc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(255, 206, 0, .1);
  border: 1px solid rgba(255, 206, 0, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.loc-text strong {
  display: block;
  font-family: 'Righteous', cursive;
  font-size: .82rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.loc-text span { color: #A0B0CC; font-size: .85rem; line-height: 1.5; }

.map-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--border);
  position: relative;
  background: #0D1A2E;
}

.map-frame iframe { width: 100%; height: 280px; border: none; }

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10, 14, 26, .82);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: all .4s;
  border-radius: 16px;
}

.map-overlay:hover { background: rgba(10, 14, 26, .5); }

.map-overlay .m-icon {
  font-size: 3rem;
  animation: pin 1.5s ease-in-out infinite;
}

@keyframes pin { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.map-overlay p {
  font-family: 'Righteous', cursive;
  color: var(--gold);
  margin-top: 8px;
  font-size: .9rem;
}

.hours-card {
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 20px;
}

.hours-card h3 {
  font-family: 'Teko', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: .88rem;
}

.hour-row:last-child { border: none; }
.hour-row .day { color: var(--muted); font-weight: 600; }
.hour-row .time { color: #E8F0FF; font-weight: 700; }

.dir-btn {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #0088CC, var(--teal));
  color: white;
  font-family: 'Teko', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all .35s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dir-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 212, 200, .35);
}

.share-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.share-btn {
  flex: 1;
  padding: 13px;
  border-radius: 12px;
  border: 1.5px solid;
  font-family: 'Righteous', cursive;
  font-size: .82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.share-wa {
  border-color: rgba(37, 211, 102, .35);
  color: #25D366;
  background: rgba(37, 211, 102, .08);
}

.share-wa:hover {
  background: rgba(37, 211, 102, .18);
  transform: translateY(-3px);
}

.share-copy {
  border-color: rgba(255, 206, 0, .3);
  color: var(--gold);
  background: rgba(255, 206, 0, .07);
}

.share-copy:hover {
  background: rgba(255, 206, 0, .14);
  transform: translateY(-3px);
}

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(70px);
  background: linear-gradient(120deg, var(--ink3), #1A2540);
  border: 1px solid rgba(255, 206, 0, .3);
  color: var(--gold);
  padding: 11px 24px;
  border-radius: 50px;
  font-family: 'Righteous', cursive;
  font-size: .9rem;
  z-index: 9000;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
  white-space: nowrap;
}

.toast.show { transform: translateX(-50%) translateY(0); }

.footer-wave { display: block; background: var(--ink); }

footer {
  background: linear-gradient(180deg, #060D1F 0%, #040912 100%);
  text-align: center;
  padding: 36px 20px 28px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 206, 0, .1);
}

.f-dolphin {
  font-size: 2.4rem;
  display: inline-block;
  animation: dolphinFloat 3s ease-in-out infinite;
}

.f-name {
  font-family: 'Teko', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.f-tag {
  color: var(--teal);
  font-size: .72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.f-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 18px auto;
}

.dev-credit {
  margin-top: 16px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 206, 0, .06);
  border: 1px solid rgba(255, 206, 0, .18);
  border-radius: 50px;
}

.dev-label {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
}

.dev-name {
  font-family: 'Righteous', cursive;
  font-size: 1rem;
  color: var(--gold);
  text-decoration: none;
  transition: all .3s;
}

.dev-name:hover {
  color: var(--teal);
  text-decoration: underline;
}

.dev-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}

@media(max-width:600px) {
  .cat-grid { grid-template-columns: 1fr; gap: 20px; }
  .nav-tab { padding: 12px 13px; font-size: .75rem; }
  main { padding: 30px 16px 60px; }
  .menu-section { margin-bottom: 40px; }
}
