    :root {
      --bg-color: #010205;
      --bg-gradient: radial-gradient(circle at 50% 0%, #081b45 0%, #020613 50%, #000000 100%);

      --gold-main: #f5b000;
      --gold-bright: #ffdb33;
      --gold-dark: #b36b00;
      --gold-glow: rgba(245, 176, 0, 0.7);

      --blood-red: #9e0000;
      --blood-dark: #4a0000;
      --blood-glow: rgba(158, 0, 0, 0.7);

      --text-main: #f4ede4;
      --text-muted: #a39686;

      --font-base: 'Noto Serif JP', serif;
      --font-title: 'Cinzel', 'Noto Serif JP', serif;
    }

    body {
      background-color: var(--bg-color);
      background-image: var(--bg-gradient), url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 20 L42 38 L60 40 L42 42 L40 60 L38 42 L20 40 L38 38 Z' fill='rgba(212,175,55,0.04)' fill-rule='evenodd'/%3E%3C/svg%3E");
      background-attachment: fixed;
      color: var(--text-main);
      font-family: var(--font-base);
      font-weight: 300;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    a {
      color: var(--gold-bright);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    a:hover {
      color: #fff;
      text-shadow: 0 0 12px var(--gold-glow);
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: var(--font-title);
    }

    .text-warning {
      color: var(--gold-bright);
    }

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

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

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

    .text-gradient-gold {
      background: linear-gradient(to bottom, #ffdb33 0%, #f5b000 40%, #b36b00 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 0 15px var(--gold-glow));
    }

    .icon-gold {
      color: var(--gold-main);
      text-shadow: 0 0 12px var(--gold-glow);
    }

    .layout-wrapper {
      display: flex;
      position: relative;
      min-height: 100vh;
    }

    .custom-main-content {
      flex-grow: 1;
      min-width: 0;
      transition: margin-left 0.5s ease;
    }

    .custom-container {
      max-width: 1152px;
      margin: 3rem auto;
      position: relative;
      z-index: 20;
      padding: 0 1rem 3rem 1rem;
    }

    .custom-sidebar {
      width: 288px;
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      border-right: 2px solid #8a6a1c;
      box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
      background-color: var(--bg-color);
      z-index: 1040;
      transition: transform 0.3s ease;
    }

    @media (min-width: 992px) {
      .custom-main-content {
        margin-left: 288px;
      }

    }

    @media (max-width: 991px) {
      .custom-sidebar {
        transform: translateX(-100%);
      }

      .custom-sidebar.show {
        transform: translateX(0);
      }

      .custom-main-content {
        margin-left: 0 !important;
      }

      .custom-container {
        margin-top: -2.5rem;
      }
    }

    .mobile-toggle {
      display: none;
      position: fixed;
      top: 15px;
      right: 15px;
      z-index: 1050;
      background: rgba(4, 8, 20, 0.9);
      color: var(--gold-bright);
      border: 2px solid var(--gold-main);
      padding: 0.5rem 0.8rem;
      border-radius: 4px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 1);
      cursor: pointer;
    }

    .mobile-toggle i {
      font-size: 2.5rem;
      line-height: 1;
    }

    @media (max-width: 991px) {
      .mobile-toggle {
        display: block !important;
      }
    }

    .sidebar-header {
      padding: 1.5rem;
      text-align: center;
      border-bottom: 2px solid var(--gold-dark);
      position: relative;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
    }

    .sidebar-bg-glow {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      background: radial-gradient(circle at center, rgba(245, 176, 0, 0.15) 0%, transparent 70%);
    }

    .sidebar-header-content {
      position: relative;
      z-index: 1;
      font-weight: bold;
      letter-spacing: 0.1em;
      font-family: var(--font-title);
    }

    .sidebar-main-title {
      font-size: 1.2rem;
      margin-bottom: 0.1rem;
      padding: 0.5rem 0;
      font-weight: 800;
      letter-spacing: 0.1em;
    }

    .sidebar-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .sidebar-hex-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 0.5rem;
    }

    .hex-wrapper {
      position: relative;
    }

    .hex-outer {
      padding: 2px;
      clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
    }

    .hex-inner {
      padding: 6px 0;
      clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 14px 100%, 0% 50%);
    }

    .hex-title {
      display: block;
      text-align: center;
      font-weight: bold;
      letter-spacing: 0.1em;
    }

    .hex-subtitle {
      font-size: 0.9rem;
    }

    .hex-blue-wrap {
      filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
    }

    .hex-blue-outer {
      background: linear-gradient(to right, #0f3460, #4db8ff, #0f3460);
    }

    .hex-blue-inner {
      background: linear-gradient(to bottom, #0a192f, #000);
    }

    .hex-blue-title {
      color: #99ccff;
      text-shadow: 0 0 8px rgba(59, 130, 246, 0.8);
    }

    .hex-red-wrap {
      filter: drop-shadow(0 0 12px var(--blood-glow));
      transform: scale(1.05);
      z-index: 10;
    }

    .hex-red-outer {
      background: linear-gradient(to right, #4a0000, #ff4d4d, #4a0000);
    }

    .hex-red-inner {
      background: linear-gradient(to bottom, #2a0000, #000);
    }

    .hex-red-title {
      color: #ff4d4d;
      text-shadow: 0 0 10px var(--blood-glow);
    }

    .hex-gold-wrap {
      filter: drop-shadow(0 0 8px var(--gold-glow));
    }

    .hex-gold-outer {
      background: linear-gradient(to right, #b36b00, #ffdb33, #b36b00);
    }

    .hex-gold-inner {
      background: linear-gradient(to bottom, #1a1a1a, #000);
    }

    .hex-gold-title {
      color: #ffdb33;
      text-shadow: 0 0 8px var(--gold-glow);
    }

    .sidebar-nav {
      flex-grow: 1;
      padding: 1.5rem 0;
    }

    .nav-list {
      list-style: none;
      padding: 0 1rem;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .nav-item {
      margin: 0;
    }

    .nav-link {
      display: flex;
      align-items: center;
      padding: 1rem;
      border-radius: 4px;
      color: var(--text-main);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .nav-link.active {
      background: rgba(245, 176, 0, 0.15);
      border-left: 4px solid var(--gold-main);
      color: var(--gold-bright);
    }

    .nav-icon {
      margin-right: 1rem;
      font-size: 1.25rem;
    }

    .section-frame {
      background: linear-gradient(135deg, rgba(10, 15, 35, 0.95), rgba(5, 5, 10, 0.95));
      position: relative;
      padding: 5rem 3rem;
      margin-bottom: 5rem;
      border: 2px solid #000;
      box-shadow:
        0 20px 50px rgba(0, 0, 0, 1), 0 0 0 6px var(--gold-dark),
        0 0 0 10px #2a0000, 0 0 0 12px var(--gold-main),
        0 0 30px 12px var(--gold-glow), inset 0 0 0 2px var(--gold-bright),
        inset 0 0 30px 15px rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(12px);
    }

    .section-frame::before {
      content: '';
      position: absolute;
      top: 15px;
      left: 15px;
      right: 15px;
      bottom: 15px;
      border: 1px dashed var(--gold-main);
      box-shadow: inset 0 0 25px rgba(158, 0, 0, 0.4);
      pointer-events: none;
      z-index: 1;
    }

    .section-frame::after {
      content: '';
      position: absolute;
      top: -12px;
      left: -12px;
      right: -12px;
      bottom: -12px;
      background-image:
        url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L50,0 C30,10 10,30 0,50 Z' fill='%23b36b00'/%3E%3Cpath d='M0,0 L35,0 C20,8 8,20 0,35 Z' fill='%23ffdb33'/%3E%3Ccircle cx='12' cy='12' r='4' fill='%239e0000' stroke='%23ffdb33' stroke-width='1.5'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50,0 L0,0 C20,10 40,30 50,50 Z' fill='%23b36b00'/%3E%3Cpath d='M50,0 L15,0 C30,8 42,20 50,35 Z' fill='%23ffdb33'/%3E%3Ccircle cx='38' cy='12' r='4' fill='%239e0000' stroke='%23ffdb33' stroke-width='1.5'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 L50,50 C30,40 10,20 0,0 Z' fill='%23b36b00'/%3E%3Cpath d='M0,50 L35,50 C20,42 8,30 0,15 Z' fill='%23ffdb33'/%3E%3Ccircle cx='12' cy='38' r='4' fill='%239e0000' stroke='%23ffdb33' stroke-width='1.5'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50,50 L0,50 C20,40 40,20 50,0 Z' fill='%23b36b00'/%3E%3Cpath d='M50,50 L15,50 C30,42 42,30 50,15 Z' fill='%23ffdb33'/%3E%3Ccircle cx='38' cy='38' r='4' fill='%239e0000' stroke='%23ffdb33' stroke-width='1.5'/%3E%3C/svg%3E");
      background-position: top left, top right, bottom left, bottom right;
      background-repeat: no-repeat;
      pointer-events: none;
      z-index: 2;
    }

    @media (max-width: 991px) {
      .section-frame {
        padding: 3.5rem 1.5rem;
        margin-bottom: 4rem;
      }
    }

    .section-title {
      font-size: 2.2rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 3rem;
      color: var(--gold-bright);
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9), 0 0 15px var(--gold-glow);
      position: relative;
      padding-bottom: 1.5rem;
      letter-spacing: 0.15em;
    }

    @media (max-width: 991px) {
      .section-title {
        font-size: 1.8rem;
      }
    }

    .section-title::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
      box-shadow: 0 0 8px var(--gold-glow);
    }

    .section-title::after {
      content: '✦';
      position: absolute;
      bottom: -11px;
      left: 50%;
      transform: translateX(-50%);
      color: var(--gold-bright);
      font-size: 1.2rem;
      text-shadow: 0 0 10px var(--gold-glow);

      padding: 0 15px;
    }

    .section-icon {
      margin-right: 1rem;
    }

    .hero-section {
      position: relative;
      overflow: hidden;
      border-bottom: 2px solid var(--gold-dark);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 1);
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 10;
    }

    .hero-img {
      width: 100%;
      height: auto;
      min-height: 40vh;
      object-fit: cover;
      position: relative;
      z-index: 0;
      opacity: 0.75;
      display: block;
    }

    .banner-section {
      margin-bottom: 3rem;
      position: relative;
    }

    .banner-bg-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      border-radius: 50%;
      pointer-events: none;
      background-color: rgba(13, 110, 253, 0.1);
      filter: blur(150px);
      z-index: -1;
    }

    .banner-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .banner-img {
      width: 100%;
      border-radius: 4px;
      border: 2px solid var(--gold-dark);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 1);
      display: block;
    }

    .banner-btn-wrap {
      text-align: center;
      margin-top: 3rem;
    }

    .banner-btn {
      width: 100%;
      max-width: 400px;
      font-size: 1.25rem;
    }

    @media (min-width: 768px) {
      .banner-btn {
        width: auto;
      }
    }

    .btn-icon {
      margin-left: 1rem;
    }

    .btn-gold {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(20, 0, 0, 0.9) 0%, rgba(5, 5, 15, 1) 100%);
      color: var(--gold-bright);
      font-family: var(--font-title);
      font-weight: 600;
      font-size: 1rem;
      border: 2px solid var(--gold-dark) !important;
      border-radius: 4px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.9), inset 0 0 20px rgba(212, 175, 55, 0.2);
      padding: 1rem 2.5rem !important;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      cursor: pointer !important;
      text-shadow: 0 0 8px var(--gold-glow);
      text-decoration: none;
    }

    /*
    .btn-gold::before,
    .btn-gold::after {
      content: '';
      position: absolute;
      width: 4px;
      height: 4px;
      background: var(--gold-bright);
      border-radius: 50%;
      box-shadow: 0 0 5px var(--gold-glow);
    }

    .btn-gold::before {
      top: 6px;
      left: 6px;
      box-shadow: 0 0 5px var(--gold-glow), calc(100% - 12px) 0 0 var(--gold-bright);
    }

    .btn-gold::after {
      bottom: 6px;
      left: 6px;
      box-shadow: 0 0 5px var(--gold-glow), calc(100% - 12px) 0 0 var(--gold-bright);
    }*/

    .btn-gold:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 1), 0 0 30px rgba(212, 175, 55, 0.4);
      color: #fff;
      border-color: var(--gold-bright);
      background: linear-gradient(135deg, rgba(40, 0, 0, 1) 0%, rgba(10, 10, 30, 1) 100%);
    }

    .intro-header {
      text-align: center;
      margin-bottom: 3rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px dashed rgba(163, 150, 134, 0.5);
      position: relative;
    }

    .intro-main-title {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 1rem;
      letter-spacing: 0.1em;
      text-shadow: 0 0 15px rgba(158, 0, 0, 0.8);
    }

    @media (min-width: 768px) {
      .intro-main-title {
        font-size: 2.2rem;
      }
    }

    .intro-date {
      font-size: 1.25rem;
      opacity: 0.75;
      margin-bottom: 1rem;
      letter-spacing: 0.1em;
      font-weight: 300;
    }

    .intro-works {
      font-size: 1.25rem;
      font-weight: bold;
      line-height: 2;
      text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
      margin: 0;
    }

    .cast-notice {
      text-align: center;
      font-size: 0.875rem;
      margin-bottom: 3rem;
      letter-spacing: 0.1em;
      margin-top: -1.5rem;
    }

    .cast-tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 3rem;
    }

    .tab-btn {
      font-size: 0.875rem;
      padding: 0.5rem 1.5rem;
      opacity: 0.5;
      border: none;
    }

    .tab-active {
      opacity: 1;
    }

    .tab-content {
      display: none;
    }

    .cast-date-title {
      font-size: 1.5rem;
      font-weight: bold;
      padding-left: 1rem;
      margin-bottom: 1.5rem;
      padding: 0.5rem 0 0.5rem 1rem;
      letter-spacing: 0.1em;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
      border-left: 4px solid transparent;
    }

    .border-red {
      border-left-color: var(--blood-red);
    }

    .border-blue {
      border-left-color: #00008b;
    }

    .border-gold {
      border-left-color: #b8860b;
    }

    .bg-red-gradient {
      background: linear-gradient(to right, rgba(139, 0, 0, 0.4), transparent);
    }

    .bg-blue-gradient {
      background: linear-gradient(to right, rgba(0, 0, 139, 0.4), transparent);
    }

    .bg-gold-gradient {
      background: linear-gradient(to right, rgba(184, 134, 11, 0.4), transparent);
    }

    .cast-category {
      border-bottom: 1px solid rgba(163, 150, 134, 0.5);
      padding-bottom: 0.5rem;
      margin-bottom: 1.5rem;
      font-size: 1rem;
      letter-spacing: 0.1em;
      font-weight: bold;
    }

    .cast-row {
      margin-bottom: 2rem;
    }

    .cast-others {
      padding-left: 0.5rem;
      letter-spacing: 0.1em;
      margin-top: 1rem;
      font-size: 0.875rem;
    }

    .profile-card {
      background: linear-gradient(180deg, rgba(10, 15, 35, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
      border: 1px solid var(--gold-dark);
      border-radius: 4px;
      padding: 1rem;
      text-align: center;
      transition: all 0.4s ease;
      position: relative;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .profile-card-st {
      border-color: #8b0000;
      box-shadow: 0 0 15px rgba(158, 0, 0, 0.5);
    }

    .profile-card::before {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: linear-gradient(45deg, var(--gold-bright), var(--blood-red), var(--gold-main));
      z-index: -1;
      opacity: 0;
      transition: opacity 0.4s;
      border-radius: 5px;
      box-shadow: 0 0 20px var(--blood-glow);
    }

    .profile-card:hover {
      transform: translateY(-10px);
      border-color: transparent;
    }

    .profile-card:hover::before {
      opacity: 1;
    }

    .profile-img-wrapper {
      width: 100%;
      aspect-ratio: 3/4;
      overflow: hidden;
      border: 2px solid var(--gold-dark);
      border-radius: 2px;
      margin-bottom: 1.5rem;
      position: relative;
    }

    .profile-img-wrapper-st {
      border-color: #8b0000;
    }

    .profile-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s;
      display: block;
    }

    .profile-card:hover .profile-img-wrapper img {
      filter: sepia(0%) contrast(110%) brightness(110%);
      transform: scale(1.08);
    }

    .profile-card-title {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .profile-name {
      font-weight: bold;
      margin-bottom: 1rem;
      font-size: 0.875rem;
      letter-spacing: 0.05em;
    }

    .profile-name.smaller {
      font-size: 0.75rem;
    }

    .profile-btn {
      width: 100%;
      padding: 0.5rem 0;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
    }

    .mm-table-wrapper {
      overflow-x: auto;
      border: 2px solid var(--gold-dark);
      border-radius: 4px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 1);
      background: rgba(0, 0, 0, 0.8);
      position: relative;
    }

    .mm-table-wrapper::before {
      content: '';
      position: absolute;
      inset: 4px;
      border: 1px dotted var(--gold-dark);
      pointer-events: none;
    }

    .mm-table {
      width: 100%;
      min-width: 800px;
      border-collapse: collapse;
      text-align: center;
    }

    .mm-table th,
    .mm-table td {
      padding: 1.2rem 1rem;
      border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .mm-table thead th {
      background: linear-gradient(180deg, var(--blood-dark) 0%, rgba(0, 0, 0, 0.9) 100%);
      color: var(--gold-bright);
      border-bottom: 2px solid var(--gold-main);
      font-weight: 700;
      letter-spacing: 0.15em;
      text-shadow: 0 0 10px var(--gold-glow);
    }

    .mm-table tbody th {
      background: rgba(10, 15, 35, 0.8);
      color: var(--gold-bright);
    }

    .mm-table .role-cell {
      background: rgba(158, 0, 0, 0.2);
      color: var(--gold-bright);
      font-weight: 600;
    }

    .schedule-th {
      color: #fff;
      font-weight: bold;
      padding: 1.2rem 1rem;
    }

    .bg-red-alpha {
      background-color: rgba(139, 0, 0, 0.4);
    }

    .bg-blue-alpha {
      background-color: rgba(0, 0, 139, 0.4);
    }

    .bg-gold-alpha {
      background-color: rgba(184, 134, 11, 0.4);
    }

    .schedule-side-th {
      color: var(--gold-bright);
      border-right: 2px solid var(--gold-dark);
      font-weight: bold;
      letter-spacing: 0.1em;
      vertical-align: middle;
    }

    .schedule-cell {
      color: var(--text-main);
      padding: 1.5rem 0;
      font-weight: bold;
      letter-spacing: 0.1em;
    }

    .table-border-gold {
      border-bottom: 2px solid var(--gold-dark) !important;
    }

    .outline-table {
      text-align: left;
      min-width: 100%;
    }

    .outline-tr {
      border-bottom: 1px solid rgba(138, 106, 28, 0.3);
    }

    .outline-th {
      width: 25%;
      font-size: 0.875rem;
      font-weight: bold;
    }

    .outline-td {
      font-size: 0.875rem;
      line-height: 1.8;
    }

    .ticket-desc {
      color: var(--text-main);
      margin-bottom: 1.5rem;
      line-height: 2;
      font-size: 1rem;
      font-weight: bold;
    }

    .ticket-alert {
      font-weight: bold;
      font-size: 1.25rem;
      margin-top: 1rem;
      display: block;
      padding: 1.5rem 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
      border-top: 2px solid #8b0000;
      border-bottom: 2px solid #8b0000;
      background-color: rgba(139, 0, 0, 0.2);
    }

    .ticket-alert-2 {
      font-weight: bold;
      margin-top: 1rem;
      display: block;
      padding: 1.5rem 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
      border-top: 2px solid #8b0000;
      border-bottom: 2px solid #8b0000;
      background-color: rgba(139, 0, 0, 0.2);
    }

    .ticket-grid {
      justify-content: center;
      margin-top: 1rem;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .ticket-btn {
      width: 100%;
      text-align: center;
    }

    .btn-icon-small {
      margin-left: 0.5rem;
      font-size: 0.875rem;
    }

    .notice-list {
      color: var(--text-main);
      opacity: 0.75;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      font-size: 0.875rem;
      line-height: 2;
      position: relative;
      z-index: 1;
    }

    @media (min-width: 992px) {
      .notice-list {
        padding: 0 3rem;
      }
    }

    .notice-box {
      padding: 1.5rem;
      border-left: 4px solid var(--gold-dark);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 1);
      background-color: rgba(0, 0, 0, 0.8);
    }

    .notice-title {
      font-size: 1.25rem;
      border-bottom: 1px solid rgba(163, 150, 134, 0.5);
      padding-bottom: 0.5rem;
      margin-bottom: 1rem;
      letter-spacing: 0.1em;
      font-weight: bold;
    }

    .notice-text {
      margin-bottom: 0;
    }

    .site-footer {
      padding: 3rem 0;
      text-align: center;
      color: var(--text-muted);
      font-size: 0.875rem;
      font-weight: bold;
      border-top: 2px solid var(--gold-dark);
      background-color: #010205;
      box-shadow: 0 -10px 30px rgba(0, 0, 0, 1);
    }

    .footer-copy {
      margin-bottom: 0.5rem;
      letter-spacing: 0.1em;
    }

    .footer-desc {
      opacity: 0.5;
      font-size: 0.75rem;
      margin-bottom: 0;
    }

    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(8px);
      z-index: 10000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .modal-content-custom {
      background: linear-gradient(135deg, rgba(10, 15, 35, 0.95) 0%, rgba(20, 0, 0, 0.95) 100%);
      border: 3px solid var(--gold-dark);
      border-radius: 4px;
      box-shadow: 0 0 60px rgba(0, 0, 0, 1), inset 0 0 40px rgba(212, 175, 55, 0.1);
      max-width: 600px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      padding: 4rem 2.5rem 2.5rem 2.5rem;
      position: relative;
    }

    .modal-content-custom::before {
      content: '';
      position: absolute;
      inset: 10px;
      border: 1px dotted var(--gold-main);
      pointer-events: none;
    }

    .modal-content-custom::after {
      content: '✦ ✧ ❖ ✧ ✦';
      position: absolute;
      top: 15px;
      left: 50%;
      transform: translateX(-50%);
      color: var(--gold-bright);
      font-size: 1.5rem;
      text-shadow: 0 0 15px var(--gold-glow);
      letter-spacing: 0.2em;
    }

    .modal-close {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 2.5rem;
      color: var(--gold-main);
      cursor: pointer;
      background: none;
      border: none;
      z-index: 10;
      transition: 0.3s;
      text-shadow: 0 0 10px var(--gold-glow);
      padding: 0;
      line-height: 1;
    }

    .modal-close:hover {
      color: #fff;
      transform: rotate(90deg) scale(1.2);
    }

    .modal-body-content {
      text-align: center;
      position: relative;
      z-index: 1;
      margin-top: 1.5rem;
    }

    .modal-actor-name {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 1.5rem;
      letter-spacing: 0.1em;
      font-family: var(--font-base);
      text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    }

    .modal-actor-name.smaller {
      font-size: 1.25rem;
    }

    .modal-actor-role {
      margin-bottom: 1.5rem;
      border-bottom: 2px solid var(--gold-dark);
      padding-bottom: 0.5rem;
      display: inline-block;
      letter-spacing: 0.1em;
      font-size: 0.875rem;
      font-weight: bold;
      text-align: left;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-fade-in {
      animation: fadeIn 0.5s ease forwards;
    }