* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  background-color: white;
  line-height: normal;
}

body #contents {
  line-height: normal;
  font-family: 'HondaGlobalFontEN-Regular', sans-serif;
}

.app {
  min-height: 100vh;
  background-color: white;
  padding-top: 65px;
  overflow: hidden
}

@media (min-width: 1024px) {
    .app {
        padding-top:120px
    }
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url('Performance_01_L.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 1152px;
  margin: 0 auto;
}

.hero-title-wrapper {
  margin-bottom: 40px;
  display: inline-block;
}

.hero-title {
  color: white;
  font-size: 4.5rem;
  font-family: 'HondaGlobalFontEN-Bold', sans-serif;
  margin-bottom: 32px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  color: white;
  font-size: 3rem;
  font-family: 'HondaGlobalFontEN-Light', sans-serif;
  margin-bottom: 32px;
  line-height: 1.5;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-stats {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 0, 0, 0.5);
}

.stat-item .icon {
  width: 24px;
  height: 24px;
  color: #CC0000;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.8));
}

.stat-divider {
  width: 1px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateX(-50%) translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.hero-mobile {
  display: none;
}

@media (max-width: 980px) {
  .hero-section {
    height: 40vh;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
  }

  .hero-content {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }

  .hero-mobile {
    display: block;
    padding: 32px 24px;
    background: white;
  }

  .mobile-content {
    max-width: 1152px;
    margin: 0 auto;
    text-align: center;
  }

  .mobile-title-wrapper {
    margin-bottom: 24px;
  }

  .mobile-title {
    font-size: 1.875rem;
    font-family: 'HondaGlobalFontEN-Bold', sans-serif;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
    color: #0f172a;
  }

  .mobile-subtitle {
    font-size: 1.5rem;
    font-family: 'HondaGlobalFontEN-Light', sans-serif;
    margin-bottom: 32px;
    line-height: 1.5;
    color: #0f172a;

  }

  .mobile-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #475569;
    font-size: 1rem;
  }

  .mobile-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
  }

  .icon-small {
    width: 20px;
    height: 20px;
    color: #CC0000;
  }
}

.video-section {
  padding: 32px 24px;
  background: white;
}

@media (min-width: 768px) {
  .video-section {
    padding: 96px 24px;
  }
}

.video-container {
  max-width: 1024px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid #e2e8f0;
  padding-bottom: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.content-section {
  padding: 36px 24px;
  background: white;
}

.content-container {
  max-width: 1152px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-family: 'HondaGlobalFontEN-Bold', sans-serif;
  margin-bottom: 16px;
  color: #0f172a;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.content-card {
  display: block;
  background: linear-gradient(135deg, #f8fafc 0%, white 100%);
  padding: 40px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.content-card:hover {
  border-color: #CC0000;
}

.content-card h3 {
  font-size: 1.5rem;
  font-family: 'HondaGlobalFontEN-Bold', sans-serif;
  margin-bottom: 16px;
  color: #0f172a;
}

.content-card p {
  color: #475569;
  margin-bottom: 24px;
  line-height: 1.75;
}

.content-image {
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.timeline-section {
  padding: 36px 24px;
  background: linear-gradient(to bottom, #f8fafc, white);
}

.timeline-container {
  max-width: 1152px;
  margin: 0 auto;
  padding-top: 0;
}

.timeline-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.timeline-wrapper {
  position: relative;
}

.calendar-icon {
  width: 48px;
  height: 48px;
  color: #CC0000;
  margin: 0 auto 1.1rem;
}

.timeline-header h2 {
  font-size: 2.25rem;
  font-family: 'HondaGlobalFontEN-Bold', sans-serif;
  margin-bottom: 16px;
  color: #0f172a;
}

@media (min-width: 768px) {
  .timeline-header h2 {
    font-size: 2.5rem;
  }
}

.timeline-header p {
  font-size: 1.125rem;
  color: #475569;
}

.timeline-line {
  display: none;
}

@media (min-width: 768px) {
  .timeline-line {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #CC0000, #CC0000, #CC0000);
    transform: translateX(-50%);
    z-index: 1;
  }
}

#timeline-events {
  position: relative;
}

.timeline-event {
  position: relative;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .timeline-event {
    margin-bottom: 48px;
  }
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
}

@media (min-width: 768px) {
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .order-1 {
    order: 1;
  }

  .order-2 {
    order: 2;
  }
}

.timeline-card {
  background: white;
  padding: 32px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border: 1px solid #f1f5f9;
}

.timeline-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.year-badge {
  display: inline-block;
  margin-bottom: 16px;
}

.year-text {
  background-color: #CC0000;
  color: white;
  padding: 8px 24px;
  font-size: 1.5rem;
  font-family: 'HondaGlobalFontEN-Bold', sans-serif;
}

.generation-text {
  font-size: 0.875rem;
  color: #CC0000;
  font-family: 'HondaGlobalFontEN-Bold', sans-serif;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.event-title {
  font-size: 1.5rem;
  font-family: 'HondaGlobalFontEN-Bold', sans-serif;
  margin-bottom: 16px;
  color: #0f172a;
  line-height: 1.5;
}

.event-description {
  color: #475569;
  line-height: 1.75;
  margin-bottom: 16px;
}

.milestone-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fef2f2;
  color: #CC0000;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-family: 'HondaGlobalFontEN-Bold', sans-serif;
}

.milestone-icon {
  width: 16px;
  height: 16px;
}

.event-image {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  background-color: #f1f5f9;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.event-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.event-image:hover img {
  transform: scale(1.05);
}

.timeline-dot {
  display: none;
}

@media (min-width: 768px) {
  .timeline-dot {
    display: block;
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background-color: #CC0000;
    border: 4px solid white;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
  }
}

.news-section {
  padding: 48px 24px;
  background: white;
}

.news-container {
  max-width: 1024px;
  margin: 0 auto;
}

.news-container .section-header {
  margin-bottom: 1.2rem;
}

.news-card {
  display: block;
  background: linear-gradient(135deg, #f8fafc 0%, white 100%);
  padding: 32px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.news-card:hover {
  border-color: #CC0000;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.news-image-wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f5f9;
}

.news-image {
  height: 192px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

@media (min-width: 768px) {
  .news-image {
    height: 224px;
  }
}

.news-card:hover .news-image {
  transform: scale(1.05);
}

.news-date {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .news-date {
    font-size: 1.125rem;
  }
}

.news-text h3 {
  font-size: 1.25rem;
  font-family: 'HondaGlobalFontEN-Bold', sans-serif;

  color: #0f172a;
}

@media (min-width: 768px) {
  .news-text h3 {
    font-size: 1.5rem;
  }
}






.thank-you-section {
  padding: 128px 24px;
  background: linear-gradient(135deg, #CC0000 0%, #990000 50%, #770000 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.pattern-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 30px 30px;
}

.thank-you-content {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.thank-you-title {
  font-size: 4.375rem;
  font-family: 'HondaGlobalFontEN-Bold', sans-serif;
  margin-bottom: 32px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .thank-you-title {
    font-size: 6rem;
    margin-bottom: 40px;
    line-height: 1.1;
  }
}

.thank-you-subtitle {
  font-size: 1.875rem;
  font-family: 'HondaGlobalFontEN-Light', sans-serif;
  margin-bottom: 48px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .thank-you-subtitle {
    font-size: 2.25rem;
    margin-bottom: 56px;
    line-height: 1.3;
  }
}

.thank-you-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  max-width: 448px;
  margin: 0 auto 48px;
}

.thank-you-text {
  font-size: 1.5rem;
  font-family: 'HondaGlobalFontEN-Light', sans-serif;
  line-height: 1.75;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .thank-you-text {
    font-size: 1.875rem;
    line-height: 1.6;
  }
}

.thank-you-footer {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
}
