/* ==========================================================================
   Sushi Smash - Official Website & Landing Page Stylesheet
   Dark Izakaya Aesthetic: Crimson lacquer, gold trims, glassmorphism & bold bento grids
   ========================================================================== */

:root {
  --bg-dark: #0a0d12;
  --bg-card: rgba(18, 24, 32, 0.85);
  --bg-card-hover: rgba(26, 35, 48, 0.95);
  --crimson: #c0392b;
  --crimson-glow: rgba(192, 57, 43, 0.5);
  --gold: #f1c40f;
  --gold-glow: rgba(241, 196, 15, 0.4);
  --wasabi: #2ed573;
  --aburi-orange: #ff7675;
  --text-main: #f5f6fa;
  --text-muted: #a4b0be;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(192, 57, 43, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(241, 196, 15, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(46, 213, 115, 0.05) 0%, transparent 50%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 13, 18, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 100;
  padding: 16px 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, #ff7675, #fab1a0, #fdcb6e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-icon {
  font-size: 28px;
  -webkit-text-fill-color: initial;
}

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

.nav-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-cta {
  background: linear-gradient(135deg, var(--crimson), #e74c3c);
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-weight: 800;
  box-shadow: 0 4px 16px var(--crimson-glow);
  transition: all 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

/* --- Hero Section --- */
.hero-section {
  padding: 160px 0 90px;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(241, 196, 15, 0.12);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
  box-shadow: 0 0 16px var(--gold-glow);
}

.hero-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 40%, #fab1a0 70%, #f1c40f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-hero-play {
  background: linear-gradient(135deg, #2ed573, #10ac84);
  color: #0b2214;
  font-size: 18px;
  font-weight: 900;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(46, 213, 115, 0.45);
  transition: all 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-hero-play:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(46, 213, 115, 0.65);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* --- Hero Banner Frame --- */
.hero-preview-frame {
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(30, 22, 20, 0.9), rgba(18, 24, 32, 0.9));
  border: 2px solid rgba(241, 196, 15, 0.35);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(192, 57, 43, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-preview-inner {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  position: relative;
}

.hero-game-embed {
  width: 100%;
  height: 540px;
  border: none;
}

/* --- Features Section --- */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #ffffff;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(241, 196, 15, 0.4);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

.bento-card-large {
  grid-column: span 2;
}

.bento-card-full {
  grid-column: span 3;
}

.bento-icon {
  font-size: 42px;
  line-height: 1;
}

.bento-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.bento-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Character Roster */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.fighter-card {
  background: var(--bg-card);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.fighter-card:hover {
  transform: translateY(-6px);
  border-color: var(--crimson);
  box-shadow: 0 10px 30px var(--crimson-glow);
}

.fighter-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 52px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
}

.fighter-name {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
}

.fighter-role {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.fighter-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* Level Shapes Showcase */
.shapes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.shape-badge-card {
  background: rgba(20, 26, 36, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.2s ease;
}

.shape-badge-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.shape-icon-large {
  font-size: 38px;
  margin-bottom: 8px;
}

.shape-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.shape-subtitle {
  font-size: 12px;
  color: var(--text-muted);
}

/* Platforms / Availability */
.platforms-banner {
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.25), rgba(14, 18, 24, 0.95));
  border: 1px solid var(--crimson);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.platforms-info h3 {
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 6px;
}

.platforms-info p {
  color: var(--text-muted);
  font-size: 15px;
}

.platform-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.platform-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- Footer --- */
.site-footer {
  background: #07090d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 0 30px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-copy {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
}

/* --- Legal / Policy Pages --- */
.legal-page-header {
  padding: 140px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, rgba(192, 57, 43, 0.15) 0%, transparent 100%);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 80px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  margin: 28px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 6px;
}

.legal-content p, .legal-content li {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .hero-title { font-size: 42px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card-large, .bento-card-full { grid-column: span 1; }
  .platforms-banner { flex-direction: column; text-align: center; }
  .footer-content { flex-direction: column; text-align: center; }
}
