/* --- CSS RESET & GLOBALS --- */
/** {*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  box-sizing: border-box;*/
/*}*/

/*body {*/
/*  font-family: 'Poppins', sans-serif;*/
/*  background-color: #000;*/
/*  color: #fff;*/
/*  overflow-x: hidden;*/
/*  line-height: 1.5;*/
/*}*/

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("../images/bg.webp") center center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 80px; /* Space for the footer strip */
}

/* Ambient dark vignette overlay to blend lights and highlight text */
.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 50%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 75%);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px 20px;
}

/* --- TOP LINK CAPSULE (DOUBLE NEON HEXAGON BORDER) --- */
.top-badge-container {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}

.website-box-outer {
  background: linear-gradient(90deg, #ff0055, #ff4f87, #ff0055);
  padding: 2.5px;
  clip-path: polygon(22px 0%, calc(100% - 22px) 0%, 100% 50%, calc(100% - 22px) 100%, 22px 100%, 0% 50%);
  filter: drop-shadow(0 0 12px rgba(255, 0, 85, 0.85));
  display: inline-block;
  transition: transform 0.3s ease;
}

.website-box-outer:hover {
  transform: scale(1.03);
}

.website-box-middle {
  background: #ffd54a;
  padding: 2px;
  clip-path: polygon(21px 0%, calc(100% - 21px) 0%, 100% 50%, calc(100% - 21px) 100%, 21px 100%, 0% 50%);
}

.website-box-inner {
  background: rgba(0, 0, 0, 0.9);
  padding: 10px 45px;
  clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0% 50%);
}

.website-box-inner a {
  color: #ffd54a;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(255, 213, 74, 0.6);
}

/* --- MAIN CONTENT LAYOUT --- */
.content-casino {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 20px;
}

.left-col {
  width: 53%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 20px;
}

.right-col {
  width: 37%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: stretch;
}

.model-image {
  max-width: 100%;
  /*max-height: 80vh;*/
  max-height: min-content;
  object-fit: contain;
  display: block;
}

/* --- MAIN HEADLINE --- */
.headline-container {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.headline-container h1,
.headline-container h2{
    margin:0;
    padding:0;
}

.huge-gold-num {
  font-family: 'Oswald', sans-serif;
  font-size: 115px;
  font-weight: 700;
  line-height: 1;
  color: #ffd54a;
  background: linear-gradient(180deg, #fff 15%, #ffd54a 60%, #996900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.9));
  letter-spacing: -6px;
}

.headline-text {
  font-family: 'Oswald', sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  margin-top:-25px;  
  color: #fff;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
}

/* --- STAR SEPARATOR --- */
.star-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  margin: 10px 0;
}

.star-separator::before,
.star-separator::after {
  content: "";
  flex: 1;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, #ffd54a 50%, transparent);
}

.star-separator span {
  color: #ffd54a;
  margin: 0 15px;
  font-size: 26px;
  text-shadow: 0 0 10px rgba(255, 213, 74, 0.8);
  line-height: 1;
}

/* --- WITHDRAWAL SECTION (SKEWED RED BADGE) --- */
.withdraw-wrapper {
  margin-bottom: 25px;
  width: 100%;
  max-width: 380px;
}

.withdraw-box {
  background: linear-gradient(90deg, #7a0010, #ff1a1a, #7a0010);
  border: 2px solid #ffd54a;
  border-radius: 4px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transform: skewX(-10deg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.75), 0 0 10px rgba(255, 26, 26, 0.35);
}

.withdraw-box > * {
  transform: skewX(10deg);
}

.withdraw-box .icon-container {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 3px solid #ff2a2a;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(255, 42, 42, 0.7);
}

.withdraw-box .icon-container i {
  color: #c40018;
  font-size: 28px;
}

.withdraw-text h2 {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  line-height: 1;
}

.withdraw-text h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #ffd54a;
  line-height: 1;
  letter-spacing: 0.5px;
}

.withdraw-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 10px;
  color: #fff;
}

.withdraw-tagline span {
  color: #ff2a2a;
  font-size: 30px;
  margin: 0 3px;
  text-shadow: 0 0 10px rgba(255, 42, 42, 0.6);
}

/* --- KEY SELLING POINTS (FEATURES LIST) --- */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
  width: 100%;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 380px;
}

.feature-item:last-child {
  border-bottom: none;
}

.f-icon {
  width: 50px;
  height: 50px;
  border: 2px solid #ffd54a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd54a;
  font-size: 22px;
  box-shadow: 0 0 8px rgba(255, 213, 74, 0.35);
  background: rgba(0, 0, 0, 0.55);
}

.feature-info h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  color: #ffd54a;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.feature-info p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  line-height: 1.1;
}

/* --- WHATSAPP CALL TO ACTION BOX --- */
.cta-box {
  border: 2.5px solid #ffd54a;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  max-width: 480px;
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 15px rgba(255, 213, 74, 0.15);
  text-align: center;
  margin-top: 15px;
}

.cta-box p {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.cta-box p span {
  color: #ffd54a;
  display: block;
  font-size: 24px;
  font-weight: 700;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(180deg, #1ce84c 0%, #0c9e2b 100%);
  border: 2px solid #fff;
  border-radius: 40px;
  padding: 10px 30px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(28, 232, 76, 0.45);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(28, 232, 76, 0.7);
}

.whatsapp-btn i {
  font-size: 42px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn-text {
  text-align: left;
}

.whatsapp-btn-text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  line-height: 1;
}

.whatsapp-btn-text span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
}

/* Pointer Cursor SVG Style */
.click-hand {
  position: absolute;
  bottom: -22px;
  right: 20px;
  width: 50px;
  height: 50px;
  pointer-events: none;
  animation: click-hand-anim 1.2s infinite ease-in-out alternate;
}

@keyframes click-hand-anim {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-4px, -4px) scale(0.9);
  }
}

/* --- STICKY FOOTER STRIP --- */
.footer-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 15px 20px;
  z-index: 5;
}

.footer-col {
  display: flex;
  align-items: center;
}

.footer-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #ffd54a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd54a;
  font-size: 18px;
  margin-right: 15px;
  box-shadow: 0 0 8px rgba(255, 213, 74, 0.4);
}

.footer-col p {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
}

.footer-col p span {
  color: #ff2a2a;
}

.footer-divider {
  width: 1.5px;
  height: 35px;
  background: rgba(255, 255, 255, 0.25);
}

.footer-col:last-child p span {
  color: #ffd54a;
}

/* --- RESPONSIVE LAYOUT (MEDIA QUERIES) --- */
@media (max-width: 1150px) {
  .huge-gold-num {
    font-size: 120px;
  }
  
  .headline-text {
    font-size: 62px;
  }
  
  .website-box-inner a {
    font-size: 32px;
  }
  
  .website-box-inner {
    padding: 8px 35px;
  }
}

@media (max-width: 991px) {
  .content-casino {
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
  }
  
  .left-col {
    width: 100%;
    align-items: center;
    padding-bottom: 40px;
  }
  
  .right-col {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .model-image {
    max-height: 50vh;
  }
  
  .star-separator,
  .withdraw-wrapper,
  .feature-item,
  .cta-box {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .headline-container {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding-top: 25px;
  }
  
  .website-box-inner a {
    font-size: 24px;
  }
  
  .website-box-inner {
    padding: 6px 25px;
  }
  
  .huge-gold-num {
    font-size: 90px;
  }
  
  .headline-text {
    font-size: 46px;
  }
  
  .withdraw-box {
    transform: skewX(-6deg);
    padding: 8px 15px;
    width: 100%;
    justify-content: center;
  }
  
  .withdraw-box > * {
    transform: skewX(6deg);
  }
  
  .withdraw-box h3 {
    font-size: 24px;
  }
  
  .withdraw-box h2 {
    font-size: 18px;
  }
  
  .withdraw-tagline {
    font-size: 18px;
  }
  
  .withdraw-tagline span {
    font-size: 24px;
  }
  
  .footer-strip {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    position: relative;
    margin-top: 30px;
  }
  
  .footer-divider {
    display: none;
  }
  
  .footer-col {
    width: 100%;
    justify-content: center;
  }
  
  .footer-col p {
    font-size: 18px;
  }
  
  .cta-box {
    padding: 15px;
  }
  
  .whatsapp-btn-text strong {
    font-size: 26px;
  }
  
  .whatsapp-btn i {
    font-size: 34px;
  }
  
  .whatsapp-btn {
    padding: 8px 20px;
  }
}