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

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

html {
  scroll-behavior: smooth;
}

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

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

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 20%, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

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

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.25rem;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #4facfe 0%, #00c9ff 100%);
  color: #ffffff;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(79, 172, 254, 0.4);
}

/* Features */
.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.feature-item i {
  color: #ff6b35;
  font-size: 1.2rem;
  min-width: 20px;
}

.feature-item span {
  font-weight: 600;
  font-size: 0.95rem;
}

/* Hero Image */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.05) rotate(1deg);
}

.hero-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  color: #2c3e50;
  padding: 12px 20px;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  animation: pulse 2s infinite;
}

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

.hero-badge i {
  color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    padding: 0 30px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    justify-content: center;
    margin-bottom: 40px;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .hero-features {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .hero-image {
    order: -1;
  }
}

@media (max-width: 576px) {
  .hero-container {
    padding: 0 20px;
  }
  
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 24px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
  
  .feature-item {
    padding: 12px;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
  
  .hero-badge {
    padding: 10px 16px;
    font-size: 0.8rem;
    top: -8px;
    right: -8px;
  }
}

/* Header Styles */
.header {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

/* Logo */
.header-logo {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.logo-highlight {
  color: #ff6b35;
}

.logo-tagline {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.75rem;
  color: #e0e0e0;
  opacity: 0.8;
  margin-top: 2px;
}

/* Desktop Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.nav-link {
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::before {
  width: 100%;
}

/* Header CTA Button */
.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

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

.header-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.header-cta-btn:hover::before {
  left: 100%;
}

.header-cta-btn i {
  font-size: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 6px;
}

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

.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(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

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

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

.mobile-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}

.mobile-logo-highlight {
  color: #ff6b35;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 107, 53, 0.2);
}

.mobile-menu-close i {
  font-size: 1.2rem;
}

/* Mobile Navigation */
.mobile-nav {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  height: calc(100% - 80px);
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
  display: block;
  padding: 20px 25px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  transition: width 0.3s ease;
}

.mobile-nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover::before {
  width: 4px;
}

/* Mobile CTA Button */
.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px 25px 25px;
  padding: 18px 30px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
}

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

.mobile-cta-btn:hover::before {
  left: 100%;
}

.mobile-cta-btn i {
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 30px;
  }
  
  .nav-list {
    gap: 25px;
  }
  
  .header-cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
    height: 70px;
  }
  
  .logo-text {
    font-size: 1.8rem;
  }
  
  .logo-tagline {
    font-size: 0.7rem;
  }
  
  /* Hide desktop navigation */
  .header-nav {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 576px) {
  .header-container {
    padding: 0 15px;
    height: 65px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-tagline {
    font-size: 0.65rem;
  }
  
  .mobile-menu-header {
    padding: 18px 20px;
  }
  
  .mobile-logo-text {
    font-size: 1.6rem;
  }
  
  .mobile-nav-link {
    padding: 18px 20px;
    font-size: 1rem;
  }
  
  .mobile-cta-btn {
    margin: 25px 20px 20px;
    padding: 16px 25px;
    font-size: 1rem;
  }
}

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

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 65px;
  }
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  padding: 100px 0;
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(79, 172, 254, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

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

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

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

.about-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-description p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.about-description p:last-child {
  margin-bottom: 0;
}

/* About Image */
.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.about-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stats {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

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

.stat-item i {
  font-size: 2rem;
  color: #ff6b35;
  margin-bottom: 10px;
  display: block;
}

.stat-number {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: #e0e0e0;
  opacity: 0.8;
}

/* Game Categories */
.game-categories {
  margin-bottom: 60px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.category-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.category-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(79, 172, 254, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 107, 53, 0.3);
}

.category-item:hover::before {
  opacity: 1;
}

.category-icon {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.category-icon i {
  font-size: 3rem;
  color: #ff6b35;
  transition: all 0.3s ease;
}

.category-item:hover .category-icon i {
  color: #4facfe;
  transform: scale(1.1);
}

.category-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

/* About Footer */
.about-footer p {
  font-size: 1.05rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.about-footer p:last-child {
  margin-bottom: 0;
}

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

.highlight-link:hover {
  color: #4facfe;
  text-shadow: 0 0 10px rgba(79, 172, 254, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-container {
    padding: 0 30px;
  }
  
  .about-content {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .about-title {
    font-size: 2.2rem;
  }
  
  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 0 60px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .about-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .about-description p {
    font-size: 1.05rem;
  }
  
  .about-image {
    order: -1;
  }
  
  .about-overlay {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 15px;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-item i {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .category-item {
    padding: 25px 20px;
  }
  
  .category-icon i {
    font-size: 2.5rem;
  }
  
  .category-title {
    font-size: 1rem;
  }
  
  .about-footer p {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .about-container {
    padding: 0 20px;
  }
  
  .about-section {
    padding: 60px 0 40px;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .about-description p {
    font-size: 1rem;
  }
  
  .about-overlay {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 12px;
  }
  
  .stat-number {
    font-size: 1.3rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .category-item {
    padding: 20px 15px;
  }
  
  .category-icon {
    margin-bottom: 15px;
  }
  
  .category-icon i {
    font-size: 2rem;
  }
  
  .category-title {
    font-size: 0.95rem;
  }
  
  .about-footer p {
    font-size: 0.95rem;
  }
}

/* Direct Section */
.direct-section {
  background: linear-gradient(135deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
  padding: 100px 0;
  position: relative;
}

.direct-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 201, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

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

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

.direct-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: 0 auto;
}

.direct-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

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

.direct-description p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: justify;
}

.direct-description p:last-child {
  margin-bottom: 0;
}

/* Direct Image */
.direct-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.direct-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.direct-img:hover {
  transform: scale(1.02) rotate(-1deg);
}

.speed-indicator {
  position: absolute;
  top: -15px;
  left: -15px;
  background: linear-gradient(135deg, #00c9ff 0%, #4facfe 100%);
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
  animation: speedPulse 2s infinite;
}

@keyframes speedPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
  }
}

.speed-indicator i {
  color: #ffd700;
  font-size: 1.2rem;
}

/* Auto Features */
.auto-features {
  margin-bottom: 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 201, 255, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 201, 255, 0.4);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00c9ff 0%, #4facfe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-icon i {
  font-size: 2.2rem;
  color: #ffffff;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.feature-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.feature-desc {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
  text-align: justify;
  position: relative;
  z-index: 1;
}

/* Process Steps */
.process-steps {
  margin-bottom: 60px;
}

.steps-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.step-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 201, 255, 0.3);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00c9ff 0%, #4facfe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.step-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.5;
}

/* Direct Footer */
.direct-footer p {
  font-size: 1.05rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.direct-footer p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .direct-container {
    padding: 0 30px;
  }
  
  .direct-content {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .direct-title {
    font-size: 2.2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .direct-section {
    padding: 80px 0 60px;
  }
  
  .direct-header {
    margin-bottom: 50px;
  }
  
  .direct-title {
    font-size: 2rem;
  }
  
  .direct-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .direct-description p {
    font-size: 1.05rem;
  }
  
  .direct-image {
    order: -1;
  }
  
  .speed-indicator {
    top: -10px;
    left: -10px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .auto-features {
    margin-bottom: 60px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .feature-icon i {
    font-size: 2rem;
  }
  
  .feature-title {
    font-size: 1.2rem;
  }
  
  .feature-desc {
    font-size: 0.95rem;
  }
  
  .steps-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .step-item {
    padding: 20px;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .direct-footer p {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .direct-container {
    padding: 0 20px;
  }
  
  .direct-section {
    padding: 60px 0 40px;
  }
  
  .direct-title {
    font-size: 1.8rem;
  }
  
  .direct-description p {
    font-size: 1rem;
  }
  
  .speed-indicator {
    position: static;
    margin-bottom: 15px;
    display: inline-flex;
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  
  .feature-card {
    padding: 25px 15px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .feature-icon i {
    font-size: 1.8rem;
  }
  
  .feature-title {
    font-size: 1.1rem;
  }
  
  .feature-desc {
    font-size: 0.9rem;
  }
  
  .steps-title {
    font-size: 1.6rem;
  }
  
  .step-item {
    padding: 18px;
    gap: 15px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .step-content h4 {
    font-size: 1.1rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .direct-footer p {
    font-size: 0.95rem;
  }
}

/* Casino Section */
.casino-section {
  background: linear-gradient(135deg, #0f0f23 0%, #16213e 50%, #1a1a2e 100%);
  padding: 100px 0;
  position: relative;
}

.casino-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

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

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

.casino-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: 0 auto;
}

.casino-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 80px;
}

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

.casino-description p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: justify;
}

.casino-description p:last-child {
  margin-bottom: 30px;
}

/* Slot Advantages */
.advantages-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.advantages-list {
  list-style: none;
  padding: 0;
}

.advantages-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  font-size: 1.05rem;
  color: #e0e0e0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.advantages-list li:last-child {
  border-bottom: none;
}

.advantages-list li:hover {
  color: #ffffff;
  padding-left: 10px;
}

.advantages-list li i {
  color: #ff6b35;
  font-size: 1.2rem;
  min-width: 20px;
}

/* Casino Image */
.casino-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.casino-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.casino-img:hover {
  transform: scale(1.02) rotate(1deg);
}

.game-count-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  animation: gameCountPulse 3s infinite;
}

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

.game-count-badge i {
  color: #ffffff;
}

/* Game Providers */
.game-providers {
  margin-bottom: 80px;
}

.providers-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.provider-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.provider-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(79, 172, 254, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.provider-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 107, 53, 0.3);
}

.provider-card:hover::before {
  opacity: 1;
}

.provider-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.provider-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.provider-card:hover .provider-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #4facfe 0%, #00c9ff 100%);
}

.provider-card h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.provider-card p {
  font-size: 0.95rem;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

/* Casino Live Section */
.casino-live-section {
  margin-bottom: 60px;
}

.live-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.live-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.live-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.live-img:hover {
  transform: scale(1.02);
}

.live-indicator {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ff4757;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 20px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.live-indicator i {
  font-size: 0.6rem;
  animation: liveBlink 1s infinite;
}

@keyframes liveBlink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

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

.live-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.live-text p {
  font-size: 1.05rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.live-text p:last-of-type {
  margin-bottom: 25px;
}

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

.highlight-link:hover {
  color: #4facfe;
  text-shadow: 0 0 10px rgba(79, 172, 254, 0.5);
}

.live-games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.live-game-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.live-game-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  border-color: rgba(255, 107, 53, 0.3);
}

.live-game-item i {
  color: #ff6b35;
  font-size: 1.1rem;
}

.live-game-item span {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
}

/* Casino Footer */
.casino-footer p {
  font-size: 1.05rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.casino-footer p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .casino-container {
    padding: 0 30px;
  }
  
  .casino-content {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .casino-title {
    font-size: 2.2rem;
  }
  
  .providers-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .live-content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .casino-section {
    padding: 80px 0 60px;
  }
  
  .casino-header {
    margin-bottom: 50px;
  }
  
  .casino-title {
    font-size: 2rem;
  }
  
  .casino-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .casino-description p {
    font-size: 1.05rem;
  }
  
  .casino-image {
    order: -1;
  }
  
  .game-count-badge {
    bottom: -10px;
    right: -10px;
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .game-providers {
    margin-bottom: 60px;
  }
  
  .providers-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .provider-card {
    padding: 25px 15px;
  }
  
  .provider-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .provider-icon i {
    font-size: 1.5rem;
  }
  
  .provider-card h4 {
    font-size: 1.1rem;
  }
  
  .provider-card p {
    font-size: 0.9rem;
  }
  
  .live-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .live-image {
    order: -1;
  }
  
  .live-title {
    font-size: 1.6rem;
    text-align: center;
  }
  
  .live-text p {
    font-size: 1rem;
  }
  
  .live-games {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .casino-footer p {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .casino-container {
    padding: 0 20px;
  }
  
  .casino-section {
    padding: 60px 0 40px;
  }
  
  .casino-title {
    font-size: 1.8rem;
  }
  
  .casino-description p {
    font-size: 1rem;
  }
  
  .advantages-title {
    font-size: 1.2rem;
  }
  
  .advantages-list li {
    font-size: 1rem;
    gap: 12px;
  }
  
  .advantages-list li i {
    font-size: 1.1rem;
  }
  
  .game-count-badge {
    position: static;
    margin-top: 15px;
    display: inline-flex;
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  
  .providers-title {
    font-size: 1.6rem;
  }
  
  .providers-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .provider-card {
    padding: 20px 15px;
  }
  
  .provider-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
  }
  
  .provider-icon i {
    font-size: 1.3rem;
  }
  
  .provider-card h4 {
    font-size: 1rem;
  }
  
  .provider-card p {
    font-size: 0.85rem;
  }
  
  .live-title {
    font-size: 1.4rem;
  }
  
  .live-text p {
    font-size: 0.95rem;
  }
  
  .live-games {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .live-game-item {
    padding: 10px 12px;
  }
  
  .live-game-item i {
    font-size: 1rem;
  }
  
  .live-game-item span {
    font-size: 0.9rem;
  }
  
  .casino-footer p {
    font-size: 0.95rem;
  }
}

/* Sports Section */
.sports-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 50%, #16213e 100%);
  padding: 100px 0;
  position: relative;
}

.sports-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(0, 255, 127, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

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

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

.sports-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: 0 auto;
}

.sports-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

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

.sports-description p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: justify;
}

.sports-description p:last-child {
  margin-bottom: 0;
}

/* Sports Image */
.sports-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sports-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.sports-img:hover {
  transform: scale(1.02) rotate(-1deg);
}

.sports-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, #00ff7f 0%, #32cd32 100%);
  color: #2c3e50;
  padding: 15px 25px;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 255, 127, 0.4);
  animation: sportsBadgePulse 2.5s infinite;
}

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

.sports-badge i {
  color: #2c3e50;
  font-size: 1.2rem;
}

/* Sports Categories */
.sports-categories {
  margin-bottom: 80px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.sport-category {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.sport-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 255, 127, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sport-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 255, 127, 0.4);
}

.sport-category:hover::before {
  opacity: 1;
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ff7f 0%, #32cd32 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.category-icon i {
  font-size: 2.2rem;
  color: #2c3e50;
}

.sport-category:hover .category-icon {
  transform: scale(1.1) rotate(-10deg);
  background: linear-gradient(135deg, #ff1493 0%, #dc143c 100%);
}

.sport-category:hover .category-icon i {
  color: #ffffff;
}

.sport-category h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.leagues {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.leagues span {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  color: #e0e0e0;
  transition: all 0.3s ease;
}

.leagues span:hover {
  background: rgba(0, 255, 127, 0.2);
  color: #ffffff;
}

/* Betting Features */
.betting-features {
  margin-bottom: 80px;
}

.features-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}

.features-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(0, 255, 127, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 20, 147, 0.4);
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-box .feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff1493 0%, #dc143c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-box .feature-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.feature-box:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);
  background: linear-gradient(135deg, #00ff7f 0%, #32cd32 100%);
}

.feature-box h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.feature-box p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
  text-align: justify;
  position: relative;
  z-index: 1;
}

/* Betting Markets */
.betting-markets {
  margin-bottom: 80px;
}

.markets-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.market-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.market-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: rgba(0, 255, 127, 0.3);
}

.market-item i {
  color: #00ff7f;
  font-size: 1.3rem;
  min-width: 20px;
}

.market-item span {
  font-weight: 600;
  color: #ffffff;
  font-size: 1rem;
}

/* Baccarat Section */
.baccarat-section {
  margin-bottom: 80px;
}

.baccarat-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.baccarat-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.baccarat-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.baccarat-img:hover {
  transform: scale(1.02);
}

.hd-indicator {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 15px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hd-indicator i {
  color: #ff1493;
}

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

.baccarat-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.baccarat-text p {
  font-size: 1.05rem;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.8;
  text-align: justify;
}

.baccarat-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.baccarat-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.baccarat-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  border-color: rgba(255, 20, 147, 0.3);
}

.baccarat-feature i {
  color: #ff1493;
  font-size: 1.2rem;
  min-width: 20px;
}

.baccarat-feature span {
  font-weight: 600;
  color: #ffffff;
  font-size: 1rem;
}

/* Mobile Section */
.mobile-section {
  text-align: center;
}

.mobile-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
}

.mobile-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.8;
  text-align: justify;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mobile-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.mobile-feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mobile-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: rgba(0, 255, 127, 0.3);
}

.mobile-feature i {
  font-size: 3rem;
  color: #00ff7f;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.mobile-feature:hover i {
  color: #ff1493;
  transform: scale(1.1);
}

.mobile-feature h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.mobile-feature p {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .sports-container {
    padding: 0 30px;
  }
  
  .sports-content {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .sports-title {
    font-size: 2.2rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
  }
  
  .features-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .markets-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  
  .baccarat-content {
    gap: 40px;
  }
  
  .mobile-features {
    grid-template-columns: repeat(auto-fit, minMax(220px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .sports-section {
    padding: 80px 0 60px;
  }
  
  .sports-header {
    margin-bottom: 50px;
  }
  
  .sports-title {
    font-size: 2rem;
  }
  
  .sports-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .sports-description p {
    font-size: 1.05rem;
  }
  
  .sports-image {
    order: -1;
  }
  
  .sports-badge {
    top: -10px;
    right: -10px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .sport-category {
    padding: 30px 20px;
  }
  
  .category-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .category-icon i {
    font-size: 2rem;
  }
  
  .sport-category h3 {
    font-size: 1.2rem;
  }
  
  .features-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .feature-box {
    padding: 30px 20px;
  }
  
  .feature-box .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .feature-box .feature-icon i {
    font-size: 1.8rem;
  }
  
  .feature-box h4 {
    font-size: 1.2rem;
  }
  
  .feature-box p {
    font-size: 0.95rem;
  }
  
  .markets-title {
    font-size: 1.8rem;
  }
  
  .markets-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .market-item {
    padding: 15px 18px;
  }
  
  .baccarat-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .baccarat-image {
    order: -1;
  }
  
  .baccarat-title {
    font-size: 1.6rem;
    text-align: center;
  }
  
  .baccarat-text p {
    font-size: 1rem;
  }
  
  .mobile-title {
    font-size: 1.8rem;
  }
  
  .mobile-description {
    font-size: 1rem;
    margin-bottom: 35px;
    text-align: left;
  }
  
  .mobile-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .mobile-feature {
    padding: 25px 18px;
  }
  
  .mobile-feature i {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .sports-container {
    padding: 0 20px;
  }
  
  .sports-section {
    padding: 60px 0 40px;
  }
  
  .sports-title {
    font-size: 1.8rem;
  }
  
  .sports-description p {
    font-size: 1rem;
  }
  
  .sports-badge {
    position: static;
    margin-bottom: 15px;
    display: inline-flex;
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .sport-category {
    padding: 25px 18px;
  }
  
  .category-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }
  
  .category-icon i {
    font-size: 1.8rem;
  }
  
  .sport-category h3 {
    font-size: 1.1rem;
  }
  
  .leagues span {
    font-size: 0.85rem;
    padding: 6px 10px;
  }
  
  .features-title {
    font-size: 1.6rem;
  }
  
  .feature-box {
    padding: 25px 15px;
  }
  
  .feature-box .feature-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 18px;
  }
  
  .feature-box .feature-icon i {
    font-size: 1.6rem;
  }
  
  .feature-box h4 {
    font-size: 1.1rem;
  }
  
  .feature-box p {
    font-size: 0.9rem;
  }
  
  .markets-title {
    font-size: 1.6rem;
  }
  
  .market-item {
    padding: 12px 15px;
    gap: 12px;
  }
  
  .market-item i {
    font-size: 1.1rem;
  }
  
  .market-item span {
    font-size: 0.9rem;
  }
  
  .baccarat-title {
    font-size: 1.4rem;
  }
  
  .baccarat-text p {
    font-size: 0.95rem;
  }
  
  .baccarat-feature {
    padding: 10px 15px;
    gap: 12px;
  }
  
  .baccarat-feature i {
    font-size: 1.1rem;
  }
  
  .baccarat-feature span {
    font-size: 0.9rem;
  }
  
  .mobile-title {
    font-size: 1.6rem;
  }
  
  .mobile-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  
  .mobile-feature {
    padding: 20px 15px;
  }
  
  .mobile-feature i {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  
  .mobile-feature h4 {
    font-size: 1.1rem;
  }
  
  .mobile-feature p {
    font-size: 0.9rem;
  }
}

/* Promotions Section */
.promotions-section {
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0f0f23 100%);
  padding: 100px 0;
  position: relative;
}

.promotions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 40% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 60% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

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

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

.promotions-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: 0 auto;
}

.promotions-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

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

.promotions-description p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: justify;
}

.promotions-description p:last-child {
  margin-bottom: 0;
}

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

.highlight-link:hover {
  color: #4facfe;
  text-shadow: 0 0 10px rgba(79, 172, 254, 0.5);
}

/* Promotions Badge */
.promotions-badge-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-badge-main {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #2c3e50;
  padding: 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
  animation: promoBadgePulse 3s infinite;
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

.promo-badge-main::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffd700, #ff8c00, #ffd700);
  border-radius: 25px;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
}

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

@keyframes borderRotate {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

.promo-badge-main i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
  color: #2c3e50;
}

.badge-text {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
}

.badge-subtext {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  opacity: 0.8;
}

/* Credit Info */
.credit-info {
  margin-bottom: 80px;
}

.credit-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: center;
}

.credit-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.credit-visual {
  background: linear-gradient(135deg, #4facfe 0%, #00c9ff 100%);
  color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(79, 172, 254, 0.4);
  position: relative;
  overflow: hidden;
}

.credit-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
  animation: creditShine 3s infinite;
  pointer-events: none;
}

@keyframes creditShine {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.credit-visual i {
  font-size: 3.5rem;
  margin-bottom: 15px;
  display: block;
}

.credit-amount {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.credit-daily {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

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

.credit-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.credit-text p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

/* Promo List */
.promo-list {
  margin-bottom: 80px;
}

.promo-list-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.promo-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 25px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.promo-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.4);
}

.promo-item:hover::before {
  opacity: 1;
}

.promo-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #2c3e50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.promo-content {
  position: relative;
  z-index: 1;
}

.promo-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.promo-content p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.5;
}

.promo-icon {
  position: relative;
  z-index: 1;
}

.promo-icon i {
  font-size: 2rem;
  color: #ffd700;
  transition: all 0.3s ease;
}

.promo-item:hover .promo-icon i {
  color: #ff6b35;
  transform: scale(1.1) rotate(10deg);
}

/* Special Promos */
.special-promos {
  margin-bottom: 80px;
}

.special-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.special-promo-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.special-promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.special-promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(79, 172, 254, 0.4);
}

.special-promo-card:hover::before {
  opacity: 1;
}

.special-promo-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.special-promo-header i {
  font-size: 2.5rem;
  color: #4facfe;
  transition: all 0.3s ease;
}

.special-promo-card:hover .special-promo-header i {
  color: #ff6b35;
  transform: rotate(360deg);
}

.special-promo-header h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
}

.special-promo-card p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
  position: relative;
  z-index: 1;
}

/* Minimum Deposit */
.minimum-deposit {
  margin-bottom: 60px;
}

.deposit-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: center;
}

.deposit-info {
  display: flex;
  justify-content: center;
  align-items: center;
}

.deposit-amount {
  background: linear-gradient(135deg, #00c9ff 0%, #4facfe 100%);
  color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(79, 172, 254, 0.4);
  position: relative;
  overflow: hidden;
}

.deposit-amount::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
  animation: depositShine 4s infinite;
  pointer-events: none;
}

@keyframes depositShine {
  0% {
    transform: translateX(-100%);
  }
  25% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.deposit-amount i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.amount {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.currency {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

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

.deposit-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.deposit-text p {
  font-size: 1.05rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.deposit-text p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .promotions-container {
    padding: 0 30px;
  }
  
  .promotions-content {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .promotions-title {
    font-size: 2.2rem;
  }
  
  .special-promo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .credit-content {
    gap: 40px;
  }
  
  .deposit-content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .promotions-section {
    padding: 80px 0 60px;
  }
  
  .promotions-header {
    margin-bottom: 50px;
  }
  
  .promotions-title {
    font-size: 2rem;
  }
  
  .promotions-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
    text-align: center;
  }
  
  .promotions-description p {
    font-size: 1.05rem;
    text-align: left;
  }
  
  .promo-badge-main {
    padding: 25px;
    min-width: 180px;
  }
  
  .promo-badge-main i {
    font-size: 2.5rem;
  }
  
  .badge-text {
    font-size: 1.6rem;
  }
  
  .credit-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .credit-visual {
    padding: 35px;
    max-width: 250px;
    margin: 0 auto;
  }
  
  .credit-visual i {
    font-size: 3rem;
  }
  
  .credit-title {
    font-size: 1.6rem;
    text-align: center;
  }
  
  .credit-text p {
    font-size: 1rem;
    text-align: left;
  }
  
  .promo-list-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .promo-item {
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .promo-icon {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
  }
  
  .promo-content {
    grid-column: 2;
    grid-row: 1;
  }
  
  .promo-number {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    margin-top: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  
  .special-promo-card {
    padding: 30px 25px;
  }
  
  .special-promo-header i {
    font-size: 2rem;
  }
  
  .special-promo-header h3 {
    font-size: 1.2rem;
  }
  
  .special-promo-card p {
    font-size: 1rem;
    text-align: left;
  }
  
  .deposit-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .deposit-amount {
    padding: 35px;
    max-width: 250px;
    margin: 0 auto;
  }
  
  .amount {
    font-size: 2.5rem;
  }
  
  .deposit-title {
    font-size: 1.6rem;
    text-align: center;
  }
  
  .deposit-text p {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .promotions-container {
    padding: 0 20px;
  }
  
  .promotions-section {
    padding: 60px 0 40px;
  }
  
  .promotions-title {
    font-size: 1.8rem;
  }
  
  .promotions-description p {
    font-size: 1rem;
  }
  
  .promo-badge-main {
    padding: 20px;
    min-width: 160px;
  }
  
  .promo-badge-main i {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .badge-text {
    font-size: 1.4rem;
  }
  
  .badge-subtext {
    font-size: 0.9rem;
  }
  
  .credit-visual {
    padding: 30px;
    max-width: 220px;
  }
  
  .credit-visual i {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }
  
  .credit-amount {
    font-size: 1.3rem;
  }
  
  .credit-daily {
    font-size: 0.9rem;
  }
  
  .credit-title {
    font-size: 1.4rem;
  }
  
  .credit-text p {
    font-size: 0.95rem;
  }
  
  .promo-list-title {
    font-size: 1.6rem;
  }
  
  .promo-item {
    padding: 18px;
    gap: 15px;
  }
  
  .promo-number {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  
  .promo-content h4 {
    font-size: 1.1rem;
  }
  
  .promo-content p {
    font-size: 0.95rem;
  }
  
  .promo-icon i {
    font-size: 1.8rem;
  }
  
  .special-promo-card {
    padding: 25px 20px;
  }
  
  .special-promo-header {
    gap: 12px;
    margin-bottom: 18px;
  }
  
  .special-promo-header i {
    font-size: 1.8rem;
  }
  
  .special-promo-header h3 {
    font-size: 1.1rem;
  }
  
  .special-promo-card p {
    font-size: 0.95rem;
  }
  
  .deposit-amount {
    padding: 30px;
    max-width: 200px;
  }
  
  .deposit-amount i {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .amount {
    font-size: 2rem;
  }
  
  .currency {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .label {
    font-size: 0.9rem;
  }
  
  .deposit-title {
    font-size: 1.4rem;
  }
  
  .deposit-text p {
    font-size: 0.95rem;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  color: #ffffff;
  padding: 60px 0 30px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 75% 75%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* Footer Brand */
.footer-brand {
  max-width: 100%;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  line-height: 1;
}

.footer-logo-highlight {
  color: #ff6b35;
}

.footer-tagline {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  color: #e0e0e0;
  opacity: 0.8;
  margin-top: 5px;
  display: block;
}

.footer-description {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: justify;
}

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-phone,
.footer-email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.footer-phone:hover,
.footer-email:hover {
  color: #ff6b35;
  transform: translateX(5px);
}

.footer-phone i,
.footer-email i {
  color: #ff6b35;
  font-size: 1rem;
  width: 18px;
  text-align: center;
}

/* Footer Links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

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

.footer-column-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-link {
  font-size: 0.95rem;
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 4px 0;
  position: relative;
}

.footer-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #ff6b35;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-link:hover::before {
  width: 100%;
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.social-link i {
  font-size: 1.1rem;
}

/* Footer Badges */
.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #e0e0e0;
}

.badge-item i {
  color: #00ff7f;
  font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  font-size: 0.9rem;
  color: #e0e0e0;
  margin: 0;
  opacity: 0.8;
}

.footer-disclaimer {
  text-align: center;
}

.disclaimer-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #ffd700;
  margin: 0;
  padding: 12px 20px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  max-width: 600px;
  text-align: center;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 30px;
  }
  
  .footer-content {
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 25px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-logo-text {
    font-size: 2.2rem;
  }
  
  .footer-description {
    text-align: center;
  }
  
  .footer-contact {
    align-items: center;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-column:last-child {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-badges {
    align-items: center;
  }
  
  .footer-bottom {
    padding-top: 25px;
    gap: 15px;
  }
  
  .disclaimer-text {
    padding: 10px 15px;
    font-size: 0.8rem;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .footer-container {
    padding: 0 20px;
  }
  
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    gap: 35px;
    margin-bottom: 35px;
  }
  
  .footer-logo-text {
    font-size: 2rem;
  }
  
  .footer-tagline {
    font-size: 0.8rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .footer-phone,
  .footer-email {
    font-size: 0.9rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-column-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .social-link i {
    font-size: 1rem;
  }
  
  .badge-item {
    font-size: 0.8rem;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
  
  .disclaimer-text {
    padding: 8px 12px;
    font-size: 0.75rem;
    width: 100%;
    max-width: none;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 60px;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sticky-btn:hover::before {
  opacity: 1;
}

.sticky-btn:active {
  transform: scale(0.98);
}

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

.sticky-btn span {
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.2;
  transition: all 0.3s ease;
}

/* Login Button */
.sticky-btn-login {
  background: linear-gradient(135deg, #4facfe 0%, #00c9ff 100%);
}

.sticky-btn-login::before {
  background: linear-gradient(135deg, #00c9ff 0%, #4facfe 100%);
}

.sticky-btn-login:hover {
  box-shadow: 0 -8px 25px rgba(79, 172, 254, 0.4);
}

.sticky-btn-login:hover i {
  transform: scale(1.1);
}

/* Register Button */
.sticky-btn-register {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.sticky-btn-register::before {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

.sticky-btn-register:hover {
  box-shadow: 0 -8px 25px rgba(255, 107, 53, 0.4);
}

.sticky-btn-register:hover i {
  transform: scale(1.1);
}

/* Free Credit Button */
.sticky-btn-free-credit {
  background: linear-gradient(135deg, #00ff7f 0%, #32cd32 100%);
  position: relative;
  animation: pulseGlow 2s infinite;
}

.sticky-btn-free-credit::before {
  background: linear-gradient(135deg, #32cd32 0%, #00ff7f 100%);
}

.sticky-btn-free-credit::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00ff7f, #32cd32, #00ff7f);
  border-radius: inherit;
  z-index: -1;
  opacity: 0.7;
  animation: borderGlow 3s linear infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 -8px 25px rgba(0, 255, 127, 0.3);
  }
  50% {
    box-shadow: 0 -8px 35px rgba(0, 255, 127, 0.6);
  }
  100% {
    box-shadow: 0 -8px 25px rgba(0, 255, 127, 0.3);
  }
}

@keyframes borderGlow {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

.sticky-btn-free-credit:hover {
  animation-play-state: paused;
  box-shadow: 0 -12px 40px rgba(0, 255, 127, 0.8);
}

.sticky-btn-free-credit:hover i {
  transform: scale(1.1) rotate(15deg);
}

.sticky-btn-free-credit span {
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.8rem;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
  }
}

@media (max-width: 576px) {
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.75rem;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 0.65rem;
    line-height: 1.1;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 6px 2px;
    min-height: 45px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
  }
  
  .sticky-btn span {
    font-size: 0.6rem;
  }
}

/* Ensure content doesn't get hidden behind sticky buttons */
body {
  padding-bottom: 60px;
}

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

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

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

/* Login Section */
.login-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 80px;
  position: relative;
}

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.1) 0%, transparent 70%),
              radial-gradient(circle at 70% 60%, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.login-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 50px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.05) 0%, transparent 50%, rgba(79, 172, 254, 0.05) 100%);
  pointer-events: none;
  z-index: -1;
}

/* Login Header */
.login-header {
  text-align: center;
  margin-bottom: 40px;
}

.login-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.login-subtitle {
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  color: #e0e0e0;
  opacity: 0.8;
  margin: 0;
}

/* Messages */
.error-message,
.success-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  font-family: 'Sarabun', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  animation: slideDown 0.3s ease;
}

.error-message {
  background: rgba(255, 75, 75, 0.1);
  border: 1px solid rgba(255, 75, 75, 0.3);
  color: #ff6b6b;
}

.success-message {
  background: rgba(0, 255, 127, 0.1);
  border: 1px solid rgba(0, 255, 127, 0.3);
  color: #00ff7f;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Styles */
.login-form {
  margin-bottom: 30px;
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

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

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

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input.error {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

/* Password Input */
.password-input-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ff6b35;
  cursor: pointer;
  padding: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

/* Input Errors */
.input-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 5px;
  font-family: 'Sarabun', sans-serif;
  display: none;
  align-items: center;
  gap: 5px;
}

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

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  color: #e0e0e0;
}

.checkbox-input {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-input:checked + .checkbox-custom {
  background: #ff6b35;
  border-color: #ff6b35;
}

.checkbox-input:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.forgot-link {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  color: #ff6b35;
  text-decoration: none;
  transition: all 0.3s ease;
}

.forgot-link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Login Button */
.login-btn {
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

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

.login-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.login-btn:disabled:hover {
  transform: none;
}

.btn-loader {
  display: none;
}

.login-btn.loading .btn-loader {
  display: block;
}

.login-btn.loading span {
  display: none;
}

.login-btn.loading i:not(.fa-spinner) {
  display: none;
}

/* Login Footer */
.login-footer {
  text-align: center;
}

.register-prompt {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.95rem;
  color: #e0e0e0;
  margin: 0 0 15px 0;
}

.register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 30px;
  background: rgba(79, 172, 254, 0.1);
  border: 1px solid rgba(79, 172, 254, 0.3);
  border-radius: 12px;
  color: #4facfe;
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.register-btn:hover {
  background: rgba(79, 172, 254, 0.2);
  color: #ffffff;
  border-color: rgba(79, 172, 254, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 80px 0 60px;
  }
  
  .login-container {
    padding: 0 25px;
  }
  
  .login-card {
    padding: 40px 30px;
    border-radius: 20px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-options {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .login-container {
    padding: 0 20px;
  }
  
  .login-card {
    padding: 30px 25px;
    border-radius: 15px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 14px 25px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}

/* Register Section */
.register-section {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 80px;
  position: relative;
}

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(0, 255, 127, 0.1) 0%, transparent 70%),
              radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.register-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.register-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 50px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 255, 127, 0.05) 0%, transparent 50%, rgba(255, 107, 53, 0.05) 100%);
  pointer-events: none;
  z-index: -1;
}

/* Register Header */
.register-header {
  text-align: center;
  margin-bottom: 40px;
}

.register-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 255, 127, 0.3);
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.register-subtitle {
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  color: #e0e0e0;
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
}

/* Messages */
.error-message,
.success-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  font-family: 'Sarabun', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  animation: slideDown 0.3s ease;
}

.error-message {
  background: rgba(255, 75, 75, 0.1);
  border: 1px solid rgba(255, 75, 75, 0.3);
  color: #ff6b6b;
}

.success-message {
  background: rgba(0, 255, 127, 0.1);
  border: 1px solid rgba(0, 255, 127, 0.3);
  color: #00ff7f;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Styles */
.register-form {
  margin-bottom: 30px;
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.form-label i {
  color: #00ff7f;
  font-size: 1rem;
}

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

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  outline: none;
  border-color: #00ff7f;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(0, 255, 127, 0.1);
}

.form-input.error {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

/* Input Errors */
.input-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 5px;
  font-family: 'Sarabun', sans-serif;
  display: none;
  align-items: center;
  gap: 5px;
}

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

/* Terms */
.form-terms {
  margin-bottom: 30px;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  color: #e0e0e0;
  line-height: 1.5;
}

.checkbox-input {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-input:checked + .checkbox-custom {
  background: #00ff7f;
  border-color: #00ff7f;
}

.checkbox-input:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

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

.terms-link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 255, 127, 0.5);
}

/* Register Button */
.register-btn {
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, #00ff7f 0%, #32cd32 100%);
  border: none;
  border-radius: 12px;
  color: #2c3e50;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(0, 255, 127, 0.3);
}

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

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 255, 127, 0.4);
}

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

.register-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.register-btn:disabled:hover {
  transform: none;
}

.btn-loader {
  display: none;
  color: #2c3e50;
}

.register-btn.loading .btn-loader {
  display: block;
}

.register-btn.loading span {
  display: none;
}

.register-btn.loading i:not(.fa-spinner) {
  display: none;
}

/* Register Footer */
.register-footer {
  text-align: center;
  margin-bottom: 30px;
}

.login-prompt {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.95rem;
  color: #e0e0e0;
  margin: 0 0 15px 0;
}

.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 30px;
  background: transparent;
  border: 2px solid rgba(79, 172, 254, 0.5);
  border-radius: 12px;
  color: #4facfe;
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.login-btn:hover {
  background: rgba(79, 172, 254, 0.1);
  color: #ffffff;
  border-color: rgba(79, 172, 254, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

/* Register Benefits */
.register-benefits {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
}

.benefits-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  color: #e0e0e0;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.benefit-item i {
  color: #00ff7f;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 80px 0 60px;
  }
  
  .register-container {
    padding: 0 25px;
  }
  
  .register-card {
    padding: 40px 30px;
    border-radius: 20px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .checkbox-wrapper {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .register-container {
    padding: 0 20px;
  }
  
  .register-card {
    padding: 30px 25px;
    border-radius: 15px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 14px 25px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
  
  .checkbox-wrapper {
    font-size: 0.8rem;
  }
  
  .benefits-title {
    font-size: 1rem;
  }
  
  .benefit-item {
    font-size: 0.85rem;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  padding: 120px 0 100px;
  position: relative;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 70%),
              radial-gradient(circle at 25% 75%, rgba(79, 172, 254, 0.15) 0%, transparent 70%),
              radial-gradient(circle at 75% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

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

.hero-content {
  margin: 0 auto;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  color: #ffd700;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.hero-highlight i {
  font-size: 1.3rem;
  animation: giftPulse 2s infinite;
}

@keyframes giftPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #2c3e50;
  border: none;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
  animation: heroCtaPulse 3s infinite;
}

@keyframes heroCtaPulse {
  0% {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
  }
  100% {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  }
}

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

.hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.hero-cta-btn:hover::before {
  left: 100%;
}

.hero-cta-btn i {
  font-size: 1.4rem;
}

/* Promo Sections */
.promo-section {
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0f0f23 100%);
  padding: 80px 0;
  position: relative;
}

.promo-section:nth-child(even) {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 50%, #16213e 100%);
}

.promo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(79, 172, 254, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

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

.promo-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.02) 0%, transparent 50%, rgba(79, 172, 254, 0.02) 100%);
  pointer-events: none;
  z-index: -1;
}

.promo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.promo-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.promo-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.promo-card:hover .promo-icon {
  transform: scale(1.1) rotate(5deg);
}

.promo-icon i {
  font-size: 2.5rem;
  color: #ffffff;
}

.promo-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  flex: 1;
}

.promo-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

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

.promo-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.promo-list li:last-child {
  margin-bottom: 0;
}

.promo-list li i {
  color: #00ff7f;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.promo-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 25px 30px;
  background: linear-gradient(135deg, #00ff7f 0%, #32cd32 100%);
  color: #2c3e50;
  border: none;
  border-radius: 20px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 255, 127, 0.3);
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

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

.promo-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 255, 127, 0.5);
}

.promo-cta-btn:hover::before {
  left: 100%;
}

.promo-cta-btn i {
  font-size: 1.8rem;
}

.promo-cta-btn span {
  text-align: center;
  line-height: 1.2;
}

/* Specific promo colors */
#promo-new-member .promo-icon {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

#promo-new-member .promo-icon i {
  color: #2c3e50;
}

#promo-new-member .promo-cta-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #2c3e50;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

#promo-new-member .promo-cta-btn:hover {
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

#promo-no-deposit .promo-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00c9ff 100%);
  box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

#promo-no-deposit .promo-cta-btn {
  background: linear-gradient(135deg, #4facfe 0%, #00c9ff 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

#promo-no-deposit .promo-cta-btn:hover {
  box-shadow: 0 12px 35px rgba(79, 172, 254, 0.5);
}

#promo-cashback .promo-icon {
  background: linear-gradient(135deg, #ff1493 0%, #dc143c 100%);
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

#promo-cashback .promo-cta-btn {
  background: linear-gradient(135deg, #ff1493 0%, #dc143c 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

#promo-cashback .promo-cta-btn:hover {
  box-shadow: 0 12px 35px rgba(255, 20, 147, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container,
  .promo-container {
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .promo-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 80px;
  }
  
  .promo-section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-highlight {
    font-size: 1rem;
    padding: 12px 20px;
  }
  
  .hero-cta-btn {
    font-size: 1.2rem;
    padding: 18px 35px;
  }
  
  .promo-card {
    padding: 40px 30px;
    border-radius: 20px;
  }
  
  .promo-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    margin-bottom: 35px;
  }
  
  .promo-icon {
    width: 70px;
    height: 70px;
  }
  
  .promo-icon i {
    font-size: 2.2rem;
  }
  
  .promo-title {
    font-size: 1.6rem;
  }
  
  .promo-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .promo-list {
    text-align: left;
  }
  
  .promo-cta-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero-container,
  .promo-container {
    padding: 0 20px;
  }
  
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .promo-section {
    padding: 50px 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .hero-highlight {
    font-size: 0.9rem;
    padding: 10px 18px;
    margin-bottom: 30px;
  }
  
  .hero-cta-btn {
    font-size: 1.1rem;
    padding: 16px 30px;
  }
  
  .promo-card {
    padding: 30px 25px;
    border-radius: 18px;
  }
  
  .promo-header {
    margin-bottom: 30px;
    gap: 15px;
  }
  
  .promo-icon {
    width: 60px;
    height: 60px;
  }
  
  .promo-icon i {
    font-size: 2rem;
  }
  
  .promo-title {
    font-size: 1.4rem;
  }
  
  .promo-list li {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  
  .promo-list li i {
    font-size: 1.1rem;
  }
  
  .promo-cta-btn {
    padding: 20px 25px;
    font-size: 1rem;
  }
  
  .promo-cta-btn i {
    font-size: 1.6rem;
  }
}