@charset "UTF-8";

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --red: #dc2626;
  --yellow: #facc15;
  --blue: #005bac;
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: var(--white);
  color: var(--black);
  border: 8px solid var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  body {
    border: 16px solid var(--black);
  }
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border-bottom: 8px solid var(--black);
  background-color: var(--white);
}

.logo-container {
  padding: 1rem;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.logo-img {
  height: 2rem;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-container {
    padding: 1.5rem;
    min-width: 120px;
    border-right: 8px solid var(--black);
  }
  .logo-img {
    height: 45px;
  }
}

.nav-links {
  display: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
  }
  .nav-links a {
    padding: 1.5rem 2rem;
    border-left: 8px solid var(--black);
    text-decoration: none;
    color: var(--black);
    display: flex;
    align-items: center;
    transition: background-color 0.2s, color 0.2s;
  }
  .nav-links a:hover {
    background-color: var(--black);
    color: var(--white);
  }
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: auto;
  align-self: stretch;
  border: none;
  border-left: 8px solid var(--black);
  background: var(--white);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  padding: 0; /* Remove padding to ensure flex centering works on the full area */
}

.hamburger-box {
  width: 30px;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 4px;
  background-color: var(--black);
  position: absolute;
  transition: transform 0.2s ease, background-color 0.2s ease;
  left: 0;
}

.hamburger-inner {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-inner::before {
  content: "";
  top: -10px;
  left: 0;
}

.hamburger-inner::after {
  content: "";
  top: 10px;
  left: 0;
}

/* Active state (X) */
.menu-btn.active .hamburger-inner {
  background-color: transparent;
}

.menu-btn.active .hamburger-inner::before {
  transform: translateY(10px) rotate(45deg);
  background-color: var(--white);
}

.menu-btn.active .hamburger-inner::after {
  transform: translateY(-10px) rotate(-45deg);
  background-color: var(--white);
}

.menu-btn:hover {
  background: var(--yellow);
}

@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  border-bottom: 8px solid var(--black);
  background-color: var(--yellow);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 1.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  border-top: 8px solid var(--black);
  text-align: center;
  transition: background-color 0.2s, color 0.2s;
}

.mobile-menu a:first-child {
  border-top: none;
}

.mobile-menu a:hover {
  background-color: var(--black);
  color: var(--white);
}

/* Main Content */
.fv-container {
  display: flex;
  flex-direction: column;
  border-bottom: 8px solid var(--black);
}

@media (min-width: 1024px) {
  .fv-container {
    flex-direction: row;
  }
}

/* Hero Section */
.hero-section {
  padding: 2rem 1rem;
  border-bottom: 8px solid var(--black);
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--white);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 4rem;
    border-bottom: none;
    border-right: 8px solid var(--black);
  }
}

@media only screen and (max-width: 450px) {
  .hero-section {
    padding: 3rem 1rem;
  }
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
}

.text-red {
  color: var(--red);
}

/* Stylish Catchphrase */
.catchphrase-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
  transform: rotate(-2deg);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .catchphrase-container {
    margin-top: 2rem;
    margin-bottom: 0;
  }
}

.catchphrase-line1 {
  background-color: var(--red);
  color: var(--white);
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(1.2rem, 4vw, 3rem);
  font-weight: 400;
  padding: 0.5rem 1rem;
  border: 6px solid var(--black);
  box-shadow: 6px 6px 0px var(--black);
}

@media (min-width: 768px) {
  .catchphrase-line1 {
    border: 8px solid var(--black);
    box-shadow: 12px 12px 0px var(--black);
  }
}

.catchphrase-line2 {
  background-color: var(--yellow);
  color: var(--black);
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(1rem, 3.5vw, 2.5rem);
  font-weight: 400;
  padding: 0.5rem 1rem;
  border: 6px solid var(--black);
  box-shadow: 6px 6px 0px var(--black);
  margin-left: 1rem;
}

@media (min-width: 768px) {
  .catchphrase-line2 {
    border: 8px solid var(--black);
    box-shadow: 12px 12px 0px var(--black);
    margin-left: 3rem;
  }
}

/* Action Section */
.action-section {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.play-btn,
.system-btn {
  flex: 1;
  border: none;
  border-bottom: 8px solid var(--black);
  padding: 2rem;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.play-btn {
  background-color: var(--red);
  color: var(--white);
}

.system-btn {
  background-color: var(--yellow);
  color: var(--black);
}

.play-btn:hover {
  background-color: var(--black);
  color: var(--white);
}

.system-btn:hover {
  background-color: var(--black);
  color: var(--white);
}

.btn-en {
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.btn-ja {
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  line-height: 1;
  letter-spacing: 0.1em;
}

@media (min-width: 1024px) {
  .play-btn,
  .system-btn {
    min-height: 250px;
  }
}

/* Concept Section (Monolith) */
.concept-section {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 3rem 1rem;
  overflow: hidden;
  border-bottom: 8px solid var(--black);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.concept-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30vw;
  font-family: "Impact", sans-serif;
  color: rgba(255, 255, 255, 0.08);
  z-index: 0;
  pointer-events: none;
}

@media only screen and (max-width: 450px) {
  .concept-bg {
    font-size: 60vw;
  }
}

.concept-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.concept-text h2 {
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
  color: var(--white);
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-shadow: 4px 4px 0 var(--red);
}
.concept-text p {
  font-weight: 900;
  line-height: 2;
  font-size: 1.1rem;
}
.concept-img {
  background: var(--yellow);
  height: 300px;
  border: 8px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 2rem;
  color: var(--black);
  position: relative;
  z-index: 1;

  background-image: url("../images/gallery/4.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1024px) {
  .concept-section {
    padding: 8rem 4rem;
  }
  .concept-content {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
  .concept-text {
    flex: 1;
  }
  .concept-img {
    flex: 1;
    height: 400px;
  }
}

/* System Section */
.system-section {
  padding: 4rem 1rem;
  border-bottom: 8px solid var(--black);
  background: var(--white);
}
.system-header {
  margin-bottom: 3rem;
  text-align: center;
}
.section-title {
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--black);
}
.section-title span {
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  letter-spacing: 0.1em;
  background: var(--black);
  color: var(--white);
  padding: 0.5rem 1rem;
}

/* Tabs */
.tabs-container {
  max-width: 800px;
  margin: 0 auto;
  border: 8px solid var(--black);
  box-shadow: 12px 12px 0 var(--red);
  background: var(--white);
}
.tabs-header {
  display: flex;
  flex-direction: column;
  border-bottom: 8px solid var(--black);
  background: var(--yellow);
}
.tab-btn {
  position: relative;
  flex: 1;
  padding: 1.2rem 1rem;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 1rem;
  background: transparent;
  color: var(--black);
  border: none;
  border-bottom: 4px solid var(--black);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.tab-icon {
  position: absolute;
  right: -0.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  transition: transform 0.2s;
  color: var(--red);
}
.tab-btn:hover .tab-icon {
  transform: translateY(-50%) scale(1.2);
}
.tab-btn.active .tab-icon {
  display: none;
}
.tab-btn:last-child {
  border-bottom: none;
}
.tab-btn:hover,
.tab-btn.active {
  background: var(--black);
  color: var(--white);
}
.tabs-content {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .tabs-header {
    flex-direction: row;
  }
  .tab-btn {
    padding: 1.5rem 1rem;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    border-bottom: none;
    border-right: 8px solid var(--black);
  }
  .tab-btn:last-child {
    border-right: none;
  }
  .tabs-content {
    padding: 3rem;
  }
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}
.tab-panel.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Price Table */
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th,
.price-table td {
  padding: 1rem 0;
  text-align: left;
  border-bottom: 4px dashed var(--black);
  vertical-align: middle;
}
.price-table tr:last-child th,
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table th {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  width: 55%;
}
.chip-amount {
  display: inline-block;
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: 0.8rem;
  padding: 0.1rem 0.4rem;
  letter-spacing: 0.05em;
  background: var(--black);
  color: var(--white);
  margin-left: 0.5rem;
  vertical-align: middle;
}
.price-table td {
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: 1.8rem;
  text-align: right;
  color: var(--red);
}

@media only screen and (max-width: 767px) {
  .price-table td {
    border-bottom: none;
  }
}

@media (min-width: 768px) {
  .price-table th,
  .price-table td {
    padding: 1.5rem 0;
  }
  .price-table th {
    font-size: clamp(1rem, 3vw, 1.5rem);
    width: 60%;
  }
  .chip-amount {
    font-size: 1rem;
    padding: 0.2rem 0.5rem;
  }
  .price-table td {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
}
.tab-footer {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}
.detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--white);
  background: var(--black);
  border: 4px solid var(--black);
  box-shadow: 6px 6px 0 var(--red);
  transition: transform 0.2s, box-shadow 0.2s;
}
.detail-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--red);
  background: var(--red);
}
.detail-btn:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--red);
}

/* News Section */

.news-page-container {
  padding: 4rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  min-height: 70vh;
  text-align: center;
}
.news-title-main {
  font-family: "Impact", sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 3rem;
  text-transform: uppercase;
  border-bottom: 8px solid var(--black);
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.news-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-top: 0.5rem;
}

/* 共通の矢印 */
.news-arrow {
  font-family: "Impact", sans-serif;
  font-size: 1.5rem;
  transition: transform 0.2s;
}

/* ジグザグ・オフセット型 */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 0 1rem 0;
  text-align: left;
  margin-bottom: 2rem;
}
.news-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border: 4px solid var(--black);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, background 0.2s;
}
.news-item:nth-child(odd) {
  transform: rotate(-1deg);
  box-shadow: 8px 8px 0 var(--red);
}
.news-item:nth-child(even) {
  transform: rotate(1deg);
  box-shadow: -8px 8px 0 var(--yellow);
  flex-direction: row-reverse;
}
.news-date {
  font-family: "Impact", sans-serif;
  font-size: 1.2rem;
  margin-right: 2rem;
  min-width: 120px;
  color: var(--red);
}
.news-title {
  font-weight: 900;
  flex: 1;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.news-item:nth-child(even) .news-date {
  margin-right: 0;
  margin-left: 2rem;
  text-align: right;
}
.news-item:nth-child(even) .news-arrow {
  transform: rotate(180deg);
}

.news-item:hover {
  transform: rotate(0deg) scale(1.02);
  background: var(--black);
  color: var(--white);
}
.news-item:hover .news-date {
  color: var(--yellow);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 4rem;
}
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-family: "Impact", sans-serif;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.2s;
}
.page-link:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--red);
}
.page-link.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.page-dots {
  font-family: "Impact", sans-serif;
  font-size: 1.2rem;
  color: var(--black);
  padding: 0 0.5rem;
}
.prev-link,
.next-link {
  font-size: 1rem;
  padding: 0 1rem;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .news-date {
    margin-right: 0;
  }
  .news-arrow {
    display: none;
  }

  .news-item:nth-child(even) {
    flex-direction: column;
  }
  .news-item:nth-child(even) .news-date {
    margin-left: 0;
    text-align: left;
  }
}

.view-all-btn {
  display: inline-block;
  padding: 1rem 3rem;
  font-family: "Impact", sans-serif;
  font-size: 1.2rem;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  border: 4px solid var(--black);
  box-shadow: 6px 6px 0 var(--red);
  transition: transform 0.2s, box-shadow 0.2s;
}
.view-all-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--red);
  background: var(--red);
}

/* Footer Section */
.footer-main {
  border-top: 8px solid var(--black);
}
.footer-split {
  display: flex;
  height: auto;
  min-height: 300px;
}
.footer-left {
  flex: 1;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}
.footer-left .footer-logo {
  font-family: "Impact", sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 1;
}

.footer-left .footer-logo .wrap {
  display: block;
  width: 160px;
}

@media only screen and (max-width: 450px) {
  .footer-left .footer-logo .wrap {
    width: 180px;
  }
}

.footer-left .footer-logo img {
  width: 100%;
  height: auto;
}

.footer-right {
  flex: 1;
  background: var(--yellow);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-nav a {
  font-family: "Impact", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
  width: fit-content;
}
.footer-nav a:hover {
  color: var(--red);
  transform: translateX(10px);
}
.footer-bottom {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-bottom .copyright {
  font-family: "Impact", sans-serif;
  font-size: 0.8rem;
  margin: 0;
  opacity: 0.7;
}
.footer-sns-mini {
  display: flex;
  gap: 1.5rem;
}
.footer-sns-mini a {
  font-family: "Impact", sans-serif;
  font-size: 1.2rem;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-sns-mini a:hover {
  color: var(--red);
}

/* Event Schedule Section */
.event-section {
  padding: 6rem 1rem;
  background: var(--white);
  border-bottom: 8px solid var(--black);
}
.event-container {
  max-width: 1000px;
  margin: 0 auto;
}
.event-skew-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}
.event-skew-item {
  background: var(--black);
  color: var(--white);
  padding: 2rem 4rem;
  transform: skewX(-15deg);
  transition: transform 0.3s, background 0.3s;
  cursor: pointer;
  border: 4px solid var(--black);
}
.event-skew-item:hover {
  transform: skewX(-15deg) translateX(15px);
  background: var(--red);
}
.event-skew-item.alt {
  background: var(--white);
  color: var(--black);
}
.event-skew-item.alt:hover {
  background: var(--yellow);
}
.skew-content {
  transform: skewX(15deg);
  display: flex;
  align-items: center;
  gap: 3rem;
}
.event-time {
  font-family: "Impact", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
}
.event-info h3 {
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin: 0 0 0.5rem;
}
.event-info p {
  margin: 0;
  font-weight: bold;
  opacity: 0.8;
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .event-skew-item {
    transform: skewX(-5deg);
    padding: 1.5rem 2rem;
  }
  .event-skew-item:hover {
    transform: skewX(-5deg) translateX(5px);
  }
  .skew-content {
    transform: skewX(5deg);
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .footer-split {
    flex-direction: column;
  }
  .footer-left {
    padding: 3rem 1rem;
  }
  .footer-right {
    padding: 3rem 1rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .news-item .date {
    min-width: auto;
    margin-right: 0;
  }
  .news-item .arrow {
    display: none;
  }
}

@media (max-width: 767px) {
  .price-table th {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    border-bottom: none;
    padding-bottom: 0;
  }
  .price-table td {
    width: 100%;
    display: block;
    text-align: left;
    padding-top: 0.5rem;
  }
  .price-table tr {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 4px dashed var(--black);
  }
  .price-table tr:last-child {
    border-bottom: none;
  }
  .chip-amount {
    margin-left: 0;
  }
}

/* Calendar Section Shared Styles */
.calendar-section {
  overflow-x: scroll;
  padding: 4rem 1rem;
  background: var(--white);
  border-bottom: 8px solid var(--black);
}
.cal-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.cal-notes {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: bold;
}
.cal-day-mobile {
  display: none;
}

/* Brutalism Block (Selected Design) */
.design-brutal {
  background: var(--white);
}
.design-brutal .cal-header {
  border-bottom: 8px solid var(--black);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.design-brutal .cal-logo {
  background: var(--black);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-family: "Impact", sans-serif;
  font-size: 2rem;
}

.design-brutal .cal-logo div {
  padding: 0 4px 2px 0;
  width: 70px;
  box-sizing: border-box;
}

.design-brutal .cal-logo img {
  width: 100%;
  height: auto;
}

.design-brutal .cal-title {
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--black);
  margin: 0;
  line-height: 1;
}
.design-brutal .cal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.design-brutal .cal-day-head {
  display: none;
}
.design-brutal .cal-cell {
  border: 4px solid var(--black);
  padding: 1rem;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 4px 4px 0 var(--black);
  background: var(--white);
  color: var(--black);
  text-decoration: none;
}
.design-brutal .cal-date-wrap {
  border-bottom: 4px solid var(--black);
  margin-bottom: 0.5rem;
  padding-bottom: 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.design-brutal .cal-date {
  font-family: "Impact", sans-serif;
  font-size: 2rem;
}
.design-brutal .cal-day-mobile {
  display: block;
  font-family: "Impact", sans-serif;
  font-size: 1rem;
}
.design-brutal .cal-event {
  font-weight: 900;
  font-size: 0.9rem;
}
.design-brutal .bg-closed {
  background: var(--black);
  color: var(--white);
  justify-content: center;
  align-items: center;
}
.design-brutal .bg-closed .cal-date-wrap {
  display: none;
}
.design-brutal .bg-closed .cal-event {
  font-size: 1.5rem;
  font-family: "Impact", sans-serif;
}
.design-brutal .bg-sp-red {
  background: var(--red);
  color: var(--white);
}
.design-brutal .bg-sp-red .cal-date-wrap {
  border-color: var(--white);
}

.design-brutal .bg-sp-blue {
  background: var(--blue);
  color: var(--white);
}
.design-brutal .bg-sp-blue .cal-date-wrap {
  border-color: var(--white);
}

.design-brutal .bg-sp-yellow {
  background: var(--yellow);
}
.design-brutal .pt-badge {
  position: absolute;
  top: -12px;
  left: -12px;
  font-family: "Impact", sans-serif;
  font-size: 1.2rem;
  padding: 0.2rem 0.8rem;
  transform: rotate(-10deg);
  border: 2px solid var(--black);
  box-shadow: 2px 2px 0 var(--black);
  z-index: 10;
  letter-spacing: 1px;

  background: var(--white);
  color: var(--black);
}

/* Next Month Indicator */
.design-brutal .bg-next-month {
  background: #f5f5f5;
  border-color: #ccc;
  box-shadow: 4px 4px 0 #ccc;
  color: #aaa;
}
.design-brutal .bg-next-month .cal-date-wrap {
  border-color: #ccc;
}
.design-brutal .bg-next-month.bg-closed {
  background: #e0e0e0;
  color: #fff;
  border-color: #ccc;
  box-shadow: 4px 4px 0 #ccc;
}

/* Today Indicator */
.design-brutal .is-today {
  border-color: var(--red);
  background: #fff0f0;
}

@media only screen and (max-width: 769px) {
  .design-brutal .is-mobile {
    display: none;
  }
}

.design-brutal .today-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--red);
  color: var(--white);
  font-family: "Impact", sans-serif;
  font-size: 1.2rem;
  padding: 0.2rem 0.8rem;
  transform: rotate(10deg);
  border: 2px solid var(--black);
  box-shadow: 2px 2px 0 var(--black);
  z-index: 10;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .design-brutal .cal-grid {
    grid-template-columns: repeat(7, 1fr);
  }
  .design-brutal .cal-day-head {
    display: block;
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 1rem;
    font-family: "Impact", sans-serif;
  }
  .design-brutal .cal-day-mobile {
    display: none;
  }
}

/* Gallery Section Shared Styles */
.gallery-section {
  padding: 4rem 1rem;
  border-bottom: 8px solid var(--black);
  background: var(--white);
  overflow: hidden;
}
.gallery-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: filter 0.3s;
}
.gallery-section img:hover {
  filter: brightness(0.8);
}
.gal-header {
  margin-bottom: 3rem;
  text-align: center;
}

/* Masonry Grid (Selected Design) */
.gal-grid {
  columns: 2;
  column-gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 2rem;
}
@media (min-width: 768px) {
  .gal-grid {
    columns: 3;
  }
}
@media (min-width: 1024px) {
  .gal-grid {
    columns: 4;
  }
}
.gal-item {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border: 4px solid var(--black);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--white);
  transform: translateZ(0);
}
.gal-item:nth-child(3n + 1) {
  box-shadow: 6px 6px 0 var(--red);
}
.gal-item:nth-child(3n + 2) {
  box-shadow: 6px 6px 0 var(--yellow);
}
.gal-item:nth-child(3n) {
  box-shadow: 6px 6px 0 var(--black);
}

/* Hover effect for gallery items */
.gal-item:hover {
  transform: translate(-2px, -2px);
}
.gal-item:nth-child(3n + 1):hover {
  box-shadow: 8px 8px 0 var(--red);
}
.gal-item:nth-child(3n + 2):hover {
  box-shadow: 8px 8px 0 var(--yellow);
}
.gal-item:nth-child(3n):hover {
  box-shadow: 8px 8px 0 var(--black);
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border: 8px solid var(--white);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.lightbox.active img {
  transform: scale(1);
}

/* Ranking Section Shared Styles */
.ranking-section {
  padding: 4rem 1rem;
  border-bottom: 8px solid var(--black);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.rank-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  font-family: "Impact", sans-serif;
  font-size: 15vw;
  color: rgba(0, 0, 0, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.rank-bg-symbols {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 40vw;
  color: rgba(0, 0, 0, 0.02);
  letter-spacing: 10vw;
  pointer-events: none;
  z-index: 0;
  display: flex;
  justify-content: center;
  opacity: 0.5;
}

.rank-header {
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.rank-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .rank-wrapper {
    flex-direction: row;
    gap: 2rem;
  }
}
.rank-col {
  flex: 1;
}
.rank-col-title {
  font-family: "Impact", sans-serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.rank-col:first-child .rank-col-title {
  color: var(--red);
}
.rank-col:last-child .rank-col-title {
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--black);
}
.rank-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Ranking Items (Design 1 structure + Design 6 colors) */
.rank-item {
  display: flex;
  align-items: center;
  border: 4px solid var(--black);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--black);
  padding: 0.8rem;
  transition: transform 0.2s;
}
.rank-item:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--black);
}

/* Colors from Design 6 */
.rank-1 {
  background: var(--red);
  color: var(--white);
}
.rank-2 {
  background: var(--yellow);
  color: var(--black);
}

.r-num {
  font-family: "Impact", sans-serif;
  font-size: 2rem;
  width: 50px;
  text-align: center;
  border-right: 4px solid var(--black);
  margin-right: 0.8rem;
  padding-right: 0.8rem;
  flex-shrink: 0;
}
.rank-1 .r-num {
  border-right-color: var(--white);
}

.r-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 0;
}
.r-name {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 0.5rem;
}
.r-score {
  font-family: "Impact", sans-serif;
  font-size: 1.2rem;
  background: var(--black);
  color: var(--white);
  padding: 0.2rem 0.5rem;
  flex-shrink: 0;
}
.rank-1 .r-score {
  background: var(--white);
  color: var(--red);
}

@media (min-width: 768px) {
  .rank-item {
    padding: 1rem;
  }
  .r-num {
    font-size: 3rem;
    width: 70px;
    margin-right: 1rem;
    padding-right: 1rem;
  }
  .r-name {
    font-size: 1.2rem;
  }
  .r-score {
    font-size: 1.5rem;
  }
}

.rank-footer {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

/* =========================================
   CONTACT & SNS SECTION
   ========================================= */
.contact-section {
  width: 100%;
}
.contact-split {
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--black);
  border-bottom: 4px solid var(--black);
}
@media (min-width: 768px) {
  .contact-split {
    flex-direction: row;
  }
}
.contact-left,
.contact-right {
  flex: 1;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-left {
  background-color: var(--red);
  color: var(--white);
  border-bottom: 4px solid var(--black);
}
@media (min-width: 768px) {
  .contact-left {
    border-bottom: none;
    border-right: 4px solid var(--black);
  }
}
.contact-right {
  background-color: var(--black);
  color: var(--white);
}
.contact-title {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 450px) {
  .contact-title {
    font-size: 2.3rem;
  }
}

.contact-buttons,
.contact-sns {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--black);
  background: var(--white);
  border: 4px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--black);
}
.contact-btn:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--black);
}
.btn-line {
  background-color: #06c755;
  color: var(--white);
}
.btn-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}
.sns-icon {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
  border: 4px solid var(--black);
  transition: transform 0.2s;
}
.sns-icon:hover {
  transform: scale(1.1);
}
.sns-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

/* =========================================
   SCROLL TRIGGERED POPUP
   ========================================= */
.scroll-popup {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 320px;
  background: var(--white);
  border: 6px solid var(--black);
  box-shadow: 12px 12px 0 var(--red);
  z-index: 2000;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: block;
}

.scroll-popup .link {
  text-decoration: none;
}

.scroll-popup.headroom--unpinned,
.scroll-popup.headroom--not-top {
  -webkit-transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(150%);
}

.scroll-popup.headroom--pinned {
  -webkit-transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(0%);
}

.scroll-popup.headroom--clicked {
  -webkit-transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(150%) !important;
}

.popup-inner {
  position: relative;
  padding: 1.5rem 1.5rem;
}

.popup-close {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background: var(--black);
  color: var(--white);
  border: 4px solid var(--black);
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.popup-close:hover {
  background: var(--red);
}

.popup-tag {
  /* display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: "Impact", sans-serif;
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em; */

  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--red);
  color: var(--white);
  font-family: "Impact", sans-serif;
  font-size: 1.2rem;
  padding: 0.2rem 0.8rem;
  transform: rotate(10deg);
  border: 2px solid var(--black);
  box-shadow: 2px 2px 0 var(--black);
  z-index: 10;
  letter-spacing: 1px;
}

.popup-title {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.popup-text {
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: #333;
}

.popup-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  text-decoration: none;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 1rem;
  border: 4px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  transition: transform 0.2s, box-shadow 0.2s;
}

.popup-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--black);
}

@media (max-width: 767px) {
  .scroll-popup {
    width: calc(100% - 2rem);
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    box-shadow: 8px 8px 0 var(--red);
  }
}

/* Beginner Section (Brutalist Design 4) */
.beginner-section-v4-wrap {
  margin-top: -50px;
  padding-top: 50px;
}
.beginner-section-v4 {
  background-color: var(--white);
  border-bottom: 8px solid var(--black);
  position: relative;
}
.beginner-v4-hero {
  width: 100%;
  border-bottom: 8px solid var(--black);
  position: relative;
  background-color: var(--black);
}
.beginner-v4-tag {
  position: absolute;
  top: -2.5rem;
  left: 1rem;
  background-color: var(--red);
  color: var(--white);
  font-family: "Dela Gothic One", cursive;
  font-size: 1.25rem;
  padding: 0.5rem 1rem;
  border: 4px solid var(--black);
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
  z-index: 20;
  transform: rotate(-3deg);
}
.beginner-v4-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.9;
  display: block;
}
.beginner-v4-content {
  padding: 2rem 1rem;
  position: relative;
  z-index: 10;
  max-width: 1024px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .beginner-v4-content {
    padding: 4rem 2rem;
  }
}
.beginner-v4-title {
  font-size: 1.875rem;
  font-family: "Dela Gothic One", cursive;
  color: var(--black);
  margin-bottom: 2rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (min-width: 768px) {
  .beginner-v4-title {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
}
.beginner-v4-title span {
  color: var(--red);
  display: inline-block;
  padding-right: 1rem;
}

.beginner-v4-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .beginner-v4-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.beginner-v4-text {
  color: var(--black);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.625;
}
.beginner-v4-text p {
  margin-bottom: 1.5rem;
}

.beginner-v4-text p span {
  color: var(--red);
  display: inline-block;
  font-weight: 900;
}
.beginner-v4-list-box {
  background-color: var(--white);
  border: 4px solid var(--black);
  padding: 1.5rem;
  box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 1);
  position: relative;
  height: fit-content;
}
.beginner-v4-star {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background-color: var(--yellow);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 4px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.beginner-v4-star .star-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--black);
}
.beginner-v4-list-title {
  font-size: 1.25rem;
  font-family: "Dela Gothic One", cursive;
  color: var(--black);
  margin-bottom: 1.5rem;
  border-bottom: 4px solid var(--black);
  padding-bottom: 1rem;
}
.beginner-v4-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.beginner-v4-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1rem;
}
.beginner-v4-list li svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  fill: var(--black);
}

@media only screen and (max-width: 450px) {
  .beginner-v4-grid {
    gap: 1rem;
  }
}

/* Map & Access Section */
.map-section {
  padding: 4rem 1rem;
  background: var(--white);
  border-bottom: 8px solid var(--black);
}
.map-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .map-container {
    grid-template-columns: 400px 1fr;
    align-items: center;
  }
}
.map-info {
  padding: 2rem;
  border: 8px solid var(--black);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--black);
}
.map-tag {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 0.2rem 0.8rem;
  font-family: "Impact", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.map-title {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.map-address,
.map-hours {
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.map-buttons {
  margin-top: 2rem;
}
.map-btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 1rem 2rem;
  text-decoration: none;
  font-family: "Dela Gothic One", sans-serif;
  border: 4px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  transition: transform 0.1s, box-shadow 0.1s;
}
.map-btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--black);
}
.map-frame-wrapper {
  height: 400px;
  border: 8px solid var(--black);
  box-shadow: 12px 12px 0 var(--yellow);
  overflow: hidden;
}

@media only screen and (max-width: 450px) {
  .map-info {
    padding: 1rem;
  }
}

.menu-showcase {
  padding: 4rem 1rem;
  background: #e0e0e0;
  min-height: 100vh;
}
.menu-header {
  text-align: center;
  margin-bottom: 4rem;
}
.menu-header h1 {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 3.5rem;
  color: var(--black);
  margin-bottom: 2rem;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 4px 4px 0 var(--white);
}
.menu-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.menu-nav a {
  font-family: "Impact", sans-serif;
  font-size: 1.8rem;
  color: var(--black);
  background: var(--white);
  padding: 0.8rem 3rem;
  text-decoration: none;
  border: 6px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.menu-nav a:hover {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 var(--black);
  background: var(--yellow);
}
.menu-nav a:active {
  transform: translate(6px, 6px);
  box-shadow: 0 0 0 var(--black);
}
.menu-section-anchor {
  scroll-margin-top: 120px;
}
.menu-cand-container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-s1 {
  border: 8px solid var(--black);
  padding: 4rem;
  background: var(--white);
  max-width: 1000px;
  margin: 0 auto;
}
.menu-s1 .category {
  font-family: "Impact", sans-serif;
  font-size: 4.5rem;
  border-bottom: 8px solid var(--black);
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 2px;
}
.menu-s1 .sub-category {
  font-family: "Impact", sans-serif;
  font-size: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--red);
  border-left: 8px solid var(--red);
  padding-left: 1rem;
}
.menu-s1 .item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 1.5rem;
  border-bottom: 2px dashed #ccc;
  padding-bottom: 0.5rem;
}
.menu-s1 .item .price {
  font-family: "Impact", sans-serif;
  font-size: 2rem;
  color: var(--black);
}

@media (max-width: 767px) {
  .menu-header {
    margin-bottom: 3rem;
  }
  .menu-header h1 {
    font-size: 2.2rem;
    text-shadow: 2px 2px 0 var(--white);
  }
  .menu-nav {
    gap: 1rem;
    padding: 0 1rem;
  }
  .menu-nav a {
    font-size: 1.4rem;
    padding: 0.6rem 1.2rem;
    border-width: 4px;
    box-shadow: 4px 4px 0 var(--black);
  }
  .menu-nav a:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--black);
  }
  .menu-nav a:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 var(--black);
  }
  .menu-s1 {
    padding: 2rem;
    border-width: 4px;
  }
  .menu-s1 .category {
    font-size: 2.5rem;
    border-bottom-width: 4px;
  }
  .menu-s1 .sub-category {
    font-size: 1.8rem;
    border-left-width: 4px;
  }
  .menu-s1 .item {
    font-size: 1.1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .menu-s1 .item .price {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }
}

/* Base Styles */
.detail-container {
  max-width: 1600px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Neo-Brutalist Pop (Final Design) */
.article-card {
  background: #fff;
  padding: 0.5rem;
}

.article-card .thumbnail_bok {
  margin-bottom: 2rem;
}

.article-card .thumbnail_bok img {
  width: 100%;
  height: auto;
}

.article-meta {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0.4rem 0.8rem;
  font-family: "Impact", sans-serif;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.news-title-single {
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  border-bottom: 6px solid #000;
  padding-bottom: 0.8rem;
}
.content {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 700;
}
.content p {
  margin-bottom: 1.2rem;
}
.content h2 {
  font-family: "Dela Gothic One", sans-serif;
  background: #facc15;
  display: inline-block;
  padding: 0.2rem 0.8rem;
  margin: 1.5rem 0 0.8rem;
  border: 3px solid #000;
  font-size: 1.1rem;
}
.content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.2rem;
}
.content li {
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .detail-container {
    margin: 2rem auto;
    padding: 0 1.5rem;
  }
  .article-card {
    padding: 3rem;
    margin-bottom: 4rem;
  }
  .article-meta {
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
  .news-title-single {
    margin-bottom: 2rem;
    border-bottom-width: 8px;
    padding-bottom: 1rem;
  }
  .content {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  .content h2 {
    padding: 0.2rem 1rem;
    margin: 2rem 0 1rem;
    border-width: 4px;
    font-size: 1.5rem;
  }
}

.row_img1 {
  padding-bottom: 10px;
}

.row_img1 img {
  width: 100%;
  height: auto;
}

.row_img2 {
  display: flex;
  padding-bottom: 10px;
}

.row_img2 div {
  width: 50%;
}

.row_img2 div:nth-child(1) {
  padding-right: 5px;
}

.row_img2 div:nth-child(2) {
  padding-left: 5px;
}

.row_img2 img {
  width: 100%;
  height: auto;
}

/* Default Base Styles */
.tournament-container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.info-item {
  padding: 1.5rem;
  border: 4px solid #000;
  background: #fff;
  box-shadow: 6px 6px 0 #000;
}
.info-label {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: "Impact", sans-serif;
  text-transform: uppercase;
  color: #dc2626;
  border-bottom: 3px solid #000;
  padding-bottom: 0.5rem;
}
.info-value {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: pre-line;
  font-family: "Inter", sans-serif;
}
.info-note {
  display: block;
  font-size: 0.85rem;
  color: #dc2626;
  font-weight: 700;
  line-height: 1.4;
}

/* Neo-Brutalist Pop (Final Design) */
.tournament-card {
  background: #fff;
  border: 6px solid #000;
  box-shadow: 10px 10px 0 #facc15;
  padding: 1rem;
}
.tournament-hero-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border: 4px solid #000;
  box-shadow: 6px 6px 0 #000;
  margin-bottom: 2rem;
  display: block;
}
.tournament-title {
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 3rem;
  line-height: 1.2;
  background: #dc2626;
  color: #fff;
  padding: 1rem 1.5rem;
  display: inline-block;
  transform: rotate(-2deg);
  border: 5px solid #000;
  box-shadow: 8px 8px 0 #000;
  letter-spacing: 0.05em;
}
.structure-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
.structure-table th,
.structure-table td {
  border: 3px solid #000;
  padding: 0.8rem;
  text-align: center;
  font-weight: 900;
  font-size: 0.9rem;
}
.structure-table th {
  background: #facc15;
}

@media (min-width: 768px) {
  .tournament-container {
    margin: 4rem auto;
    padding: 0 1.5rem;
  }
  .tournament-card {
    border-width: 8px;
    box-shadow: 15px 15px 0 #facc15;
    padding: 3rem;
  }
  .tournament-hero-image {
    border-width: 6px;
    box-shadow: 10px 10px 0 #000;
    margin-bottom: 3rem;
  }
  .tournament-title {
    padding: 1.5rem 2rem;
    box-shadow: 12px 12px 0 #000;
  }
  .structure-table th,
  .structure-table td {
    padding: 1rem;
    font-size: 1rem;
  }
}

.description-text p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.description-text p a {
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--white);
  background: var(--black);
  border: 4px solid var(--black);
  box-shadow: 6px 6px 0 var(--red);
  transition: transform 0.2s, box-shadow 0.2s;
}
.description-text p a:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--red);
  background: var(--red);
}
.description-text p a:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--red);
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-kaku-gothic-new-black {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.dela-gothic-one {
  font-family: "Dela Gothic One", cursive !important;
}

.text-center {
  text-align: center;
}

.mt-2rem {
  margin-top: 2rem;
}

.mb-2rem {
  margin-bottom: 2rem;
}

.mb-3rem {
  margin-bottom: 3rem;
}

@media only screen and (max-width: 767px) {
  .design-brutal .isnot-with-in {
    display: none;
  }
}
