/* ===========================
   DOUBLE BELLY - POKER ROOM
   CSS by style.css
=========================== */

:root {
  --red: #c0182c;
  --red-dark: #8b0f1e;
  --red-light: #e8192e;
  --gold: #c9a84c;
  --gold-light: #e8c96b;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --gray: #888888;
  --gray-light: #aaaaaa;
  --white: #f5f5f5;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-display: 'Oswald', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 30px rgba(0,0,0,0.5);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

.section {
  padding: 100px 0;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(192,24,44,0.3);
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
}

.logo-sub {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--red);
}

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

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gray-light);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
}

.nav-cta:hover { background: var(--red-light) !important; }

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  /* 写真追加時はここを変更 */
  background-image: url('images/interior.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(10,10,10,0.75) 50%,
    rgba(139,15,30,0.3) 100%
  );
}

/* パターン背景（写真がない場合） */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(192,24,44,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(192,24,44,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  color: var(--red);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 32px;
}

.hero-title span {
  color: var(--red);
  display: block;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--gray-light);
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 16px 40px;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192,24,44,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.hero-scroll span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gray);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SECTION COMMON ===== */
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--red);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 24px;
}

.section-desc {
  color: var(--gray-light);
  max-width: 560px;
}

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

.section-header.center .section-desc {
  margin: 0 auto;
}

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder {
  position: relative;
  width: 100%;
  padding-top: 66%;
  background: var(--dark-3);
  overflow: hidden;
  border-radius: 2px;
}

.img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-placeholder.no-img .placeholder-text {
  display: flex;
}

.img-placeholder .placeholder-text {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

/* ===== ABOUT ===== */
.about {
  background: var(--dark);
}

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

.about-image {
  position: relative;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(192,24,44,0.4);
}

.badge-year {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
}

.badge-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.about-text p {
  color: var(--gray-light);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* ===== GAMES ===== */
.games {
  background: var(--black);
  position: relative;
}

.games::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.game-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 28px;
  border-radius: 4px;
  position: relative;
  transition: var(--transition);
}

.game-card:hover {
  border-color: rgba(192,24,44,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.game-card.featured {
  background: linear-gradient(145deg, var(--dark-2), rgba(192,24,44,0.08));
  border-color: rgba(192,24,44,0.3);
}

.game-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 2px;
}

.game-icon {
  width: 60px;
  height: 60px;
  color: var(--red);
  margin-bottom: 24px;
}

.game-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.game-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== VIP ROOM ===== */
.vip {
  background: var(--dark);
}

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

.vip-text p {
  color: var(--gray-light);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .vip-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===== GAMES ADDITIONS ===== */
.games-sub-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.games-grid-2 {
  grid-template-columns: repeat(2, 1fr) !important;
}

.game-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.blue-tag {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.black-tag {
  background: rgba(200, 200, 200, 0.08);
  color: #d1d5db;
  border: 1px solid rgba(200, 200, 200, 0.2);
}

.event-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1;
}

.toma-card {
  background: linear-gradient(145deg, var(--dark-2), rgba(192,24,44,0.12)) !important;
}

.toma-sub {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 400;
  margin-left: 8px;
}

.game-card p strong {
  color: var(--white);
  font-weight: 700;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 760px;
  margin: 0 auto 40px;
}

.price-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 48px 40px;
  border-radius: 4px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.price-card.featured {
  background: linear-gradient(145deg, var(--dark-2), rgba(192,24,44,0.1));
  border-color: var(--red);
  box-shadow: 0 0 40px rgba(192,24,44,0.15);
}

.price-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  padding: 6px 20px;
  border-radius: 20px;
}

.price-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-bottom: 20px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

.price-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--red);
}

.price-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.price-note {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 32px;
}

.price-features {
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-features li {
  font-size: 0.88rem;
  color: var(--gray-light);
  padding-left: 20px;
  position: relative;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.8rem;
}

.price-footnote {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 16px;
  text-align: center;
}

/* 料金ブロック */
.pricing-block {
  margin-bottom: 48px;
}

.pricing-block-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--red);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.pricing-block-title span {
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: none;
}

.pricing-option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  margin-top: 12px;
}

.pricing-option-label {
  font-size: 0.88rem;
  color: var(--gray-light);
}

.pricing-option-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* 料金テーブル */
.pricing-table {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.pt-row {
  display: grid;
  grid-template-columns: 1fr 1fr 120px;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.pt-row:last-child { border-bottom: none; }
.pt-row:hover { background: rgba(192,24,44,0.05); }

.pt-label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.pt-note {
  font-size: 0.78rem;
  color: var(--gray);
}

.pt-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  text-align: right;
}

.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
}

/* ===== SCHEDULE ===== */
.schedule {
  background: var(--black);
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 600px;
}

.hours-table {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.hours-row:last-child { border-bottom: none; }
.hours-row:hover { background: rgba(192,24,44,0.06); }

.hours-day {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gray-light);
}

.hours-time {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

.hours-sep {
  color: var(--red);
  margin: 0 8px;
}

.hours-note {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 40px;
}

.schedule-sns p {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.sns-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sns-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  transition: var(--transition);
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
}

.sns-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

.sns-link:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.sns-link.instagram:hover { color: #e1306c; border-color: #e1306c; }
.sns-link.twitter:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.sns-link.youtube:hover { color: #ff0000; border-color: #ff0000; }

/* ===== ACCESS ===== */
.access {
  background: var(--dark);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.access-map {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.access-map iframe {
  display: block;
  filter: grayscale(80%) invert(90%) hue-rotate(180deg);
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.access-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.access-icon {
  width: 40px;
  height: 40px;
  background: rgba(192,24,44,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.access-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.access-item h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 6px;
}

.access-item p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
}

.access-item a {
  color: var(--white);
  transition: var(--transition);
}

.access-item a:hover { color: var(--red); }

/* ===== CONTACT ===== */
.contact {
  background: var(--black);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  transition: var(--transition);
  gap: 16px;
}

.contact-card:hover {
  border-color: rgba(192,24,44,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(192,24,44,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
  background: var(--red);
  color: var(--white);
}

.contact-card-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--white);
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--gray);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
}

.footer-sub {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--red);
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-sns {
  display: flex;
  gap: 12px;
}

.footer-sns a {
  width: 40px;
  height: 40px;
  background: var(--dark-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: var(--transition);
}

.footer-sns a:hover {
  background: var(--red);
  color: var(--white);
}

.footer-sns svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--gray);
}

.footer-disclaimer {
  max-width: 500px;
  text-align: right;
}

/* ===== VIDEOS ===== */
.videos {
  background: var(--dark);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.video-single {
  max-width: 800px;
  margin: 0 auto 40px;
}

.video-thumb {
  position: relative;
  padding-top: 56.25%;
  background: var(--dark-3);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
}

.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.video-thumb:hover img { opacity: 0.8; }

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.play-btn svg {
  width: 72px;
  height: 72px;
  background: rgba(192,24,44,0.9);
  border-radius: 50%;
  padding: 16px;
  color: var(--white);
  transition: var(--transition);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.video-thumb:hover .play-btn svg {
  background: var(--red-light);
  transform: scale(1.08);
}

.video-wrap {
  position: relative;
  padding-top: 56.25%;
  background: var(--dark-3);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-channel-link {
  text-align: center;
}

@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ===== CALENDAR ===== */
.cal-section {
  background: var(--black);
  position: relative;
}

.cal-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.leg-item {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid;
}

.leg-blue  { color: #93c5fd; border-color: rgba(59,130,246,0.4); background: rgba(59,130,246,0.08); }
.leg-black { color: #d1d5db; border-color: rgba(200,200,200,0.25); background: rgba(200,200,200,0.05); }
.leg-toma  { color: var(--red); border-color: rgba(192,24,44,0.4); background: rgba(192,24,44,0.08); }
.leg-special { color: var(--gold); border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.08); }

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.cal-month-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--white);
  min-width: 160px;
  text-align: center;
}

.cal-btn {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cal-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.cal-grid-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  min-width: 560px;
}

.cal-head {
  background: #181818;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.cal-head-fri { color: #93c5fd; }
.cal-head-sat { color: #f9a8d4; }

#calBody { display: contents; }

.cal-cell {
  background: var(--dark-2);
  padding: 8px 7px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-right: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cal-cell:hover { background: #1e1e1e; }

.cal-empty {
  background: #0e0e0e;
  border-right: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cal-sun .cal-date { color: #fca5a5; }
.cal-sat .cal-date { color: #93c5fd; }

/* 今日 — 赤丸で強調 */
.cal-today { background: rgba(192,24,44,0.07) !important; }

.cal-today .cal-date {
  display: inline-flex;
  width: 22px;
  height: 22px;
  background: var(--red);
  color: #fff !important;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* 特別イベントのある日 — ゴールドの上部ライン */
.cal-has-special {
  background: rgba(201,168,76,0.04) !important;
}

.cal-has-special::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,0.1) 100%);
  pointer-events: none;
}

.cal-date {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 2px;
}

/* イベントバッジ — 左カラーストライプ */
.cal-ev {
  font-size: 0.6rem;
  padding: 2px 5px;
  border-radius: 2px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  border-left: 3px solid transparent;
}

.cal-ev-blue {
  background: rgba(59,130,246,0.1);
  color: #93c5fd;
  border-left-color: #3b82f6;
}

.cal-ev-black {
  background: rgba(200,200,200,0.06);
  color: #ccc;
  border-left-color: #666;
}

.cal-ev-toma {
  background: rgba(192,24,44,0.12);
  color: #fca5a5;
  border-left-color: var(--red);
}

/* 特別イベント — ゴールドで目立たせる */
.cal-ev-special {
  background: rgba(201,168,76,0.14);
  color: #e8c96b;
  border-left-color: var(--gold);
  font-weight: 700;
  border: 1px solid rgba(201,168,76,0.25);
  border-left: 3px solid var(--gold);
  padding: 2px 5px 2px 5px;
}

.cal-ev-special::before {
  content: '★ ';
  font-size: 0.5rem;
  color: var(--gold);
  vertical-align: middle;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .schedule-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 1001; }

  .hero-title { font-size: clamp(4rem, 20vw, 8rem); }

  .about-grid,
  .schedule-grid,
  .access-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-badge { bottom: -10px; right: -10px; }

  .games-grid { grid-template-columns: 1fr; }
  .games-grid-2 { grid-template-columns: 1fr !important; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pt-row { grid-template-columns: 1fr 120px; }
  .pt-note { display: none; }
  .contact-cards { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }

  .about-stats { flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 640px) {
  .cal-cell { min-height: 70px; padding: 4px 3px; }
  .cal-ev { font-size: 0.55rem; padding: 1px 4px; }
  .cal-date { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
  .pricing-grid { max-width: 100%; }
}

/* ============================================
   POKER DECORATIONS
   ============================================ */

/* セクションラベルにスート記号を追加 */
.section-label::before {
  content: '♦';
  margin-right: 10px;
  opacity: 0.7;
  font-size: 0.8em;
  vertical-align: middle;
}

/* ヒーローのフローティングスート */
.hero-suits {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-suit {
  position: absolute;
  font-family: serif;
  line-height: 1;
  user-select: none;
}

.hero-suit-spade {
  font-size: clamp(16rem, 30vw, 28rem);
  color: rgba(255,255,255,0.022);
  top: 50%;
  left: -6%;
  transform: translateY(-52%) rotate(-10deg);
}

.hero-suit-diamond {
  font-size: clamp(10rem, 18vw, 18rem);
  color: rgba(192,24,44,0.055);
  bottom: -4%;
  right: 1%;
  transform: rotate(12deg);
}

/* ゲームカードのコーナースート */
.game-card::after {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.5rem;
  opacity: 0.1;
  color: var(--white);
  line-height: 1;
  pointer-events: none;
}

.games-grid .game-card:nth-child(1)::after { content: '♠'; }
.games-grid .game-card:nth-child(2)::after { content: '♥'; }
.games-grid .game-card:nth-child(3)::after { content: '♦'; }
.games-grid .game-card:nth-child(4)::after { content: '♣'; }
.games-grid-2 .game-card:nth-child(1)::after { content: '♠'; font-size: 2rem; opacity: 0.12; }
.games-grid-2 .game-card:nth-child(2)::after { content: '♦'; font-size: 2rem; opacity: 0.12; color: var(--red); }

/* 料金カードのコーナースート */
.price-card::after {
  content: '♠';
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.2rem;
  opacity: 0.07;
  color: var(--white);
  line-height: 1;
  pointer-events: none;
}

/* VIPセクションのゴールドスート装飾 */
.vip-text .section-label::after {
  content: ' ♦ ♦ ♦';
  color: var(--gold);
  opacity: 0.35;
  font-size: 0.7em;
  letter-spacing: 0.2em;
}

/* ===========================
   イベント一覧
=========================== */
.event-list-section { background: var(--dark-2); }

.event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.event-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.event-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.event-card-poster {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  background: var(--dark);
}

.event-card-poster-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.1);
}

.event-card-body {
  padding: 16px 18px 20px;
}

.event-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  line-height: 1.4;
}

.event-card-date {
  font-size: 0.8rem;
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.event-card-desc {
  font-size: 0.82rem;
  color: var(--gray-light);
  line-height: 1.7;
}

/* フッターのスート装飾 */
.footer-brand::after {
  content: '♠  ♥  ♦  ♣';
  display: block;
  color: var(--red);
  opacity: 0.18;
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  margin-top: 14px;
}
