/* Base Theme Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Sarabun', sans-serif;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
}

a {
  color: #ffd700;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #ffed4e;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: linear-gradient(45deg, #333333, #555555);
  color: #ffffff;
  border: 2px solid #ffd700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(45deg, #555555, #333333);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
#hero {
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1f1f1f 50%, #0a0a0a 100%);
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(255, 215, 0, 0.2);
}

.hero-description {
  font-size: 1.25rem;
  color: #cccccc;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-features {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffd700;
  font-weight: 600;
}

.feature-item i {
  font-size: 1.2rem;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid #ffd700;
}

.hero-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  #hero {
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .hero-features {
    justify-content: center;
    gap: 20px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-badge {
    position: static;
    margin: 20px auto 0;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Header Styles */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.95));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

#header.scrolled {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(20, 20, 20, 0.98));
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffd700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-link:hover {
  color: #ffed4e;
  transform: scale(1.05);
}

.logo-link i {
  font-size: 2rem;
  color: #ffd700;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ffd700;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links li a:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

.nav-links li a:hover::before {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
}

.btn-header-cta {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-header-cta:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 4px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #ffd700;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 350px;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 30px;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffd700;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.mobile-logo i {
  font-size: 1.5rem;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: #ffd700;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 215, 0, 0.1);
}

.mobile-nav {
  flex: 1;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-nav-links li a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-links li a:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  border-left-color: #ffd700;
  transform: translateX(10px);
}

.mobile-cta-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.btn-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-mobile-cta:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Body padding to account for fixed header */
body {
  padding-top: 70px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links {
    gap: 20px;
  }
  
  .nav-links li a {
    font-size: 0.9375rem;
    padding: 6px 12px;
  }
}

@media (max-width: 890px) {
  .header-container {
    padding: 0 15px;
  }
  
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
  
  .logo-link i {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 60px;
    padding: 0 15px;
  }
  
  body {
    padding-top: 60px;
  }
  
  .logo-text {
    font-size: 1.125rem;
  }
  
  .logo-link i {
    font-size: 1.5rem;
  }
  
  .mobile-menu {
    width: 100%;
    max-width: 100%;
  }
  
  .mobile-nav-links li a {
    font-size: 1rem;
    padding: 12px 15px;
  }
  
  .btn-mobile-cta {
    font-size: 1rem;
    padding: 12px 15px;
  }
}

/* Auto System Section */
#auto-system {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

#auto-system::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.auto-system-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.auto-system-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.auto-system-text {
  max-width: 100%;
}

.auto-system-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auto-system-description {
  margin-bottom: 40px;
}

.auto-system-description p {
  font-size: 1.125rem;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.8;
}

.auto-system-description strong {
  color: #ffd700;
  font-weight: 700;
}

.auto-system-highlights {
  margin-bottom: 40px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px 20px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 10px;
  border-left: 4px solid #ffd700;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateX(10px);
}

.highlight-item i {
  font-size: 1.5rem;
  color: #ffd700;
  min-width: 24px;
}

.highlight-item span {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.6;
}

.highlight-item strong {
  color: #ffd700;
  font-weight: 700;
}

.auto-system-cta {
  margin-top: 40px;
}

.auto-system-image {
  position: relative;
  text-align: center;
}

.auto-system-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.tech-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.tech-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 15px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  min-width: 120px;
}

.tech-feature:hover {
  background: rgba(255, 215, 0, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.tech-feature i {
  font-size: 2rem;
  color: #ffd700;
}

.tech-feature span {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .auto-system-content {
    gap: 60px;
  }
  
  .auto-system-title {
    font-size: 2.25rem;
  }
  
  .auto-system-description p {
    font-size: 1.0625rem;
  }
}

@media (max-width: 768px) {
  #auto-system {
    padding: 80px 0;
  }
  
  .auto-system-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: left;
  }
  
  .auto-system-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .auto-system-description p {
    font-size: 1rem;
  }
  
  .highlight-item {
    padding: 12px 16px;
  }
  
  .highlight-item span {
    font-size: 1rem;
  }
  
  .tech-features {
    justify-content: center;
  }
  
  .auto-system-cta {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .auto-system-container {
    padding: 0 15px;
  }
  
  .auto-system-title {
    font-size: 1.75rem;
  }
  
  .auto-system-description p {
    font-size: 0.9375rem;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px;
  }
  
  .highlight-item span {
    font-size: 0.9375rem;
  }
  
  .tech-features {
    gap: 15px;
  }
  
  .tech-feature {
    min-width: 100px;
    padding: 15px 10px;
  }
  
  .tech-feature i {
    font-size: 1.5rem;
  }
  
  .tech-feature span {
    font-size: 12px;
  }
}

/* Auto UFABET Technology Section */
#auto-ufabet-technology {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 50%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
}

#auto-ufabet-technology::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.auto-ufabet-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.auto-ufabet-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.auto-ufabet-image {
  position: relative;
  text-align: center;
}

.auto-ufabet-image img {
  max-width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 215, 0, 0.3);
}

.technology-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.tech-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px 12px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  min-width: 90px;
}

.tech-badge:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.tech-badge i {
  font-size: 1.5rem;
  color: #ffd700;
}

.tech-badge span {
  color: #ffffff;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
}

.auto-ufabet-text {
  max-width: 100%;
}

.auto-ufabet-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auto-ufabet-description {
  margin-bottom: 40px;
}

.auto-ufabet-description p {
  font-size: 1.125rem;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.8;
}

.auto-ufabet-description strong {
  color: #ffd700;
  font-weight: 700;
}

.inline-link {
  color: #ffd700;
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.3s ease;
}

.inline-link:hover {
  color: #ffed4e;
  text-decoration: none;
}

.performance-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Prompt', sans-serif;
}

.stat-label {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
}

.auto-ufabet-cta {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .auto-ufabet-content {
    gap: 60px;
  }
  
  .auto-ufabet-title {
    font-size: 2.25rem;
  }
  
  .auto-ufabet-description p {
    font-size: 1.0625rem;
  }
  
  .performance-stats {
    gap: 20px;
    padding: 25px;
  }
  
  .stat-number {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  #auto-ufabet-technology {
    padding: 80px 0;
  }
  
  .auto-ufabet-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: left;
  }
  
  .auto-ufabet-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .auto-ufabet-description p {
    font-size: 1rem;
  }
  
  .technology-badges {
    justify-content: center;
  }
  
  .performance-stats {
    gap: 20px;
    padding: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .auto-ufabet-cta {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .auto-ufabet-container {
    padding: 0 15px;
  }
  
  .auto-ufabet-title {
    font-size: 1.75rem;
  }
  
  .auto-ufabet-description p {
    font-size: 0.9375rem;
  }
  
  .technology-badges {
    gap: 10px;
  }
  
  .tech-badge {
    min-width: 80px;
    padding: 12px 8px;
  }
  
  .tech-badge i {
    font-size: 1.25rem;
  }
  
  .tech-badge span {
    font-size: 11px;
  }
  
  .performance-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .stat-label {
    font-size: 0.9375rem;
  }
}

/* Auto Wallet Section */
#auto-wallet {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

#auto-wallet::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.02) 0%, transparent 60%);
  pointer-events: none;
}

.auto-wallet-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.auto-wallet-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.auto-wallet-text {
  max-width: 100%;
}

.auto-wallet-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auto-wallet-description {
  margin-bottom: 40px;
}

.auto-wallet-description p {
  font-size: 1.125rem;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.8;
}

.auto-wallet-description strong {
  color: #ffd700;
  font-weight: 700;
}

.wallet-features-list {
  margin-top: 40px;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
  border-radius: 15px;
  border-left: 4px solid #ffd700;
  transition: all 0.3s ease;
  counter-increment: feature-counter;
}

.feature-list-item::before {
  content: counter(feature-counter);
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #ffd700;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.wallet-features-list {
  counter-reset: feature-counter;
  position: relative;
}

.feature-list-item:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.04));
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.feature-list-item i {
  font-size: 1.5rem;
  color: #ffd700;
  min-width: 24px;
  margin-top: 2px;
}

.feature-list-item span {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.6;
}

.feature-list-item strong {
  color: #ffd700;
  font-weight: 700;
}

.auto-wallet-image {
  position: relative;
  text-align: center;
}

.auto-wallet-image img {
  max-width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.wallet-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.wallet-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(255, 215, 0, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.wallet-stat:hover {
  background: rgba(255, 215, 0, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.wallet-stat i {
  font-size: 1.5rem;
  color: #ffd700;
  min-width: 24px;
}

.stat-info {
  flex: 1;
}

.stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1.2;
}

.stat-desc {
  font-size: 0.9375rem;
  color: #cccccc;
  margin-top: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .auto-wallet-content {
    gap: 60px;
  }
  
  .auto-wallet-title {
    font-size: 2.25rem;
  }
  
  .auto-wallet-description p {
    font-size: 1.0625rem;
  }
  
  .feature-list-item span {
    font-size: 1.0625rem;
  }
}

@media (max-width: 768px) {
  #auto-wallet {
    padding: 80px 0;
  }
  
  .auto-wallet-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: left;
  }
  
  .auto-wallet-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .auto-wallet-description p {
    font-size: 1rem;
  }
  
  .feature-list-item::before {
    display: none;
  }
  
  .feature-list-item {
    padding: 15px;
  }
  
  .feature-list-item span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .auto-wallet-container {
    padding: 0 15px;
  }
  
  .auto-wallet-title {
    font-size: 1.75rem;
  }
  
  .auto-wallet-description p {
    font-size: 0.9375rem;
  }
  
  .feature-list-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px;
  }
  
  .feature-list-item span {
    font-size: 0.9375rem;
  }
  
  .wallet-stat {
    padding: 12px 15px;
  }
  
  .stat-value {
    font-size: 1rem;
  }
  
  .stat-desc {
    font-size: 0.875rem;
  }
}

/* Auto UFA Platform Section */
#auto-ufa-platform {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 50%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
}

#auto-ufa-platform::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 60% 40%, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.auto-ufa-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.auto-ufa-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.auto-ufa-image {
  position: relative;
  text-align: center;
}

.auto-ufa-image img {
  max-width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 215, 0, 0.3);
}

.game-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.game-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px 12px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  min-width: 90px;
}

.game-category:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.game-category i {
  font-size: 1.5rem;
  color: #ffd700;
}

.game-category span {
  color: #ffffff;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
}

.auto-ufa-text {
  max-width: 100%;
}

.auto-ufa-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auto-ufa-description {
  margin-bottom: 40px;
}

.auto-ufa-description p {
  font-size: 1.125rem;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.8;
}

.auto-ufa-description strong {
  color: #ffd700;
  font-weight: 700;
}

.platform-features {
  margin-bottom: 40px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 25px 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.04));
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.15);
}

.feature-card i {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 15px;
  display: block;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: #ffd700;
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-card p {
  font-size: 1rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.5;
}

.auto-ufa-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .auto-ufa-content {
    gap: 60px;
  }
  
  .auto-ufa-title {
    font-size: 2.25rem;
  }
  
  .auto-ufa-description p {
    font-size: 1.0625rem;
  }
  
  .platform-grid {
    gap: 15px;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
}

@media (max-width: 768px) {
  #auto-ufa-platform {
    padding: 80px 0;
  }
  
  .auto-ufa-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: left;
  }
  
  .auto-ufa-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .auto-ufa-description p {
    font-size: 1rem;
  }
  
  .game-categories {
    justify-content: center;
  }
  
  .platform-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .auto-ufa-cta {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .auto-ufa-container {
    padding: 0 15px;
  }
  
  .auto-ufa-title {
    font-size: 1.75rem;
  }
  
  .auto-ufa-description p {
    font-size: 0.9375rem;
  }
  
  .game-categories {
    gap: 10px;
  }
  
  .game-category {
    min-width: 75px;
    padding: 12px 8px;
  }
  
  .game-category i {
    font-size: 1.25rem;
  }
  
  .game-category span {
    font-size: 10px;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
  
  .feature-card i {
    font-size: 2rem;
  }
  
  .feature-card h3 {
    font-size: 1.125rem;
  }
  
  .feature-card p {
    font-size: 0.9375rem;
  }
  
  .auto-ufa-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Auto UFABET Techniques Section */
#auto-ufabet-techniques {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

#auto-ufabet-techniques::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 40% 60%, rgba(255, 215, 0, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.auto-ufabet-techniques-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

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

.techniques-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 900px;
  margin: 0 auto;
}

.techniques-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.techniques-text {
  max-width: 100%;
}

.techniques-description {
  margin-bottom: 40px;
}

.techniques-description p {
  font-size: 1.125rem;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.8;
}

.techniques-description strong {
  color: #ffd700;
  font-weight: 700;
}

.techniques-benefits {
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
  border-radius: 12px;
  border-left: 4px solid #ffd700;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.04));
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.benefit-item i {
  font-size: 1.5rem;
  color: #ffd700;
  min-width: 24px;
  margin-top: 2px;
}

.benefit-item span {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.6;
}

.benefit-item strong {
  color: #ffd700;
  font-weight: 700;
}

.techniques-image {
  position: relative;
  text-align: center;
}

.techniques-image img {
  max-width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.3);
  margin-bottom: 30px;
}

.brand-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-highlight {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.brand-highlight:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.brand-highlight i {
  font-size: 1.5rem;
  color: #ffd700;
  min-width: 24px;
  margin-top: 2px;
}

.highlight-info {
  flex: 1;
}

.highlight-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 5px;
}

.highlight-desc {
  font-size: 0.9375rem;
  color: #cccccc;
  line-height: 1.5;
}

.highlight-desc strong {
  color: #ffd700;
  font-weight: 700;
}

.techniques-cta {
  text-align: center;
  margin-top: 60px;
}

.techniques-cta .btn {
  margin: 0 10px 10px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .techniques-content {
    gap: 60px;
  }
  
  .techniques-title {
    font-size: 2.5rem;
  }
  
  .techniques-description p {
    font-size: 1.0625rem;
  }
  
  .benefit-item span {
    font-size: 1.0625rem;
  }
}

@media (max-width: 768px) {
  #auto-ufabet-techniques {
    padding: 80px 0;
  }
  
  .techniques-title {
    font-size: 2.25rem;
  }
  
  .techniques-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .techniques-description p {
    font-size: 1rem;
  }
  
  .benefit-item {
    padding: 15px;
  }
  
  .benefit-item span {
    font-size: 1rem;
  }
  
  .brand-highlight {
    padding: 12px;
  }
  
  .highlight-title {
    font-size: 1rem;
  }
  
  .highlight-desc {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .auto-ufabet-techniques-container {
    padding: 0 15px;
  }
  
  .techniques-title {
    font-size: 1.875rem;
  }
  
  .techniques-description p {
    font-size: 0.9375rem;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px;
  }
  
  .benefit-item span {
    font-size: 0.9375rem;
  }
  
  .brand-highlight {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px;
  }
  
  .highlight-title {
    font-size: 1rem;
  }
  
  .highlight-desc {
    font-size: 0.875rem;
  }
  
  .techniques-cta .btn {
    display: block;
    width: 100%;
    margin: 0 0 15px 0;
  }
}

/* Footer Styles */
#footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0 40px;
}

.footer-section {
  min-width: 0;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand .footer-logo i {
  font-size: 2rem;
  color: #ffd700;
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.9375rem;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cccccc;
  font-size: 0.9375rem;
}

.contact-item i {
  color: #ffd700;
  font-size: 1rem;
  min-width: 16px;
}

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #ffd700;
  border-radius: 1px;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.footer-nav li a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #ffd700;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-nav li a:hover {
  color: #ffd700;
  transform: translateX(8px);
}

.footer-nav li a:hover::before {
  opacity: 1;
}

.security-badges {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.security-badge:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.2);
}

.security-badge i {
  color: #ffd700;
  font-size: 1rem;
}

.security-badge span {
  color: #cccccc;
  font-size: 0.875rem;
  font-weight: 600;
}

.footer-cta {
  margin-top: 20px;
}

.btn-footer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-footer-cta:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  padding: 25px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copyright p {
  color: #cccccc;
  font-size: 0.875rem;
  margin: 0;
}

.footer-disclaimer p {
  color: #999999;
  font-size: 0.8125rem;
  margin: 0;
  text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 30px;
  }
  
  .footer-security {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 50px 0 30px;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .footer-security {
    grid-column: span 2;
  }
  
  .security-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .footer-disclaimer p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 40px 0 25px;
  }
  
  .footer-brand,
  .footer-security {
    grid-column: span 1;
  }
  
  .footer-brand .footer-logo {
    justify-content: center;
  }
  
  .footer-description {
    text-align: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-title {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-nav {
    align-items: center;
  }
  
  .security-badges {
    grid-template-columns: 1fr;
  }
  
  .security-badge {
    justify-content: center;
    text-align: center;
  }
  
  .btn-footer-cta {
    font-size: 0.9375rem;
    padding: 10px 15px;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.95));
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 215, 0, 0.1);
}

.sticky-btn:last-child {
  border-right: none;
}

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.sticky-btn:hover::before,
.sticky-btn:active::before {
  left: 100%;
}

.sticky-btn i {
  font-size: 1.25rem;
  margin-bottom: 2px;
  transition: all 0.3s ease;
}

.sticky-btn span {
  font-size: 0.75rem;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* Individual button styles */
.sticky-login {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.sticky-login:hover,
.sticky-login:active {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #ffffff;
  transform: translateY(-2px);
}

.sticky-register {
  background: linear-gradient(135deg, #059669, #047857);
}

.sticky-register:hover,
.sticky-register:active {
  background: linear-gradient(135deg, #047857, #059669);
  color: #ffffff;
  transform: translateY(-2px);
}

.sticky-credit {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  animation: pulse-glow 2s infinite;
}

.sticky-credit:hover,
.sticky-credit:active {
  background: linear-gradient(135deg, #ffed4e, #ffd700);
  color: #000000;
  transform: translateY(-2px);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 215, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.8125rem;
  }
  
  .sticky-btn i {
    font-size: 1.125rem;
  }
  
  .sticky-btn span {
    font-size: 0.6875rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.75rem;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .sticky-btn span {
    font-size: 0.625rem;
  }
}

/* Ensure sticky buttons don't interfere with page content */
body {
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 55px;
  }
}

@media (max-width: 480px) {
  body {
    padding-bottom: 50px;
  }
}

/* Login Section Styles */
#login-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

#login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.login-container {
  max-width: 400px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.login-box {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(30, 30, 30, 0.9));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.login-box:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}

.login-logo {
  text-align: center;
  margin-bottom: 30px;
}

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-subtitle {
  color: #cccccc;
  font-size: 0.9375rem;
  margin: 0;
}

.error-message {
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
  color: #ef4444;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  font-size: 0.875rem;
}

.error-message.show {
  display: flex;
}

.login-form {
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9375rem;
}

.form-label i {
  font-size: 1rem;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Sarabun', sans-serif;
}

.form-input:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-input::placeholder {
  color: #999999;
}

.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.password-input-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #cccccc;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: #ffd700;
}

.input-error {
  color: #ef4444;
  font-size: 0.8125rem;
  margin-top: 5px;
  display: none;
}

.input-error.show {
  display: block;
}

.login-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  border: none;
  border-radius: 10px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.login-btn:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.login-btn:active {
  transform: translateY(0);
}

.login-btn.loading {
  pointer-events: none;
}

.login-btn.loading .btn-text {
  opacity: 0;
}

.login-btn.loading .btn-spinner {
  opacity: 1;
}

.btn-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.forgot-password {
  text-align: center;
  margin-top: 15px;
}

.forgot-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: #ffd700;
}

.register-section {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.register-text {
  color: #cccccc;
  margin-bottom: 15px;
  font-size: 0.9375rem;
}

.register-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #333333, #555555);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.register-btn:hover {
  background: linear-gradient(45deg, #555555, #333333);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.security-notice {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.security-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cccccc;
  font-size: 0.8125rem;
  margin-bottom: 8px;
  justify-content: center;
}

.security-item:last-child {
  margin-bottom: 0;
}

.security-item i {
  color: #ffd700;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  #login-section {
    padding: 20px 15px;
  }
  
  .login-box {
    padding: 30px 25px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .login-container {
    max-width: 100%;
  }
  
  .login-box {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .login-title {
    font-size: 1.375rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 10px 12px;
  }
  
  .login-btn {
    padding: 12px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 10px 20px;
    font-size: 0.9375rem;
  }
}

/* Register Section Styles */
#register-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

#register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.register-container {
  max-width: 400px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.register-box {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(30, 30, 30, 0.9));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.register-box:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}

.register-logo {
  text-align: center;
  margin-bottom: 30px;
}

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.register-subtitle {
  color: #cccccc;
  font-size: 0.9375rem;
  margin: 0;
}

.error-message {
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
  color: #ef4444;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  font-size: 0.875rem;
}

.error-message.show {
  display: flex;
}

.success-message {
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.1));
  color: #22c55e;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  font-size: 0.875rem;
}

.success-message.show {
  display: flex;
}

.register-form {
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9375rem;
}

.form-label i {
  font-size: 1rem;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Sarabun', sans-serif;
}

.form-input:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-input::placeholder {
  color: #999999;
}

.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.success {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.input-error {
  color: #ef4444;
  font-size: 0.8125rem;
  margin-top: 5px;
  display: none;
}

.input-error.show {
  display: block;
}

.input-help {
  color: #999999;
  font-size: 0.8125rem;
  margin-top: 5px;
}

.register-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  border: none;
  border-radius: 10px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.register-btn:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.register-btn:active {
  transform: translateY(0);
}

.register-btn.loading {
  pointer-events: none;
}

.register-btn.loading .btn-text {
  opacity: 0;
}

.register-btn.loading .btn-spinner {
  opacity: 1;
}

.btn-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.login-section {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.login-text {
  color: #cccccc;
  margin-bottom: 15px;
  font-size: 0.9375rem;
}

.login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffd700;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
}

.login-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.2);
}

.terms-notice {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  text-align: center;
}

.terms-text {
  color: #cccccc;
  font-size: 0.8125rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.terms-text i {
  color: #ffd700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.terms-link {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: #ffed4e;
}

.security-notice {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.security-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cccccc;
  font-size: 0.8125rem;
  margin-bottom: 8px;
  justify-content: center;
}

.security-item:last-child {
  margin-bottom: 0;
}

.security-item i {
  color: #ffd700;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  #register-section {
    padding: 20px 15px;
  }
  
  .register-box {
    padding: 30px 25px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .register-container {
    max-width: 100%;
  }
  
  .register-box {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .register-title {
    font-size: 1.375rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 10px 12px;
  }
  
  .register-btn {
    padding: 12px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 10px 20px;
    font-size: 0.9375rem;
  }
  
  .terms-text {
    font-size: 0.75rem;
  }
}

/* Hero Section */
#hero-section {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

#hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-content {
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  font-size: 1.125rem;
}

.btn-hero-primary:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-hero-secondary {
  background: transparent;
  color: #ffd700;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
  font-size: 1.125rem;
}

.btn-hero-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

/* Promotion Sections */
.promotion-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

#new-member-promotion {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

#daily-promotion {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 50%, #0f0f0f 100%);
}

#first-deposit-promotion {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
}

#slot-promotion {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 50%, #0f0f0f 100%);
}

.promotion-content {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(40, 40, 40, 0.8));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.promotion-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.promotion-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.promotion-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1.3;
  flex: 1;
  margin-right: 20px;
}

.promotion-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9375rem;
  white-space: nowrap;
}

.promotion-badge.daily {
  background: linear-gradient(45deg, #059669, #047857);
  color: #ffffff;
}

.promotion-badge.deposit {
  background: linear-gradient(45deg, #dc2626, #b91c1c);
  color: #ffffff;
}

.promotion-badge.slot {
  background: linear-gradient(45deg, #7c3aed, #6d28d9);
  color: #ffffff;
}

.promotion-features {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 12px;
  border-left: 4px solid #ffd700;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.feature-item i {
  font-size: 1.5rem;
  color: #ffd700;
  min-width: 24px;
  margin-top: 2px;
}

.feature-item span {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.6;
}

.promotion-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

.btn-promotion {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  font-size: 1.125rem;
}

.btn-promotion:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Summary Section */
#promotion-summary {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

#promotion-summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.summary-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.summary-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.summary-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.summary-description {
  font-size: 1.25rem;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.summary-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.summary-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  min-width: 120px;
}

.summary-feature:hover {
  background: rgba(255, 215, 0, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.summary-feature i {
  font-size: 2rem;
  color: #ffd700;
}

.summary-feature span {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}

.summary-cta {
  text-align: center;
}

.btn-summary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  font-size: 1.25rem;
}

.btn-summary:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
  
  .summary-title {
    font-size: 2.25rem;
  }
  
  .summary-description {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  #hero-section {
    padding: 100px 0 80px;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .promotion-content {
    padding: 30px 25px;
  }
  
  .promotion-header {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
  }
  
  .promotion-title {
    font-size: 1.75rem;
    margin-right: 0;
  }
  
  .feature-item {
    padding: 15px;
  }
  
  .feature-item span {
    font-size: 1rem;
  }
  
  .summary-features {
    gap: 20px;
  }
  
  .summary-feature {
    min-width: 100px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .hero-container,
  .promotion-container,
  .summary-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.875rem;
  }
  
  .hero-subtitle {
    font-size: 0.9375rem;
  }
  
  .promotion-content {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .promotion-title {
    font-size: 1.5rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px;
  }
  
  .feature-item span {
    font-size: 0.9375rem;
  }
  
  .btn-promotion,
  .btn-summary {
    font-size: 1rem;
    padding: 12px 20px;
  }
  
  .summary-title {
    font-size: 1.875rem;
  }
  
  .summary-description {
    font-size: 1rem;
  }
  
  .summary-features {
    gap: 15px;
  }
  
  .summary-feature {
    min-width: 80px;
    padding: 12px;
  }
  
  .summary-feature i {
    font-size: 1.5rem;
  }
  
  .summary-feature span {
    font-size: 0.875rem;
  }
}