/* 
 * VaporSuaves.com â€” Custom Stylesheet
 * Dark premium theme: #0F0F0F bg, #6C2BD9 purple accent, #00E0FF cyan, #E5E5E5 text
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;600;700;800;900&display=swap');

:root {
  --bg-black: #0F0F0F;
  --bg-card: #1a0a3d;
  --bg-card-hover: #231055;
  --bg-footer: #09050f;
  --accent-green: #00E0FF;
  --accent-green-hover: #00b8d4;
  --accent-orange: #6C2BD9;
  --text-white: #E5E5E5;
  --text-gray: #8A99AD;
  --border-color: rgba(108, 43, 217, 0.2);
  --border-green: rgba(0, 224, 255, 0.2);
  --border-orange: rgba(108, 43, 217, 0.3);
  --font-inter: 'Inter', sans-serif;
  --font-montserrat: 'Montserrat', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-inter);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-inter);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
}

.font-display {
  font-family: var(--font-montserrat);
}

/* HEADER / NAVIGATION */
.main-header {
  width: 100%;
  background-color: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  font-family: var(--font-montserrat);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #00E0FF, #6C2BD9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.auth-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  padding: 10px 24px;
  transition: var(--transition-smooth);
}

.btn-signin {
  border: 1px solid var(--accent-green);
  color: var(--text-white);
}

.btn-signin:hover {
  background-color: rgba(0, 224, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 224, 255, 0.2);
}

.btn-signup {
  background: linear-gradient(135deg, #6C2BD9, #00E0FF);
  color: #0F0F0F;
  box-shadow: 0 0 25px rgba(108, 43, 217, 0.4);
  font-weight: 900;
}

.btn-signup:hover {
  box-shadow: 0 0 35px rgba(0, 224, 255, 0.5);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  color: var(--text-white);
  font-size: 20px;
  padding: 4px;
}

/* Mobile dropdown menu */
.mobile-menu {
  display: none;
  width: 100%;
  background-color: var(--bg-black);
  border-top: 1px solid var(--border-color);
  padding: 16px;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu .nav-link {
  display: block;
  padding: 8px 0;
}

.mobile-auth {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.mobile-auth .btn {
  flex-grow: 1;
  text-align: center;
}

@media (max-width: 768px) {
  .desktop-nav, .auth-actions {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* HERO SECTION */
.hero-section {
  padding: 0;
  background-color: var(--bg-black);
}

.hero-banner-static {
  width: 100%;
  border-radius: 24px;
  margin-bottom: 32px;
  max-height: 500px;
  object-fit: cover;
}

.hero-content-details {
  position: relative;
  z-index: 10;
  max-width: 590px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
  margin: auto;
  top: -111px;
  margin-bottom: -120px;
}

.hero-content-details .hero-title-main {
  font-family: var(--font-montserrat);
  font-weight: 900;
  font-size: 70px;
  color: #6C2BD9;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
  -webkit-text-stroke: 2px #E5E5E5;
}
.hero-content-details .hero-title-main span{
  color: var(--accent-green);
}

@media (max-width: 640px) {
  .hero-content-details .hero-title-main {
    font-size: 36px;
  }
}

.hero-bullets {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 32px;
}

.bullet-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-white);
  font-size: 16px;
  font-weight: 700;
}

.bullet-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6C2BD9, #00E0FF);
  color: #0F0F0F;
  border-radius: 50%;
  font-size: 11px;
}

.hero-btn-row {
  display: flex;
  gap: 16px;
  width: 100%;
}

.btn-hero {
  flex: 1;
  justify-content: space-between;
  padding: 10px 24px;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
}

.btn-hero-green {
  background: linear-gradient(135deg, #6C2BD9, #00E0FF);
  color: var(--bg-black);
  box-shadow: 0 0 25px rgba(108, 43, 217, 0.3);
}

.btn-hero-green:hover {
  box-shadow: 0 0 35px rgba(0, 224, 255, 0.4);
  transform: translateY(-2px);
}

.btn-hero-gray {
  background-color: rgba(31, 41, 55, 0.8);
  color: var(--text-white);
}

.btn-hero-gray:hover {
  background-color: rgba(55, 65, 81, 0.85);
  transform: translateY(-2px);
}

.btn-arrow-circle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--bg-black);
  margin-left: 16px;
  transition: transform 0.3s ease;
}

.btn-hero-green .btn-arrow-circle {
  color: var(--accent-green);
}

.btn-hero-gray .btn-arrow-circle {
  color: var(--text-white);
}

.btn-hero:hover .btn-arrow-circle {
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .hero-btn-row {
    flex-direction: column;
  }
}

/* Tiger Card Container */
.hero-tiger-card {
  position: relative;
  background: linear-gradient(to right, #0d0520, #0F0F0F, #120729);
  border: 1px solid rgba(108, 43, 217, 0.4);
  border-radius: 24px;
  padding: 48px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.tiger-card-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.tiger-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right;
}

@media (max-width: 768px) {
  .hero-tiger-card {
    padding: 32px;
  }
  .tiger-card-backdrop {
    width: 100%;
    opacity: 0.35;
  }
}

/* JACKPOT & GAMES GRID SECTION */
.jackpot-section {
  padding: 20px 0;
  background-color: var(--bg-black);
}

.jackpot-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 64px auto;
}

.jackpot-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 55px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .jackpot-title {
    font-size: 30px;
  }
}

.jackpot-subtitle {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1152px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.game-card {
  background-color: #100825;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
  position: relative;
}

.game-card:hover {
  border-color: rgba(0, 224, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(108, 43, 217, 0.25);
}

.game-card-img {
  width: 100%;
  height: 256px;
  object-fit: cover;
}

@media (max-width: 640px) {
  .game-card-img {
    height: 224px;
  }
}

.game-card-info {
  padding: 16px;
  text-align: center;
}

.game-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-white);
}

.game-card-provider {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-green);
  margin-top: 4px;
  display: block;
}

.game-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #6C2BD9, #00E0FF);
  color: #0F0F0F;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

/* KEY STATS CARDS */
.stats-section {
  padding: 34px 0;
  background-color: var(--bg-black);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-card {
  background: linear-gradient(135deg, #1a0a3d, #0F0F0F);
  border: 1px solid rgba(108, 43, 217, 0.3);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6C2BD9, #00E0FF);
}

.stats-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 224, 255, 0.4);
  box-shadow: 0 20px 40px rgba(108, 43, 217, 0.2);
}

.stats-card:hover .stats-number {
  transform: scale(1.05);
}

.stats-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--accent-green);
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.stats-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-gray);
}

/* PROVIDERS LOGO ROW WITH MARQUEE */
.providers-divider {
  width: 100%;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.providers-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 45px;
  color: var(--accent-green);
  text-align: center;
  margin: 20px 0;
}

@media (max-width: 640px) {
  .providers-title {
    font-size: 30px;
  }
}

.providers-section {
  padding: 20px 0;
  background-color: var(--bg-black);
  position: relative;
  overflow: hidden;
}

.providers-sublabel {
  text-align: center;
  font-family: var(--font-inter);
  font-size: 30px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
  position: relative;
}

.providers-sublabel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #6C2BD9);
  transform: translateY(-50%);
}

.providers-sublabel::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, #00E0FF, transparent);
  transform: translateY(-50%);
}

@media (max-width: 1024px) {
  .providers-sublabel::before,
  .providers-sublabel::after {
    display: none;
  }
  .providers-sublabel {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.providers-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.providers-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}

.provider-logo-card {
  width: 300px;
  height: 145px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: var(--transition-smooth);
}

.provider-logo-card:hover {
  border-color: rgba(0, 224, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 224, 255, 0.2);
  transform: translateY(-4px);
}

.provider-logo-card img {
  max-height: 80px;
  max-width: 80%;
  object-fit: contain;
  filter: grayscale(1) brightness(0.8) contrast(1.2);
  transition: var(--transition-smooth);
}

.provider-logo-card:hover img {
  filter: grayscale(0) brightness(1.2) contrast(1);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-340px * 4));
  }
}

/* ABOUT US SECTION */
.about-section {
  padding: 40px 0;
  background-color: var(--bg-black);
  border-top: 1px solid var(--border-color);
}

.about-bg-dummy {
  background-image: url('assets/dummy.png');
  background-size: 100% 100%;
  background-color: #12062e;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(108, 43, 217, 0.2);
}

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

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .about-left-side {
    grid-column: span 6;
  }
  .about-right-side {
    grid-column: span 6;
  }
}

.about-left-side {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-align: center;
}

.about-image-wrapper {
  position: relative;
  max-width: 448px;
  width: 100%;
}

.about-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 0 40px rgba(108, 43, 217, 0.3);
}

.about-right-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-point-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-point-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(108,43,217,0.2), rgba(0,224,255,0.1));
  color: var(--accent-green);
  border: 1px solid rgba(0, 224, 255, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
  font-size: 20px;
}

.about-point-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent-green);
  margin-bottom: 8px;
}

.about-point-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  font-weight: 400;
}

/* FEATURES ANNOUNCEMENT SECTION */
.features-section {
  padding: 40px 0;
  background-color: #080415;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-tagline {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 8px;
}

.features-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .features-title {
    font-size: 36px;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.features-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.features-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6C2BD9, #00E0FF);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.features-card:hover {
  border-color: rgba(0, 224, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(108, 43, 217, 0.2);
}

.features-card:hover::after {
  transform: scaleX(1);
}

.features-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-white);
  margin-bottom: 16px;
}

.features-card-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  font-weight: 400;
}

/* Symmetrical Slots Carousel */
.slots-showcase {
  padding: 40px 0;
  background-color: #080415;
  border-top: 1px solid var(--border-color);
  overflow: hidden;
}

.slots-tag {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-gray);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 8px;
}

.slots-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 640px) {
  .slots-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

.slots-carousel-container {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.slots-carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 555px;
  transition: transform 0.5s ease-out;
  cursor: grab;
}

.slots-carousel-track:active {
  cursor: grabbing;
}

.slot-item {
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.slot-tiny {
  width: 200px;
  height: 200px;
  opacity: 0.3;
  transform: scale(0.8);
  filter: blur(2px) grayscale(0.8);
}

.slot-small {
  width: 270px;
  height: 270px;
  opacity: 0.5;
  transform: scale(0.9);
  filter: blur(1px) grayscale(0.5);
}

.slot-medium {
  width: 340px;
  height: 340px;
  opacity: 0.8;
  transform: scale(0.95);
  filter: grayscale(0.2);
}

.slot-large {
  width: 510px;
  height: 510px;
  opacity: 1;
  transform: scale(1.05);
  filter: none;
  z-index: 10;
  border: 2px solid rgba(0, 224, 255, 0.5);
  box-shadow: 0 0 40px rgba(108, 43, 217, 0.4), 0 0 80px rgba(0, 224, 255, 0.15);
}

@media (max-width: 768px) {
  .slots-carousel-track {
    min-height: 400px;
    gap: 20px;
  }
  .slot-tiny {
    width: 140px;
    height: 140px;
  }
  .slot-small {
    width: 180px;
    height: 180px;
  }
  .slot-medium {
    width: 240px;
    height: 240px;
  }
  .slot-large {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 480px) {
  .slots-carousel-track {
    min-height: 300px;
    gap: 15px;
  }
  .slot-tiny {
    width: 100px;
    height: 100px;
  }
  .slot-small {
    width: 130px;
    height: 130px;
  }
  .slot-medium {
    width: 180px;
    height: 180px;
  }
  .slot-large {
    width: 240px;
    height: 240px;
  }
}

.slot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.slot-large img:hover {
  transform: scale(1.05);
}

.slot-item:hover {
  opacity: 1;
  filter: none;
}

.slots-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  background-color: #100825;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  border-color: var(--accent-green);
  box-shadow: 0 0 20px rgba(0, 224, 255, 0.3);
  color: var(--accent-green);
  transform: scale(1.08);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* REGISTRATION / SIGN UP CTA SECTION */
.cta-section {
  padding: 20px 0;
  background-color: var(--bg-black);
}

.cta-banner-container {
  padding: 48px;
  border-radius: 24px;
  background: linear-gradient(135deg, #12062e 0%, #0F0F0F 50%, #041520 100%);
  border: 1px solid rgba(108, 43, 217, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: 0 0 60px rgba(108, 43, 217, 0.15);
}

@media (min-width: 768px) {
  .cta-banner-container {
    flex-direction: row;
    padding: 48px 64px;
  }
}

.cta-left-content {
  flex-grow: 1;
  max-width: 576px;
  text-align: left;
}

.cta-tagline {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 8px;
}

.cta-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  line-height: 1.25;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .cta-headline {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .cta-headline {
    font-size: 48px;
  }
}

.btn-cta-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: linear-gradient(135deg, #6C2BD9, #00E0FF);
  color: #0F0F0F;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  border-radius: 50px;
  box-shadow: 0 0 30px rgba(108, 43, 217, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta-signup:hover {
  box-shadow: 0 0 50px rgba(0, 224, 255, 0.5);
  transform: scale(1.05);
}

.btn-cta-signup:active {
  transform: scale(0.95);
}

.cta-right-visual {
  width: 100%;
  max-width: 256px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .cta-right-visual {
    width: 33.333%;
    max-width: 320px;
  }
}

.cta-surprise-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(108, 43, 217, 0.4));
}

/* BLOG SECTION */
.blog {
  padding: 20px 0;
  background-color: var(--bg-black);
  border-top: 1px solid var(--border-color);
  position: relative;
}

.blog-section-header {
  margin-bottom: 60px;
  text-align: center;
}

.blog-tagline {
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 700;
  color: var(--text-white);
}

@media (max-width: 640px) {
  .blog-tagline {
    font-size: 30px;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr 1.8fr 1fr;
  }
}

.blog-card {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
  transition: var(--transition-slow);
}

.blog-card-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card-content {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1.3;
  transition: var(--transition-smooth);
  margin-bottom: 4px;
}

.blog-card-title:hover {
  filter: brightness(1.2);
}

.blog-card-desc {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

.blog-live-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 224, 255, 0.3);
  color: var(--text-white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: #00E0FF;
  border-radius: 50%;
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
}

.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;
  z-index: 4;
}

.play-btn-circle {
  width: 50px;
  height: 50px;
  background: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.play-btn-circle svg {
  width: 18px;
  height: 18px;
  fill: var(--bg-black);
  margin-left: 2px;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 224, 255, 0.2);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card:hover .play-btn-circle {
  transform: scale(1.15);
  background: var(--accent-green);
  box-shadow: 0 0 20px rgba(0, 224, 255, 0.4);
}

/* Featured styles for middle card */
.blog-grid .blog-card.blog-featured {
  grid-column: 1;
}

@media (min-width: 768px) {
  .blog-grid .blog-card.blog-featured {
    grid-column: 2;
  }
  .blog-grid .blog-card.blog-featured .blog-card-img-wrapper {
    aspect-ratio: 649 / 314;
  }
  .blog-grid .blog-card.blog-featured .blog-card-title {
    font-size: 55px;
    font-weight: 700;
  }
  .blog-grid .blog-card.blog-featured .blog-card-desc {
    font-size: 30px;
    font-weight: 400;
    color: var(--text-white);
  }
}

/* BRAND STATEMENT / COPYRIGHT TRADEMARK */
.licensing-section {
  padding: 48px 0;
  background-color: #06030d;
  text-align: center;
  border-top: 1px solid rgba(108, 43, 217, 0.1);
}

.licensing-text {
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.6;
  font-weight: 600;
  font-style: italic;
  max-width: 896px;
  margin: 0 auto;
}

/* =====================================================
   CASINO SUGGESTION SECTION
   ===================================================== */
.casino-suggestion-section {
  background: linear-gradient(135deg, #0a0520 0%, #0F0F0F 40%, #041525 100%);
  border-top: 1px solid rgba(108, 43, 217, 0.3);
  border-bottom: 1px solid rgba(0, 224, 255, 0.15);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.casino-suggestion-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(108, 43, 217, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.casino-suggestion-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0, 224, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.casino-suggestion-inner {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .casino-suggestion-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.casino-suggestion-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(108, 43, 217, 0.3), rgba(0, 224, 255, 0.2));
  border: 1px solid rgba(108, 43, 217, 0.4);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--accent-green);
  flex-shrink: 0;
  animation: dicePulse 3s ease-in-out infinite;
}

@keyframes dicePulse {
  0%, 100% { box-shadow: 0 0 15px rgba(108, 43, 217, 0.3); }
  50% { box-shadow: 0 0 30px rgba(0, 224, 255, 0.4); }
}

.casino-suggestion-content {
  flex: 1;
}

.casino-suggestion-title {
  font-family: var(--font-montserrat);
  font-weight: 800;
  font-size: 22px;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .casino-suggestion-title {
    font-size: 26px;
  }
}

.casino-suggestion-text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.casino-suggestion-text strong {
  color: var(--accent-green);
  font-weight: 700;
}

.casino-suggestion-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 768px) {
  .casino-suggestion-links {
    justify-content: center;
  }
}

.casino-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #6C2BD9, #00E0FF);
  color: #0F0F0F;
  transition: var(--transition-smooth);
  box-shadow: 0 0 20px rgba(108, 43, 217, 0.3);
}

.casino-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 224, 255, 0.5);
}

.casino-btn-secondary {
  background: transparent;
  border: 1px solid rgba(108, 43, 217, 0.5);
  color: var(--text-white);
  box-shadow: none;
}

.casino-btn-secondary:hover {
  background: rgba(108, 43, 217, 0.15);
  border-color: var(--accent-green);
  color: var(--accent-green);
  box-shadow: 0 0 20px rgba(0, 224, 255, 0.2);
}

/* FOOTER */
.footer-section {
  background-color: var(--bg-footer);
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.footer-top {
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .footer-col-links {
    grid-column: span 3;
  }
  .footer-col-contact {
    grid-column: span 4;
  }
  .footer-col-newsletter {
    grid-column: span 5;
  }
}

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

@media (min-width: 768px) {
  .footer-col {
    align-items: flex-start;
    text-align: left;
  }
}

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-green);
  margin-bottom: 24px;
}

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

.footer-link {
  font-size: 14px;
  color: var(--text-gray);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--accent-green);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-gray);
}

.contact-icon {
  color: var(--accent-green);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 448px;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .footer-newsletter-form {
    flex-direction: row;
  }
}

.newsletter-input {
  flex-grow: 1;
  background-color: #120828;
  border: 1px solid rgba(108, 43, 217, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-white);
  font-family: var(--font-inter);
  transition: border-color 0.2s ease;
}

.newsletter-input::placeholder {
  color: var(--text-gray);
}

.newsletter-input:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 10px rgba(0, 224, 255, 0.1);
}

.btn-newsletter {
  padding: 12px 24px;
  background: linear-gradient(135deg, #6C2BD9, #00E0FF);
  color: #0F0F0F;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn-newsletter:hover {
  box-shadow: 0 0 25px rgba(0, 224, 255, 0.4);
  transform: translateY(-1px);
}

.btn-newsletter:disabled {
  background: var(--text-gray);
  color: var(--bg-black);
  cursor: not-allowed;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-circle-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #6C2BD9, #00E0FF);
  color: #0F0F0F;
  font-size: 14px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.social-circle-link:hover {
  box-shadow: 0 0 20px rgba(0, 224, 255, 0.4);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-gray);
  background-color: #06030d;
}

/* Custom sections styled under ui-ux-pro-max guidelines for Vapor Suaves */
.ts-custom-section {
  padding: 112px 0;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-black);
  color: var(--text-white);
}
.ts-custom-section:nth-of-type(even) {
  background-color: #080808;
}
.ts-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ts-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ts-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ts-img-wrap {
  position: relative;
  border: 1px solid rgba(0, 224, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 224, 255, 0.05);
}
.ts-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-slow);
}
.ts-img-wrap:hover img {
  transform: scale(1.04);
}
.ts-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(108, 43, 217, 0.15);
  border-radius: 16px;
  padding: 34px 28px;
  transition: var(--transition-smooth);
}
.ts-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-green);
  box-shadow: 0 0 30px rgba(0, 224, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}
.ts-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 12px;
}
.ts-card-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent-green);
  margin-bottom: 8px;
  font-weight: 900;
  line-height: 1;
}
.ts-sub-items {
  margin-top: 24px;
  display: grid;
  gap: 20px;
}
.ts-sub-item {
  border-left: 2px solid var(--accent-green);
  padding-left: 16px;
}
.ts-sub-item h4 {
  font-family: var(--font-display);
  color: var(--text-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.ts-sub-item p {
  color: var(--text-gray);
  font-size: 14px;
}

/* Ratings */
.ts-ratings-header {
  text-align: center;
  margin-bottom: 50px;
}
.ts-stars {
  color: var(--accent-green);
  font-size: 20px;
  margin-bottom: 15px;
  letter-spacing: 4px;
}
.ts-author {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  font-size: 13px;
}
.ts-author strong {
  color: var(--text-white);
  display: block;
}
.ts-author span {
  color: var(--text-gray);
}

/* FAQ Accordion in Section 5 */
.ts-faq-preview-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}
.ts-faq-list-custom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ts-faq-item-custom {
  border: 1px solid rgba(108, 43, 217, 0.15);
  background: rgba(255, 255, 255, 0.01);
  border-radius: 12px;
  overflow: hidden;
}
.ts-faq-question-custom {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  text-align: left;
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}
.ts-faq-question-custom:hover {
  color: var(--accent-green);
}
.ts-faq-answer-custom {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
}
.ts-faq-question-custom.active + .ts-faq-answer-custom {
  padding: 0 24px 20px 24px;
}
.ts-faq-question-custom .fa-chevron-down {
  transition: transform 0.3s;
  font-size: 13px;
}
.ts-faq-question-custom.active .fa-chevron-down {
  transform: rotate(180deg);
}

/* Section 7 Legal */
.ts-legal-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(0, 224, 255, 0.15);
  border-radius: 16px;
  padding: 42px;
}
.ts-legal-box p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* Responsiveness for custom sections */
@media (max-width: 992px) {
  .ts-grid-2, .ts-faq-preview-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ts-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .ts-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .ts-grid-3, .ts-grid-4 {
    grid-template-columns: 1fr;
  }
  .ts-custom-section {
    padding: 72px 0;
  }
}
