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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Sarabun', sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #262650 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;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #4ecdc4;
}

.btn-secondary:hover {
  background: #4ecdc4;
  color: #0a0a0a;
  transform: translateY(-2px);
}

/* Hero Section Styles */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.hero-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #b8b8b8;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(78, 205, 196, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(78, 205, 196, 0.1);
  border-color: rgba(78, 205, 196, 0.4);
  transform: translateY(-2px);
}

.feature-item i {
  color: #4ecdc4;
  font-size: 1.2rem;
}

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

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

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

.hero-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  animation: pulse 2s infinite;
}

.hero-badge i {
  color: #ffd700;
}

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .hero-content {
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px 30px;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .hero-text {
    order: 2;
    max-width: 100%;
  }
  
  .hero-image {
    order: 1;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .feature-item {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 0.75rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .hero-badge {
    top: 10px;
    right: 10px;
    padding: 8px 15px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .feature-item {
    padding: 10px 14px;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
}

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

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

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

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

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

.logo-link:hover {
  color: #4ecdc4;
}

.logo-link i {
  font-size: 1.8rem;
  color: #4ecdc4;
}

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

.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #4ecdc4;
  background: rgba(78, 205, 196, 0.1);
}

.nav-link i {
  font-size: 1rem;
  opacity: 0.8;
}

.nav-link:hover i {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-button {
  padding: 12px 24px;
  font-weight: 600;
  animation: pulse-glow 2s infinite;
}

.desktop-only {
  display: flex;
}

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

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

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

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

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

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

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

.mobile-menu-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

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

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

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.mobile-logo i {
  font-size: 1.5rem;
  color: #4ecdc4;
}

.mobile-logo span {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.mobile-menu-close:hover {
  background: rgba(78, 205, 196, 0.1);
  color: #4ecdc4;
}

.mobile-nav {
  flex: 1;
  padding: 2rem 0;
}

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

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

.mobile-nav-item.mobile-cta {
  border-bottom: none;
  margin-top: 2rem;
  padding: 0 1.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  text-decoration: none;
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-link:hover {
  background: rgba(78, 205, 196, 0.1);
  color: #4ecdc4;
}

.mobile-nav-link:hover::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #4ecdc4;
}

.mobile-nav-link i {
  font-size: 1.2rem;
  opacity: 0.8;
  width: 20px;
}

.mobile-nav-link:hover i {
  opacity: 1;
}

.mobile-cta-button {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1rem;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(255, 107, 53, 0.5), 0 0 30px rgba(255, 107, 53, 0.2);
  }
  100% {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 15px;
  }
  
  .nav-list {
    gap: 1.5rem;
  }
  
  .nav-link {
    padding: 6px 12px;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-container {
    height: 60px;
    padding: 0 15px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-link i {
    font-size: 1.5rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .desktop-only {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 10px;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .logo-link i {
    font-size: 1.3rem;
  }
  
  .logo-link {
    gap: 8px;
  }
  
  .mobile-menu-toggle {
    width: 35px;
    height: 35px;
  }
  
  .hamburger-line {
    width: 20px;
    height: 2px;
    margin: 2px 0;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-nav-link {
    padding: 1.25rem;
    font-size: 1rem;
  }
}

/* Lottery Overview Section */
.lottery-overview-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
}

.lottery-overview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(78, 205, 196, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 40%);
  z-index: 0;
}

.lottery-overview-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 900px;
  margin: 0 auto;
}

.lottery-overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

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

.intro-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #e8e8e8;
}

.lottery-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #d0d0d0;
}

.lottery-text strong {
  color: #4ecdc4;
  font-weight: 600;
}

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

.overview-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.features-overlay {
  position: absolute;
  top: -20px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-badge {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

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

.benefits-list {
  margin-top: 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  list-style: none;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(78, 205, 196, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(78, 205, 196, 0.08);
  border-color: rgba(78, 205, 196, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.15);
}

.benefit-item i {
  color: #4ecdc4;
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .lottery-overview-section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .lottery-overview-content {
    gap: 3rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .features-overlay {
    top: -15px;
    right: -15px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .lottery-overview-section {
    padding: 50px 15px;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .lottery-overview-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .lottery-text {
    order: 2;
  }
  
  .lottery-image {
    order: 1;
  }
  
  .intro-paragraph {
    font-size: 1.05rem;
  }
  
  .lottery-text p {
    font-size: 0.95rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .benefit-item {
    padding: 1.25rem;
  }
  
  .features-overlay {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
  }
  
  .feature-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
  }
  
  .intro-paragraph {
    font-size: 1rem;
  }
  
  .lottery-text p {
    font-size: 0.9rem;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .benefit-item i {
    font-size: 1.5rem;
  }
  
  .feature-badge {
    flex-direction: column;
    gap: 4px;
    padding: 8px 10px;
  }
}

/* Web Huay 24 Section */
.web-huay-24-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #2d2d54 100%);
  position: relative;
}

.web-huay-24-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 70% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(78, 205, 196, 0.06) 0%, transparent 50%);
  z-index: 0;
}

.web-huay-24-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.web-huay-24-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.web-huay-24-text {
  max-width: 100%;
}

.web-huay-24-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #d0d0d0;
}

.web-huay-24-text strong {
  color: #4ecdc4;
  font-weight: 600;
}

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

.web-huay-24-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.web-huay-24-img:hover {
  transform: scale(1.02);
}

.service-badges {
  position: absolute;
  top: -20px;
  left: -20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-badge {
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

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

.registration-process {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 4rem;
  border: 1px solid rgba(78, 205, 196, 0.1);
}

.process-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4ecdc4;
  margin-bottom: 2rem;
  text-align: center;
}

.process-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.process-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #d0d0d0;
}

.process-text strong {
  color: #4ecdc4;
  font-weight: 600;
}

.join-action {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(78, 205, 196, 0.08);
  border-color: rgba(78, 205, 196, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(78, 205, 196, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b8b8b8;
  margin: 0;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .web-huay-24-section {
    padding: 60px 20px;
  }
  
  .web-huay-24-content {
    gap: 3rem;
  }
  
  .process-content {
    gap: 2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .service-badges {
    top: -15px;
    left: -15px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .web-huay-24-section {
    padding: 50px 15px;
  }
  
  .web-huay-24-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .web-huay-24-text {
    order: 2;
  }
  
  .web-huay-24-image {
    order: 1;
  }
  
  .registration-process {
    padding: 2rem;
  }
  
  .process-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .process-text {
    order: 1;
  }
  
  .join-action {
    order: 2;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
  }
  
  .service-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .web-huay-24-text p {
    font-size: 0.9rem;
  }
  
  .process-title {
    font-size: 1.5rem;
  }
  
  .process-text p {
    font-size: 0.9rem;
  }
  
  .registration-process {
    padding: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .feature-title {
    font-size: 1.2rem;
  }
  
  .service-badge {
    flex-direction: column;
    gap: 4px;
    padding: 8px 10px;
  }
}

/* Web Huay 100 Section */
.web-huay-100-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #1a1a2e 100%);
  position: relative;
}

.web-huay-100-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(78, 205, 196, 0.08) 0%, transparent 50%);
  z-index: 0;
}

.web-huay-100-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.web-huay-100-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.web-huay-100-text {
  max-width: 100%;
}

.web-huay-100-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #d0d0d0;
}

.web-huay-100-text strong {
  color: #ff6b35;
  font-weight: 600;
}

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

.web-huay-100-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.web-huay-100-img:hover {
  transform: scale(1.02);
}

.payout-badges {
  position: absolute;
  top: -25px;
  right: -25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.payout-badge {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  white-space: nowrap;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.payout-badge.highlight {
  background: linear-gradient(45deg, #ffd700, #ffb347);
  color: #1a1a2e;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.payout-badge:hover {
  transform: scale(1.05);
}

.payout-badge.highlight:hover {
  transform: scale(1.15);
}

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

.badge-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-title {
  font-size: 0.75rem;
  opacity: 0.9;
}

.badge-rate {
  font-size: 0.9rem;
  font-weight: 700;
}

.lottery-types {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.types-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 2rem;
  text-align: center;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.lottery-type-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.lottery-type-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.lottery-type-item i {
  color: #ff6b35;
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.lottery-type-item span {
  font-size: 1rem;
  line-height: 1.6;
  color: #e8e8e8;
}

.lottery-type-item strong {
  color: #ff6b35;
  font-weight: 600;
}

.backlink-section {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(78, 205, 196, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(78, 205, 196, 0.2);
}

.backlink-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin: 0;
}

.backlink-anchor {
  color: #4ecdc4;
  font-weight: 600;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.backlink-anchor:hover {
  color: #44a08d;
  text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.security-info {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(78, 205, 196, 0.1);
}

.security-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.security-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #4ecdc4;
  margin-bottom: 1.5rem;
}

.security-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin: 0;
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.security-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(78, 205, 196, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(78, 205, 196, 0.3);
}

.security-feature i {
  color: #4ecdc4;
  font-size: 1.2rem;
}

.security-feature span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .web-huay-100-section {
    padding: 60px 20px;
  }
  
  .web-huay-100-content {
    gap: 3rem;
  }
  
  .security-content {
    gap: 2rem;
  }
  
  .types-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .payout-badges {
    top: -20px;
    right: -20px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .web-huay-100-section {
    padding: 50px 15px;
  }
  
  .web-huay-100-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .web-huay-100-text {
    order: 2;
  }
  
  .web-huay-100-image {
    order: 1;
  }
  
  .lottery-types {
    padding: 2rem;
  }
  
  .types-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .security-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .security-features {
    align-items: center;
  }
  
  .payout-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .payout-badge {
    font-size: 0.75rem;
    padding: 8px 12px;
  }
  
  .payout-badge.highlight {
    transform: none;
  }
  
  .payout-badge:hover,
  .payout-badge.highlight:hover {
    transform: scale(1.02);
  }
}

@media (max-width: 480px) {
  .web-huay-100-text p {
    font-size: 0.9rem;
  }
  
  .types-title {
    font-size: 1.5rem;
  }
  
  .lottery-types {
    padding: 1.5rem;
  }
  
  .lottery-type-item {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .security-info {
    padding: 2rem;
  }
  
  .security-title {
    font-size: 1.4rem;
  }
  
  .backlink-section {
    padding: 1.5rem;
  }
  
  .backlink-text {
    font-size: 1rem;
  }
  
  .badge-content {
    text-align: center;
  }
  
  .payout-badge {
    flex-direction: column;
    gap: 4px;
    padding: 8px 10px;
  }
}

/* Web Huay Ruay Section */
.web-huay-ruay-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
}

.web-huay-ruay-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(78, 205, 196, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
  z-index: 0;
}

.web-huay-ruay-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.web-huay-ruay-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.web-huay-ruay-text {
  max-width: 100%;
}

.web-huay-ruay-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #d0d0d0;
}

.web-huay-ruay-text strong {
  color: #4ecdc4;
  font-weight: 600;
}

.inline-link {
  color: #4ecdc4;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.inline-link:hover {
  color: #44a08d;
  text-shadow: 0 0 8px rgba(78, 205, 196, 0.4);
}

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

.web-huay-ruay-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.web-huay-ruay-img:hover {
  transform: scale(1.02);
}

.promotion-badges {
  position: absolute;
  bottom: -20px;
  left: -20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promotion-badge {
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

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

.financial-system {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(78, 205, 196, 0.1);
}

.system-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4ecdc4;
  margin-bottom: 1.5rem;
  text-align: center;
}

.system-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 2rem;
  text-align: center;
}

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

.payment-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 1.5rem;
  background: rgba(78, 205, 196, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(78, 205, 196, 0.2);
  transition: all 0.3s ease;
}

.payment-method:hover {
  background: rgba(78, 205, 196, 0.1);
  border-color: rgba(78, 205, 196, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.15);
}

.payment-method i {
  color: #4ecdc4;
  font-size: 1.5rem;
}

.payment-method span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}

.reviews-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.reviews-section,
.mobile-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.reviews-title,
.mobile-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 1.5rem;
  text-align: center;
}

.reviews-section p,
.mobile-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d0d0d0;
  margin-bottom: 1.5rem;
}

.reviews-section strong,
.mobile-section strong {
  color: #ff6b35;
  font-weight: 600;
}

.support-channels,
.mobile-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-channel,
.mobile-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.support-channel i,
.mobile-feature i {
  color: #ff6b35;
  font-size: 1.1rem;
}

.support-channel span,
.mobile-feature span {
  font-size: 0.9rem;
  color: #ffffff;
}

.security-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(78, 205, 196, 0.1);
}

.security-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4ecdc4;
  margin-bottom: 1.5rem;
  text-align: center;
}

.security-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 2rem;
  text-align: center;
}

.security-description strong {
  color: #4ecdc4;
  font-weight: 600;
}

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

.security-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1.5rem;
  background: rgba(78, 205, 196, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(78, 205, 196, 0.2);
  transition: all 0.3s ease;
}

.security-item:hover {
  background: rgba(78, 205, 196, 0.1);
  border-color: rgba(78, 205, 196, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.15);
}

.security-item i {
  color: #4ecdc4;
  font-size: 1.3rem;
  flex-shrink: 0;
}

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .web-huay-ruay-section {
    padding: 60px 20px;
  }
  
  .web-huay-ruay-content {
    gap: 3rem;
  }
  
  .reviews-support {
    gap: 2rem;
  }
  
  .payment-methods {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  
  .security-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  
  .promotion-badges {
    bottom: -15px;
    left: -15px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .web-huay-ruay-section {
    padding: 50px 15px;
  }
  
  .web-huay-ruay-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .web-huay-ruay-text {
    order: 2;
  }
  
  .web-huay-ruay-image {
    order: 1;
  }
  
  .financial-system {
    padding: 2rem;
  }
  
  .reviews-support {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .payment-methods {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
  }
  
  .payment-method {
    padding: 1.25rem;
  }
  
  .security-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .security-item {
    justify-content: center;
    text-align: center;
  }
  
  .promotion-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .promotion-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .web-huay-ruay-text p {
    font-size: 0.9rem;
  }
  
  .system-title {
    font-size: 1.5rem;
  }
  
  .financial-system {
    padding: 1.5rem;
  }
  
  .security-section {
    padding: 2rem;
  }
  
  .security-title {
    font-size: 1.5rem;
  }
  
  .reviews-section,
  .mobile-section {
    padding: 1.5rem;
  }
  
  .reviews-title,
  .mobile-title {
    font-size: 1.3rem;
  }
  
  .payment-methods {
    grid-template-columns: 1fr;
  }
  
  .security-item {
    flex-direction: column;
    gap: 8px;
  }
  
  .promotion-badge {
    flex-direction: column;
    gap: 4px;
    padding: 8px 10px;
  }
}

/* Web Huay Lotto Section */
.web-huay-lotto-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #16213e 100%);
  position: relative;
}

.web-huay-lotto-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 40% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.web-huay-lotto-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.web-huay-lotto-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.web-huay-lotto-text {
  max-width: 100%;
}

.web-huay-lotto-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #d0d0d0;
}

.web-huay-lotto-text strong {
  color: #4ecdc4;
  font-weight: 600;
}

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

.web-huay-lotto-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.web-huay-lotto-img:hover {
  transform: scale(1.02);
}

.security-badges {
  position: absolute;
  top: -25px;
  right: -25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.security-badge {
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

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

.international-lottery {
  margin-bottom: 4rem;
}

.lottery-types-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4ecdc4;
  margin-bottom: 2rem;
  text-align: center;
}

.lottery-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.lottery-type-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.lottery-type-card:hover {
  background: rgba(78, 205, 196, 0.08);
  border-color: rgba(78, 205, 196, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(78, 205, 196, 0.15);
}

.lottery-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.lottery-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.lottery-schedule {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b8b8b8;
  margin: 0;
}

.login-system {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 4rem;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.system-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 2rem;
  text-align: center;
}

.system-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.system-description p {
  font-size: 1rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin: 0;
}

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

.auth-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.auth-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 1rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.auth-method:hover {
  background: rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.auth-method i {
  color: #ff6b35;
  font-size: 1.3rem;
}

.auth-method span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}

.infrastructure {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 4rem;
  border: 1px solid rgba(78, 205, 196, 0.1);
}

.infrastructure-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4ecdc4;
  margin-bottom: 2rem;
  text-align: center;
}

.infrastructure-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 2rem;
  text-align: center;
}

.infrastructure-content strong {
  color: #4ecdc4;
  font-weight: 600;
}

.infrastructure-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(78, 205, 196, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(78, 205, 196, 0.3);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #4ecdc4;
  margin-bottom: 0.5rem;
}

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

.global-lottery-service {
  margin-bottom: 4rem;
}

.global-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 1.5rem;
  text-align: center;
}

.global-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 2rem;
  text-align: center;
}

.global-description strong {
  color: #ff6b35;
  font-weight: 600;
}

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

.market-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1.5rem;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.market-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.market-item i {
  color: #ff6b35;
  font-size: 1.3rem;
  flex-shrink: 0;
}

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

.customer-support {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(78, 205, 196, 0.1);
}

.support-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.support-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #4ecdc4;
  margin-bottom: 1.5rem;
}

.support-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin: 0;
}

.support-text strong {
  color: #4ecdc4;
  font-weight: 600;
}

.support-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(78, 205, 196, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(78, 205, 196, 0.3);
}

.support-feature i {
  color: #4ecdc4;
  font-size: 1.2rem;
}

.support-feature span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
}

.free-credit-section {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 107, 53, 0.2);
  text-align: center;
}

.free-credit-content {
  max-width: 800px;
  margin: 0 auto;
}

.free-credit-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 1.5rem;
}

.free-credit-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 2rem;
}

.free-credit-description strong {
  color: #4ecdc4;
  font-weight: 600;
}

.free-credit-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.free-credit-benefits .benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(78, 205, 196, 0.2);
}

.free-credit-benefits .benefit-item i {
  color: #4ecdc4;
  font-size: 1.5rem;
}

.free-credit-benefits .benefit-item span {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
}

.free-credit-action {
  margin-top: 1rem;
}

.reliability-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(78, 205, 196, 0.1);
}

.reliability-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4ecdc4;
  margin-bottom: 1.5rem;
  text-align: center;
}

.reliability-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 2rem;
  text-align: center;
}

.reliability-description strong {
  color: #4ecdc4;
  font-weight: 600;
}

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

.reliability-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1.5rem;
  background: rgba(78, 205, 196, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(78, 205, 196, 0.2);
  transition: all 0.3s ease;
}

.reliability-feature:hover {
  background: rgba(78, 205, 196, 0.1);
  border-color: rgba(78, 205, 196, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.15);
}

.reliability-feature i {
  color: #4ecdc4;
  font-size: 1.3rem;
  flex-shrink: 0;
}

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .web-huay-lotto-section {
    padding: 60px 20px;
  }
  
  .web-huay-lotto-content {
    gap: 3rem;
  }
  
  .system-content {
    gap: 2rem;
  }
  
  .support-content {
    gap: 2rem;
  }
  
  .lottery-types-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .security-badges {
    top: -20px;
    right: -20px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .web-huay-lotto-section {
    padding: 50px 15px;
  }
  
  .web-huay-lotto-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .web-huay-lotto-text {
    order: 2;
  }
  
  .web-huay-lotto-image {
    order: 1;
  }
  
  .lottery-types-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .login-system {
    padding: 2rem;
  }
  
  .system-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .auth-methods {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  
  .infrastructure {
    padding: 2rem;
  }
  
  .infrastructure-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .global-markets {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
  }
  
  .market-item {
    justify-content: center;
    text-align: center;
  }
  
  .customer-support {
    padding: 2rem;
  }
  
  .support-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .support-features {
    align-items: center;
  }
  
  .free-credit-section {
    padding: 2rem;
  }
  
  .free-credit-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .reliability-section {
    padding: 2rem;
  }
  
  .reliability-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .reliability-feature {
    justify-content: center;
    text-align: center;
  }
  
  .security-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .security-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .web-huay-lotto-text p {
    font-size: 0.9rem;
  }
  
  .lottery-types-title {
    font-size: 1.5rem;
  }
  
  .system-title {
    font-size: 1.5rem;
  }
  
  .infrastructure-title {
    font-size: 1.5rem;
  }
  
  .global-title {
    font-size: 1.5rem;
  }
  
  .free-credit-title {
    font-size: 1.6rem;
  }
  
  .reliability-title {
    font-size: 1.5rem;
  }
  
  .auth-methods {
    grid-template-columns: 1fr;
  }
  
  .lottery-type-card {
    padding: 1.5rem;
  }
  
  .infrastructure-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .market-item {
    flex-direction: column;
    gap: 8px;
  }
  
  .support-feature {
    justify-content: center;
    text-align: center;
  }
  
  .reliability-feature {
    flex-direction: column;
    gap: 8px;
  }
  
  .security-badge {
    flex-direction: column;
    gap: 4px;
    padding: 8px 10px;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f23 100%);
  border-top: 1px solid rgba(78, 205, 196, 0.2);
  position: relative;
  margin-top: 4rem;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(78, 205, 196, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  z-index: 0;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

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

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

.footer-logo i {
  font-size: 2rem;
  color: #4ecdc4;
}

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

.footer-description {
  color: #b8b8b8;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.footer-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d0d0d0;
  font-size: 0.9rem;
}

.footer-feature i {
  color: #4ecdc4;
  font-size: 1rem;
  width: 16px;
}

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

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

.footer-nav li {
  margin: 0;
}

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

.footer-nav a:hover {
  color: #4ecdc4;
  transform: translateX(5px);
}

.footer-nav a i {
  font-size: 0.9rem;
  width: 16px;
  opacity: 0.7;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
}

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

.contact-item i {
  color: #4ecdc4;
  font-size: 1.1rem;
  width: 18px;
}

.contact-item a {
  color: #d0d0d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #4ecdc4;
}

.footer-cta {
  margin-top: 1rem;
}

.footer-cta-btn {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-weight: 600;
}

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

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

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.copyright p {
  color: #888888;
  font-size: 0.9rem;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.legal-links a {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #4ecdc4;
}

.footer-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.security-badge:hover {
  background: rgba(78, 205, 196, 0.15);
  border-color: rgba(78, 205, 196, 0.5);
}

.security-badge i {
  color: #4ecdc4;
  font-size: 1.2rem;
}

.security-badge span {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 3rem 0 2.5rem;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-badges {
    justify-content: center;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0 2rem;
    text-align: center;
  }
  
  .footer-brand {
    text-align: center;
    max-width: 100%;
  }
  
  .footer-features {
    align-items: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .footer-badges {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .contact-info {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 10px;
  }
  
  .footer-content {
    padding: 2rem 0 1.5rem;
    gap: 1.5rem;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-logo-text {
    font-size: 1.3rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
    text-align: center;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-badges {
    gap: 0.5rem;
  }
  
  .security-badge {
    padding: 6px 10px;
  }
  
  .security-badge i {
    font-size: 1rem;
  }
  
  .security-badge span {
    font-size: 0.7rem;
  }
  
  .footer-bottom {
    padding: 1.5rem 0;
  }
}

/* Sticky Bottom Buttons */
.sticky-bottom-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(78, 205, 196, 0.2);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

.sticky-btn span {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.sticky-btn-login {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
  color: #ffffff;
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #44a08d 0%, #4ecdc4 100%);
  transform: translateY(-2px);
}

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

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-2px);
}

.sticky-btn-credit {
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  color: #1a1a2e;
  animation: pulse-glow-sticky 2s infinite;
}

.sticky-btn-credit:hover {
  background: linear-gradient(135deg, #ffb347 0%, #ffd700 100%);
  transform: translateY(-2px);
  animation: none;
}

@keyframes pulse-glow-sticky {
  0% {
    box-shadow: inset 0 0 15px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: inset 0 0 25px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.2);
  }
  100% {
    box-shadow: inset 0 0 15px rgba(255, 215, 0, 0.3);
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .sticky-btn {
    padding: 10px 6px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .sticky-btn {
    padding: 14px 8px;
    gap: 6px;
  }
  
  .sticky-btn i {
    font-size: 1.3rem;
  }
  
  .sticky-btn span {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 12px 4px;
    gap: 4px;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
    line-height: 1.2;
  }
}

/* Adjust main content to account for sticky buttons */
body {
  padding-bottom: 70px;
}

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

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

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.03) 0%, transparent 70%);
  z-index: 0;
}

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

.login-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 100px rgba(78, 205, 196, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.login-card:hover {
  border-color: rgba(78, 205, 196, 0.3);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 120px rgba(78, 205, 196, 0.15);
}

.login-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.login-logo {
  margin-bottom: 1.5rem;
}

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
  transition: transform 0.3s ease;
}

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

.login-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-subtitle {
  color: #b8b8b8;
  font-size: 1rem;
  margin: 0;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

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

.form-input {
  width: 100%;
  padding: 14px 16px 14px 45px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

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

.form-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: #4ecdc4;
  box-shadow: 0 0 20px rgba(78, 205, 196, 0.2);
}

.form-input:valid {
  border-color: rgba(78, 205, 196, 0.5);
}

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

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

.password-toggle {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: #888888;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: #4ecdc4;
}

.error-message {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
  animation: fadeIn 0.3s ease;
}

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

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 0;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}

.checkbox-wrapper input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #4ecdc4;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.checkbox-wrapper input:checked ~ .checkmark {
  background: rgba(78, 205, 196, 0.2);
  border-color: #4ecdc4;
}

.checkbox-wrapper input:checked ~ .checkmark::after {
  opacity: 1;
}

.checkbox-text {
  color: #d0d0d0;
  font-size: 0.9rem;
  user-select: none;
}

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

.forgot-link:hover {
  color: #44a08d;
  text-decoration: underline;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.login-btn,
.register-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.login-btn {
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
  border: none;
  color: #ffffff;
  cursor: pointer;
}

.login-btn:hover:not(:disabled) {
  background: linear-gradient(45deg, #44a08d, #4ecdc4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

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

.register-btn {
  background: transparent;
  border: 2px solid #ff6b35;
  color: #ff6b35;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.register-btn:hover {
  background: #ff6b35;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.loading-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.login-footer {
  margin-top: 2rem;
  text-align: center;
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #888888;
  font-size: 0.85rem;
  padding: 12px;
  background: rgba(78, 205, 196, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(78, 205, 196, 0.1);
}

.security-info i {
  color: #4ecdc4;
}

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .login-section {
    padding: 70px 15px 30px;
  }
  
  .login-card {
    padding: 2.5rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .login-section {
    padding: 60px 15px 20px;
  }
  
  .login-container {
    max-width: 100%;
  }
  
  .login-card {
    padding: 2rem;
    margin: 0 10px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-options {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .login-card {
    padding: 1.5rem;
    margin: 0 5px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 14px 12px 40px;
    font-size: 0.95rem;
  }
  
  .login-btn,
  .register-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .security-info {
    font-size: 0.8rem;
    padding: 10px;
  }
  
  .security-info span {
    text-align: center;
  }
}

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

.register-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.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
  z-index: 0;
}

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

.register-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 100px rgba(255, 107, 53, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.register-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 120px rgba(255, 107, 53, 0.15);
}

.register-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.register-logo {
  margin-bottom: 1.5rem;
}

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

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

.register-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.register-subtitle {
  color: #b8b8b8;
  font-size: 1rem;
  margin: 0;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

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

.form-input {
  width: 100%;
  padding: 16px 18px 16px 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  outline: none;
}

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

.form-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ff6b35;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.form-input:valid {
  border-color: rgba(255, 107, 53, 0.5);
}

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

.input-icon {
  position: absolute;
  left: 18px;
  color: #ff6b35;
  font-size: 1.2rem;
  z-index: 1;
}

.input-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #888888;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.input-hint i {
  color: #4ecdc4;
  font-size: 0.8rem;
}

.error-message {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
  animation: fadeIn 0.3s ease;
}

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

.terms-wrapper {
  margin: 0.5rem 0;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}

.checkbox-wrapper input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #ff6b35;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.checkbox-wrapper input:checked ~ .checkmark {
  background: rgba(255, 107, 53, 0.2);
  border-color: #ff6b35;
}

.checkbox-wrapper input:checked ~ .checkmark::after {
  opacity: 1;
}

.checkbox-text {
  color: #d0d0d0;
  font-size: 0.9rem;
  user-select: none;
}

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

.terms-link:hover {
  color: #f7931e;
  text-decoration: underline;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.register-btn,
.login-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.register-btn {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border: none;
  color: #ffffff;
  cursor: pointer;
}

.register-btn:hover:not(:disabled) {
  background: linear-gradient(45deg, #f7931e, #ff6b35);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

.login-btn {
  background: transparent;
  border: 2px solid #4ecdc4;
  color: #4ecdc4;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.login-btn:hover {
  background: #4ecdc4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.loading-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.register-footer {
  margin-top: 2rem;
}

.benefits-info {
  text-align: center;
}

.benefits-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b8b8b8;
  font-size: 0.9rem;
  padding: 6px 12px;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.benefits-list li i {
  color: #ff6b35;
  font-size: 1rem;
  width: 16px;
}

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .register-section {
    padding: 70px 15px 30px;
  }
  
  .register-card {
    padding: 2.5rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .register-section {
    padding: 60px 15px 20px;
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-card {
    padding: 2rem;
    margin: 0 10px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .register-card {
    padding: 1.5rem;
    margin: 0 5px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 14px 16px 14px 45px;
    font-size: 1rem;
  }
  
  .input-icon {
    left: 16px;
    font-size: 1.1rem;
  }
  
  .register-btn,
  .login-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .benefits-list li {
    font-size: 0.85rem;
    padding: 5px 10px;
  }
  
  .checkbox-text {
    font-size: 0.85rem;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.hero-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content {
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(45deg, #4ecdc4, #44a08d, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #b8b8b8;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-cta {
  margin-top: 2rem;
}

.hero-btn {
  padding: 20px 40px;
  font-size: 1.3rem;
  font-weight: 700;
  animation: pulse-glow 2s infinite;
}

/* Promotion Sections */
.promotion-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  position: relative;
}

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

.promotion-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 20px;
  padding: 3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promotion-card.featured {
  border-color: rgba(255, 107, 53, 0.4);
  background: rgba(255, 107, 53, 0.08);
}

.promotion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.promotion-card:hover {
  transform: translateY(-5px);
  border-color: rgba(78, 205, 196, 0.4);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 0 100px rgba(78, 205, 196, 0.1);
}

.promotion-card.featured:hover {
  border-color: rgba(255, 107, 53, 0.6);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 0 100px rgba(255, 107, 53, 0.15);
}

.promotion-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.promotion-badge {
  display: inline-block;
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.promotion-badge.bonus {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.promotion-badge.cashback {
  background: linear-gradient(45deg, #9b59b6, #8e44ad);
  box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
}

.promotion-badge.referral {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.promotion-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

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

.promotion-features {
  list-style: none;
  margin: 0 0 2.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.promotion-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #e8e8e8;
  font-size: 1.05rem;
  line-height: 1.6;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.promotion-features li:hover {
  background: rgba(78, 205, 196, 0.1);
  border-color: rgba(78, 205, 196, 0.3);
  transform: translateX(5px);
}

.promotion-features li i {
  color: #4ecdc4;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

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

.promotion-btn {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.promotion-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(255, 107, 53, 0.5), 0 0 30px rgba(255, 107, 53, 0.2);
  }
  100% {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .hero-section {
    padding: 80px 15px 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 50px 15px;
  }
  
  .promotion-card {
    padding: 2.5rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 70px 15px 50px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 40px 15px;
  }
  
  .promotion-card {
    padding: 2rem;
  }
  
  .promotion-title {
    font-size: 1.7rem;
  }
  
  .promotion-features li {
    font-size: 1rem;
    padding: 10px 14px;
  }
  
  .promotion-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .promotion-card {
    padding: 1.5rem;
  }
  
  .promotion-title {
    font-size: 1.5rem;
  }
  
  .promotion-features li {
    font-size: 0.95rem;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .promotion-features li i {
    margin-top: 0;
  }
  
  .promotion-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}