/* Event Section */
.event-section {
  background: #0A1128;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.event-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.event-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.event-section__title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin: 0;
}

.event-section__title-normal {
  color: #FFFFFF;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.event-section__title-highlight {
  background: linear-gradient(
    308deg, #0582FF 0%, #5CE4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

/* Grid */
.event-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

h3.event-section__card-title {
  color: #5CE4FF;
}
/* Card */
.event-section__card {
  background: linear-gradient(143.29deg, #0C1322 0%, #0F1729 100%);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.event-section__card:hover {
  transform: translateY(-4px);
  border-color: rgba(92, 228, 255, 0.4);
  box-shadow: 0 8px 32px rgba(92, 228, 255, 0.1);
}

/* Icon */
.event-section__icon {
  width: 64px;
  height: 64px; 
  background: rgba(5, 130, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
}

.event-section__icon i {
  width: 32px;
  height: 32px;
  color: #5CE4FF;
  stroke-width: 2;
}

.event-section__icon svg {
  width: 32px;
  height: 32px;
  color: #5CE4FF;
  stroke: #5CE4FF;
  stroke-width: 2;
}

/* Card Title */
.event-section__card-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.5px;
  text-align: center;
  vertical-align: middle;
  color: #5CE4FF;
  margin: 0 0 16px 0;
}

h3.event-section__card-title {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 28px;
  letter-spacing: -0.5px;
  text-align: center;
  vertical-align: middle;
  color: #5CE4FF;
}

/* Card Content */
.event-section__card-content {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #B0BEC5;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .event-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .event-section {
    padding: 60px 0;
  }

  .event-section__container {
    padding: 0 16px;
  }

  .event-section__title {
    font-size: 36px;
    line-height: 36px;
  }
  
  .event-section__title-normal {
    font-size: 36px;
    line-height: 36px;
  }
  
  .event-section__title-highlight {
    font-size: 36px;
    line-height: 36px;
  }

  .event-section__header {
    margin-bottom: 48px;
  }

  .event-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .event-section__card {
    padding: 32px 24px;
  }

  .event-section__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }

  .event-section__icon i {
    width: 28px;
    height: 28px;
  }

  .event-section__card-title {
    font-size: 18px;
    line-height: 26px;
  }

  .event-section__card-content {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 480px) {
  .event-section {
    padding: 40px 0;
  }

  .event-section__title {
    font-size: 28px;
    line-height: 28px;
  }
  
  .event-section__title-normal {
    font-size: 28px;
    line-height: 28px;
  }
  
  .event-section__title-highlight {
    font-size: 28px;
    line-height: 28px;
  }

  .event-section__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .event-section__card {
    padding: 24px 20px;
  }
}
