/* ==========================================================================
   BLACKJACK SURRENDERING CUSTOM STYLES
   Project: BET SMART WIN BIGGER - Static HTML/CSS/JS Platform
   ========================================================================== */

/* Hero Section */
.surrender-hero {
  position: relative;
  background-image: url('../images/Blackjack-Surrender-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.surrender-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%); */
  z-index: 1;
}

.surrender-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;
}

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

.surrender-hero-content {
  max-width: 950px;
  text-align: left;
}

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

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

/* Content Section */
.surrender-content {
  padding: 80px 0;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.surrender-wrap {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.surrender-wrap::before {
  content: '';
  position: absolute;
  left: -250px;
  width: 450px;
  height: 50%;
  background-color: #D40E37;
  opacity: 0.12;
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.surrender-lead {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.7;
  color: #D6D6D6;
  font-weight: 400;
}

/* Early Surrender About Card */
.surrender-about-card {
  background-color: rgba(255, 255, 255, 0.03);
  background-image: linear-gradient(120deg, rgba(190, 28, 66, 0.7) 0%, transparent 70%);
  border-radius: 16px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.surrender-about-image-wrap {
  width: auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.surrender-about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  transition: transform var(--transition-normal);
}

.surrender-about-image-wrap:hover .surrender-about-img {
  transform: scale(1.02);
}

.surrender-about-content {
  display: flex;
  flex-direction: column;
}

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

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

.surrender-about-text {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: #D6D6D6;
  margin-bottom: 24px;
  font-weight: 400;
}

.surrender-about-text:last-child {
  margin-bottom: 0;
}

/* Maximum Coin Betting Section (FFFFFF 4% background) */
.surrender-max-coin-section {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.04);
}

.surrender-max-coin-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

.surrender-max-coin-content {
  display: flex;
  flex-direction: column;
}

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

.surrender-max-coin-title .red-text {
  color: #FF154B;
  display: inline-block;
  font-weight: 700;
}

.surrender-max-coin-text {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: #D6D6D6;
  margin-bottom: 24px;
  font-weight: 400;
}

.surrender-max-coin-text:last-child {
  margin-bottom: 0;
}

.surrender-max-coin-image-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.surrender-max-coin-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  transition: transform var(--transition-normal);
}

.surrender-max-coin-image-wrap:hover .surrender-max-coin-img {
  transform: scale(1.02);
}

/* Video Tutorial Section */
.surrender-video-section {
  padding: 80px 0;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.surrender-video-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

.surrender-video-content {
  display: flex;
  flex-direction: column;
}

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

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

.surrender-video-desc {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: #D6D6D6;
  font-weight: 400;
}

.surrender-video-image-wrap {
  width: 100%;
}

.surrender-video-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  transition: transform var(--transition-normal);
}

.video-preview-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.video-preview-container:hover .surrender-video-img {
  transform: scale(1.02);
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-normal);
}

.video-preview-container:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.25);
}

.play-button-icon {
  width: 70px;
  height: 70px;
  background-color: #FF154B;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(255, 21, 75, 0.4);
  transition: transform var(--transition-normal), background-color var(--transition-normal);
}

.play-button-icon svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.video-preview-container:hover .play-button-icon {
  transform: scale(1.1);
  background-color: #ff3c6a;
}

/* Strategy and Tips Links Section */
.surrender-links-section {
  padding: 0px 0 100px;
  background-color: #000000;
}

.surrender-links-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
}

.surrender-links-col {
  display: flex;
  flex-direction: column;
}

.surrender-links-col.right-col {
  align-items: flex-end;
  text-align: right;
}

.surrender-links-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: #D6D6D6;
  margin-bottom: 20px;
  text-transform: none;
}

.surrender-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.surrender-links-list.horizontal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 30px;
}

.surrender-links-list.vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.surrender-links-list li {
  display: block;
}

.surrender-links-list li a {
  font-family: var(--font-body);
  font-size: 18px;
  color: #D6D6D6;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition-normal);
  font-weight: 400;
  white-space: nowrap;
}

.surrender-links-list li a:hover {
  color: #FF154B;
}

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

  .surrender-content {
    padding: 60px 0;
  }

  .surrender-about-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 30px;
  }

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

  .surrender-max-coin-section {
    padding: 60px 0;
  }

  .surrender-max-coin-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .surrender-max-coin-title {
    font-size: 38px;
    margin-bottom: 16px;
  }

  .surrender-video-section {
    padding: 60px 0;
  }

  .surrender-video-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .surrender-video-title {
    font-size: 38px;
    margin-bottom: 16px;
  }

  .surrender-links-section {
    padding: 60px 0;
  }

  .surrender-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 0;
  }

  .surrender-links-col.right-col {
    align-items: flex-start;
    text-align: left;
  }
}

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

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

  .surrender-lead {
    font-size: 1.05rem;
  }

  .surrender-about-card {
    padding: 30px 20px;
  }

  .surrender-about-title {
    font-size: 1.8rem;
  }

  .surrender-about-text {
    font-size: 1.05rem;
  }

  .surrender-max-coin-title {
    font-size: 1.8rem;
  }

  .surrender-max-coin-text {
    font-size: 1.05rem;
    margin-bottom: 16px;
  }

  .surrender-video-title {
    font-size: 30px;
  }

  .surrender-video-desc {
    font-size: 1.05rem;
  }

  .play-button-icon {
    width: 60px;
    height: 60px;
  }

  .play-button-icon svg {
    width: 22px;
    height: 22px;
  }
}