:root {
  --color-black: #000000;
  --color-yellow: #fffa00;
  --color-light-yellow: #fffecc;
  --color-white: #f9fafa;
  --color-grey: #3f4547;
  --color-border-grey: #808080;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: 'DAZN Oscine JP', 'Noto Sans JP', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.content-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.section-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: 100%;
}

.section-title-container .line {
  flex-grow: 1;
  height: 4px;
  background-color: var(--color-yellow);
}

.section-title-container h2 {
  font-family: 'DAZN Oscine JP', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 64px;
  color: var(--color-yellow);
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .content-container {
    padding: 0 20px;
  }
}

/* CSS from section:header */
.main-header {
  background-color: var(--color-yellow);
  padding: 24px 20px;
}
.main-header-title {
  color: var(--color-black);
  font-family: 'DAZN Oscine JP', sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 1.5;
  letter-spacing: -3.84px;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .main-header-title {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .main-header-title {
    font-size: 32px;
  }
}

/* CSS from section:dazn1-intro */
.intro-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
}
.intro-section-1 {
  background-image: url('img/DAZN_BG_04.jpg');
}
.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 1084px;
  margin: 0 auto;
  padding: 0 20px;
}
.intro-logo {
  width: 524px;
  height: 361px;
  object-fit: contain;
}
.intro-title {
  font-family: 'DAZN Oscine JP', 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.8;
  text-align: center;
  margin: 0;
}
.intro-description {
  font-family: 'DAZN Oscine JP', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 2;
  margin: 0;
}
.info-box {
  background-color: var(--color-light-yellow);
  padding: 24px 40px;
  width: 100%;
}
.info-box-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color: var(--color-black);
}
.info-box-title {
  font-family: 'DAZN Oscine JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  text-align: center;
  margin: 0;
}
.info-box-text {
  font-family: 'DAZN Oscine JP', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 2;
  text-align: left;
  margin: 0;
}
@media (max-width: 768px) {
  .intro-logo {
    width: 80%;
    height: auto;
  }
  .intro-title {
    font-size: 36px;
  }
  .intro-description, .info-box-title, .info-box-text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
    .intro-title {
        font-size: 28px;
    }
    .intro-description, .info-box-title, .info-box-text {
        font-size: 16px;
    }
}

/* CSS from section:dazn1-features */
.features-section {
  padding-top: 120px;
}
.features-section .content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.features-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 44px; /* Average of 88px gap */
  width: 100%;
}
.feature-card {
  border: 4px solid var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 12px 24px;
  flex: 1;
  min-height: 100px;
}
.feature-card-title {
  font-family: 'DAZN Oscine JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
  margin: 0;
}
.feature-card-subtitle {
  font-family: 'DAZN Oscine JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.feature-card-title-single {
  font-family: 'DAZN Oscine JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 2;
  margin: 0;
}
@media (max-width: 992px) {
  .features-grid {
    flex-direction: column;
    gap: 24px;
  }
  .feature-card-title, .feature-card-title-single {
    font-size: 24px;
  }
}

/* CSS from section:dazn1-schedule */
.schedule-section {
  padding-top: 120px;
}
.schedule-grid {
  display: flex;
  justify-content: center;
  gap: 43px;
}
.schedule-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex-basis: 0;
  flex-grow: 1;
}
.schedule-header {
  border: 2px solid var(--color-yellow);
  display: flex;
  align-items: center;
  gap: 24px;
}
.schedule-tag {
  background-color: var(--color-yellow);
  color: var(--color-black);
  font-family: 'DAZN Oscine JP', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.5;
  padding: 10px 24px;
}
.schedule-type {
  color: var(--color-yellow);
  font-family: 'DAZN Oscine JP', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 2;
  margin: 0;
}
.schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.schedule-item {
  border: 1px solid var(--color-border-grey);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 6px 12px;
  font-family: 'DAZN Oscine JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
}
.schedule-time {
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .schedule-grid {
    flex-direction: column;
    gap: 48px;
  }
}
@media (max-width: 480px) {
    .schedule-tag {
        font-size: 24px;
    }
    .schedule-type {
        font-size: 20px;
    }
    .schedule-item {
        font-size: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
}

/* CSS from section:dazn1-contact */
.cta-section {
  padding-top: 120px;
}
.cta-content {
  background-color: var(--color-grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 64px 20px;
}
.cta-title {
  color: var(--color-yellow);
  font-family: 'DAZN Oscine JP', sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 2.17;
  text-align: center;
  margin: 0;
}
.cta-button {
  background-color: var(--color-yellow);
  color: var(--color-black);
  font-family: 'DAZN Oscine JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 45px;
  display: inline-block;
  transition: transform 0.2s ease;
}
.cta-button:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .cta-title {
    font-size: 32px;
  }
  .cta-button {
    font-size: 18px;
  }
}

/* CSS from section:dazn-in-room-intro */
.intro-section-2 {
  background-image: url('img/DAZN_BG_05.jpg');
  margin-top: 240px;
}
.intro-logo-2 {
  width: 352px;
  height: 353px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .intro-section-2 {
    margin-top: 120px;
  }
  .intro-logo-2 {
    width: 60%;
    height: auto;
  }
}

/* CSS from section:dazn-in-room-features */
#dazn-in-room-features {
  padding-top: 129px;
}

/* CSS from section:dazn-in-room-contact */
#dazn-in-room-contact {
  padding-top: 129px;
}