/* About Section Styles */
.about {
  position: relative;
  width: 100%;
  padding: 100px 0 0;
  background: #00040d;
  overflow: hidden;
}

.about-container {
  position: relative;
  width: 1440px;
  margin: 0 auto;
  min-height: 600px;
}

/* Background Ellipses */
.about-ellipse-1 {
  position: absolute;
  width: 805px;
  height: 805px;
  left: -400px;
  top: -100px;
  background: #a00704;
  opacity: 0.2;
  filter: blur(110px);
  transform: rotate(-75deg);
  z-index: 1;
}

.about-ellipse-2 {
  position: absolute;
  width: 650px;
  height: 650px;
  right: -200px;
  bottom: -100px;
  background: #ffd119;
  opacity: 0.2;
  filter: blur(110px);
  transform: rotate(-75deg);
  z-index: 1;
}

/* Text Content */
.about-content {
  position: relative;
  z-index: 10;
  max-width: 1070px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 70px;
}

.about-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 44px;
  color: #ffffff;
  margin-bottom: 30px;
}

.about-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #ffffff;
  opacity: 0.6;
  margin: 0 auto;
}

/* Movie Details Grid */
.about-grid {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  max-width: 1220px;
  margin: 0 auto;
}

.about-item {
  flex: 1;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(212, 183, 93, 0.3);
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.about-item:hover {
  border-color: #d4b75d;
  background: rgba(255, 255, 255, 0.1);
}

.item-label {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #d4b75d;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.item-value {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #ffffff;
  text-align: center;
}
