/* ============================================================
   FishingQuest.pro — Main Stylesheet
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary:   #0a6e8a;
  --secondary: #00c8e0;
  --accent:    #f0a500;
  --dark:      #0a1a2e;
  --dark2:     #0d2240;
  --light:     #e8f4f8;
  --text:      #cce8f0;
  --white:     #ffffff;
  --card-bg:   rgba(13, 34, 64, 0.85);
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent); }

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

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }
p  { margin-bottom: 1rem; }

/* ---------- Layout Helpers ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.6rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.section-title p {
  color: var(--text);
  max-width: 600px;
  margin: 1rem auto 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
}
.btn-primary:hover {
  background: transparent;
  color: var(--secondary);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn-outline:hover {
  background: var(--secondary);
  color: var(--dark);
}

.btn-accent {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: transparent;
  color: var(--accent);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 200, 224, 0.15);
  padding: 0.9rem 0;
  transition: background var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}
.navbar-brand span { color: var(--secondary); }
.navbar-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.5rem 1.4rem;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,26,46,0.7) 0%, rgba(0,100,130,0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 200, 224, 0.15);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}

.hero h1 {
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero h1 span { color: var(--secondary); }

.hero p {
  font-size: 1.15rem;
  color: var(--light);
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
  font-size: 0.8rem;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
  stroke: var(--secondary);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Features Strip ---------- */
.features-strip {
  background: var(--dark2);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(0,200,224,0.1);
  border-bottom: 1px solid rgba(0,200,224,0.1);
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 200, 224, 0.1);
  border: 1px solid rgba(0, 200, 224, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.feature-item h4 {
  font-size: 1rem;
  color: var(--white);
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text);
  margin: 0;
}

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

.game-card {
  background: var(--card-bg);
  border: 1px solid rgba(0, 200, 224, 0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 200, 224, 0.2);
}

.game-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-card-img img {
  transform: scale(1.05);
}

.game-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--dark);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.game-card-body {
  padding: 1.5rem;
}

.game-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
  font-size: 0.82rem;
  color: var(--secondary);
}

.game-meta span { display: flex; align-items: center; gap: 0.3rem; }

.game-card-body h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}

.game-card-body p {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.game-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.stars { color: var(--accent); font-size: 1rem; }
.rating-num { font-weight: 700; color: var(--white); }

/* ---------- Wheel Game Section ---------- */
.wheel-section {
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}

.wheel-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img/wheel-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}

.wheel-section .container { position: relative; z-index: 1; }

.wheel-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.wheel-game-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.wheel-container {
  position: relative;
  width: 360px;
  height: 360px;
}

.wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid var(--accent);
  z-index: 10;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

#wheelCanvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(0, 200, 224, 0.4), 0 0 80px rgba(0, 200, 224, 0.15);
  cursor: pointer;
}

.wheel-spin-btn {
  font-size: 1.1rem;
  padding: 0.85rem 2.5rem;
  min-width: 180px;
}

.wheel-result {
  min-height: 60px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(0, 200, 224, 0.08);
  border: 1px solid rgba(0, 200, 224, 0.2);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  width: 100%;
  max-width: 360px;
}

.wheel-info h2 { margin-bottom: 1rem; }
.wheel-info p { margin-bottom: 1.2rem; }

.fish-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.fish-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 200, 224, 0.07);
  border: 1px solid rgba(0, 200, 224, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  font-size: 0.88rem;
}

.fish-emoji { font-size: 1.2rem; }

/* ---------- Newsletter / CTA ---------- */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark2) 100%);
  padding: 5rem 0;
  text-align: center;
}

.newsletter-section h2 { margin-bottom: 0.8rem; }
.newsletter-section p { max-width: 520px; margin: 0 auto 2rem; }

.newsletter-form {
  display: flex;
  gap: 0.8rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 240px;
  padding: 0.85rem 1.4rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: var(--secondary); }

.newsletter-success {
  display: none;
  margin-top: 1rem;
  color: var(--secondary);
  font-weight: 600;
  font-size: 1rem;
}

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 1.5rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 200, 224, 0.1);
  border: 1px solid rgba(0, 200, 224, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-detail-text strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid rgba(0, 200, 224, 0.15);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 200, 224, 0.2);
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select option { background: var(--dark2); }

.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.05rem;
}

/* ---------- Footer ---------- */
.footer {
  background: #050e1a;
  border-top: 1px solid rgba(0, 200, 224, 0.1);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(0, 200, 224, 0.1);
  border: 1px solid rgba(0, 200, 224, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
  color: var(--text);
}

.social-link:hover {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: var(--white);
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary);
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: var(--text);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--secondary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
}
.footer-bottom a:hover { color: var(--secondary); }

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 26, 46, 0.97);
  border-top: 1px solid rgba(0, 200, 224, 0.3);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner p {
  flex: 1;
  min-width: 260px;
  font-size: 0.9rem;
  margin: 0;
  color: var(--text);
}

.cookie-banner p a { color: var(--secondary); }

.cookie-btns {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,200,224,0.06) 0%, transparent 70%);
}

.page-hero h1 { margin-bottom: 0.8rem; }
.page-hero p { color: var(--text); max-width: 600px; margin: 0 auto; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.8rem;
  justify-content: center;
}
.breadcrumb a { color: var(--secondary); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ---------- Policy Pages ---------- */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.8rem;
  color: var(--secondary);
}

.policy-content h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.6rem;
  color: var(--white);
}

.policy-content p,
.policy-content li {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content a { color: var(--secondary); }

.policy-updated {
  display: inline-block;
  background: rgba(0, 200, 224, 0.1);
  border: 1px solid rgba(0, 200, 224, 0.2);
  border-radius: 6px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: var(--secondary);
  margin-bottom: 2rem;
}

/* ---------- Review Page ---------- */
.review-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.review-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.review-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(10,26,46,0.95) 0%, transparent 60%);
}

.review-hero-content { max-width: 800px; }
.review-hero-content h1 { margin-bottom: 0.5rem; }

.review-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--text);
}

.review-score {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--dark);
  font-weight: 800;
  font-size: 1.2rem;
  padding: 0.3rem 1rem;
  border-radius: 8px;
}

.review-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.review-body h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.8rem;
  color: var(--secondary);
}

.review-body p {
  font-size: 0.97rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.review-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.review-body ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}

.review-body ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--secondary);
}

.review-specs {
  background: var(--card-bg);
  border: 1px solid rgba(0,200,224,0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
}

.review-specs h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.spec-item strong {
  display: block;
  font-size: 0.8rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.spec-item span {
  font-size: 0.95rem;
  color: var(--white);
}

/* ---------- About Page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: var(--card-bg);
  border: 1px solid rgba(0,200,224,0.15);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition);
}

.team-card:hover { transform: translateY(-4px); }

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.team-card h4 { margin-bottom: 0.3rem; }
.team-card p { font-size: 0.85rem; color: var(--text); margin: 0; }
.team-role {
  font-size: 0.8rem;
  color: var(--secondary);
  margin-bottom: 0.5rem !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .wheel-wrapper { grid-template-columns: 1fr; }
  .wheel-game-area { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 26, 46, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(0,200,224,0.15);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .wheel-container { width: 300px; height: 300px; }
  .fish-list { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-width: 100%; }
  .wheel-container { width: 260px; height: 260px; }
}
