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

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

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

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

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

button, .btn {
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a2e5c 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 50%), 
              radial-gradient(ellipse at 80% 20%, rgba(255, 69, 0, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 600px;
}

.hero-text {
  order: 1;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF6347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.hero-description {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

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

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.hero-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.5s ease;
}

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

.hero-btn--primary {
  background: linear-gradient(135deg, #FF6B35, #F7931E, #FFD700);
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

.hero-btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #FFD700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.hero-btn--secondary:hover {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.hero-features {
  display: flex;
  gap: 30px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.hero-feature i {
  color: #FFD700;
  font-size: 1.2rem;
}

.hero-feature span {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

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

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

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

.hero-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  animation: pulse 2s infinite;
}

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

.hero-badge i {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
  
  .hero-features {
    gap: 20px;
  }
  
  .hero-feature {
    padding: 10px 16px;
  }
  
  .hero-feature span {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text {
    order: 2;
  }
  
  .hero-image {
    order: 1;
  }
  
  .hero-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 14px 28px;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .hero-feature {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-badge {
    position: relative;
    top: 0;
    right: 0;
    margin: 20px auto 0;
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }
  
  .hero-feature {
    padding: 8px 12px;
  }
  
  .hero-feature span {
    font-size: 0.85rem;
  }
  
  .hero-badge {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

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

.header.scrolled {
  background: rgba(10, 10, 35, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}

.header-logo {
  flex-shrink: 0;
}

.logo-link {
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 40px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
}

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

.nav-link.active {
  color: #FFD700;
  background: rgba(255, 215, 0, 0.15);
}

.nav-link.active::before {
  width: 80%;
}

.header-cta {
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #FF6B35, #F7931E, #FFD700);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 25px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

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

.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: 5px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #FFD700;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

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

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

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

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

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100%;
  background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  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, 215, 0, 0.2);
  background: rgba(255, 215, 0, 0.05);
}

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

.mobile-menu-close {
  background: none;
  border: none;
  color: #FFD700;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

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

.mobile-nav {
  padding: 20px 0;
}

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

.mobile-nav-item {
  margin: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 25px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav-link:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  border-left-color: #FFD700;
  padding-left: 30px;
}

.mobile-nav-link.active {
  background: rgba(255, 215, 0, 0.15);
  color: #FFD700;
  border-left-color: #FFD700;
}

.mobile-nav-link i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.mobile-cta-item {
  margin-top: 30px;
  padding: 0 25px;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #FF6B35, #F7931E, #FFD700);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  border-radius: 25px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  border: none;
  margin: 0;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .header-content {
    height: 65px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .nav-list {
    gap: 25px;
  }
  
  .header-nav {
    margin: 0 30px;
  }
}

@media (max-width: 870px) {
  .header-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-content {
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .mobile-menu {
    max-width: 280px;
  }
  
  .mobile-menu-header {
    padding: 18px 20px;
  }
  
  .mobile-logo {
    font-size: 1.3rem;
  }
  
  .mobile-nav-link {
    padding: 16px 20px;
    font-size: 1rem;
  }
  
  .mobile-cta-item {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }
  
  .header-content {
    height: 55px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .mobile-menu {
    max-width: 100%;
  }
  
  .mobile-menu-header {
    padding: 15px 15px;
  }
  
  .mobile-logo {
    font-size: 1.2rem;
  }
  
  .mobile-nav-link {
    padding: 14px 15px;
    font-size: 0.95rem;
  }
  
  .mobile-cta-item {
    padding: 0 15px;
  }
  
  .mobile-cta-btn {
    padding: 14px 18px;
    font-size: 1rem;
  }
}

/* Add top margin to prevent content from being hidden behind fixed header */
body {
  margin-top: 70px;
}

@media (max-width: 768px) {
  body {
    margin-top: 60px;
  }
}

@media (max-width: 480px) {
  body {
    margin-top: 55px;
  }
}

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

.system-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.system-content {
  width: 100%;
}

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

.system-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

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

.system-text {
  order: 1;
}

.system-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
}

.system-description strong {
  color: #FFD700;
  font-weight: 600;
}

.system-benefits {
  margin: 40px 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
}

.benefits-title {
  font-size: 1.4rem;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: 600;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

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

.benefit-item:hover {
  padding-left: 10px;
  color: #FFD700;
}

.benefit-item i {
  color: #FF6B35;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.benefit-item span {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.benefit-item:hover span {
  color: #FFD700;
}

.system-final p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
  margin: 0;
}

.system-final strong {
  color: #FFD700;
  font-weight: 600;
}

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

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

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

.system-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
}

.tech-badge {
  background: linear-gradient(135deg, #00BFFF, #1E90FF);
  color: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 191, 255, 0.4);
  font-size: 0.9rem;
}

.tech-badge i {
  font-size: 1.1rem;
}

.system-cta {
  text-align: center;
  margin-top: 40px;
}

.system-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(135deg, #FF6B35, #F7931E, #FFD700);
  color: #000;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.system-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.5s ease;
}

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

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

.system-btn i {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .system-title {
    font-size: 2.4rem;
  }
  
  .system-grid {
    grid-template-columns: 1fr 350px;
    gap: 40px;
  }
  
  .system-description p {
    font-size: 1rem;
  }
  
  .benefits-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .system-section {
    padding: 80px 0;
  }
  
  .system-header {
    margin-bottom: 40px;
  }
  
  .system-title {
    font-size: 2rem;
    line-height: 1.4;
  }
  
  .system-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .system-text {
    order: 2;
  }
  
  .system-image {
    order: 1;
  }
  
  .system-description {
    text-align: left;
  }
  
  .system-benefits {
    text-align: left;
    padding: 25px 20px;
  }
  
  .system-final {
    text-align: left;
  }
  
  .system-img {
    max-width: 100%;
  }
  
  .tech-badge {
    position: relative;
    margin: 20px auto 0;
    display: inline-flex;
  }
  
  .system-overlay {
    position: static;
    justify-content: center;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .system-container {
    padding: 0 15px;
  }
  
  .system-title {
    font-size: 1.8rem;
  }
  
  .system-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .system-benefits {
    padding: 20px 15px;
  }
  
  .benefits-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .benefit-item {
    padding: 10px 0;
    gap: 12px;
  }
  
  .benefit-item i {
    font-size: 1.1rem;
  }
  
  .benefit-item span {
    font-size: 0.9rem;
  }
  
  .system-final p {
    font-size: 0.95rem;
  }
  
  .system-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .tech-badge {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

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

.football-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 70% 30%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

.football-content {
  width: 100%;
}

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

.football-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #00BFFF, #1E90FF, #0080FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

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

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

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

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

.football-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px;
}

.prediction-badge {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  font-size: 0.9rem;
}

.prediction-badge i {
  font-size: 1.1rem;
}

.football-text {
  order: 2;
}

.football-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
}

.football-description strong {
  color: #00BFFF;
  font-weight: 600;
}

.football-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(0, 191, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  gap: 20px;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 191, 255, 0.4);
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00BFFF, #1E90FF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

.feature-content h3 {
  font-size: 1.3rem;
  color: #00BFFF;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.feature-content strong {
  color: #FFD700;
  font-weight: 600;
}

.football-security {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 50px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.security-title {
  font-size: 1.5rem;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.security-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  text-align: justify;
}

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

.security-content strong {
  color: #FFD700;
  font-weight: 600;
}

.login-link {
  color: #00BFFF;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.login-link:hover {
  color: #FFD700;
}

.football-advanced {
  margin-bottom: 50px;
}

.advanced-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.advanced-title {
  font-size: 1.8rem;
  color: #00BFFF;
  margin-bottom: 25px;
  font-weight: 600;
}

.advanced-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  text-align: justify;
}

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

.advanced-text strong {
  color: #FFD700;
  font-weight: 600;
}

.advanced-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.advanced-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 191, 255, 0.3);
  transform: translateX(5px);
}

.advanced-feature i {
  color: #00BFFF;
  font-size: 2rem;
  width: 50px;
  text-align: center;
}

.advanced-feature h4 {
  font-size: 1.2rem;
  color: #FFD700;
  margin-bottom: 5px;
  font-weight: 600;
}

.advanced-feature span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.football-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(135deg, #00BFFF, #1E90FF, #0080FF);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 191, 255, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.football-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.5s ease;
}

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

.football-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 191, 255, 0.6);
}

.football-btn i {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .football-title {
    font-size: 2.2rem;
  }
  
  .football-grid {
    grid-template-columns: 320px 1fr;
    gap: 40px;
  }
  
  .football-features {
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px;
  }
  
  .advanced-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .football-section {
    padding: 80px 0;
  }
  
  .football-header {
    margin-bottom: 40px;
  }
  
  .football-title {
    font-size: 1.9rem;
    line-height: 1.4;
  }
  
  .football-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .football-image {
    order: 1;
  }
  
  .football-text {
    order: 2;
    text-align: left;
  }
  
  .football-img {
    max-width: 100%;
  }
  
  .prediction-badge {
    position: relative;
    margin: 20px auto 0;
    display: inline-flex;
  }
  
  .football-overlay {
    position: static;
    justify-content: center;
    padding: 0;
  }
  
  .football-features {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
  
  .feature-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .feature-icon {
    align-self: center;
  }
  
  .football-security {
    padding: 30px 25px;
    text-align: left;
  }
  
  .advanced-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .advanced-text {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .football-container {
    padding: 0 15px;
  }
  
  .football-title {
    font-size: 1.6rem;
  }
  
  .football-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .feature-content h3 {
    font-size: 1.2rem;
  }
  
  .feature-content p {
    font-size: 0.95rem;
  }
  
  .football-security {
    padding: 25px 20px;
  }
  
  .security-title {
    font-size: 1.3rem;
  }
  
  .security-content p {
    font-size: 1rem;
  }
  
  .advanced-title {
    font-size: 1.5rem;
  }
  
  .advanced-text p {
    font-size: 1rem;
  }
  
  .advanced-feature {
    padding: 15px;
  }
  
  .advanced-feature i {
    font-size: 1.5rem;
    width: 40px;
  }
  
  .advanced-feature h4 {
    font-size: 1.1rem;
  }
  
  .advanced-feature span {
    font-size: 0.9rem;
  }
  
  .football-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .prediction-badge {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* Wallet Section */
.wallet-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 25%, #16213e 50%, #0a2e5c 75%, #0f0f23 100%);
  position: relative;
  overflow: hidden;
}

.wallet-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(0, 191, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.wallet-content {
  width: 100%;
}

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

.wallet-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

.wallet-intro {
  margin-bottom: 60px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
  align-items: center;
}

.intro-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
  margin: 0;
}

.intro-text strong {
  color: #FFD700;
  font-weight: 600;
}

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

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

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

.blockchain-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  padding: 12px 18px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  font-size: 0.85rem;
}

.blockchain-badge i {
  font-size: 1rem;
}

.wallet-features {
  margin-bottom: 60px;
}

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

.wallet-feature {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.wallet-feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.feature-header i {
  color: #FFD700;
  font-size: 1.5rem;
}

.feature-header h3 {
  font-size: 1.3rem;
  color: #FFD700;
  margin: 0;
  font-weight: 600;
}

.wallet-feature p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.wallet-feature strong {
  color: #FFA500;
  font-weight: 600;
}

.wallet-technical {
  margin-bottom: 60px;
}

.technical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.technical-title,
.mobile-title {
  font-size: 1.6rem;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: 600;
}

.technical-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.tech-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(0, 191, 255, 0.1);
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 191, 255, 0.3);
}

.tech-item i {
  color: #00BFFF;
  font-size: 1.8rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.tech-item h4 {
  font-size: 1.2rem;
  color: #00BFFF;
  margin-bottom: 10px;
  font-weight: 600;
}

.tech-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.tech-item strong {
  color: #FFD700;
  font-weight: 600;
}

.mobile-features p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  text-align: justify;
}

.mobile-features p:last-child {
  margin-bottom: 0;
}

.mobile-features strong {
  color: #FFD700;
  font-weight: 600;
}

.wallet-security {
  margin-bottom: 60px;
}

.security-section-title {
  font-size: 2rem;
  color: #FF6B35;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

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

.security-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s ease;
}

.security-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 53, 0.4);
}

.security-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 2rem;
}

.security-card h4 {
  font-size: 1.3rem;
  color: #FF6B35;
  margin-bottom: 15px;
  font-weight: 600;
}

.security-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: left;
}

.security-card strong {
  color: #FFD700;
  font-weight: 600;
}

.wallet-special {
  margin-bottom: 60px;
}

.special-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: start;
}

.special-title {
  font-size: 1.8rem;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: 600;
}

.special-item {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 4px solid #FFD700;
}

.special-item h4 {
  font-size: 1.2rem;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 600;
}

.special-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.special-item strong {
  color: #FFA500;
  font-weight: 600;
}

.special-signup {
  background: rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.special-signup p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.register-link {
  color: #00BFFF;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.register-link:hover {
  color: #FFD700;
}

.latest-version {
  position: sticky;
  top: 20px;
}

.version-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(0, 191, 255, 0.3);
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.version-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
}

.version-header i {
  color: #00BFFF;
  font-size: 1.5rem;
}

.version-header h3 {
  color: #00BFFF;
  font-size: 1.4rem;
  margin: 0;
  font-weight: 600;
}

.version-card h4 {
  font-size: 1.3rem;
  color: #FFD700;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
}

.version-card > p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  text-align: center;
}

.version-card strong {
  color: #FFA500;
  font-weight: 600;
}

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

.version-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.version-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.version-feature i {
  color: #00BFFF;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.version-feature span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

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

.wallet-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
  color: #000;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.wallet-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.5s ease;
}

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

.wallet-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.wallet-btn i {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .wallet-title {
    font-size: 2.2rem;
  }
  
  .intro-grid {
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }
  
  .technical-grid,
  .special-grid {
    gap: 30px;
  }
  
  .special-grid {
    grid-template-columns: 1fr 350px;
  }
}

@media (max-width: 768px) {
  .wallet-section {
    padding: 80px 0;
  }
  
  .wallet-header {
    margin-bottom: 40px;
  }
  
  .wallet-title {
    font-size: 1.9rem;
    line-height: 1.4;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .intro-text {
    order: 2;
    text-align: left;
  }
  
  .intro-image {
    order: 1;
  }
  
  .blockchain-badge {
    position: relative;
    top: 0;
    left: 0;
    margin: 20px auto 0;
    display: inline-flex;
  }
  
  .feature-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }
  
  .technical-grid,
  .special-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .latest-version {
    position: static;
  }
  
  .wallet-feature,
  .security-card {
    text-align: left;
  }
  
  .security-icon {
    margin: 0 0 15px 0;
    align-self: flex-start;
  }
  
  .security-card {
    display: flex;
    gap: 20px;
    text-align: left;
  }
  
  .security-card > div {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .wallet-container {
    padding: 0 15px;
  }
  
  .wallet-title {
    font-size: 1.6rem;
  }
  
  .intro-text p {
    font-size: 1rem;
  }
  
  .wallet-feature,
  .security-card,
  .version-card {
    padding: 20px;
  }
  
  .feature-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .tech-item {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }
  
  .tech-item i {
    margin-top: 0;
    align-self: flex-start;
  }
  
  .security-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .security-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin: 0 auto 15px;
  }
  
  .security-card > div {
    text-align: left;
  }
  
  .special-item {
    padding: 15px;
  }
  
  .special-signup {
    padding: 20px;
  }
  
  .wallet-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .blockchain-badge {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
}

/* Platform Section */
.platform-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #16213e 0%, #0f3460 25%, #1a1a2e 50%, #0a2e5c 75%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 191, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.platform-content {
  width: 100%;
}

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

.platform-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #FF6B35, #FFD700, #00BFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

.platform-intro {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  text-align: justify;
}

.intro-content p:last-child {
  margin-bottom: 0;
}

.intro-content strong {
  color: #FFD700;
  font-weight: 600;
}

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

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

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

.platform-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}

.jackpot-badge {
  background: linear-gradient(135deg, #FF6B35, #FFD700);
  color: #000;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  font-size: 0.9rem;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  }
  to {
    box-shadow: 0 8px 35px rgba(255, 107, 53, 0.7);
  }
}

.jackpot-badge i {
  font-size: 1.1rem;
}

.popular-games {
  margin-bottom: 80px;
}

.games-title {
  font-size: 2rem;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

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

.game-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.game-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.game-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #000;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.game-card h4 {
  font-size: 1.1rem;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.game-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  position: relative;
  z-index: 1;
}

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

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

.feature-title {
  font-size: 1.8rem;
  color: #00BFFF;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

.feature-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  border-left: 4px solid #00BFFF;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(5px);
}

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

.feature-item h4 {
  font-size: 1.3rem;
  color: #00BFFF;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.feature-item strong {
  color: #FFD700;
  font-weight: 600;
}

.platform-experience {
  margin-bottom: 80px;
}

.experience-content {
  text-align: center;
  margin-bottom: 50px;
}

.experience-title {
  font-size: 2rem;
  color: #FF6B35;
  margin-bottom: 25px;
  font-weight: 600;
}

.experience-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.experience-content p:last-child {
  margin-bottom: 0;
}

.experience-content strong {
  color: #FFD700;
  font-weight: 600;
}

.bet168-link {
  color: #00BFFF;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.bet168-link:hover {
  color: #FFD700;
}

.platform-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF6B35, #FFD700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #000;
  font-size: 1.5rem;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.platform-cta {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  padding: 50px;
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.3);
  backdrop-filter: blur(15px);
}

.cta-title {
  font-size: 2.2rem;
  color: #FF6B35;
  margin-bottom: 15px;
  font-weight: 600;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(135deg, #FF6B35, #FFD700, #00BFFF);
  color: #000;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.platform-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.5s ease;
}

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

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

.platform-btn i {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .platform-title {
    font-size: 2.2rem;
  }
  
  .platform-intro {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }
  
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .platform-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 80px 0;
  }
  
  .platform-header {
    margin-bottom: 40px;
  }
  
  .platform-title {
    font-size: 1.9rem;
    line-height: 1.4;
  }
  
  .platform-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .intro-content {
    order: 2;
    text-align: left;
  }
  
  .platform-image {
    order: 1;
  }
  
  .platform-img {
    max-width: 100%;
  }
  
  .jackpot-badge {
    position: relative;
    margin: 20px auto 0;
    display: inline-flex;
  }
  
  .platform-overlay {
    position: static;
    justify-content: center;
    padding: 0;
  }
  
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .platform-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .platform-cta {
    padding: 40px 30px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .platform-container {
    padding: 0 15px;
  }
  
  .platform-title {
    font-size: 1.6rem;
  }
  
  .intro-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .game-card {
    padding: 20px;
  }
  
  .game-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .feature-item {
    padding: 20px;
  }
  
  .feature-title {
    font-size: 1.5rem;
  }
  
  .experience-title {
    font-size: 1.6rem;
  }
  
  .experience-content p {
    font-size: 1rem;
  }
  
  .platform-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stat-item {
    padding: 25px 15px;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .platform-cta {
    padding: 30px 20px;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .platform-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .jackpot-badge {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* Choice Section */
.choice-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a2e5c 0%, #16213e 25%, #1a1a2e 50%, #0f3460 75%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.choice-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 10%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 90%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 60% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.choice-content {
  width: 100%;
}

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

.choice-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #00BFFF, #FFD700, #FF6B35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

.choice-intro {
  margin-bottom: 70px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  align-items: center;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  text-align: justify;
}

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

.intro-text strong {
  color: #00BFFF;
  font-weight: 600;
}

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

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

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

.ai-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #00BFFF, #1E90FF);
  color: #fff;
  padding: 12px 18px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 191, 255, 0.4);
  font-size: 0.85rem;
  animation: pulse-ai 2s ease-in-out infinite;
}

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

.ai-badge i {
  font-size: 1rem;
}

.choice-features {
  margin-bottom: 60px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(0, 191, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 191, 255, 0.4);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.card-header i {
  color: #00BFFF;
  font-size: 1.5rem;
}

.card-header h3 {
  font-size: 1.3rem;
  color: #00BFFF;
  margin: 0;
  font-weight: 600;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.feature-card strong {
  color: #FFD700;
  font-weight: 600;
}

.choice-mobile {
  margin-bottom: 60px;
  text-align: center;
}

.mobile-section-title {
  font-size: 1.8rem;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: 600;
}

.mobile-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
  max-width: 900px;
  margin: 0 auto;
}

.mobile-content strong {
  color: #FFD700;
  font-weight: 600;
}

.choice-login {
  margin-bottom: 60px;
}

.login-section-title {
  font-size: 1.8rem;
  color: #FF6B35;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

.login-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: center;
}

.login-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
  margin: 0;
}

.login-info strong {
  color: #FF6B35;
  font-weight: 600;
}

.login-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.login-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.login-feature i {
  color: #FF6B35;
  font-size: 1.3rem;
  width: 25px;
  text-align: center;
}

.login-feature span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
}

.choice-autobet {
  margin-bottom: 60px;
  text-align: center;
}

.autobet-title {
  font-size: 1.8rem;
  color: #00BFFF;
  margin-bottom: 25px;
  font-weight: 600;
}

.autobet-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
  max-width: 900px;
  margin: 0 auto;
}

.autobet-content strong {
  color: #00BFFF;
  font-weight: 600;
}

.choice-special {
  margin-bottom: 70px;
}

.special-section-title {
  font-size: 2rem;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

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

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

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

.special-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.special-content h4 {
  font-size: 1.2rem;
  color: #FFD700;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

.choice-premium {
  margin-bottom: 60px;
}

.premium-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
}

.premium-title {
  font-size: 1.8rem;
  color: #FF6B35;
  margin-bottom: 30px;
  font-weight: 600;
}

.premium-item {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 4px solid #FF6B35;
}

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

.premium-item h4 {
  font-size: 1.2rem;
  color: #FF6B35;
  margin-bottom: 10px;
  font-weight: 600;
}

.premium-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.premium-item strong {
  color: #FFD700;
  font-weight: 600;
}

.promotion-section {
  position: sticky;
  top: 20px;
}

.promotion-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.promotion-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
}

.promotion-header i {
  color: #FFD700;
  font-size: 1.5rem;
}

.promotion-header h3 {
  color: #FFD700;
  font-size: 1.4rem;
  margin: 0;
  font-weight: 600;
}

.promotion-card > p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  text-align: center;
}

.promotion-link {
  color: #00BFFF;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.promotion-link:hover {
  color: #FFD700;
}

.promotion-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.promo-item {
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.promo-item h4 {
  font-size: 1rem;
  color: #FFD700;
  margin-bottom: 5px;
  font-weight: 600;
}

.promo-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.choice-final {
  margin-bottom: 50px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(0, 191, 255, 0.2);
}

.final-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
  margin: 0;
}

.final-content strong {
  color: #00BFFF;
  font-weight: 600;
}

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

.choice-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(135deg, #00BFFF, #FFD700, #FF6B35);
  color: #000;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 191, 255, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.choice-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.5s ease;
}

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

.choice-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 191, 255, 0.6);
}

.choice-btn i {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .choice-title {
    font-size: 2.1rem;
  }
  
  .intro-grid {
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }
  
  .login-grid,
  .premium-grid {
    gap: 30px;
  }
  
  .premium-grid {
    grid-template-columns: 1fr 350px;
  }
}

@media (max-width: 768px) {
  .choice-section {
    padding: 80px 0;
  }
  
  .choice-header {
    margin-bottom: 40px;
  }
  
  .choice-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .intro-text {
    order: 2;
    text-align: left;
  }
  
  .intro-image {
    order: 1;
  }
  
  .choice-img {
    max-width: 100%;
  }
  
  .ai-badge {
    position: relative;
    top: 0;
    right: 0;
    margin: 20px auto 0;
    display: inline-flex;
  }
  
  .feature-row {
    grid-template-columns: 1fr;
  }
  
  .login-grid,
  .premium-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .promotion-section {
    position: static;
  }
  
  .special-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .special-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .choice-container {
    padding: 0 15px;
  }
  
  .choice-title {
    font-size: 1.5rem;
  }
  
  .intro-text p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .mobile-section-title,
  .login-section-title,
  .autobet-title,
  .premium-title {
    font-size: 1.4rem;
  }
  
  .special-section-title {
    font-size: 1.6rem;
  }
  
  .login-features {
    gap: 15px;
  }
  
  .login-feature {
    padding: 12px 15px;
  }
  
  .special-item {
    padding: 15px 20px;
  }
  
  .premium-item {
    padding: 15px;
  }
  
  .promotion-card {
    padding: 25px 20px;
  }
  
  .choice-final {
    padding: 25px 20px;
  }
  
  .final-content p {
    font-size: 1rem;
  }
  
  .choice-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .ai-badge {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

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

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

.footer-content {
  width: 100%;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 400px;
}

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

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  text-align: justify;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
  color: #FFD700;
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

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

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

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

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

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

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

.footer-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

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

.feature-highlight:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.highlight-content h4 {
  font-size: 1rem;
  color: #FFD700;
  margin-bottom: 5px;
  font-weight: 600;
}

.highlight-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}

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

.footer-legal {
  text-align: center;
  margin-bottom: 20px;
}

.legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #FFD700;
}

.separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
}

.copyright {
  margin-bottom: 0;
}

.copyright p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-disclaimer {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 10px;
  padding: 15px 20px;
  text-align: center;
}

.disclaimer-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.5;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .footer {
    padding: 50px 0 20px;
  }
  
  .footer-main {
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-links {
    gap: 30px;
  }
  
  .footer-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .feature-highlight {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 18px;
  }
  
  .highlight-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 15px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 35px;
  }
  
  .footer-brand {
    max-width: 100%;
    text-align: center;
  }
  
  .footer-description {
    text-align: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-highlight {
    flex-direction: row;
    text-align: left;
    gap: 15px;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer {
    padding: 35px 0 15px;
    margin-top: 30px;
  }
  
  .footer-main {
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  .feature-highlight {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .highlight-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .highlight-content h4 {
    font-size: 0.95rem;
  }
  
  .highlight-content p {
    font-size: 0.8rem;
  }
  
  .footer-bottom {
    padding-top: 25px;
  }
  
  .legal-links {
    gap: 8px;
  }
  
  .legal-link {
    font-size: 0.85rem;
  }
  
  .copyright p {
    font-size: 0.85rem;
  }
  
  .footer-disclaimer {
    padding: 12px 15px;
  }
  
  .disclaimer-text {
    font-size: 0.85rem;
    flex-direction: column;
    gap: 8px;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  min-height: 60px;
}

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

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

.sticky-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

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

.btn-text {
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
}

.sticky-btn:hover .btn-text {
  transform: translateY(-1px);
}

/* Button Variants */
.sticky-btn--login {
  background: linear-gradient(135deg, #00BFFF, #1E90FF);
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn--login:hover {
  background: linear-gradient(135deg, #1E90FF, #0080FF);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 191, 255, 0.4);
}

.sticky-btn--register {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000000;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.sticky-btn--register:hover {
  background: linear-gradient(135deg, #FFA500, #FF8C00);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.sticky-btn--bonus {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: #ffffff;
  position: relative;
  animation: pulse-glow 2s ease-in-out infinite;
}

.sticky-btn--bonus:hover {
  background: linear-gradient(135deg, #F7931E, #FF4500);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5);
  animation: none;
}

.sticky-btn--bonus::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #FF6B35, #FFD700, #FF6B35);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  animation: border-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
  }
}

@keyframes border-glow {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 12px 8px;
    font-size: 0.9rem;
    min-height: 55px;
    gap: 6px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .btn-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.8rem;
    min-height: 50px;
    flex-direction: column;
    gap: 4px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
  }
  
  .btn-text {
    font-size: 0.75rem;
    line-height: 1.2;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .sticky-btn {
    padding: 8px 4px;
    min-height: 45px;
  }
  
  .sticky-btn i {
    font-size: 0.8rem;
  }
  
  .btn-text {
    font-size: 0.7rem;
  }
}

/* Prevent content overlap with sticky buttons */
body {
  padding-bottom: 60px;
}

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

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

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

/* Ensure buttons stay above other content */
.sticky-buttons {
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3), 0 -1px 3px rgba(0, 0, 0, 0.2);
}

/* Add subtle animation on page load */
.sticky-buttons {
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Login Section */
.login-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a2e5c 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 50%), 
    radial-gradient(ellipse at 80% 20%, rgba(255, 69, 0, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.login-content {
  max-width: 450px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.login-header {
  text-align: center;
  margin-bottom: 40px;
}

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.login-title {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF6347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  font-family: 'Prompt', sans-serif;
}

.login-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

.login-form-wrapper {
  margin-bottom: 30px;
}

.error-message {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 20px;
  color: #ff6b6b;
  font-size: 0.9rem;
}

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

.error-message i {
  font-size: 1rem;
  flex-shrink: 0;
}

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

.form-label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #FFD700;
  margin-bottom: 8px;
  font-family: 'Prompt', sans-serif;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 15px;
  color: #FFD700;
  font-size: 1rem;
  z-index: 10;
}

.form-input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

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

.form-input.error {
  border-color: #ff6b6b;
  background: rgba(220, 53, 69, 0.1);
}

.password-toggle {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: color 0.3s ease;
  z-index: 10;
}

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

.field-error {
  display: none;
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 5px;
  padding-left: 5px;
}

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

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-btn {
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #FF6B35, #F7931E, #FFD700);
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Prompt', sans-serif;
}

.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.5s ease;
}

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

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

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

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

.btn-loader {
  display: none;
}

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

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

.register-btn {
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Prompt', sans-serif;
}

.register-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.login-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
  flex-direction: column;
  text-align: center;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
}

.feature-item i {
  color: #FFD700;
  font-size: 1.1rem;
}

.feature-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 60px 0;
  }
  
  .login-content {
    padding: 30px 25px;
    margin: 20px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 14px 14px 14px 42px;
  }
  
  .login-btn {
    padding: 14px 18px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 0 15px;
  }
  
  .login-content {
    padding: 25px 20px;
    margin: 15px 0;
    max-width: 100%;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .login-subtitle {
    font-size: 0.85rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 12px 12px 38px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 0.9rem;
  }
  
  .password-toggle {
    right: 12px;
  }
  
  .login-btn {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .login-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .feature-item {
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px 12px;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 50%), 
    radial-gradient(ellipse at 80% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.register-content {
  max-width: 450px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.register-header {
  text-align: center;
  margin-bottom: 40px;
}

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.register-title {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF6347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  font-family: 'Prompt', sans-serif;
}

.register-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

.register-form-wrapper {
  margin-bottom: 30px;
}

.error-message {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 20px;
  color: #ff6b6b;
  font-size: 0.9rem;
}

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

.error-message i {
  font-size: 1rem;
  flex-shrink: 0;
}

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

.form-label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #FFD700;
  margin-bottom: 8px;
  font-family: 'Prompt', sans-serif;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 15px;
  color: #FFD700;
  font-size: 1rem;
  z-index: 10;
}

.form-input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

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

.form-input.error {
  border-color: #ff6b6b;
  background: rgba(220, 53, 69, 0.1);
}

.field-error {
  display: none;
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 5px;
  padding-left: 5px;
}

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

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.register-btn {
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #FF6B35, #F7931E, #FFD700);
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Prompt', sans-serif;
}

.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.5s ease;
}

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

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

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

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

.btn-loader {
  display: none;
}

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

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

.login-btn {
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Prompt', sans-serif;
}

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

.register-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
  flex-direction: column;
  text-align: center;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
}

.feature-item i {
  color: #FFD700;
  font-size: 1.1rem;
}

.feature-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 60px 0;
  }
  
  .register-content {
    padding: 30px 25px;
    margin: 20px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 14px 14px 14px 42px;
  }
  
  .register-btn {
    padding: 14px 18px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .register-container {
    padding: 0 15px;
  }
  
  .register-content {
    padding: 25px 20px;
    margin: 15px 0;
    max-width: 100%;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .register-subtitle {
    font-size: 0.85rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 12px 12px 38px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 0.9rem;
  }
  
  .register-btn {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .register-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .feature-item {
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px 12px;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at center, rgba(255, 215, 0, 0.15) 0%, transparent 50%), 
    radial-gradient(ellipse at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-content {
  margin: 0 auto;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  font-family: 'Prompt', sans-serif;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* Promotion Sections */
.promotion-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.promotion-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.promotion-header {
  text-align: center;
  margin-bottom: 40px;
}

.promotion-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.promotion-badge i {
  font-size: 1rem;
}

.promotion-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #FFD700;
  margin: 0;
  font-family: 'Prompt', sans-serif;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

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

.feature-item:hover {
  padding-left: 10px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 10px;
}

.feature-item i {
  color: #00BFFF;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(135deg, #FF6B35, #F7931E, #FFD700);
  color: #000;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: 'Prompt', sans-serif;
}

.cta-button::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.5s ease;
}

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

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.cta-button i {
  font-size: 1.1rem;
}

/* Specific Promotion Styling */
#new-member-bonus .promotion-badge {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: #ffffff;
}

#new-member-bonus .feature-item i {
  color: #FF6B35;
}

#daily-deposit-bonus .promotion-badge {
  background: linear-gradient(135deg, #00BFFF, #1E90FF);
  color: #ffffff;
}

#daily-deposit-bonus .feature-item i {
  color: #00BFFF;
}

#slot-free-credit .promotion-badge {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000000;
}

#slot-free-credit .feature-item i {
  color: #FFD700;
}

#cashback-bonus .promotion-badge {
  background: linear-gradient(135deg, #32CD32, #00FF7F);
  color: #000000;
}

#cashback-bonus .feature-item i {
  color: #32CD32;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .promotion-title {
    font-size: 1.9rem;
  }
  
  .promotion-content {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.4;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-content {
    padding: 30px 25px;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .feature-item {
    flex-direction: column;
    gap: 10px;
    text-align: left;
  }
  
  .feature-item i {
    align-self: flex-start;
  }
  
  .cta-button {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-container,
  .promotion-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .promotion-content {
    padding: 25px 20px;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .promotion-badge {
    padding: 6px 15px;
    font-size: 0.85rem;
  }
  
  .feature-item {
    padding: 12px 0;
  }
  
  .feature-item span {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}