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

html {
  scroll-behavior: smooth;
}

body {
  background: #000000;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

/* Black and red background, no spheres */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(201, 20, 53, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(201, 20, 53, 0.05) 1px, transparent 1px),
    #000000;
  background-size: 80px 80px;
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2), #000 90%),
    repeating-linear-gradient(
      0deg,
      rgba(201, 20, 53, 0.04) 0px,
      rgba(201, 20, 53, 0.04) 1px,
      transparent 1px,
      transparent 6px
    );
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  background: rgba(0, 0, 0, 0.86);
  border-bottom: 1px solid rgba(201, 20, 53, 0.45);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  text-decoration: none;
}

.logo-slot {
  width: 58px;
  height: 42px;
  border: 1px solid #c91435;
  color: #c91435;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 1px;
  background: rgba(201, 20, 53, 0.08);
}

.logo-img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.nav {
  display: flex;
  gap: 34px;
}

.nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.25s;
}

.nav a:hover {
  color: #c91435;
}

.nav a.active {
  color: #c91435;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #c91435;
  font-size: 28px;
  cursor: pointer;
}

/* Hero */
.hero-section {
  min-height: 100vh;
  padding: 140px 7vw 90px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero-left {
  text-align: left;
}

.kicker {
  color: #c91435;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 22px;
}

.mystic-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(78px, 11vw, 168px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 3px;
  text-transform: none;
  color: #c91435;
  margin-bottom: 34px;

  text-shadow:
    0 0 12px rgba(201, 20, 53, 0.45),
    0 0 32px rgba(201, 20, 53, 0.32),
    0 0 70px rgba(201, 20, 53, 0.18);
}

.hero-text {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-image {
  height: clamp(260px, 34vw, 520px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Buttons */
.btn-red,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  height: 48px;
  padding: 0 26px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.25s ease;
}

.btn-red {
  background: #c91435;
  color: #ffffff;
  border: 1px solid #c91435;
  box-shadow: 0 0 24px rgba(201, 20, 53, 0.45);
}

.btn-red:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.btn-outline {
  color: #ffffff;
  border: 1px solid rgba(201, 20, 53, 0.7);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(201, 20, 53, 0.16);
}

.btn-red.small {
  height: 42px;
  min-width: 110px;
  margin-top: 26px;
}

.enter-game-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 38px;
  padding: 15px 34px;

  border: 1px solid #c91435;
  background: #c91435;
  color: #ffffff;

  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;

  box-shadow:
    0 0 18px rgba(201, 20, 53, 0.45),
    0 0 42px rgba(201, 20, 53, 0.2);

  transition: 0.25s ease;
}

.enter-game-btn:hover {
  background: transparent;
  color: #c91435;
  box-shadow:
    0 0 26px rgba(201, 20, 53, 0.65),
    0 0 60px rgba(201, 20, 53, 0.28);
}

.project-index-section {
  padding: 0 7vw 90px;
}

.project-index-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.project-index-header h2 {
  color: #ffffff;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  margin-top: 22px;
  margin-bottom: 22px;
}

.project-index-intro {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

.project-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.project-card {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(201, 20, 53, 0.44);
  background: rgba(0, 0, 0, 0.72);
  overflow: hidden;
  transition: 0.25s ease;
}

.project-card:hover {
  border-color: #c91435;
  background: rgba(201, 20, 53, 0.08);
  transform: translateY(-6px);
}

.project-card-image {
  min-height: 220px;
  border-bottom: 1px solid rgba(201, 20, 53, 0.3);
  background:
    linear-gradient(135deg, rgba(201, 20, 53, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.025);
}

.research-card {
  background:
    linear-gradient(135deg, rgba(201, 20, 53, 0.22), transparent 42%),
    url("image/concept/1.png") center / cover;
}

.game-card {
  background:
    linear-gradient(135deg, rgba(201, 20, 53, 0.14), transparent 36%),
    url("image/game.png") center / cover;
}

.event-card {
  background:
    linear-gradient(135deg, rgba(201, 20, 53, 0.2), transparent 44%),
    url("image/event.JPG") center / cover;
}

.project-card-content {
  padding: 28px;
}

.card-number {
  color: #c91435;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 52px;
}

.project-card h3 {
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 16px;
}

.project-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

.project-card .card-number {
  color: #c91435;
}

.panel-label {
  padding: 20px 24px;
  color: #c91435;
  font-size: 12px;
  letter-spacing: 2.4px;
  border-bottom: 1px solid rgba(201, 20, 53, 0.38);
}

.panel-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 82px;
  border-bottom: 1px solid rgba(201, 20, 53, 0.25);
}

.panel-row:last-child {
  border-bottom: none;
}

.panel-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c91435;
  border-right: 1px solid rgba(201, 20, 53, 0.25);
  font-size: 14px;
}

.panel-row p {
  display: flex;
  align-items: center;
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.5;
}

/* Section */
.section {
  min-height: 100vh;
  padding: 130px 7vw 90px;
}

.page-section {
  padding-top: 150px;
}

.section-title {
  margin-bottom: 54px;
}

.section-title h2 {
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.95;
  color: #ffffff;
  text-transform: uppercase;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Placeholder */
.image-placeholder {
  position: relative;
  min-height: 440px;
  border: 1px solid rgba(201, 20, 53, 0.55);
  background:
    linear-gradient(135deg, rgba(201, 20, 53, 0.12), transparent 38%),
    rgba(255,255,255,0.025);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  overflow: hidden;
}

.image-placeholder p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

.game-preview-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.text-card,
.concept-card,
.event-item {
  border: 1px solid rgba(201, 20, 53, 0.44);
  background: rgba(0, 0, 0, 0.72);
}

.text-card {
  min-height: 440px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-card.large {
  min-height: 360px;
}

.text-card h3 {
  color: #ffffff;
  font-size: 34px;
  margin-bottom: 22px;
}

.text-card p,
.concept-card p,
.event-item p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.85;
}

/* Concept */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.concept-card {
  min-height: 320px;
  padding: 32px;
  transition: 0.25s ease;
}

.concept-card:hover {
  border-color: #c91435;
  background: rgba(201, 20, 53, 0.08);
  transform: translateY(-6px);
}

.concept-card span {
  display: block;
  color: #c91435;
  font-size: 14px;
  margin-bottom: 78px;
}

.concept-card h3 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 18px;
}

/* Offline */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.event-item {
  min-height: 108px;
  padding: 26px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
}

.event-item span {
  color: #c91435;
  font-size: 20px;
}

/* Footer */
.site-footer {
  padding: 36px 7vw;
  border-top: 1px solid rgba(201, 20, 53, 0.35);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: 0.75s ease;
}

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

/* Mobile */
@media (max-width: 900px) {
  .site-header {
    height: 76px;
    padding: 0 24px;
  }

  .brand-name {
    font-size: 18px;
  }

  .logo-img {
    width: 58px;
    height: 58px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 76px;
    right: 24px;
    width: 220px;
    padding: 22px;
    flex-direction: column;
    gap: 20px;
    background: #000000;
    border: 1px solid rgba(201, 20, 53, 0.55);
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding: 120px 24px 80px;
  }

  .hero-image {
    height: clamp(240px, 70vw, 360px);
    justify-content: flex-start;
  }

  .section {
    padding: 110px 24px 80px;
  }

  .project-index-section {
    padding: 0 24px 80px;
  }

  .project-index-grid {
    grid-template-columns: 1fr;
  }

  .two-column,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    padding: 30px 24px;
  }
}
/* Game Highlights */

.game-page-section {
  padding-bottom: 120px;
}

.game-highlights-section {
  margin-top: 110px;
}

.game-highlights-header {
  max-width: 820px;
  margin-bottom: 46px;
}

.game-highlights-header h2 {
  color: #ffffff;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.game-highlights-header p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

.game-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.game-highlight-card {
  border: 1px solid rgba(201, 20, 53, 0.44);
  background: rgba(0, 0, 0, 0.72);
  overflow: hidden;
  min-height: 520px;
  transition: 0.25s ease;
}

.game-highlight-card:hover {
  border-color: #c91435;
  background: rgba(201, 20, 53, 0.08);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(201, 20, 53, 0.16);
}

.game-highlight-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 20, 53, 0.3);
  background:
    linear-gradient(135deg, rgba(201, 20, 53, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.025);
}

.game-highlight-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: 0.5s ease;
}

.game-highlight-card:hover .game-highlight-image img {
  transform: scale(1.06);
  opacity: 0.82;
}

.game-highlight-content {
  padding: 30px;
}

.game-highlight-content span {
  display: block;
  color: #c91435;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 46px;
}

.game-highlight-content h3 {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.game-highlight-content p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .game-highlights-section {
    margin-top: 80px;
  }

  .game-highlights-grid {
    grid-template-columns: 1fr;
  }

  .game-highlight-card {
    min-height: auto;
  }

  .game-highlight-image {
    height: 230px;
  }
}

/* Concept Gallery */

.concept-gallery-section {
  position: relative;
  padding-top: 130px;
  isolation: isolate;
}

.concept-intro {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.7;
}

.concept-gallery {
  width: 100%;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.concept-image-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 7500 / 3200;
  min-width: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(201, 20, 53, 0.32);
  background: #000;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
  transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.concept-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #000;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.concept-image-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 20, 53, 0.7);
  box-shadow: 0 30px 70px rgba(201, 20, 53, 0.18);
}

.concept-image-card:hover img {
  transform: scale(1.04);
  opacity: 0.78;
}

.concept-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at center, rgba(201, 20, 53, 0.18), transparent 62%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.concept-image-card:hover .concept-card-overlay {
  opacity: 1;
}

.concept-card-overlay span {
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #c91435;
}

.concept-card-overlay p {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Lightbox */

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
}

.image-lightbox.active {
  display: flex;
}

.image-lightbox img {
  max-width: 94vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.75);
}

.lightbox-close {
  position: fixed;
  top: 28px;
  right: 36px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201, 20, 53, 0.55);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(201, 20, 53, 0.75);
  transform: rotate(90deg);
}

/* Mobile */

@media (max-width: 1000px) {
  .concept-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .concept-gallery-section {
    padding-top: 100px;
  }

  .concept-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .image-lightbox {
    padding: 22px;
  }

  .image-lightbox img {
    max-width: 96vw;
    max-height: 82vh;
  }

  .lightbox-close {
    top: 18px;
    right: 20px;
  }
}
/* Offline Event Page */

.offline-intro-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: stretch;
}

.offline-intro-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(201, 20, 53, 0.44);
  background: #000;
}

.offline-intro-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.offline-info-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 18px;
  height: 100%;
}

.offline-info-item {
  min-height: 0;
  padding: 24px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(201, 20, 53, 0.44);
  background: rgba(0, 0, 0, 0.72);
  transition: 0.25s ease;
}

.offline-info-item div {
  text-align: left;
}

.offline-info-item:hover {
  border-color: #c91435;
  background: rgba(201, 20, 53, 0.08);
  transform: translateY(-4px);
}

.offline-info-item span {
  color: #c91435;
  font-size: 18px;
  letter-spacing: 1px;
}

.offline-info-item h4 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 10px;
}

.offline-info-item p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.offline-subsection {
  margin-top: 120px;
}

.offline-subsection-title {
  max-width: 820px;
  margin-bottom: 44px;
}

.offline-subsection-title h3 {
  color: #ffffff;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.offline-subsection-title p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

/* Posters */

.offline-poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.offline-poster-card,
.offline-document-card,
.offline-merch-card {
  border: 1px solid rgba(201, 20, 53, 0.44);
  background: rgba(0, 0, 0, 0.72);
  overflow: hidden;
  transition: 0.25s ease;
}

.offline-poster-card:hover,
.offline-document-card:hover,
.offline-merch-card:hover {
  border-color: #c91435;
  background: rgba(201, 20, 53, 0.08);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(201, 20, 53, 0.16);
}

.offline-poster-image {
  width: 100%;
  height: 430px;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 20, 53, 0.3);
  background:
    linear-gradient(135deg, rgba(201, 20, 53, 0.14), transparent 40%),
    rgba(255, 255, 255, 0.025);
}

.offline-poster-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 14px;
}

/* Event Documentation */

.offline-document-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.offline-document-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 20, 53, 0.3);
  background: rgba(255, 255, 255, 0.025);
}

.offline-document-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: 0.5s ease;
}

.offline-document-card:hover .offline-document-image img {
  transform: scale(1.06);
  opacity: 0.82;
}

/* Merchandise */

.offline-merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.offline-merch-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 20, 53, 0.3);
  background:
    radial-gradient(circle at center, rgba(201, 20, 53, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.025);
}

.offline-merch-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 18px;
  transition: 0.5s ease;
}

.offline-merch-card:hover .offline-merch-image img {
  transform: scale(1.05);
}

/* Card Text */

.offline-card-text {
  padding: 28px;
}

.offline-card-text span {
  display: block;
  color: #c91435;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.offline-card-text h4 {
  color: #ffffff;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.offline-card-text p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

/* Closing */

.offline-closing {
  margin-top: 130px;
  padding: 54px;
  border: 1px solid rgba(201, 20, 53, 0.55);
  background:
    linear-gradient(135deg, rgba(201, 20, 53, 0.12), transparent 45%),
    rgba(0, 0, 0, 0.74);
}

.offline-closing h3 {
  max-width: 900px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.offline-closing p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.8;
}

/* Mobile */

@media (max-width: 1100px) {
  .offline-document-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offline-poster-grid,
  .offline-merch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .offline-intro-layout {
    grid-template-columns: 1fr;
  }

  .offline-info-list {
    grid-template-rows: none;
    height: auto;
  }

  .offline-info-item {
    min-height: 116px;
  }
}

@media (max-width: 640px) {
  .offline-subsection {
    margin-top: 90px;
  }

  .offline-poster-grid,
  .offline-document-grid,
  .offline-merch-grid {
    grid-template-columns: 1fr;
  }

  .offline-poster-image {
    height: 380px;
  }

  .offline-document-image {
    height: 230px;
  }

  .offline-merch-image {
    height: 260px;
  }

  .offline-closing {
    padding: 32px;
  }
}
/* About Team Section */

.about-team-section {
  padding: 110px 7vw 130px;
  position: relative;
  z-index: 2;
}

.about-team-header {
  max-width: 860px;
  margin-bottom: 48px;
}

.about-team-header h2 {
  color: #ffffff;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.95;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.about-team-header p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

.team-info-panel {
  border: 1px solid rgba(201, 20, 53, 0.44);
  background:
    linear-gradient(135deg, rgba(201, 20, 53, 0.1), transparent 45%),
    rgba(0, 0, 0, 0.72);
  padding: 34px;
}

.team-main-card {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(201, 20, 53, 0.32);
}

.team-logo-avatar {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 1px solid rgba(201, 20, 53, 0.65);
  background: rgba(201, 20, 53, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 32px rgba(201, 20, 53, 0.24);
  flex-shrink: 0;
}

.team-logo-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-label {
  color: #c91435;
  font-size: 13px;
  letter-spacing: 2.4px;
  margin-bottom: 12px;
}

.team-main-card h3 {
  color: #ffffff;
  font-size: 34px;
  margin-bottom: 10px;
}

.supervisor-text {
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
}

.team-members-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.team-member-card {
  min-height: 220px;
  padding: 26px 18px;
  text-align: center;
  border: 1px solid rgba(201, 20, 53, 0.32);
  background: rgba(255, 255, 255, 0.025);
  transition: 0.25s ease;
}

.team-member-card:hover {
  border-color: #c91435;
  background: rgba(201, 20, 53, 0.08);
  transform: translateY(-6px);
}

.member-avatar {
  width: 86px;
  height: 86px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid rgba(201, 20, 53, 0.58);
  background:
    radial-gradient(circle at center, rgba(201, 20, 53, 0.24), transparent 62%),
    rgba(0, 0, 0, 0.45);
  overflow: hidden;
  display: block;
  object-fit: cover;
}

.avatar-placeholder::after {
  content: "IMG";
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  letter-spacing: 1.5px;
}

.member-role {
  color: #c91435;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.team-member-card h4 {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* Mobile */

@media (max-width: 1100px) {
  .team-members-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .about-team-section {
    padding: 90px 24px 100px;
  }

  .team-info-panel {
    padding: 24px;
  }

  .team-main-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-members-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-member-card {
    min-height: 200px;
  }
}

@media (max-width: 460px) {
  .team-members-grid {
    grid-template-columns: 1fr;
  }
}
