/* ========================================
   orkan.app — Personal Website
   Warm nostalgic aesthetic
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wdth,wght@50..200,200..900&family=DM+Mono:wght@300;400;500&display=swap');

/* --- Variables --- */
:root {
  --bg: #f4efe6;
  --bg-card: #ffffff;
  --bg-header: #2b2d42;
  --bg-accent: #eee8db;
  --bg-input: #faf8f4;
  --text: #2b2d42;
  --text-dim: #6c6c82;
  --text-light: #8d8da0;
  --accent: #c75b39;
  --accent-hover: #a8452b;
  --link: #3a6ea5;
  --link-hover: #c75b39;
  --border: #2b2d42;
  --border-light: #c8c3b8;
  --white: #ffffff;
  --red: #c75b39;
  --green: #4a8c5c;
  --yellow: #d4a843;
  --stroke: 1px solid var(--border);
  --stroke-light: 1px solid var(--border-light);
  --shadow: 3px 3px 0px rgba(43,45,66,0.12);
  --radius: 0px;
  --font-main: 'Inconsolata', 'Courier New', monospace;
  --font-mono: 'DM Mono', monospace;
  --space-xs: 0.375rem;
  --space-s: 0.5rem;
  --space-m: 1rem;
  --space-l: 1.5rem;
  --space-xl: 2rem;
  --max-width: 800px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background-color: var(--bg);
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAIklEQVQIW2P48OP3fwYGBgYmBgYGRgYGBkYGBgZGEA0SAQBhbAQRbc4V1AAAAABJRU5ErkJggg==");
  background-blend-mode: overlay;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

::selection { background: var(--accent); color: var(--white); }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border: 1px solid #999;
}
::-webkit-scrollbar-thumb:hover { background: #aaa; }

/* --- Typography --- */
h1, h2, h3, h4 { font-weight: 700; font-stretch: 85%; line-height: 1.2; }
h1 { font-size: 1.6rem; }
h2 { font-size: 1.25rem; }
h3 { font-size: 1.05rem; }
p { margin: 0; padding: var(--space-xs); }

a { color: var(--link); font-weight: 600; transition: color 0.1s; }
a:visited { color: var(--link); }
a:hover { color: var(--link-hover); }

ul, ol { margin: 0 0 0 var(--space-l); padding: var(--space-xs); }
code { background: #e8e4dc; padding: 1px 4px; font-size: 0.9em; }
img { display: block; max-width: 100%; }
hr { border: none; border-top: 1px dashed var(--border-light); margin: var(--space-m) 0; }

/* --- Layout --- */
.site-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--bg-card);
  outline: var(--stroke);
}

/* --- Header --- */
.site-header {
  background-color: var(--bg-header);
  color: var(--white);
  padding: var(--space-l) var(--space-m);
}

.site-title {
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  font-weight: 700;
  font-stretch: 75%;
  letter-spacing: -0.5px;
}

.site-title a { color: var(--white); text-decoration: none; }
.site-title a:hover { color: var(--white); opacity: 0.85; }

.site-subtitle {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

/* --- Navigation --- */
.site-nav {
  display: flex;
  flex-wrap: wrap;
  border-bottom: var(--stroke);
}

.site-nav > a,
.site-nav > .nav-dropdown > a {
  font-weight: 400;
  font-stretch: 115%;
  text-decoration: none;
  text-align: center;
  padding: var(--space-s) var(--space-xs);
  transition: background 0.1s, color 0.1s;
  color: var(--text);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-nav > a {
  flex-grow: 1;
  border-right: var(--stroke);
}

.site-nav > a:last-child { border-right: none; }

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a.active,
.site-nav > .nav-dropdown > a:hover,
.site-nav > .nav-dropdown > a.active {
  background-color: var(--bg-header);
  color: var(--white);
}

/* Dropdown container — must behave like a nav item */
.nav-dropdown {
  position: relative;
  flex-grow: 1;
  display: flex;
  border-right: var(--stroke);
}
.nav-dropdown > a {
  flex-grow: 1;
  width: 100%;
}
.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  border: var(--stroke);
  z-index: 100;
  min-width: 160px;
  box-shadow: var(--shadow);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  border-right: none !important;
  border-bottom: var(--stroke-light);
  text-align: left;
  font-size: 0.85rem;
}
.dropdown-menu a:last-child { border-bottom: none; }

/* --- Sections --- */
.section {
  padding: var(--space-m);
}

.section + .section {
  border-top: var(--stroke-light);
}

.section-dark {
  background-color: var(--bg-header);
  color: var(--white);
  padding: var(--space-m);
}

.section-dark a { color: rgba(255,255,255,0.8); }
.section-dark a:hover { color: var(--white); }

.section-accent {
  background-color: var(--bg-accent);
  padding: var(--space-m);
  border-top: var(--stroke-light);
  border-bottom: var(--stroke-light);
}

/* --- Card/Box --- */
.box {
  outline: var(--stroke);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.box + .box { margin-top: var(--space-m); }

.box-header {
  background-color: var(--bg-header);
  color: var(--white);
  padding: var(--space-xs) var(--space-s);
  font-size: 0.95rem;
  font-weight: 700;
  font-stretch: 85%;
}

.box-body {
  padding: var(--space-m);
}

/* --- Two Column --- */
.two-col {
  display: flex;
  gap: var(--space-m);
}

.col-main { flex: 1; min-width: 0; }
.col-side { width: 220px; flex-shrink: 0; display: flex; flex-direction: column; gap: var(--space-m); }

@media (max-width: 650px) {
  .two-col { flex-direction: column; }
  .col-side { width: 100%; }
}

/* --- Status Box --- */
.status-list { list-style: none; margin: 0; padding: 0; }
.status-list li {
  display: flex;
  gap: var(--space-s);
  padding: var(--space-xs) 0;
  border-bottom: 1px dotted var(--border-light);
  font-size: 0.95rem;
}
.status-list li:last-child { border-bottom: none; }
.status-label {
  font-weight: 700;
  min-width: 80px;
  color: var(--text);
}

/* --- Microblog --- */
.micro-entry {
  padding: var(--space-s) 0;
  border-bottom: 1px dashed var(--border-light);
}
.micro-entry:last-child { border-bottom: none; }
.micro-date { color: var(--text-dim); font-size: 0.85rem; }
.micro-title { font-weight: 700; font-size: 0.95rem; margin: 2px 0; }
.micro-text { font-size: 0.9rem; padding: 2px 0; color: var(--text); }

/* --- Visitor Counter --- */
.visitor-counter { text-align: center; }
.counter-display { display: inline-flex; gap: 2px; margin-top: 4px; }
.counter-digit {
  background: #111;
  color: #4ae64a;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  padding: 4px 6px;
  border: 2px inset #555;
  min-width: 22px;
  text-align: center;
}

/* --- Calendar (from webestools) --- */
.cal_calendar {
  border: var(--stroke);
  padding: 1px;
  background-color: var(--bg-accent);
  width: 100%;
  max-width: 100%;
  margin: auto;
  table-layout: fixed;
  border-collapse: collapse;
  overflow: hidden;
}
.cal_calendar th {
  border: var(--stroke-light);
  background-color: var(--bg-card);
  padding: 3px 2px;
  font-size: 0.75rem;
  overflow: hidden;
  word-break: break-all;
}
.cal_calendar td {
  border: var(--stroke-light);
  background-color: var(--bg-card);
  text-align: center;
  padding: 3px 2px;
  font-size: 0.8rem;
}
.cal_today { color: var(--accent); font-weight: bold; }
.cal_days_bef_aft { color: var(--text-light); }

/*
  CUSTOM CURSOR:
  To use a custom cursor:
  1. Find a cursor you like (e.g. from https://www.cursor.cc/ or https://cohost.org)
  2. Download the .cur, .ani, or .png file
  3. Put it in an /images/ folder
  4. Uncomment and edit the lines below:

  body { cursor: url('images/your-cursor.png'), auto; }
  a, button, .btn, [onclick] { cursor: url('images/your-cursor-link.png'), pointer; }

  Common cursor sites:
  - https://www.cursor.cc/
  - https://www.cursors-4u.com/
  - https://foollovers.com/ (Japanese sozai site, has cute cursors)
  - You can also make your own 32x32 PNG and use it directly!

  Example using rice.place's cursors:
  body { cursor: url('https://rice.place/image/arrow.gif'), auto; }
  a, button { cursor: url('https://rice.place/image/link.gif'), pointer; }
*/

/* --- Journal Entries List --- */
.entry-item {
  outline: var(--stroke);
  box-shadow: var(--shadow);
  transition: box-shadow 0.05s;
  margin-bottom: var(--space-m);
}

.entry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-s);
  background-color: var(--bg-header);
  color: var(--white);
  padding: var(--space-xs) var(--space-s);
}

.entry-header a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-stretch: 85%;
}
.entry-header a:hover { opacity: 0.8; }

.entry-header .entry-date {
  font-size: 0.85rem;
  white-space: nowrap;
}

.entry-body {
  padding: var(--space-m);
}

.entry-body p { padding: var(--space-xs) 0; text-indent: var(--space-l); }
.entry-body p:first-child { text-indent: 0; }

.entry-tags { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin-top: var(--space-s); }
.tag {
  font-size: 0.8rem;
  background: var(--bg-accent);
  padding: 1px 8px;
  outline: var(--stroke-light);
  cursor: default;
}

/* --- Journal Entry (single post) --- */
.post-nav {
  display: flex;
  border-top: var(--stroke);
  border-bottom: var(--stroke);
}
.post-nav a, .post-nav span {
  font-weight: 400;
  font-stretch: 115%;
  text-decoration: none;
  text-align: center;
  flex-grow: 1;
  padding: var(--space-s);
  color: var(--text);
  transition: background 0.1s;
}
.post-nav a:not(:last-child), .post-nav span:not(:last-child) {
  border-right: var(--stroke);
}
.post-nav a:hover { background: var(--bg-header); color: var(--white); }
.post-nav .disabled { color: var(--red); cursor: not-allowed; }
.post-nav .disabled:hover { background: var(--red); color: var(--white); }

.post-content {
  padding: var(--space-m);
  outline: var(--stroke);
}
.post-content p { text-indent: var(--space-l); padding: var(--space-xs); }
.post-content img { max-width: 100%; padding: var(--space-xs); }
.post-content .last-edit { font-size: 0.8rem; opacity: 0.5; margin-top: var(--space-m); }

/* --- Comments (Google Forms) --- */
.comments-block { outline: var(--stroke); }
.comments-title {
  background-color: var(--bg-header);
  color: var(--white);
  padding: var(--space-xs) var(--space-s);
  text-align: right;
}
.comment-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  padding: var(--space-m);
}
.comment-form label { text-align: right; font-size: 0.9rem; }
.comment-form input, .comment-form textarea {
  width: 100%;
  padding: var(--space-xs);
  font-family: var(--font-main);
  font-size: inherit;
  border: none;
  outline: var(--stroke);
  background: var(--bg-input);
}
.comment-form input:focus, .comment-form textarea:focus {
  outline: 1px solid var(--accent);
}
.comment-form textarea { resize: vertical; min-height: 80px; }
.comment-form .submit-btn {
  width: 8ch;
  margin-left: auto;
}

.comment {
  outline: var(--stroke);
  margin-bottom: var(--space-s);
}
.comment-name { display: inline-block; font-weight: 700; padding: var(--space-xs); }
.comment-date { float: right; padding: var(--space-xs); color: var(--text-dim); font-size: 0.85rem; }
.comment-text { padding: var(--space-xs); border-top: var(--stroke-light); }
.comment-reply-btn {
  margin: var(--space-xs);
}

/* --- Buttons --- */
.btn {
  padding: var(--space-xs) var(--space-s);
  background: var(--bg-card);
  color: var(--text);
  border: none;
  outline: var(--stroke);
  font-family: var(--font-main);
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.1s, color 0.1s;
  font-stretch: 115%;
}
.btn:hover {
  background: var(--bg-header);
  color: var(--white);
}
.btn:disabled:hover {
  background: var(--red);
  color: var(--white);
  cursor: not-allowed;
}

/* --- Forms --- */
.form-group { margin-bottom: var(--space-s); }
.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
  font-weight: 600;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: var(--space-xs) var(--space-s);
  font-family: var(--font-main);
  font-size: inherit;
  background: var(--bg-input);
  border: none;
  outline: var(--stroke);
  color: var(--text);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus {
  outline: 1px solid var(--accent);
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  font-size: 0.9rem;
  margin-bottom: var(--space-s);
}
.captcha-box input { width: 60px; text-align: center; }

/* --- Media Log --- */
.media-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  padding: var(--space-s) 0;
}

.media-entry {
  outline: var(--stroke);
  margin-bottom: var(--space-s);
}
.media-entry > div:first-child {
  background: var(--bg-header);
  color: var(--white);
  padding: var(--space-xs) var(--space-s);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
}
.media-entry > div:first-child h2 { font-size: 0.9rem; }
.media-entry p { padding: var(--space-xs) var(--space-s); font-size: 0.9rem; }
.media-entry .rating { font-weight: 700; color: var(--accent); }
.media-entry .margin { margin-top: var(--space-xs); }

/* --- Drawbox --- */
.drawbox-canvas {
  cursor: crosshair;
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  outline: var(--stroke);
}

.drawbox-tools {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  justify-content: center;
  padding: var(--space-s) 0;
}

.color-btn {
  width: 28px;
  height: 28px;
  border: none;
  outline: var(--stroke);
  cursor: pointer;
  padding: 0;
}

.drawbox-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  justify-content: center;
}

.drawbox-gallery .image-container {
  box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #dfdfdf, inset -2px -2px grey, inset 2px 2px #fff;
  padding: 5px;
  max-width: 200px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.drawbox-gallery .image-container img { max-width: 100%; height: auto; }

/* --- Bookmarks --- */
.bookmark-category {
  margin-bottom: var(--space-m);
}
.bookmark-category h3 {
  border-bottom: 1px dashed var(--border-light);
  padding-bottom: var(--space-xs);
  margin-bottom: var(--space-xs);
  font-size: 0.95rem;
}
.bookmark-category li {
  padding: 2px 0;
  font-size: 0.9rem;
}
.bookmark-desc { color: var(--text-dim); font-weight: 400; }

/* --- Game Reviews --- */
.game-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-s);
}
.game-filters input, .game-filters select {
  padding: var(--space-xs);
  font-family: var(--font-main);
  font-size: 0.9rem;
  background: var(--bg-input);
  border: none;
  outline: var(--stroke);
  color: var(--text);
}
.game-filters input { flex: 1; min-width: 150px; }

.review-card {
  outline: var(--stroke);
  margin-bottom: var(--space-s);
  display: flex;
  gap: var(--space-m);
}

.review-card .review-cover {
  width: 80px;
  height: 110px;
  background: var(--bg-accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-right: var(--stroke);
}
.review-card .review-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card .review-info { padding: var(--space-s); flex: 1; }
.review-card .review-info h3 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.score-badge {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0 6px;
  margin-right: var(--space-xs);
}
.score-high { background: var(--green); color: var(--white); }
.score-mid { background: var(--yellow); color: var(--text); }
.score-low { background: var(--red); color: var(--white); }

.rec-badge {
  font-size: 0.75rem;
  padding: 0 4px;
  outline: 1px solid;
}
.rec-high { outline-color: var(--green); color: var(--green); }
.rec-mid { outline-color: var(--yellow); color: var(--yellow); }
.rec-low { outline-color: var(--red); color: var(--red); }

/* --- Play List --- */
.play-list { list-style: none; margin: 0; padding: 0; }
.play-list li {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  padding: var(--space-xs) 0;
  border-bottom: 1px dotted var(--border-light);
  font-size: 0.9rem;
}
.play-list li:last-child { border-bottom: none; }
.play-status { flex-shrink: 0; }

/* --- Favorites --- */
.fav-game {
  display: flex;
  gap: var(--space-m);
  padding: var(--space-s) 0;
  border-bottom: var(--stroke-light);
}
.fav-game:last-child { border-bottom: none; }
.fav-game .fav-cover {
  width: 90px;
  height: 120px;
  outline: var(--stroke);
  flex-shrink: 0;
  background: var(--bg-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.fav-game .fav-cover img { width: 100%; height: 100%; object-fit: cover; }
.fav-game h3 { font-size: 0.9rem; margin-bottom: 4px; }
.fav-game p { font-size: 0.9rem; color: var(--text-dim); padding: 2px 0; }

/* --- Soulslike Ranking --- */
.souls-rank {
  outline: var(--stroke);
  padding: var(--space-s);
  margin-bottom: var(--space-s);
  background: var(--bg-input);
}
.souls-rank .rank-num {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}
.souls-rank h3 { font-size: 0.95rem; display: inline; margin-left: var(--space-xs); }
.souls-flames { color: var(--accent); letter-spacing: 2px; }

/* --- Sitemap --- */
.sitemap-tree { list-style: none; margin: 0; padding: 0; }
.sitemap-tree li { padding: 3px 0; }
.sitemap-tree ul { list-style: none; padding-left: var(--space-l); }
.sitemap-tree ul li::before { content: "├─ "; color: var(--text-light); }

/* --- Fun Facts --- */
.fun-list { list-style: none; margin: 0; padding: 0; }
.fun-list li {
  padding: var(--space-xs) 0;
  border-bottom: 1px dotted var(--border-light);
}
.fun-list li:last-child { border-bottom: none; }
.fun-list li::before { content: "✦ "; color: var(--accent); }

/* --- Interests Grid --- */
.interests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-s);
}
.interest-card {
  outline: var(--stroke-light);
  padding: var(--space-s);
  background: var(--bg-input);
}
.interest-card h4 { font-size: 0.85rem; margin-bottom: 4px; }
.interest-card p { font-size: 0.85rem; color: var(--text-dim); padding: 0; }

/* --- Footer --- */
.site-footer {
  background-color: var(--bg-header);
  color: var(--white);
  padding: var(--space-m);
  margin-top: auto;
}
.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-text { font-size: 0.85rem; padding: var(--space-xs) 0; }
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: var(--space-s) 0;
}
.footer-badges img { height: 31px; image-rendering: crisp-edges; }

/* --- Neko --- */
#nl {
  position: fixed;
  bottom: 4px;
  right: 4px;
  font-size: 0.5rem;
  z-index: 9999;
  opacity: 0.4;
}

/*
  DECORATIVE IMAGES:
  To add cute images around your site, use these classes.
  Put your images in an /images/ folder.

  Examples:
    <img src="images/star.gif" class="deco-inline"> — inline with text
    <img src="images/divider.gif" class="deco-divider"> — centered divider
    <img src="images/sparkle.gif" class="deco-float-right"> — floats to the right
    <img src="images/cat.gif" class="deco-float-left"> — floats to the left
    <img src="images/banner.png" class="deco-banner"> — full width banner

  Good places to find free graphics:
    - https://foollovers.com/ (Japanese sozai)
    - https://99gifshop.neocities.org/
    - https://fairytrash.neocities.org/portal/oldweb
    - https://pata2.jp/
    - https://blinkies.cafe/
    - Pinterest (search "web 1.0 graphics", "pixel art dividers", etc.)
*/
.deco-inline {
  display: inline-block;
  vertical-align: middle;
  height: 1.2em;
  image-rendering: pixelated;
}
.deco-divider {
  display: block;
  margin: var(--space-s) auto;
  image-rendering: pixelated;
}
.deco-float-right {
  float: right;
  margin: 0 0 var(--space-s) var(--space-s);
  image-rendering: pixelated;
}
.deco-float-left {
  float: left;
  margin: 0 var(--space-s) var(--space-s) 0;
  image-rendering: pixelated;
}
.deco-banner {
  width: 100%;
  image-rendering: pixelated;
}
.deco-badge {
  display: inline-block;
  height: 31px;
  image-rendering: pixelated;
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-dim { color: var(--text-dim); }
.text-accent { color: var(--accent); }
.text-small { font-size: 0.85rem; }
.mt-s { margin-top: var(--space-s); }
.mt-m { margin-top: var(--space-m); }
.mb-s { margin-bottom: var(--space-s); }
.mb-m { margin-bottom: var(--space-m); }
.p-s { padding: var(--space-s); }
.p-m { padding: var(--space-m); }
.indent { text-indent: var(--space-l); }
.no-indent { text-indent: 0 !important; }

/* --- Responsive --- */
@media (max-width: 800px) {
  :root { --space-m: var(--space-s); }
  .site-wrapper { outline: none; }
  .site-nav a { font-size: 0.8rem; padding: var(--space-xs); }
  .entry-header { flex-direction: column; align-items: flex-start; }
  .review-card { flex-direction: column; }
  .review-card .review-cover { width: 100%; height: 160px; border-right: none; border-bottom: var(--stroke); }
  .fav-game { flex-direction: column; }
  .fav-game .fav-cover { width: 100%; height: 180px; }
}
