.about-event {
  padding-top: 10rem;
  background: linear-gradient(
    135deg,
    var(--bg-color) 0%,
    var(--bg-secondary) 100%
  );
  position: relative;
  overflow: hidden;

  .about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;

    .section-tag {
      display: inline-block;
      background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
      );
      color: white;
      padding: 0.5rem 1.5rem;
      border-radius: 25px;
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 1.5rem;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--text-color);
      line-height: 1.2;
      margin-bottom: 1.5rem;

      .highlight-text {
        display: block;
        font-size: 0.7em;
        color: var(--text-secondary);
        font-weight: 400;
        margin-top: 0.5rem;
      }
    }

    .section-description {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--text-secondary);
      margin-bottom: 2.5rem;
    }

    .event-header {
      text-align: center;
      margin-bottom: 4rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .event-details {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin-bottom: 3rem;

      .event-highlights {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;

        .highlight-item {
          display: flex;
          align-items: center;
          gap: 1rem;
          padding: 1.5rem;
          background: rgba(59, 130, 246, 0.1);
          border-radius: 16px;
          border-left: 4px solid var(--primary-color);
          transition: all 0.3s ease;

          &:hover {
            background: rgba(59, 130, 246, 0.15);
            transform: translateX(5px);
          }

          i {
            color: var(--primary-color);
            font-size: 1.5rem;
            width: 24px;
            text-align: center;
            flex-shrink: 0;
          }

          div {
            flex: 1;

            strong {
              display: block;
              color: var(--text-color);
              font-weight: 600;
              margin-bottom: 0.5rem;
              font-size: 1.1rem;
            }

            span {
              color: var(--text-secondary);
              font-size: 0.95rem;
              line-height: 1.4;
            }
          }
        }
      }

      .event-stats {
        .stats-grid {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 1.5rem;

          .stat-card {
            background: white;
            padding: 2rem 1.5rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border-top: 3px solid var(--primary-color);

            &:hover {
              transform: translateY(-8px);
              box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
            }

            [data-theme="dark"] & {
              background: var(--bg-secondary);
            }

            .stat-icon {
              margin-bottom: 1rem;

              i {
                font-size: 2.5rem;
                color: var(--primary-color);
              }
            }

            .stat-number {
              font-size: 2.5rem;
              font-weight: 800;
              color: var(--text-color);
              margin-bottom: 0.5rem;
              line-height: 1;
            }

            .stat-label {
              font-size: 0.9rem;
              color: var(--text-secondary);
              font-weight: 600;
              line-height: 1.3;
            }
          }
        }
      }
    }

    .location-map {
      margin-bottom: 6rem;
      padding: 2rem;
      background: white;
      border-radius: 20px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);

      [data-theme="dark"] & {
        background: var(--bg-secondary);
      }

      h4 {
        margin-bottom: 1.5rem;
        color: var(--text-color);
        font-size: 1.3rem;
        font-weight: 700;
        text-align: center;

        i {
          color: var(--primary-color);
          margin-right: 0.5rem;
        }
      }

      .map-container {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      }
    }

    .why-join {
      .why-header {
        text-align: center;
        margin-bottom: 4rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
      }

      .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;

        .benefit-card {
          background: white !important;
          padding: 2rem;
          border-radius: 20px;
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
          transition: all 0.3s ease;
          position: relative;
          overflow: hidden;

          &:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
          }

          [data-theme="dark"] & {
            background: var(--bg-secondary) !important;
          }

          .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(
              135deg,
              var(--primary-color),
              var(--secondary-color)
            );
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;

            i {
              font-size: 1.8rem;
              color: white;
            }
          }

          h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 1rem;
          }

          .benefit-list {
            list-style: none;
            margin-bottom: 1.5rem;

            li {
              padding: 0.6rem 0;
              color: var(--text-secondary);
              position: relative;
              padding-left: 1.5rem;
              line-height: 1.5;

              &::before {
                content: "✓";
                position: absolute;
                left: 0;
                color: var(--primary-color);
                font-weight: bold;
                font-size: 1.1rem;
              }
            }
          }

          .benefit-badge {
            display: inline-block;
            background: linear-gradient(
              135deg,
              var(--primary-color),
              var(--secondary-color)
            );
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;

            &.prize {
              background: linear-gradient(135deg, #f59e0b, #d97706);
            }

            &.impact {
              background: linear-gradient(135deg, #10b981, #059669);
            }
          }
        }
      }

      .why-cta {
        background: linear-gradient(
          135deg,
          var(--primary-color),
          var(--secondary-color)
        );
        border-radius: 25px;
        padding: 4rem 3rem;
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
        align-items: center;
        color: white;
        position: relative;
        overflow: hidden;

        .cta-content {
          h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
          }

          p {
            font-size: 1.2rem;
            opacity: 0.95;
            margin-bottom: 2.5rem;
            line-height: 1.6;
          }

          .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;

            .cta-primary {
              display: inline-flex;
              align-items: center;
              gap: 0.75rem;
              padding: 1rem 2rem;
              border-radius: 50px;
              text-decoration: none;
              font-weight: 700;
              font-size: 1.1rem;
              transition: all 0.3s ease;
              background: white;
              color: var(--primary-color);
              text-transform: uppercase;
              letter-spacing: 0.5px;

              &:hover {
                transform: translateY(-3px);
                box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
              }

              i {
                font-size: 1.2rem;
              }
            }
          }
        }

        .cta-visual {
          .floating-elements {
            position: relative;
            height: 200px;

            .float-item {
              position: absolute;
              font-size: 2.5rem;
              animation: float 3s ease-in-out infinite;

              &:nth-child(1) {
                top: 10%;
                left: 20%;
                animation-delay: 0s;
              }

              &:nth-child(2) {
                top: 60%;
                left: 70%;
                animation-delay: 0.5s;
              }

              &:nth-child(3) {
                top: 30%;
                left: 60%;
                animation-delay: 1s;
              }

              &:nth-child(4) {
                top: 70%;
                left: 30%;
                animation-delay: 1.5s;
              }
            }
          }
        }
      }
    }
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 968px) {
  .about-event .about-container {
    .event-details {
      grid-template-columns: 1fr;
      gap: 3rem;

      .event-stats .stats-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .why-join .why-cta {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 3rem 2rem;
    }
  }
}

@media (max-width: 768px) {
  .about-event {
    padding: 3rem 0;

    .about-container {
      padding: 0 1rem;

      .event-header {
        margin-bottom: 3rem;
      }

      .event-details {
        margin-bottom: 2rem;

        .event-highlights .highlight-item {
          padding: 1rem;

          div strong {
            font-size: 1rem;
          }
        }

        .event-stats .stats-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 1rem;

          .stat-card {
            padding: 1.5rem 1rem;

            .stat-icon i {
              font-size: 2rem;
            }

            .stat-number {
              font-size: 2rem;
            }
          }
        }
      }

      .location-map {
        margin-bottom: 4rem;
        padding: 1rem;

        h4 {
          font-size: 1.1rem;
        }
      }

      .why-join {
        .benefits-grid {
          grid-template-columns: 1fr;
          gap: 1.5rem;

          .benefit-card {
            padding: 1.5rem;
          }
        }

        .why-cta {
          padding: 2rem 1.5rem;

          .cta-content {
            h3 {
              font-size: 1.5rem;
            }

            p {
              font-size: 1rem;
            }

            .cta-buttons {
              justify-content: center;
            }
          }
        }
      }
    }
  }
}

@media (max-width: 480px) {
  .about-event .about-container {
    .event-details {
      .event-highlights .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
      }

      .event-stats .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
    }

    .why-join .benefits-grid {
      grid-template-columns: 1fr;
    }
  }
}
