/* ===== OceanBite.info – Main Stylesheet ===== */
:root {
  --primary: #0a3d62;
  --secondary: #00cec9;
  --accent: #fd9644;
  --dark: #0d1b2a;
  --light: #f0f8ff;
  --text: #2d3436;
  --text-light: #636e72;
  --white: #ffffff;
  --card-bg: #ffffff;
  --border: #dfe6e9;
  --shadow: 0 4px 24px rgba(10,61,98,0.12);
  --radius: 12px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.7;
  font-size: 16px;
}

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

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

/* ===== HEADER / NAV ===== */
header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo span { color: var(--secondary); }
.logo-icon { font-size: 1.8rem; }

nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}

nav ul li a {
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
  background: rgba(0,206,201,0.2);
  color: var(--secondary);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 8px 18px !important;
  font-weight: 700 !important;
}

.nav-cta:hover { background: #e67e22 !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  color: var(--white);
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

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

.hero p {
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 32px;
  opacity: 0.92;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.btn-primary { background: var(--secondary); color: var(--white); }
.btn-primary:hover { background: #00b5b0; color: var(--white); }

.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: #e67e22; color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== SECTION COMMON ===== */
section { padding: 72px 24px; }

.container { max-width: 1200px; margin: 0 auto; }

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

.section-tag {
  display: inline-block;
  background: rgba(0,206,201,0.12);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ===== GAMES GRID ===== */
.games-section { background: var(--white); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

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

.game-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(10,61,98,0.18); }

.game-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-card-body { padding: 22px; }

.game-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.game-genre {
  background: rgba(0,206,201,0.1);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.game-card-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.game-card-body p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 18px; }

.game-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }

.tag {
  background: var(--light);
  color: var(--text-light);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.btn-sm { padding: 9px 18px; font-size: 0.88rem; }

/* ===== FEATURED GAME ===== */
.featured-section { background: var(--light); }

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.featured-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.featured-img-wrap img { width: 100%; height: 360px; object-fit: cover; }

.featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}

.featured-content .section-tag { text-align: left; }

.featured-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.featured-content p { color: var(--text-light); margin-bottom: 20px; }

.feature-list { list-style: none; margin-bottom: 28px; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li .check { color: var(--secondary); font-size: 1.1rem; flex-shrink: 0; }

/* ===== WHEEL SECTION ===== */
.wheel-section {
  background-image: url('../img/wheel_bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.wheel-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 29, 50, 0.82);
}

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

.wheel-section .section-header h2 { color: var(--white); }
.wheel-section .section-header p { color: rgba(255,255,255,0.75); }
.wheel-section .section-tag { background: rgba(0,206,201,0.2); }

.wheel-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

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

.wheel-outer {
  position: relative;
  width: 380px;
  height: 380px;
}

#wheelCanvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(0,206,201,0.4), 0 0 80px rgba(0,206,201,0.15);
}

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

.wheel-center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--white);
  color: var(--white);
  font-weight: 800;
  font-size: 0.75rem;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.wheel-center-btn:hover { background: #e67e22; transform: translate(-50%, -50%) scale(1.08); }
.wheel-center-btn:disabled { background: #636e72; cursor: not-allowed; }

.wheel-result {
  text-align: center;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wheel-result-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.wheel-result-text.visible { opacity: 1; transform: translateY(0); }

.wheel-result-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

.wheel-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.wheel-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 14px 22px;
  text-align: center;
  color: var(--white);
  min-width: 120px;
}

.wheel-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--secondary); }
.wheel-stat-label { font-size: 0.8rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }

.catch-log {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px;
  width: 100%;
  max-width: 500px;
}

.catch-log h4 { color: var(--secondary); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }

.catch-log-list { list-style: none; max-height: 160px; overflow-y: auto; }

.catch-log-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.catch-log-list li:last-child { border-bottom: none; }

.catch-fish-icon { font-size: 1.2rem; }

.catch-rarity {
  margin-left: auto;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 8px;
  font-weight: 700;
}

.rarity-common { background: rgba(99,110,114,0.3); color: #b2bec3; }
.rarity-rare { background: rgba(0,206,201,0.2); color: var(--secondary); }
.rarity-epic { background: rgba(108,92,231,0.3); color: #a29bfe; }
.rarity-legendary { background: rgba(253,150,68,0.3); color: var(--accent); }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: var(--primary); }

.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.newsletter-text { flex: 1; min-width: 260px; }
.newsletter-text h2 { color: var(--white); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 10px; }
.newsletter-text p { color: rgba(255,255,255,0.7); }

.newsletter-form { flex: 1; min-width: 300px; }

.form-row { display: flex; gap: 12px; }

.form-input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1rem;
  transition: border-color var(--transition);
  outline: none;
}

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

.form-success {
  display: none;
  background: rgba(0,206,201,0.15);
  border: 1px solid var(--secondary);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--secondary);
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
}

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 { font-size: 1.3rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.contact-info p { color: var(--text-light); margin-bottom: 28px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,206,201,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text strong { display: block; color: var(--primary); font-weight: 700; margin-bottom: 2px; }
.contact-item-text span { color: var(--text-light); font-size: 0.95rem; }

.contact-form-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--primary); margin-bottom: 24px; }

.form-group { margin-bottom: 18px; }

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  font-family: inherit;
}

.form-control:focus { border-color: var(--secondary); }

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

.form-submit-msg {
  display: none;
  background: rgba(0,206,201,0.1);
  border: 1px solid var(--secondary);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--secondary);
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 24px 24px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--secondary); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

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

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a5276 100%);
  padding: 64px 24px;
  text-align: center;
  color: var(--white);
}

.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; opacity: 0.8; max-width: 560px; margin: 0 auto; }

/* ===== REVIEWS PAGE ===== */
.reviews-section { background: var(--light); }

.review-full-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 36px;
  border: 1px solid var(--border);
}

.review-full-img { width: 100%; height: 300px; object-fit: cover; }

.review-full-body { padding: 32px; }

.review-full-body h2 { font-size: 1.6rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.review-full-body p { color: var(--text-light); margin-bottom: 16px; }

.review-scores {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.score-item {
  flex: 1;
  min-width: 120px;
  background: var(--light);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.score-label { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.score-val { font-size: 1.6rem; font-weight: 900; color: var(--primary); }
.score-val span { font-size: 0.9rem; color: var(--text-light); }

.score-bar-wrap { margin: 6px 0; }
.score-bar-bg { background: var(--border); border-radius: 4px; height: 6px; overflow: hidden; }
.score-bar { height: 6px; border-radius: 4px; background: linear-gradient(90deg, var(--secondary), var(--accent)); }

/* ===== POLICY PAGES ===== */
.policy-section { background: var(--white); }

.policy-content {
  max-width: 820px;
  margin: 0 auto;
}

.policy-content h2 { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin: 32px 0 12px; }
.policy-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin: 24px 0 10px; }
.policy-content p { color: var(--text-light); margin-bottom: 14px; line-height: 1.8; }
.policy-content ul { margin: 0 0 14px 24px; }
.policy-content ul li { color: var(--text-light); margin-bottom: 8px; line-height: 1.7; }
.policy-content a { color: var(--secondary); }
.policy-content .last-updated {
  background: var(--light);
  border-left: 4px solid var(--secondary);
  padding: 12px 18px;
  border-radius: 0 8px 8px 0;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

/* ===== COOKIE BANNER ===== */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 18px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookieBanner.visible { transform: translateY(0); }

#cookieBanner p { font-size: 0.9rem; flex: 1; min-width: 200px; }
#cookieBanner a { color: var(--secondary); }

.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

.btn-cookie-accept {
  background: var(--secondary);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background var(--transition);
}

.btn-cookie-accept:hover { background: #00b5b0; }

.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: border-color var(--transition), color var(--transition);
}

.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}

.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; height: 380px; object-fit: cover; }

.about-text h2 { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; }

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

.team-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

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

.team-card h4 { font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.team-card span { font-size: 0.85rem; color: var(--text-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .featured-grid, .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { flex-direction: column; gap: 24px; }
}

@media (max-width: 700px) {
  nav ul { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--primary); padding: 16px 24px; gap: 4px; }
  nav ul.open { display: flex; }
  .hamburger { display: flex; }
  .hero { height: auto; padding: 64px 0; }
  .wheel-outer { width: 300px; height: 300px; }
  #wheelCanvas { width: 300px !important; height: 300px !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .games-grid { grid-template-columns: 1fr; }
  .review-scores { flex-direction: column; }
}
