:root {
  --color-primary: #ff9a76; /* Warm Orange from reference */
  --color-secondary: #f6d365; /* Sunset Yellow */
  --color-accent: #fda085; /* Peach */
  --color-text: #333333;
  --color-text-sub: #666666;
  --color-bg: #fef9f5; /* Warm Beige */
  --color-bg-white: #ffffff;
  --color-border: #f0e8e0;

  --font-base: 'Noto Sans JP', sans-serif;
  --font-heading: 'Noto Serif JP', serif;

  --width-container: 1000px;
  --header-height: 80px;
  --radius-card: 12px;
  --radius-btn: 50px;
}

/* Base */
html {
  position: relative;
}
html::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/hero.png) no-repeat center center/cover;
  filter: brightness(0.6) contrast(1.1) blur(8px);
  z-index: -1;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background-color: var(--color-bg); /* Inner content background */
  line-height: 1.8;
  margin: 0 auto; /* Center the body */
  max-width: 520px; /* Constraint */
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Nice shadow to separate from dark bg */
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--color-text);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  width: 100%; /* Use full available width of the 520px container */
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  box-sizing: border-box; /* Ensure padding doesn't overflow */
}

/* Utility */
.sp-only {
  display: block; /* Always show "mobile" breaks since layout is mobile */
}
@media (min-width: 521px) {
  /* Optional: Hide if strictly needed, but design calls for mobile view everywhere */
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0; /* Align to center with margin auto */
  margin: 0 auto;
  width: 100%;
  max-width: 520px; /* Match body constraint */
  height: var(--header-height);
  background-color: rgba(254, 249, 245, 0.95); /* Warm Beige with opacity */
  backdrop-filter: blur(5px);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transform: translateY(-100%); /* Initially hidden */
  transition: transform 0.3s ease-in-out;
}

.header.header--visible {
  transform: translateY(0); /* Visible */
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 15px;
  height: 100%;
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-text);
  letter-spacing: 0.1em;
}

.header__nav ul {
  display: flex;
  gap: 30px;
}

.header__nav a {
  font-size: 0.95rem;
  color: var(--color-text-sub);
  font-weight: 500;
  position: relative;
  font-family: var(--font-heading);
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: 0.3s;
}

.header__nav a:hover {
  color: var(--color-primary);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__btn {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: #fff;
  padding: 12px 24px;
  margin-left: auto;
  border-radius: var(--radius-btn);
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 154, 118, 0.3);
  letter-spacing: 0.05em;
}

.header__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 154, 118, 0.4);
}

/* Mobile Nav Hide - Always hidden as we are mobile-only layout now */
.header__nav {
  display: none;
}

/* FV */
.fv {
  position: relative;
  height: 100vh;
  min-height: 650px;
  text-align: center;
  color: #fff;
}

.fv__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.fv__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv__bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.fv__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/mv_img_bg.webp) repeat top center/66px 66px;
  z-index: 1;
}

.fv__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  z-index: 1;
  animation: fadeIn 2.5s ease-out;
}

/* Update: Main Title is now the event name */
.fv__title {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 1.2rem; /* Large and bold */
  font-weight: 700;
  opacity: 1;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
  line-height: 1.6;
}
.fv__title span {
  display: block;
  margin-bottom: 10px;
  font-size: 2.2em;
}

/* Update: Catch copy is secondary */
.fv__copy {
  font-family: var(--font-base);
  font-size: 0.9rem;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  font-weight: 500;
  color: #fff;
}

.fv__sub {
  font-family: var(--font-base);
  letter-spacing: 0.2em;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  display: inline-block;
  padding-top: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  margin-bottom: 0;
}

.fv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 220px;
  width: 100%;
  margin: 20px auto 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(255, 154, 118, 0.4);
  z-index: 10;
  transition: transform 0.3s, box-shadow 0.3s;
}

.fv__btn:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 154, 118, 0.6);
}

.fv__btn::after {
  content: '▼';
  font-size: 0.8em;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Section Common */
.section {
  padding: 100px 0;
}
.section:nth-child(even) {
  background-color: var(--color-bg-white);
}
.section:nth-child(odd) {
  background-color: var(--color-bg); /* Warm Beige */
}

#fv {
  padding: 0;
  background: none;
}
#concept {
  background-color: transparent;
}
#comparison {
  background-color: var(--color-bg-white);
}
#features {
  background-color: var(--color-bg);
}
#info {
  background-color: var(--color-bg-white);
}
#schedule {
  background-color: var(--color-bg);
}
#faq {
  background-color: var(--color-bg-white);
}
#safety {
  background-color: #fff9f9;
}

.section__title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 5rem;
  color: var(--color-text);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  margin: 15px auto 0;
}

/* Section Common Mobile Styles Applied Globally */
.section {
  padding: 60px 0;
}
.section__title {
  font-size: 1.6rem;
  margin-bottom: 3rem;
}

/* Concept */
#concept .section__title {
  color: #fff;
}
.concept__body {
  color: #fff;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
  font-size: 1rem;
  line-height: 2.4;
}

.concept__body p {
  margin-bottom: 2rem;
  text-align: center;
}

.concept__highlight {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin: 2rem 0;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
}
.concept__highlight::before,
.concept__highlight::after {
  content: '“';
  font-size: 3rem;
  color: rgba(255, 154, 118, 0.3);
  position: absolute;
  font-family: serif;
}
.concept__highlight::before {
  left: 0;
  top: -20px;
}
.concept__highlight::after {
  content: '”';
  right: 0;
  bottom: 0x;
}

/* Concerns (Inner Voice) */
.concerns {
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%); /* Softer, misty gradient */
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle background decoration */
.concerns::before {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(255, 183, 161, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}
.concerns::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(162, 217, 255, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.process-list {
  display: flex;
  justify-content: center;
  align-items: stretch; /* Align heights */
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.process-item {
  background: rgba(255, 255, 255, 0.7);
  flex: 1;
  max-width: 320px;
  padding: 30px 30px;
  border-radius: 16px; /* Soft rectangle */
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  box-sizing: border-box;
}
.process-item .voice {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 2;
  font-weight: 500;
  font-feature-settings: 'palt';
  margin: 0;
}

/* Add quotation marks decoration */

.concerns__bridge {
  margin-top: 80px;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  line-height: 2.6;
  color: var(--color-text);
  position: relative;
  z-index: 1;
  animation: fadeIn 3s ease-in-out;
  letter-spacing: 0.05em;
}

/* Adjust for mobile */
@media screen and (max-width: 768px) {
  .process-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .process-item {
    width: 100%;
    max-width: 100%;
    padding: 30px 25px;
  }
  .concerns {
    padding: 80px 0;
  }
}

/* Comparison */
.section__lead {
  text-align: center;
  margin: 0 auto 3rem;
  font-size: 1rem;
  color: var(--color-text-sub);
}

.table-scroll {
  overflow-x: auto;
  border-radius: var(--radius-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 800px;
}

.comparison-table th,
.comparison-table td {
  padding: 25px 10px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.comparison-table th {
  background-color: #fafafa;
  font-weight: bold;
  text-align: center;
  width: 15%;
  color: var(--color-text-sub);
  font-size: 0.95rem;
}
.comparison-table th:first-child {
  background-color: var(--color-text);
  color: #fff;
  width: 10%;
}
.comparison-table th:nth-child(2) {
  width: 10%;
}
.comparison-table td:nth-child(2) {
  text-align: center;
}

.comparison-table td {
  font-size: 0.95rem;
}

.comparison-table__highlight {
  background-color: rgba(255, 154, 118, 0.05); /* Light primary tint */
}
.comparison-table__highlight th:first-child {
  background-color: var(--color-primary);
}
.comparison-table__highlight td {
  border-bottom: 2px solid var(--color-primary);
}

/* Features */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-item {
  position: relative;
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  border-radius: var(--radius-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s;
}

.feature-item span {
  position: absolute;
  top: -20px;
  left: 10px;
  font-family: serif;
  color: var(--color-primary);
  font-size: 4rem;
  font-weight: 700;
  opacity: 0.4;
}

.feature-item h3 {
  font-size: 1.4rem;
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  font-weight: 700;
  z-index: 1;
}
.feature-item h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-secondary);
  margin: 10px auto 0;
}

.feature-item p {
  font-size: 0.95rem;
  text-align: left;
  color: var(--color-text-sub);
  line-height: 2;
}

/* Features Grid Mobile Styles Applied Globally */
.features__grid {
  grid-template-columns: 1fr;
  gap: 30px;
}

/* Info */
.info-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
}

.info-item {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  padding: 25px 0;
}

.info-item dt {
  width: 30%;
  font-weight: bold;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.info-item dd {
  width: 70%;
  margin: 0;
  color: var(--color-text);
}

/* Info Item Mobile Styles Applied Globally */
.info-item {
  flex-direction: column;
}
.info-item dt {
  width: 100%;
  margin-bottom: 8px;
}
.info-item dd {
  width: 100%;
}

/* Schedule */
.schedule-day {
  max-width: 700px;
  margin: 0 auto 60px;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 0; /* Remove padding for image bleed */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.schedule-day h3 {
  position: relative;
  text-align: center;
  color: var(--color-text);
  margin: 0;
  padding: 40px 40px 0;
  font-size: 1.6rem;
  font-weight: 700;
}
.schedule-day h3 ::before {
  content: '「';
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  color: var(--color-primary);
  font-size: 3rem;
  font-weight: 700;
}
.schedule-day h3 ::after {
  content: '」';
  display: block;
  position: absolute;
  bottom: -20px;
  right: 0;
  color: var(--color-primary);
  font-size: 3rem;
  font-weight: 700;
}

.schedule-day h3 small {
  display: block;
  font-size: 0.8em;
}

.schedule-day .timeline {
  padding: 40px 40px 0;
}

.timeline {
  position: relative;
  padding-left: 30px;
  margin-left: 15px;
}

.timeline li {
  padding-bottom: 40px;
  position: relative;
}

.timeline li::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--color-primary);
  z-index: 1;
}
.timeline li::after {
  content: '';
  position: absolute;
  left: -29px;
  top: 10px;
  width: 2px;
  height: 100%;
  background: var(--color-border);
}

.timeline .time {
  display: block;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.timeline .content strong {
  font-size: 1.15rem;
  display: block;
  margin-bottom: 10px;
  color: var(--color-text);
}
.timeline .content p {
  margin-bottom: 0;
  color: var(--color-text-sub);
  font-size: 0.95rem;
}

.schedule-day__image {
  position: relative;
  z-index: 1;
}
.schedule-day__image img {
  width: 100%;
  display: block;
  height: 300px;
  object-fit: cover;
}

.schedule-image {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ Tabs */
.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.faq-tab {
  width: calc(50% - 5px);
  background: transparent;
  border: 2px solid var(--color-border);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1rem;
  color: var(--color-text-sub);
  cursor: pointer;
  font-family: var(--font-heading);
  transition: 0.3s;
}
.faq-tab:first-child {
  width: 100%;
}

.faq-tab:hover,
.faq-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 5px 15px rgba(246, 211, 101, 0.3);
}

.faq-content {
  display: none;
  animation: fadeIn 0.5s ease;
}
.faq-content.active {
  display: block;
}

.faq-category {
  /* Legacy override */
  max-width: 100%;
}

.accordion {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #fff;
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}
.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  padding: 25px;
  cursor: pointer;
  background: #fff;
  margin: 0;
  font-size: 1rem;
  position: relative;
  padding-right: 50px;
  font-weight: 500;
  transition: background 0.2s;
}
.accordion-header:hover {
  background: #fdfdfd;
}

.accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 300;
}

.accordion-item.active .accordion-header::after {
  content: '-';
}

.accordion-body {
  display: none;
  padding: 25px;
  padding-top: 0;
  background: #fff;
  font-size: 0.95rem;
  color: var(--color-text-sub);
  line-height: 1.8;
}

.accordion-item.active .accordion-body {
  display: block;
}

/* Safety */
.safety__box {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border: 1px solid #ffccbc;
  border-radius: var(--radius-card);
}

.safety__box ul {
  list-style: disc;
  padding-left: 20px;
  margin: 20px 0;
  color: var(--color-text);
}

.safety__warning {
  color: #e53935;
  font-size: 0.9rem;
  font-weight: bold;
}

/* Notes */
.notes-list {
  max-width: 800px;
  margin: 0 auto;
}

.notes-list li {
  margin-bottom: 20px;
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  border-left: 5px solid #ccc;
}

.notes-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 1.1rem;
}
.notes-list p {
  color: var(--color-text-sub);
  font-size: 0.95rem;
}
.notes-list p span {
  color: rgb(225, 1, 1);
}

/* CV Area */
.cv-area {
  background: linear-gradient(rgba(51, 51, 51, 0.7), rgba(51, 51, 51, 0.7)), url('../img/hero.png') center/cover no-repeat;
  padding: 120px 0;
  text-align: center;
  color: #fff;
}

.cv-area__text {
  font-size: 1.4rem;
  margin-bottom: 40px;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.cv-area__btn {
  display: block;
  position: relative;
  background: #4cc764; /* Maintain LINE green */
  color: #fff;
  padding: 20px 70px 20px 90px;
  border-radius: var(--radius-btn);
  font-size: 1.3rem;
  line-height: 1.35;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(6, 199, 85, 0.3);
  transition: transform 0.2s;
}
.cv-area__btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translate(0, -50%);
  width: 50px;
  aspect-ratio: 1/1;
  background: url(../img/icon_line.png) no-repeat top center/contain;
}

.cv-area__btn span {
  font-size: 1rem;
  font-weight: normal;
  display: block;
  margin-top: 5px;
}

.cv-area__btn:hover {
  transform: scale(1.03);
}

/* Organizer */
#organizer {
  background-color: #333; /* Dark background */
  color: #f5f5f5;
  padding: 80px 0;
}
.organizer .section__title {
  color: #fff;
}
.organizer__content {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  gap: 50px;
}

.organizer__message {
  flex: 1;
  text-align: left;
  font-family: var(--font-heading);
  line-height: 2.2;
  font-size: 0.8rem;
  margin: 0;
  color: #f5f5f5;
}

.organizer__info {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: var(--radius-card);
}

.organizer__info dl {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #555;
}

.organizer__info dt,
.organizer__info dd {
  width: 50%;
  border-bottom: 1px solid #555;
  padding: 15px 10px;
  font-size: 0.9rem;
}

.organizer__info dt {
  width: 30%;
  color: #aaa;
}
.organizer__info dd {
  width: 70%;
  color: #fff;
  margin: 0;
}

.organizer__content {
  flex-direction: column;
  gap: 40px;
}
.organizer__message {
  text-align: center;
}

/* Footer */
.footer {
  background: #111;
  color: #666;
  padding: 40px 0;
  text-align: center;
  font-size: 0.8rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.footer__links button {
  background: none;
  border: none;
  color: #888;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.8rem;
  font-family: var(--font-base);
}

.footer__links button:hover {
  color: #fff;
}

/* Modal */
.modal {
  padding: 0;
  border: none;
  border-radius: var(--radius-card);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
}

.modal__content {
  position: relative;
  padding: 50px 20px;
  overflow-y: auto;
  max-height: inherit;
  background: #fff;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.modal__close:hover {
  background: #eee;
}

.modal__body h2 {
  display: block;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-text);
  border-bottom: 3px solid var(--color-primary);
  padding-bottom: 10px;
}

.modal__body h3 {
  font-size: 1.1rem;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-primary);
  padding-left: 15px;
}

.modal__body p,
.modal__body li {
  font-size: 0.9rem;
  color: var(--color-text-sub);
}
