/*
Theme Name: Mikan Theme
Theme URI: https://mikan.games
Author: Wolf Box / Bruno Pavani
Author URI: https://wolfbox.com.br
Description: Tema WordPress customizável para a Mikan Games e Mikan Interactive, com jogos, parceiros, notícias e home editorial inspirada em estética japonesa contemporânea.
Version: 1.3.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mikan-theme
*/

:root {
  --mikan-bg: #fff8ea;
  --mikan-paper: #fffaf0;
  --mikan-paper-strong: #fff2d6;
  --mikan-ink: #121211;
  --mikan-muted: #57524a;
  --mikan-soft: #e7d8bd;
  --mikan-line: rgba(232, 166, 63, 0.34);
  --mikan-orange: #f5a019;
  --mikan-orange-dark: #d77f00;
  --mikan-green: #7b8f27;
  --kundara-red: #b6372e;
  --kundara-gold: #cfaa54;
  --dark: #11100e;
  --dark-2: #191714;
  --white: #ffffff;
  --radius: 22px;
  --radius-sm: 10px;
  --shadow-soft: 0 22px 70px rgba(70, 48, 12, .12);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--mikan-ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(245,160,25,.10), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(245,160,25,.11), transparent 28%),
    linear-gradient(180deg, #fff8ea 0%, #fff6e6 100%);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .33;
  background-image:
    linear-gradient(rgba(190,135,56,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190,135,56,.08) 1px, transparent 1px),
    radial-gradient(circle at 20% 10%, rgba(0,0,0,.035) 0 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px, 7px 7px;
  mix-blend-mode: multiply;
  z-index: -2;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }

.site-shell {
  width: min(100% - 34px, 1480px);
  margin-inline: auto;
  position: relative;
  border-left: 1px solid rgba(245,160,25,.28);
  border-right: 1px solid rgba(245,160,25,.28);
  min-height: 100vh;
}
.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: rgba(245,160,25,.46);
  border-style: solid;
  pointer-events: none;
  z-index: 5;
}
.site-shell::before { top: 16px; left: 16px; border-width: 1px 0 0 1px; }
.site-shell::after { top: 16px; right: 16px; border-width: 1px 1px 0 0; }

.container { width: min(100% - 64px, var(--container)); margin-inline: auto; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--mikan-orange-dark);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.kicker::before { content: "✦"; color: var(--mikan-orange); font-size: 11px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 2px;
  border: 1px solid rgba(18,18,17,.22);
  color: var(--mikan-ink);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); border-color: var(--mikan-orange); }
.btn-primary {
  border-color: var(--mikan-orange);
  background: linear-gradient(135deg, var(--mikan-orange), #f6b447);
  color: #16130d;
  box-shadow: 0 12px 30px rgba(245,160,25,.22);
}
.btn-dark {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff6e3;
}
.btn-kundara {
  background: linear-gradient(135deg, var(--kundara-red), #d84a3f);
  border-color: rgba(255,255,255,.14);
  color: #fff6e3;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255,248,234,.78);
  border-bottom: 1px solid rgba(245,160,25,.16);
}
.header-inner {
  width: min(100% - 64px, 1360px);
  margin-inline: auto;
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 32px;
  align-items: center;
}
.site-logo { display: inline-flex; align-items: center; gap: 12px; min-width: 150px; }
.site-logo img { max-height: 54px; width: auto; object-fit: contain; }
.site-title-fallback { font-weight: 800; font-size: 24px; }
.primary-nav ul { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 4vw, 56px); list-style: none; margin: 0; padding: 0; }
.primary-nav a { font-size: 13px; font-weight: 720; letter-spacing: .01em; }
.primary-nav a:hover { color: var(--mikan-orange-dark); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 22px;
  min-width: 196px;
  justify-content: space-between;
  background: var(--dark);
  color: #fff7e8;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 42px rgba(0,0,0,.08);
}
.header-cta span { display: block; font-size: 13px; font-weight: 780; line-height: 1.1; }
.header-cta small { display: block; color: var(--mikan-orange); text-transform: uppercase; font-size: 10px; letter-spacing: .08em; margin-top: 3px; }
.menu-toggle {
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  display: grid;
  gap: 5px;
  place-content: center;
  cursor: pointer;
}
.menu-toggle i { width: 24px; height: 2px; background: var(--mikan-ink); display: block; transition: transform .25s ease; }
.mobile-panel {
  display: none;
  background: rgba(255,248,234,.98);
  border-top: 1px solid rgba(245,160,25,.22);
  padding: 18px 32px 28px;
}
.mobile-panel ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.mobile-panel a { font-weight: 750; }

/* Hero */
.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 72px 0 44px;
}
.hero::before {
  content: "";
  position: absolute;
  right: -130px;
  top: 120px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 43% 37%, rgba(255,255,255,.32), transparent 0 7%, transparent 7%),
    radial-gradient(circle at center, rgba(245,160,25,.72), rgba(245,160,25,.46) 42%, rgba(245,160,25,.06) 69%, transparent 70%);
  filter: saturate(1.04);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% 0 -10%;
  height: 210px;
  background:
    radial-gradient(circle at 7% 50%, rgba(248,178,198,.42), transparent 0 3px, transparent 4px),
    radial-gradient(circle at 12% 37%, rgba(248,178,198,.32), transparent 0 5px, transparent 6px),
    linear-gradient(180deg, transparent, rgba(255,255,255,.22));
  opacity: .9;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.15fr;
  align-items: center;
  gap: clamp(34px, 7vw, 100px);
  position: relative;
}
.hero-copy { position: relative; z-index: 2; padding-left: 6px; }
.vertical-note {
  position: absolute;
  left: -52px;
  top: 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--mikan-orange-dark);
  letter-spacing: .13em;
  font-size: 15px;
  line-height: 1;
}
.hero-title {
  margin: 0 0 30px;
  font-family: var(--font-serif);
  font-weight: 760;
  font-size: clamp(56px, 8.2vw, 126px);
  line-height: .94;
  letter-spacing: -.065em;
  color: var(--mikan-ink);
}
.hero-title .highlight {
  display: block;
  font-family: var(--font-sans);
  font-size: .86em;
  letter-spacing: -.05em;
  line-height: .92;
  color: var(--mikan-orange);
  font-weight: 900;
  font-style: italic;
}
.hero-text { max-width: 400px; font-size: 18px; color: #38352f; margin: 0 0 34px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-art {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art-frame {
  width: min(100%, 690px);
  position: relative;
  isolation: isolate;
}
.hero-art-frame::before {
  content: "";
  position: absolute;
  inset: -64px -36px -28px -26px;
  z-index: -1;
  background:
    radial-gradient(circle at 53% 46%, rgba(255,255,255,.85), rgba(255,255,255,.28) 45%, transparent 70%),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 16px, rgba(245,160,25,.08) 17px 18px);
  border-radius: 50%;
}
.hero-main-image {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 25px 42px rgba(39,28,7,.16));
}
.hero-floating-card {
  position: absolute;
  left: 14px;
  bottom: 8px;
  background: rgba(255,248,234,.86);
  border: 1px solid rgba(245,160,25,.34);
  box-shadow: var(--shadow-soft);
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-side-label {
  position: absolute;
  right: -36px;
  top: 70px;
  writing-mode: vertical-rl;
  letter-spacing: .28em;
  font-weight: 700;
  font-size: 13px;
}
.scroll-hint { margin-top: 38px; color: var(--mikan-orange-dark); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; display: inline-flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint::before { content: ""; width: 1px; height: 42px; background: var(--mikan-orange); }

/* Featured game */
.featured-wrap { padding: 30px 0 80px; position: relative; }
.game-featured {
  position: relative;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 46px;
  padding: clamp(32px, 4vw, 56px);
  background:
    radial-gradient(circle at 10% 0, rgba(207,170,84,.12), transparent 36%),
    radial-gradient(circle at 90% 100%, rgba(182,55,46,.10), transparent 42%),
    linear-gradient(140deg, #13120f, #1d1915 68%, #11100e);
  border: 1px solid rgba(207,170,84,.55);
  color: #fff7e8;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(23,16,3,.22);
  overflow: hidden;
}
.game-featured::before,
.game-featured::after { content: ""; position: absolute; width: 52px; height: 52px; border-color: rgba(207,170,84,.86); border-style: solid; pointer-events: none; }
.game-featured::before { left: 17px; top: 17px; border-width: 1px 0 0 1px; }
.game-featured::after { right: 17px; bottom: 17px; border-width: 0 1px 1px 0; }
.game-copy { position: relative; z-index: 2; }
.game-title { margin: 20px 0 6px; font-size: clamp(42px, 5.2vw, 70px); line-height: .93; letter-spacing: -.045em; text-transform: uppercase; }
.game-title span { display: block; color: var(--mikan-orange); font-weight: 400; }
.game-desc { color: rgba(255,247,232,.78); margin: 24px 0; }
.meta-list { display: grid; gap: 12px; margin: 24px 0; }
.meta-row { display: grid; grid-template-columns: 112px 1fr; gap: 14px; font-size: 14px; color: rgba(255,247,232,.76); }
.meta-row strong { color: var(--kundara-gold); font-weight: 760; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0; }
.tag { border: 1px solid rgba(207,170,84,.55); color: #fff7e8; padding: 6px 10px; border-radius: 4px; font-size: 11px; text-transform: uppercase; font-weight: 760; }
.game-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.game-media { position: relative; z-index: 2; }
.game-main-shot {
  border: 1px solid rgba(207,170,84,.82);
  background: #070707;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0,0,0,.32);
}
.game-main-shot img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.game-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.gallery-thumb { border: 1px solid rgba(207,170,84,.5); border-radius: 4px; overflow: hidden; cursor: pointer; background: #0d0c0a; padding: 0; }
.gallery-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; opacity: .72; transition: opacity .2s ease, transform .2s ease; }
.gallery-thumb:hover img, .gallery-thumb.active img { opacity: 1; transform: scale(1.03); }

/* Features and values */
.game-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 44px 0 0; border-top: 1px solid var(--mikan-line); border-bottom: 1px solid var(--mikan-line); }
.feature-mini { padding: 30px 28px; display: grid; grid-template-columns: 44px 1fr; gap: 18px; border-right: 1px solid var(--mikan-line); }
.feature-mini:last-child { border-right: 0; }
.feature-icon { width: 42px; height: 42px; border: 1px solid rgba(18,18,17,.38); border-radius: 50%; display: grid; place-items: center; color: var(--mikan-orange-dark); }
.feature-mini h3 { margin: 0 0 4px; font-size: 17px; line-height: 1.2; }
.feature-mini p { margin: 0; color: var(--mikan-muted); font-size: 14px; line-height: 1.45; }
.values-section { padding: 40px 0 72px; }
.values-box {
  position: relative;
  border: 1px solid var(--mikan-line);
  padding: 34px 38px 44px;
  background: rgba(255,255,255,.22);
}
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 28px; }
.value-card { padding: 28px 34px; text-align: center; border-right: 1px solid var(--mikan-line); }
.value-card:last-child { border-right: 0; }
.value-card .value-icon { width: 58px; height: 58px; margin: 0 auto 18px; color: var(--mikan-orange); display: grid; place-items: center; font-size: 34px; }
.value-card h3 { margin: 0 0 10px; font-size: 15px; letter-spacing: .12em; text-transform: uppercase; }
.value-card p { margin: 0; color: var(--mikan-muted); font-size: 14px; }

/* News */
.news-section { padding: 0 0 60px; }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.section-link { color: var(--mikan-ink); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.news-card {
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(211,166,95,.40);
  box-shadow: 0 16px 48px rgba(94,62,7,.06);
  min-height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 24px 58px rgba(94,62,7,.11); }
.news-thumb { aspect-ratio: 1.48 / 1; overflow: hidden; background: var(--mikan-paper-strong); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-thumb img { transform: scale(1.05); }
.news-body { padding: 22px; }
.news-date { display: block; color: var(--mikan-muted); font-size: 11px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
.news-body h3 { margin: 0 0 10px; font-size: 19px; line-height: 1.25; }
.news-body p { color: var(--mikan-muted); font-size: 14px; margin: 0 0 14px; }
.read-more { color: var(--mikan-orange-dark); font-size: 12px; text-transform: uppercase; font-weight: 850; }

/* Partners */
.partners-section { padding: 10px 0 56px; }
.partner-strip { display: grid; grid-template-columns: 40px 1fr 40px; align-items: center; gap: 14px; margin-top: 18px; }
.partner-arrow { border: 0; background: transparent; color: var(--mikan-orange-dark); font-size: 26px; cursor: pointer; }
.partner-track { display: grid; grid-template-columns: repeat(auto-fit, minmax(128px, 1fr)); gap: 28px; align-items: center; }
.partner-logo {
  min-height: 72px;
  display: grid;
  place-items: center;
  filter: grayscale(1);
  opacity: .86;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}
.partner-logo:hover { filter: grayscale(0); opacity: 1; transform: translateY(-2px); }
.partner-logo img { max-height: 46px; width: auto; max-width: 160px; object-fit: contain; }
.partner-text-logo { font-size: 22px; font-weight: 880; letter-spacing: .04em; }

/* CTA and footer */
.cta-banner { padding: 18px 0 0; }
.cta-inner {
  position: relative;
  min-height: 210px;
  border: 1px solid var(--mikan-line);
  border-radius: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(245,160,25,.42) 0 120px, rgba(245,160,25,.14) 121px 190px, transparent 191px),
    linear-gradient(90deg, rgba(255,255,255,.2), rgba(255,255,255,.48));
}
.cta-inner::before,
.cta-inner::after { content: ""; position: absolute; bottom: -6px; width: 260px; height: 170px; opacity: .2; background: repeating-radial-gradient(circle at bottom, transparent 0 11px, var(--mikan-orange) 12px 13px); }
.cta-inner::before { left: -50px; }
.cta-inner::after { right: -50px; }
.cta-inner h2 { margin: 0 0 22px; font-size: clamp(32px, 4.2vw, 56px); line-height: 1.08; letter-spacing: -.04em; font-weight: 520; }
.site-footer { padding: 42px 0 26px; }
.footer-main { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 42px; align-items: start; border-top: 1px solid var(--mikan-line); padding-top: 34px; }
.footer-logo img { max-height: 58px; width: auto; margin-bottom: 12px; }
.footer-brand p { color: var(--mikan-muted); max-width: 310px; margin: 0; font-size: 14px; }
.footer-menu ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; flex-wrap: wrap; }
.footer-menu a { font-size: 13px; color: var(--mikan-orange-dark); font-weight: 760; }
.footer-col h4 { margin: 0 0 12px; font-size: 12px; letter-spacing: .15em; text-transform: uppercase; }
.socials { display: flex; gap: 13px; flex-wrap: wrap; }
.socials a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--mikan-line); border-radius: 50%; font-size: 12px; font-weight: 800; }
.contact-text { color: var(--mikan-muted); font-size: 14px; margin: 0; }
.footer-bottom { margin-top: 34px; display: flex; justify-content: space-between; gap: 20px; color: var(--mikan-muted); font-size: 12px; border-top: 1px solid rgba(245,160,25,.12); padding-top: 20px; }
.footer-bottom a { margin-left: 18px; }

/* Generic pages */
.page-hero { padding: 92px 0 62px; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(46px, 7vw, 96px); line-height: .95; margin: 0 0 18px; letter-spacing: -.055em; }
.page-hero p { max-width: 680px; font-size: 19px; color: var(--mikan-muted); }
.content-wrap { padding: 40px 0 90px; }
.prose { max-width: 780px; margin-inline: auto; }
.prose h2 { font-size: 34px; line-height: 1.12; }
.prose img { border-radius: 12px; margin: 24px 0; }
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 40px 0 90px; }
.archive-card { border: 1px solid var(--mikan-line); background: rgba(255,255,255,.35); }
.archive-card .news-body h2 { font-size: 24px; margin: 0 0 10px; }

/* Mikan Interactive */
.interactive-page { background: var(--dark); color: #fff6e8; }
.interactive-page .site-shell { border-color: rgba(245,160,25,.18); }
.interactive-page .site-header { background: rgba(17,16,14,.84); border-bottom-color: rgba(255,255,255,.08); }
.interactive-page .primary-nav a,
.interactive-page .site-title-fallback { color: #fff6e8; }
.interactive-page .menu-toggle i { background: #fff6e8; }
.interactive-hero { padding: 92px 0 84px; }
.interactive-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.interactive-title { font-size: clamp(46px, 7vw, 98px); line-height: .95; letter-spacing: -.06em; margin: 0 0 24px; }
.interactive-title span { color: var(--mikan-orange); }
.interactive-copy p { color: rgba(255,246,232,.74); font-size: 18px; max-width: 540px; }
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin: 34px 0; }
.stat-card { border: 1px solid rgba(245,160,25,.28); padding: 28px; background: rgba(255,255,255,.03); }
.stat-card strong { display: block; font-size: 64px; line-height: .95; color: #fff; }
.stat-card span { color: var(--mikan-orange); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.interactive-panel { border: 1px solid rgba(245,160,25,.30); background: linear-gradient(145deg, rgba(245,160,25,.12), rgba(255,255,255,.03)); padding: 36px; border-radius: var(--radius); }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 30px; }
.service-card { border: 1px solid rgba(245,160,25,.18); padding: 24px; background: rgba(255,255,255,.035); border-radius: 14px; }
.service-card h3 { margin: 0 0 8px; color: var(--mikan-orange); }
.service-card p { margin: 0; color: rgba(255,246,232,.70); font-size: 14px; }

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .primary-nav { display: none; }
  .mobile-panel.is-open { display: block; }
  .hero-grid, .game-featured, .interactive-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-art { min-height: auto; }
  .game-features, .values-grid, .news-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 720px) {
  .site-shell { width: 100%; border: 0; }
  .container, .header-inner { width: min(100% - 34px, var(--container)); }
  .header-inner { min-height: 74px; gap: 14px; }
  .site-logo img { max-height: 44px; }
  .header-cta { display: none; }
  .hero { padding-top: 44px; }
  .vertical-note, .hero-side-label { display: none; }
  .hero-title { font-size: clamp(48px, 16vw, 78px); }
  .hero-actions, .game-actions { flex-direction: column; align-items: stretch; }
  .hero-main-image { max-height: 360px; }
  .game-featured { padding: 26px; border-radius: 14px; }
  .game-title { font-size: 42px; }
  .game-gallery { grid-template-columns: repeat(2,1fr); }
  .game-features, .values-grid, .news-grid, .partner-track, .footer-main, .archive-grid, .stats-grid, .service-grid { grid-template-columns: 1fr; }
  .feature-mini, .value-card { border-right: 0; border-bottom: 1px solid var(--mikan-line); }
  .footer-bottom { flex-direction: column; }
  .footer-bottom a { margin-left: 0; margin-right: 16px; }
}
.custom-logo-link { display:inline-flex; align-items:center; }
.custom-logo { max-height:54px; width:auto; object-fit:contain; }
.skip-link { position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus { left:20px; top:20px; width:auto; height:auto; z-index:999; padding:10px 14px; background:#fff; color:#000; }
.screen-reader-text { border:0; clip:rect(1px,1px,1px,1px); clip-path:inset(50%); height:1px; margin:-1px; overflow:hidden; padding:0; position:absolute; width:1px; word-wrap:normal !important; }
.screen-reader-text:focus { background:#fff; clip:auto !important; clip-path:none; color:#000; display:block; height:auto; left:8px; padding:12px; top:8px; width:auto; z-index:100000; }

/* ------------------------------------------------------------
   Mikan richer oriental decoration layer — v1.1
   These rules keep the Mikan palette orange/off-white as the brand base.
   Kundara red/gold remains concentrated inside the featured game module.
------------------------------------------------------------ */
body.decor-rich,
body.decor-subtle {
  background:
    radial-gradient(circle at 13% 6%, rgba(245,160,25,.14), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(245,160,25,.14), transparent 28%),
    radial-gradient(circle at 72% 82%, rgba(245,160,25,.08), transparent 34%),
    linear-gradient(180deg, var(--mikan-bg) 0%, #fff5df 100%);
}

body.decor-rich::before,
body.decor-subtle::before {
  opacity: .42;
  background-image:
    linear-gradient(rgba(190,135,56,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190,135,56,.075) 1px, transparent 1px),
    radial-gradient(circle at 20% 10%, rgba(35,28,12,.038) 0 1px, transparent 1px),
    url("assets/images/wave-pattern.svg");
  background-size: 48px 48px, 48px 48px, 7px 7px, 420px 180px;
  background-position: center, center, center, left bottom;
  background-repeat: repeat, repeat, repeat, repeat-x;
}

.mikan-decor-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.site-shell { z-index: 2; }
.decor-piece { position: absolute; display: block; background-repeat: no-repeat; background-size: contain; opacity: .72; }
.decor-sakura-left {
  left: -78px;
  top: 440px;
  width: 300px;
  height: 500px;
  background-image: url("assets/images/sakura-branch.svg");
  transform: rotate(-4deg);
}
.decor-sakura-right {
  right: -92px;
  bottom: 210px;
  width: 320px;
  height: 520px;
  background-image: url("assets/images/sakura-branch.svg");
  transform: scaleX(-1) rotate(-10deg);
}
.decor-cloud-left {
  left: -120px;
  bottom: 33%;
  width: 520px;
  height: 250px;
  background-image: url("assets/images/cloud-lines.svg");
  opacity: .38;
}
.decor-cloud-right {
  right: -160px;
  top: 210px;
  width: 560px;
  height: 270px;
  background-image: url("assets/images/cloud-lines.svg");
  transform: scaleX(-1);
  opacity: .34;
}
.decor-seal-one {
  left: calc(50% + 520px);
  top: 560px;
  width: 58px;
  height: 58px;
  background-image: url("assets/images/red-seal.svg");
  opacity: .54;
}
body.decor-subtle .decor-sakura-left,
body.decor-subtle .decor-sakura-right { opacity: .22; }
body.decor-subtle .decor-cloud-left,
body.decor-subtle .decor-cloud-right,
body.decor-subtle .decor-seal-one { display: none; }
body.decor-none .mikan-decor-layer { display: none; }

.site-shell {
  background:
    linear-gradient(90deg, rgba(245,160,25,.18) 0 1px, transparent 1px calc(100% - 1px), rgba(245,160,25,.18) calc(100% - 1px)),
    linear-gradient(180deg, rgba(255,248,234,.78), rgba(255,248,234,.64));
}
.site-shell::before,
.site-shell::after {
  width: 54px;
  height: 54px;
  border-color: rgba(245,160,25,.62);
}
.site-main { position: relative; overflow: hidden; }
.site-main::before,
.site-main::after {
  content: "";
  position: absolute;
  width: 66px;
  height: 66px;
  border-color: rgba(245,160,25,.46);
  border-style: solid;
  pointer-events: none;
  z-index: 4;
}
.site-main::before { left: 16px; bottom: 18px; border-width: 0 0 1px 1px; }
.site-main::after { right: 16px; bottom: 18px; border-width: 0 1px 1px 0; }
.interactive-page .site-main::before,
.interactive-page .site-main::after { border-color: rgba(245,160,25,.24); }

.hero { overflow: visible; isolation: isolate; }
.hero::before {
  right: clamp(-260px, -8vw, -90px);
  top: 92px;
  width: min(44vw, 710px);
  height: min(44vw, 710px);
  background-image: url("assets/images/brush-sun.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: none;
  opacity: .92;
}
.hero::after {
  height: 310px;
  background:
    url("assets/images/cloud-lines.svg") right 22% bottom 26px / 680px auto no-repeat,
    url("assets/images/wave-pattern.svg") left bottom / 460px auto repeat-x,
    linear-gradient(180deg, transparent, rgba(255,255,255,.18));
  opacity: .78;
}
.hero-grid::before,
.hero-grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
.hero-grid::before {
  left: -170px;
  bottom: -150px;
  width: 320px;
  height: 520px;
  background-image: url("assets/images/sakura-branch.svg");
  opacity: .72;
}
.hero-grid::after {
  right: -96px;
  top: -34px;
  width: 280px;
  height: 150px;
  background-image: url("assets/images/cloud-lines.svg");
  opacity: .36;
}
.hero-copy,
.hero-art { z-index: 2; }
.hero-copy::after {
  content: "";
  position: absolute;
  left: -68px;
  top: 220px;
  width: 42px;
  height: 42px;
  background: url("assets/images/red-seal.svg") center/contain no-repeat;
  opacity: .66;
}
.vertical-note::after {
  content: "";
  display: block;
  width: 1px;
  height: 94px;
  margin: 18px auto 0;
  background: linear-gradient(var(--mikan-orange), transparent);
}
.hero-art-frame::before {
  inset: -92px -42px -36px -46px;
  background:
    radial-gradient(circle at 47% 43%, rgba(255,255,255,.74), rgba(255,255,255,.22) 42%, transparent 70%),
    url("assets/images/cloud-lines.svg") center bottom / 590px auto no-repeat,
    repeating-radial-gradient(circle at 50% 50%, transparent 0 18px, rgba(245,160,25,.10) 19px 20px);
}
.hero-art-frame::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 210px;
  height: 180px;
  background: url("assets/images/sakura-branch.svg") center/contain no-repeat;
  transform: scaleX(-1) rotate(-12deg);
  opacity: .58;
  z-index: -1;
}
.hero-floating-card {
  box-shadow: 0 16px 44px rgba(83,58,10,.12);
  backdrop-filter: blur(8px);
}

.featured-wrap::before,
.featured-wrap::after,
.values-section::before,
.news-section::after,
.partners-section::before,
.cta-banner::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
.featured-wrap::before {
  left: -94px;
  top: -40px;
  width: 260px;
  height: 430px;
  background-image: url("assets/images/sakura-branch.svg");
  opacity: .48;
  z-index: 0;
}
.featured-wrap::after {
  right: -100px;
  bottom: 20px;
  width: 500px;
  height: 210px;
  background-image: url("assets/images/cloud-lines.svg");
  transform: scaleX(-1);
  opacity: .22;
  z-index: 0;
}
.game-featured {
  border-radius: 24px;
  box-shadow: 0 36px 90px rgba(23,16,3,.28), inset 0 0 0 1px rgba(255,255,255,.04);
}
.game-featured::before,
.game-featured::after { width: 74px; height: 74px; }
.game-featured .kicker { color: #f4b245; }
.game-featured .btn:not(.btn-kundara) { color: #fff7e8; border-color: rgba(207,170,84,.42); }
.game-media::before {
  content: "";
  position: absolute;
  right: -44px;
  top: -42px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(207,170,84,.36);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 9px, rgba(207,170,84,.16) 10px 11px);
}
.game-main-shot { position: relative; }
.game-main-shot::before,
.game-main-shot::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: rgba(207,170,84,.88);
  border-style: solid;
  pointer-events: none;
  z-index: 3;
}
.game-main-shot::before { left: 8px; top: 8px; border-width: 1px 0 0 1px; }
.game-main-shot::after { right: 8px; bottom: 8px; border-width: 0 1px 1px 0; }

.game-features {
  position: relative;
  background: rgba(255,255,255,.20);
  border-left: 1px solid var(--mikan-line);
  border-right: 1px solid var(--mikan-line);
}
.game-features::before,
.game-features::after,
.values-box::before,
.values-box::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  border-color: rgba(245,160,25,.44);
  border-style: solid;
  pointer-events: none;
}
.game-features::before,
.values-box::before { left: 12px; top: 12px; border-width: 1px 0 0 1px; }
.game-features::after,
.values-box::after { right: 12px; bottom: 12px; border-width: 0 1px 1px 0; }
.feature-icon,
.value-card .value-icon {
  background: rgba(255,248,234,.46);
  box-shadow: inset 0 0 0 1px rgba(245,160,25,.12);
}
.values-section { position: relative; }
.values-section::before {
  right: -120px;
  top: 4px;
  width: 520px;
  height: 230px;
  background-image: url("assets/images/cloud-lines.svg");
  transform: scaleX(-1);
  opacity: .28;
}
.values-box {
  background:
    url("assets/images/cloud-lines.svg") right -80px bottom -42px / 440px auto no-repeat,
    rgba(255,255,255,.28);
}
.news-section { position: relative; }
.news-section::before {
  content: "最新情報";
  position: absolute;
  right: max(24px, calc((100vw - 1460px) / 2));
  top: 88px;
  writing-mode: vertical-rl;
  color: rgba(199,66,45,.58);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 18px;
}
.news-section::after {
  left: -120px;
  bottom: -110px;
  width: 330px;
  height: 520px;
  background-image: url("assets/images/sakura-branch.svg");
  opacity: .56;
}
.news-card {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,250,240,.72);
}
.news-card::after {
  content: "→";
  display: block;
  color: var(--mikan-orange-dark);
  font-weight: 800;
  padding: 0 22px 20px;
}
.partners-section { position: relative; }
.partners-section::before {
  right: -120px;
  bottom: -80px;
  width: 450px;
  height: 200px;
  background-image: url("assets/images/wave-pattern.svg");
  opacity: .42;
}
.partner-strip {
  padding: 18px 0;
  border-top: 1px solid rgba(245,160,25,.18);
  border-bottom: 1px solid rgba(245,160,25,.18);
}
.cta-banner { position: relative; }
.cta-banner::after {
  right: -78px;
  bottom: -60px;
  width: 280px;
  height: 440px;
  background-image: url("assets/images/sakura-branch.svg");
  transform: scaleX(-1) rotate(-8deg);
  opacity: .54;
}
.cta-inner {
  background:
    url("assets/images/red-seal.svg") right 26px bottom 26px / 62px 62px no-repeat,
    url("assets/images/cloud-lines.svg") left -70px bottom -12px / 520px auto no-repeat,
    url("assets/images/cloud-lines.svg") right -120px top 10px / 520px auto no-repeat,
    radial-gradient(circle at 50% 50%, rgba(245,160,25,.50) 0 120px, rgba(245,160,25,.16) 121px 198px, transparent 199px),
    linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,.50));
}
.cta-inner::before,
.cta-inner::after { opacity: .28; }
.site-footer { position: relative; }
.site-footer::before {
  content: "";
  position: absolute;
  left: 32px;
  bottom: 34px;
  width: 90px;
  height: 90px;
  background: url("assets/images/red-seal.svg") center/contain no-repeat;
  opacity: .18;
  pointer-events: none;
}

.interactive-page .mikan-decor-layer .decor-sakura-left,
.interactive-page .mikan-decor-layer .decor-sakura-right { opacity: .14; filter: grayscale(1); }
.interactive-page .mikan-decor-layer .decor-cloud-left,
.interactive-page .mikan-decor-layer .decor-cloud-right { opacity: .12; }
.interactive-page .hero::before,
.interactive-page .hero-grid::before,
.interactive-page .hero-grid::after,
.interactive-page .hero-copy::after,
.interactive-page .hero-art-frame::after { display: none; }

@media (max-width: 1100px) {
  .decor-sakura-left { left: -160px; opacity: .28; }
  .decor-sakura-right { right: -170px; opacity: .22; }
  .hero-grid::before, .hero-grid::after, .featured-wrap::before, .news-section::before, .news-section::after, .cta-banner::after { display: none; }
  .hero::before { width: 560px; height: 560px; right: -220px; opacity: .58; }
  .hero-art-frame::after { opacity: .28; }
}
@media (max-width: 720px) {
  .mikan-decor-layer { display: none; }
  .site-main::before, .site-main::after { display: none; }
  .hero::before { width: 360px; height: 360px; right: -160px; top: 80px; opacity: .42; }
  .hero::after { opacity: .30; height: 160px; }
  .hero-copy::after, .hero-art-frame::after, .values-section::before, .featured-wrap::after, .partners-section::before, .site-footer::before { display: none; }
  .values-box, .cta-inner { background: rgba(255,255,255,.30); }
}

/* ------------------------------------------------------------
   Mikan Theme v1.3 — full-bleed correction
   Reverts from the boxed/contained look and restores the approved
   full-screen editorial composition with meaningful Japanese-inspired
   decoration. Brand palette remains Mikan orange/off-white; Kundara
   red/gold stays focused inside the featured game module.
------------------------------------------------------------ */
:root {
  --mikan-bg: #fff8ea;
  --mikan-paper: #fffaf0;
  --mikan-paper-strong: #fff1d2;
  --mikan-ink: #111314;
  --mikan-muted: #5c5549;
  --mikan-line: rgba(245, 160, 25, .34);
  --mikan-orange: #f5a019;
  --mikan-orange-dark: #d98400;
  --sakura-pink: #f0b8b9;
  --dark: #11100e;
  --dark-2: #1b1813;
  --kundara-red: #b6372e;
  --kundara-gold: #cfaa54;
  --container: 1340px;
}

html,
body {
  width: 100%;
  min-height: 100%;
  background: var(--mikan-bg);
}

body {
  background:
    radial-gradient(circle at 72% 12%, rgba(245,160,25,.14), transparent 0 26%),
    radial-gradient(circle at 8% 38%, rgba(245,160,25,.08), transparent 0 30%),
    linear-gradient(180deg, #fff9ed 0%, #fff5df 45%, #fff8ea 100%);
}
body::before {
  opacity: .48;
  background-image:
    radial-gradient(circle at center, rgba(50,34,12,.052) 0 .75px, transparent 1px),
    url("assets/images/wave-pattern.svg"),
    linear-gradient(rgba(255,255,255,.26), rgba(255,255,255,.26));
  background-size: 9px 9px, 520px 220px, 100% 100%;
  background-position: center, left bottom, center;
  background-repeat: repeat, repeat-x, no-repeat;
  mix-blend-mode: multiply;
}

/* Full width page, not a boxed website */
.site-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}
.site-shell::before,
.site-shell::after {
  width: 74px;
  height: 74px;
  top: 28px;
  border-color: rgba(245,160,25,.62);
  z-index: 60;
}
.site-shell::before { left: 28px; }
.site-shell::after { right: 28px; }
.site-main { overflow: visible; }
.site-main::before,
.site-main::after { display: none; }
.container {
  width: min(100% - 96px, var(--container));
  max-width: var(--container);
}

/* Header stretches across the viewport */
.site-header {
  background: rgba(255,248,234,.78);
  border-bottom: 1px solid rgba(245,160,25,.12);
  backdrop-filter: blur(18px) saturate(1.08);
}
.header-inner {
  width: min(100% - 108px, 1430px);
  max-width: 1430px;
  min-height: 92px;
  gap: 40px;
}
.site-logo img,
.custom-logo { max-height: 68px; }
.primary-nav ul { gap: clamp(32px, 4.2vw, 66px); }
.primary-nav a {
  color: #151515;
  font-size: 13px;
  font-weight: 760;
}
.header-cta {
  min-width: 210px;
  background: linear-gradient(135deg, var(--mikan-orange), #f6b640);
  color: #15110b;
  border-color: rgba(143,82,0,.16);
  box-shadow: 0 14px 34px rgba(245,160,25,.18);
}
.header-cta small { color: rgba(35,24,5,.72); }
.header-cta b { font-size: 18px; }
.menu-toggle i { width: 29px; height: 1.5px; }

/* Global decoration becomes atmospheric, not a boxed frame */
.mikan-decor-layer { z-index: 0; }
.decor-sakura-left {
  left: -92px;
  top: 360px;
  width: 360px;
  height: 600px;
  opacity: .70;
}
.decor-sakura-right {
  right: -116px;
  bottom: 250px;
  width: 360px;
  height: 600px;
  opacity: .46;
}
.decor-cloud-left {
  left: -190px;
  bottom: 31%;
  width: 620px;
  opacity: .23;
}
.decor-cloud-right {
  right: -205px;
  top: 210px;
  width: 650px;
  opacity: .22;
}
.decor-seal-one {
  top: 600px;
  right: 56px;
  left: auto;
  width: 62px;
  height: 62px;
  opacity: .48;
}
body.decor-subtle .decor-sakura-left,
body.decor-subtle .decor-sakura-right { opacity: .22; }
body.decor-subtle .decor-cloud-left,
body.decor-subtle .decor-cloud-right,
body.decor-subtle .decor-seal-one { display:none; }

/* Hero restored as a full-screen poster-like composition */
.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  padding: clamp(62px, 7vw, 104px) 0 clamp(52px, 6vw, 92px);
  overflow: visible;
  isolation: isolate;
  background:
    url("assets/images/cloud-lines.svg") right 8% bottom 18px / 760px auto no-repeat,
    url("assets/images/wave-pattern.svg") left bottom / 520px auto repeat-x,
    linear-gradient(180deg, rgba(255,248,234,.15), rgba(255,248,234,0));
}
.hero::before {
  right: max(-80px, calc((100vw - 1430px) / 2 - 90px));
  top: clamp(78px, 10vw, 140px);
  width: clamp(480px, 46vw, 760px);
  height: clamp(480px, 46vw, 760px);
  background-image: url("assets/images/brush-sun.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .92;
  filter: none;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 300px;
  background:
    linear-gradient(180deg, transparent, rgba(255,255,255,.16)),
    radial-gradient(circle at 86% 45%, rgba(240,184,185,.35) 0 4px, transparent 5px),
    radial-gradient(circle at 90% 52%, rgba(240,184,185,.28) 0 3px, transparent 4px),
    radial-gradient(circle at 92% 39%, rgba(240,184,185,.28) 0 5px, transparent 6px);
  pointer-events: none;
  opacity: .78;
}
.hero .container.hero-grid {
  width: min(100% - 110px, 1430px);
  max-width: 1430px;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(44px, 7vw, 120px);
}
.hero-grid::before,
.hero-grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.hero-grid::before {
  left: -190px;
  bottom: -170px;
  width: 360px;
  height: 590px;
  background-image: url("assets/images/sakura-branch.svg");
  opacity: .72;
}
.hero-grid::after {
  right: -96px;
  top: -34px;
  width: 320px;
  height: 170px;
  background-image: url("assets/images/cloud-lines.svg");
  opacity: .32;
}
.hero-copy,
.hero-art { z-index: 2; }
.hero-copy { padding-top: clamp(20px, 4vw, 64px); }
.hero-copy::after {
  content: "";
  position: absolute;
  left: -70px;
  top: clamp(190px, 17vw, 250px);
  width: 42px;
  height: 42px;
  background: url("assets/images/red-seal.svg") center/contain no-repeat;
  opacity: .62;
}
.vertical-note {
  left: -66px;
  top: 4px;
  color: var(--mikan-orange-dark);
}
.vertical-note::after {
  content: "";
  display: block;
  width: 1px;
  height: 96px;
  margin: 18px auto 0;
  background: linear-gradient(var(--mikan-orange), transparent);
}
.hero-title {
  font-size: clamp(62px, 7.7vw, 132px);
  letter-spacing: -.07em;
  margin-bottom: 30px;
}
.hero-title .highlight {
  color: var(--mikan-orange);
  font-family: "Trebuchet MS", "Segoe UI", var(--font-sans);
  font-style: italic;
  font-weight: 950;
  letter-spacing: -.055em;
}
.hero-title .highlight::after {
  content: "";
  display: block;
  width: min(245px, 55%);
  height: 7px;
  margin-top: 15px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mikan-orange), rgba(245,160,25,0));
  transform: skewX(-20deg);
}
.hero-text {
  max-width: 430px;
  color: #302d28;
  font-size: 18px;
  line-height: 1.78;
}
.hero-art { min-height: 560px; }
.hero-art-frame {
  width: min(100%, 800px);
}
.hero-art-frame::before {
  inset: -112px -72px -62px -62px;
  background:
    radial-gradient(circle at 48% 44%, rgba(255,255,255,.74), rgba(255,255,255,.22) 38%, transparent 68%),
    url("assets/images/cloud-lines.svg") center bottom / 690px auto no-repeat,
    repeating-radial-gradient(circle at 50% 50%, transparent 0 18px, rgba(245,160,25,.105) 19px 20px);
}
.hero-art-frame::after {
  right: -30px;
  bottom: -42px;
  width: 260px;
  height: 230px;
  opacity: .56;
}
.hero-main-image {
  max-height: min(60vh, 600px);
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 48px rgba(43,28,5,.18));
}
.hero-floating-card { display: none; }
.hero-side-label {
  right: -54px;
  top: 80px;
  color: #1a1712;
}
.scroll-hint { margin-top: 46px; }

/* Buttons */
.btn { min-height: 54px; padding: 0 28px; border-radius: 2px; }
.btn-primary { background: linear-gradient(135deg, var(--mikan-orange), #f6b23d); }
.btn-dark { background: var(--dark); color: #fff7e8; }
.btn-kundara {
  background: linear-gradient(135deg, var(--mikan-orange), #f4b245);
  border-color: rgba(245,160,25,.88);
  color: #17120c;
}

/* Featured game: full-width section with one premium dark card */
.featured-wrap {
  position: relative;
  padding: clamp(58px, 6vw, 90px) 0 clamp(70px, 7vw, 110px);
  overflow: visible;
}
.featured-wrap::before {
  left: -105px;
  top: -70px;
  width: 300px;
  height: 500px;
  opacity: .48;
}
.featured-wrap::after {
  right: -120px;
  bottom: 10px;
  width: 560px;
  height: 240px;
  opacity: .22;
}
.game-featured {
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 56px;
  padding: clamp(36px, 4.5vw, 64px);
  border-radius: 22px;
  border: 1px solid rgba(207,170,84,.68);
  background:
    radial-gradient(circle at 0% 0%, rgba(207,170,84,.16), transparent 0 36%),
    radial-gradient(circle at 92% 108%, rgba(182,55,46,.12), transparent 0 42%),
    linear-gradient(145deg, #15130f 0%, #211d17 58%, #0f0e0c 100%);
  box-shadow: 0 38px 95px rgba(28,18,4,.31), inset 0 0 0 1px rgba(255,255,255,.035);
}
.game-featured::before,
.game-featured::after {
  width: 86px;
  height: 86px;
  border-color: rgba(207,170,84,.94);
}
.game-copy .kicker,
.game-featured .kicker { color: var(--mikan-orange); }
.game-title { font-size: clamp(44px, 5.1vw, 74px); letter-spacing: -.052em; }
.game-title span { color: var(--mikan-orange); }
.game-desc { color: rgba(255,247,232,.82); font-size: 16px; line-height: 1.68; }
.meta-row strong { color: var(--mikan-orange); }
.tag { background: rgba(207,170,84,.08); border-color: rgba(207,170,84,.48); }
.game-featured .btn:not(.btn-kundara) { color: #fff7e8; border-color: rgba(207,170,84,.42); }
.game-media::before {
  content: "";
  position: absolute;
  right: -44px;
  top: -42px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(207,170,84,.36);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 9px, rgba(207,170,84,.16) 10px 11px);
}
.game-main-shot { padding: 9px; border-radius: 2px; border-color: rgba(207,170,84,.88); }
.game-main-shot::before,
.game-main-shot::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: rgba(207,170,84,.88);
  border-style: solid;
  pointer-events: none;
  z-index: 3;
}
.game-main-shot::before { left: 8px; top: 8px; border-width: 1px 0 0 1px; }
.game-main-shot::after { right: 8px; bottom: 8px; border-width: 0 1px 1px 0; }
.game-main-shot img { aspect-ratio: 16 / 9; }
.gallery-thumb.active { border-color: var(--mikan-orange); box-shadow: 0 0 0 1px rgba(245,160,25,.30); }

/* Feature row and values stay airy but ornamental */
.game-features {
  margin-top: 46px;
  background: rgba(255,255,255,.28);
  border: 1px solid rgba(245,160,25,.26);
}
.game-features::before,
.game-features::after,
.values-box::before,
.values-box::after {
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  border-color: rgba(245,160,25,.44);
  border-style: solid;
  pointer-events: none;
}
.game-features::before,
.values-box::before { left: 12px; top: 12px; border-width: 1px 0 0 1px; }
.game-features::after,
.values-box::after { right: 12px; bottom: 12px; border-width: 0 1px 1px 0; }
.feature-icon { border-radius: 0; background: transparent; transform: rotate(45deg); }
.values-section { position: relative; padding-top: 46px; }
.values-section::before { opacity: .28; }
.values-box {
  background:
    url("assets/images/cloud-lines.svg") right -80px bottom -42px / 500px auto no-repeat,
    linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,.18));
  border-color: rgba(245,160,25,.32);
}
.value-card .value-icon { color: var(--mikan-orange); background: transparent; box-shadow: none; }

/* News and partners as wide editorial sections */
.news-section { padding-bottom: 70px; position: relative; }
.news-section::before {
  color: rgba(215,132,0,.56);
  right: max(42px, calc((100vw - 1430px) / 2));
}
.news-section::after { opacity: .54; }
.news-grid { gap: 28px; }
.news-card {
  background: rgba(255,250,240,.82);
  border: 1px solid rgba(211,166,95,.42);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(94,62,7,.07);
}
.news-thumb { aspect-ratio: 1.55 / 1; }
.news-body { padding: 24px 24px 12px; }
.news-card::after { padding: 0 24px 22px; }
.partners-section { padding-bottom: 62px; }
.partner-strip {
  margin-top: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(245,160,25,.24);
  border-bottom: 1px solid rgba(245,160,25,.24);
}
.partner-track { gap: 34px; }
.partner-logo { min-height: 78px; opacity: .88; }
.partner-logo img { max-height: 52px; max-width: 190px; }
.partner-text-logo { color: #1f1d18; font-size: 25px; }

/* CTA final should feel like the mockup banner, not a small card */
.cta-banner { position: relative; padding-top: 24px; }
.cta-banner::after { opacity: .56; }
.cta-inner {
  min-height: 226px;
  border-radius: 18px;
  background:
    url("assets/images/red-seal.svg") right 32px bottom 32px / 64px 64px no-repeat,
    url("assets/images/sakura-branch.svg") left -72px bottom -152px / 270px auto no-repeat,
    url("assets/images/cloud-lines.svg") left -72px bottom -18px / 560px auto no-repeat,
    url("assets/images/cloud-lines.svg") right -132px top 6px / 560px auto no-repeat,
    radial-gradient(circle at 50% 50%, rgba(245,160,25,.54) 0 120px, rgba(245,160,25,.18) 121px 205px, transparent 206px),
    linear-gradient(90deg, rgba(255,255,255,.24), rgba(255,255,255,.58));
}
.cta-inner h2 { font-family: var(--font-serif); font-size: clamp(34px, 4.1vw, 58px); letter-spacing: -.035em; }
.footer-main { border-top-color: rgba(245,160,25,.28); }
.footer-logo img { max-height: 64px; }

/* Dark business side stays distinct */
.interactive-page {
  background: var(--dark);
  color: #fff6e8;
}
.interactive-page .site-header { background: rgba(17,16,14,.88); border-bottom-color: rgba(255,255,255,.08); }
.interactive-page .site-shell { background: linear-gradient(180deg, rgba(17,16,14,.96), rgba(17,16,14,.90)); }
.interactive-page .header-cta { background: #fff7e8; color: #11100e; border-color: rgba(245,160,25,.28); }
.interactive-page .site-shell::before,
.interactive-page .site-shell::after { border-color: rgba(245,160,25,.26); }
.interactive-page .mikan-decor-layer .decor-sakura-left,
.interactive-page .mikan-decor-layer .decor-sakura-right { opacity: .12; filter: grayscale(1); }
.interactive-page .mikan-decor-layer .decor-cloud-left,
.interactive-page .mikan-decor-layer .decor-cloud-right { opacity: .10; }

@media (max-width: 1100px) {
  .container,
  .header-inner,
  .hero .container.hero-grid { width: min(100% - 54px, var(--container)); }
  .primary-nav { display:none; }
  .mobile-panel.is-open { display:block; }
  .hero .container.hero-grid { grid-template-columns: 1fr; }
  .hero-art-frame { max-width: 760px; margin-inline:auto; }
  .game-featured { grid-template-columns: 1fr; }
  .hero-grid::before,
  .hero-grid::after,
  .featured-wrap::before,
  .news-section::before,
  .news-section::after,
  .cta-banner::after { display:none; }
}
@media (max-width: 720px) {
  .site-shell::before,
  .site-shell::after { display:none; }
  .container,
  .header-inner,
  .hero .container.hero-grid { width: min(100% - 32px, var(--container)); }
  .header-inner { min-height: 74px; }
  .site-logo img,
  .custom-logo { max-height: 50px; }
  .hero { min-height: auto; padding-top: 44px; }
  .hero::before { width: 360px; height: 360px; right: -160px; top: 80px; opacity: .42; }
  .hero-title { font-size: clamp(48px, 15vw, 76px); }
  .hero-main-image { max-height: 340px; }
  .game-featured { padding: 28px; }
  .values-box { padding: 28px 22px; }
  .cta-inner { background: rgba(255,255,255,.32); }
}
