/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */

/* About Hero Section */
.about-hero {
  position: relative;
  background-image: url('../images/aboutus-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* border-bottom: 1px solid var(--border-color); */
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.3); */
  z-index: 1;
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -250px;
  width: 600px;
  height: 600px;
  background-color: #D40E37;
  opacity: 0.28;
  filter: blur(110px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero-content {
  max-width: 600px;
  text-align: left;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: 4.6rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -1px;
}

.about-hero-title .red-text {
  color: #FF154B;
  display: inline-block;
  font-weight: 700;
}

/* About Content Section */
.about-content-section {
  padding: 100px 0;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

/* Ambient glow effects matching the branding */
.about-content-section::before {
  content: '';
  position: absolute;
  top: 15%;
  left: -250px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 14, 55, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.about-content-section::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: -250px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 14, 55, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.about-content-container {
  /* max-width: 1050px; */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Block 1 text paragraphs */
.about-text-wrap {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.about-text-wrap p {
  font-family: var(--font-body);
  font-size: 18px;
  color: #D6D6D6;
  line-height: 1.65;
  font-weight: 300;
}

/* Main large table banner */
.about-main-banner {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 80px;
}

.about-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-main-banner:hover .about-banner-img {
  transform: scale(1.01);
}

/* Block 2: split columns */
.about-split-row {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  align-items: center;
}

.about-split-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-split-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-split-text {
  text-align: left;
}

.about-split-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.about-split-title .red-text {
  color: #FF154B;
  font-weight: 700;
}

.about-split-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: #D6D6D6;
  line-height: 1.7;
  font-weight: 300;
}

/* Play Anywhere Card */
.about-play-anywhere-card {
  margin-top: 80px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.03) 20%, #6e1525 100%);
  border-radius: 16px;
  padding: 60px 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.about-anywhere-text {
  text-align: left;
}

.about-anywhere-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.about-anywhere-title .red-text {
  color: #FF154B;
  font-weight: 700;
}

.about-anywhere-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: #D6D6D6;
  line-height: 1.7;
  font-weight: 300;
}

.about-anywhere-image-wrap {
  border-radius: 12px;
  overflow: hidden;
}

.about-anywhere-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Great Incentives Section */
.about-incentives-section {
  padding: 100px 0;
  background-color: rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.about-incentives-container {
  /* max-width: 1050px; */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-incentives-row {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  align-items: center;
}

.about-incentives-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  /* border: 1px solid rgba(255, 255, 255, 0.05); */
}

.about-incentives-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-incentives-text {
  text-align: left;
}

.about-incentives-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.about-incentives-title .red-text {
  color: #FF154B;
  font-weight: 700;
}

.about-incentives-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: #D6D6D6;
  line-height: 1.7;
  font-weight: 300;
}

/* Features Section (Deposits & Security) */
.about-features-section {
  padding: 100px 0;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.about-features-container {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-features-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-features-row:nth-child(1) {
  margin-bottom: 100px;
}

.about-features-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-features-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-features-text {
  text-align: left;
}

.about-features-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.about-features-title .red-text {
  color: #FF154B;
  font-weight: 700;
}

.about-features-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: #D6D6D6;
  line-height: 1.7;
  font-weight: 300;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 992px) {
  .about-hero-title {
    font-size: 3.2rem;
  }

  .about-content-section {
    padding: 60px 0;
  }

  .about-split-row {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-split-title {
    font-size: 38px;
    margin-bottom: 16px;
  }

  .about-main-banner {
    margin-bottom: 50px;
  }

  .about-play-anywhere-card {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 40px 25px;
    margin-top: 50px;
    background: linear-gradient(135deg, #0c0d12 40%, #3d0c15 100%);
  }

  .about-anywhere-title {
    font-size: 38px;
    margin-bottom: 16px;
  }

  .about-incentives-section {
    padding: 60px 0;
  }

  .about-incentives-row {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-incentives-title {
    font-size: 38px;
    margin-bottom: 16px;
  }

  .about-features-section {
    padding: 60px 0;
  }

  .about-features-row {
    grid-template-columns: 1fr !important;
    gap: 45px;
  }

  .about-features-row:nth-child(1) {
    margin-bottom: 60px;
  }

  .about-features-title {
    font-size: 38px;
    margin-bottom: 16px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 320px;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-text-wrap p,
  .about-split-desc,
  .about-anywhere-desc,
  .about-incentives-desc,
  .about-features-desc {
    font-size: 15px;
  }

  .about-split-title,
  .about-anywhere-title,
  .about-incentives-title,
  .about-features-title {
    font-size: 30px;
  }
}