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

body {
  font-family: 'Sarabun', sans-serif;
  background-color: #0a0a0a;
  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;
}

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

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 80px 0;
  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(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-text {
  animation: fadeInLeft 1s ease-out;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ff4500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #cccccc;
  line-height: 1.6;
}

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

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

.feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

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

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

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

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid;
  min-width: 180px;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #000000;
  border-color: #ffd700;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffed4a 0%, #ffa500 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffd700;
  border-color: #ffd700;
}

.btn-secondary:hover {
  background: #ffd700;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

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

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

.floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ff4500 100%);
  color: #000000;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  animation: bounce 2s infinite;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.floating-badge i {
  font-size: 1.2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ff4500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: #cccccc;
  font-weight: 500;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 20px;
  }
  
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .floating-badge {
    top: 10px;
    right: 10px;
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  
  .stat-item {
    padding: 15px;
  }
}

/* Header Styles */
.main-header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
}

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

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

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

.logo-link:hover {
  transform: translateY(-2px);
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ff4500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

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

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

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

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

.nav-link:hover {
  color: #ffd700;
  transform: translateY(-2px);
}

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

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

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

.btn-cta-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #000000;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Sarabun', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
}

.btn-cta-header:hover {
  background: linear-gradient(135deg, #ffed4a 0%, #ffa500 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
  color: #000000;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 20px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
}

.hamburger-line {
  width: 24px;
  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);
  background: #ffd700;
}

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

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

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

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

.mobile-menu-content {
  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 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mobile-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ff4500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.mobile-logo-tagline {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.7rem;
  color: #cccccc;
  font-weight: 500;
  margin-top: 2px;
}

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

.mobile-menu-close:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.3);
  color: #ffd700;
  transform: rotate(90deg);
}

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

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

.mobile-nav-links li {
  margin-bottom: 5px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

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

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

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

.btn-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #000000;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Sarabun', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
}

.btn-mobile-cta:hover {
  background: linear-gradient(135deg, #ffed4a 0%, #ffa500 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
  color: #000000;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 30px;
  }
  
  .nav-links {
    gap: 30px;
  }
  
  .nav-link {
    font-size: 1rem;
  }
}

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

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

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

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

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

/* Why Som777 Section */
.why-section {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ff4500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  margin-bottom: 20px;
}

.why-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.why-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 0;
}

.why-intro strong {
  color: #ffd700;
  font-weight: 600;
}

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

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

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

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

.feature-card:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(10px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.8rem;
  color: #000000;
}

.feature-content {
  flex: 1;
}

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

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

.why-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin: 0;
}

.why-description strong {
  color: #ffd700;
  font-weight: 600;
}

.why-image {
  position: relative;
  height: fit-content;
}

.why-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.stats-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.stat-badge {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  justify-content: center;
}

.stat-badge i {
  color: #ffd700;
  font-size: 1.2rem;
}

.stat-badge span {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
}

.why-additional {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.additional-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.additional-content strong {
  color: #ffd700;
  font-weight: 600;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.highlight-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
}

.highlight-item i {
  font-size: 2rem;
  color: #ffd700;
}

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

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

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

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

.conclusion-text strong {
  color: #ffd700;
  font-weight: 600;
}

.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #000000;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
  white-space: nowrap;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #ffed4a 0%, #ffa500 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .why-container {
    padding: 0 30px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .why-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .why-content {
    gap: 30px;
  }
  
  .why-text {
    gap: 30px;
  }
  
  .feature-card {
    padding: 20px;
    gap: 15px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
  
  .feature-title {
    font-size: 1.2rem;
  }
  
  .why-additional {
    padding: 30px;
  }
  
  .service-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .highlight-item {
    padding: 15px;
  }
  
  .highlight-item i {
    font-size: 1.5rem;
  }
  
  .why-conclusion {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .why-container {
    padding: 0 20px;
  }
  
  .why-section {
    padding: 40px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .why-intro p,
  .why-description p,
  .additional-content p,
  .conclusion-text p {
    font-size: 1rem;
  }
  
  .feature-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  
  .why-additional {
    padding: 20px;
  }
  
  .service-highlights {
    grid-template-columns: 1fr;
  }
  
  .btn-cta {
    padding: 15px 25px;
    font-size: 1.1rem;
  }
  
  .stat-badge {
    padding: 12px 15px;
  }
  
  .stat-badge span {
    font-size: 1rem;
  }
}

/* Registration Guide Section */
.guide-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

.guide-intro {
  text-align: center;
  margin-bottom: 60px;
}

.guide-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto;
}

.guide-intro strong {
  color: #ffd700;
  font-weight: 600;
}

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

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

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

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

.step-card:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  border: 3px solid #1a1a1a;
  z-index: 2;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.step-icon i {
  font-size: 2.2rem;
  color: #ffd700;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.step-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #cccccc;
  margin: 0;
}

.step-desc strong {
  color: #ffd700;
  font-weight: 600;
}

.step-desc a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.step-desc a:hover {
  color: #ffed4a;
}

.guide-summary {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
}

.summary-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.summary-image {
  position: relative;
}

.summary-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.time-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #000000;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

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

.summary-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 30px;
}

.quick-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 35px;
}

.quick-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quick-feature i {
  color: #4ade80;
  font-size: 1.2rem;
}

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

.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #000000;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
  text-decoration: none;
}

.btn-register:hover {
  background: linear-gradient(135deg, #ffed4a 0%, #ffa500 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
  color: #000000;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .guide-container {
    padding: 0 30px;
  }
  
  .steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .summary-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .guide-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .guide-intro {
    margin-bottom: 40px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }
  
  .step-card {
    padding: 25px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    top: -12px;
    right: -12px;
  }
  
  .step-icon {
    width: 70px;
    height: 70px;
  }
  
  .step-icon i {
    font-size: 2rem;
  }
  
  .step-title {
    font-size: 1.3rem;
  }
  
  .guide-summary {
    padding: 35px;
  }
  
  .summary-title {
    font-size: 1.6rem;
  }
  
  .quick-features {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .guide-container {
    padding: 0 20px;
  }
  
  .guide-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .guide-intro p,
  .step-desc,
  .summary-desc {
    font-size: 0.95rem;
  }
  
  .step-card {
    padding: 20px;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    top: -10px;
    right: -10px;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .step-icon i {
    font-size: 1.8rem;
  }
  
  .step-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .guide-summary {
    padding: 25px;
  }
  
  .summary-title {
    font-size: 1.4rem;
  }
  
  .btn-register {
    padding: 15px 25px;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
  }
  
  .time-badge {
    top: 15px;
    left: 15px;
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .quick-features {
    gap: 10px;
  }
  
  .quick-feature span {
    font-size: 0.95rem;
  }
}

/* User Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

.reviews-intro {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin: 0;
}

.reviews-intro strong {
  color: #ffd700;
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

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

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

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

.review-card:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-avatar i {
  font-size: 1.5rem;
  color: #000000;
}

.reviewer-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 3px;
}

.review-rating i {
  font-size: 1rem;
  color: #ffd700;
}

.rating-text {
  font-size: 0.9rem;
  color: #cccccc;
  margin-left: 8px;
  font-weight: 600;
}

.review-badge {
  padding: 8px 15px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffd700;
}

.review-badge.security {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.review-badge.bonus {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.3);
  color: #a855f7;
}

.review-badge i {
  font-size: 0.9rem;
}

.review-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #cccccc;
  margin: 0;
}

.review-content strong {
  color: #ffd700;
  font-weight: 600;
}

.performance-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 60px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-card:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 1.3rem;
  color: #000000;
}

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

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.4;
}

.game-variety-section {
  margin-bottom: 60px;
}

.variety-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.variety-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

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

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

.variety-text strong {
  color: #ffd700;
  font-weight: 600;
}

.variety-image {
  position: relative;
}

.variety-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.satisfaction-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: #000000;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(74, 222, 128, 0.4);
}

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

.review-summary {
  display: flex;
  justify-content: center;
}

.summary-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.summary-header {
  margin-bottom: 25px;
}

.summary-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.rating-stars {
  display: flex;
  gap: 3px;
}

.rating-stars i {
  font-size: 1.5rem;
  color: #ffd700;
}

.rating-score {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
}

.summary-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.summary-content strong {
  color: #ffd700;
  font-weight: 600;
}

.contact-channels {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 35px;
}

.channel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-width: 80px;
}

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

.channel-item i {
  font-size: 1.8rem;
  color: #ffd700;
}

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

.btn-join {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #000000;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
  text-decoration: none;
}

.btn-join:hover {
  background: linear-gradient(135deg, #ffed4a 0%, #ffa500 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
  color: #000000;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .reviews-container {
    padding: 0 30px;
  }
  
  .reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
  }
  
  .performance-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px;
  }
  
  .variety-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .review-card {
    padding: 25px;
  }
  
  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .performance-stats {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 25px;
  }
  
  .stat-card {
    padding: 15px;
  }
  
  .variety-title {
    font-size: 1.6rem;
  }
  
  .contact-channels {
    gap: 20px;
  }
  
  .summary-card {
    padding: 30px;
  }
  
  .summary-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .reviews-container {
    padding: 0 20px;
  }
  
  .reviews-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .reviews-intro p,
  .review-content p,
  .variety-text p,
  .summary-content p {
    font-size: 1rem;
  }
  
  .review-card {
    padding: 20px;
  }
  
  .reviewer-avatar {
    width: 45px;
    height: 45px;
  }
  
  .reviewer-avatar i {
    font-size: 1.3rem;
  }
  
  .reviewer-name {
    font-size: 1.1rem;
  }
  
  .review-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .stat-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px;
  }
  
  .stat-icon {
    width: 45px;
    height: 45px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .variety-title {
    font-size: 1.4rem;
  }
  
  .contact-channels {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .channel-item {
    min-width: 70px;
    padding: 12px;
  }
  
  .channel-item i {
    font-size: 1.5rem;
  }
  
  .summary-card {
    padding: 25px;
  }
  
  .btn-join {
    padding: 15px 25px;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
  }
  
  .satisfaction-badge {
    bottom: 15px;
    right: 15px;
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .overall-rating {
    flex-direction: column;
    gap: 10px;
  }
  
  .rating-stars i {
    font-size: 1.3rem;
  }
}

/* Lottery Types Section */
.lottery-section {
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

.lottery-intro {
  text-align: center;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.lottery-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin: 0;
}

.lottery-intro strong {
  color: #ffd700;
  font-weight: 600;
}

.lottery-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

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

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

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

.lottery-type-card:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
}

.lottery-type-card.featured {
  border: 2px solid rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.06);
}

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

.lottery-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lottery-icon i {
  font-size: 1.8rem;
  color: #000000;
}

.lottery-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  flex: 1;
  margin-left: 15px;
  margin-right: 15px;
}

.lottery-badge {
  padding: 8px 15px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffd700;
  white-space: nowrap;
}

.lottery-badge.rapid {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.lottery-badge.international {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
  color: #3b82f6;
}

.lottery-badge.daily {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.3);
  color: #a855f7;
}

.lottery-badge.diverse {
  background: rgba(236, 72, 153, 0.15);
  border-color: rgba(236, 72, 153, 0.3);
  color: #ec4899;
}

.card-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 20px;
}

.card-content strong {
  color: #ffd700;
  font-weight: 600;
}

.card-content a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.card-content a:hover {
  color: #ffed4a;
}

.lottery-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 500;
}

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

.mobile-system-section {
  margin-bottom: 60px;
}

.mobile-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.mobile-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.mobile-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.mobile-text strong {
  color: #ffd700;
  font-weight: 600;
}

.mobile-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 35px;
}

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

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

.mobile-feature i {
  font-size: 1.5rem;
  color: #ffd700;
}

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

.btn-play-now {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #000000;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
  text-decoration: none;
}

.btn-play-now:hover {
  background: linear-gradient(135deg, #ffed4a 0%, #ffa500 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
  color: #000000;
}

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

.mobile-image {
  position: relative;
}

.mobile-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.platform-badges {
  position: absolute;
  top: 20px;
  left: 20px;
}

.platform-badge {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.platform-badge i {
  color: #ffd700;
  font-size: 1.2rem;
}

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

.lottery-summary {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
}

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

.summary-item {
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

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

.summary-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.summary-icon i {
  font-size: 2rem;
  color: #000000;
}

.summary-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.summary-desc {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .lottery-container {
    padding: 0 30px;
  }
  
  .lottery-types-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
  }
  
  .mobile-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .lottery-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .lottery-types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .lottery-type-card {
    padding: 25px;
  }
  
  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .lottery-title {
    margin: 0;
    align-self: stretch;
  }
  
  .lottery-badge {
    align-self: flex-start;
  }
  
  .lottery-features {
    justify-content: center;
  }
  
  .mobile-features {
    grid-template-columns: 1fr;
  }
  
  .mobile-title {
    font-size: 1.6rem;
  }
  
  .lottery-summary {
    padding: 35px;
  }
  
  .summary-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .lottery-container {
    padding: 0 20px;
  }
  
  .lottery-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .lottery-intro p,
  .card-content p,
  .mobile-text p {
    font-size: 1rem;
  }
  
  .lottery-type-card {
    padding: 20px;
  }
  
  .lottery-icon {
    width: 50px;
    height: 50px;
  }
  
  .lottery-icon i {
    font-size: 1.5rem;
  }
  
  .lottery-title {
    font-size: 1.3rem;
  }
  
  .lottery-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .feature {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  
  .mobile-feature {
    padding: 12px;
  }
  
  .mobile-feature i {
    font-size: 1.3rem;
  }
  
  .mobile-title {
    font-size: 1.4rem;
  }
  
  .btn-play-now {
    padding: 15px 25px;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
  }
  
  .lottery-summary {
    padding: 25px;
  }
  
  .summary-item {
    padding: 20px;
  }
  
  .summary-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .summary-icon i {
    font-size: 1.8rem;
  }
  
  .summary-title {
    font-size: 1.2rem;
  }
  
  .platform-badge {
    padding: 10px 15px;
  }
  
  .platform-badge span {
    font-size: 0.9rem;
  }
  
  .card-header {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .lottery-title {
    flex: none;
    margin: 0;
    order: 2;
    width: 100%;
    margin-top: 10px;
  }
}

/* Security Safety Section */
.security-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.security-intro {
  text-align: center;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.security-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin: 0;
}

.security-intro strong {
  color: #4ade80;
  font-weight: 600;
}

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

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

.security-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.08), transparent);
  transition: left 0.6s ease;
}

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

.security-feature-card:hover {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
}

.security-feature-card.primary {
  border: 2px solid rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.06);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.8rem;
  color: #000000;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  flex: 1;
  line-height: 1.3;
}

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

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

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

.highlights-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.highlights-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

.security-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.security-item:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateX(10px);
}

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

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

.highlights-image {
  position: relative;
}

.highlights-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.security-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: #000000;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(74, 222, 128, 0.4);
}

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

.security-development {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 60px;
  text-align: center;
}

.development-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.development-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin: 0;
}

.development-content strong {
  color: #4ade80;
  font-weight: 600;
}

.development-content a {
  color: #4ade80;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.development-content a:hover {
  color: #6ee7b7;
}

.notification-system {
  margin-bottom: 60px;
}

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

.notification-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

.notification-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: center;
  margin: 0;
}

.notification-text strong {
  color: #4ade80;
  font-weight: 600;
}

.notification-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

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

.notification-feature:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-5px);
}

.notification-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notification-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.notification-feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.notification-feature-desc {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

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

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

.cta-desc {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 35px;
}

.btn-secure {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: #000000;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid #4ade80;
  text-decoration: none;
}

.btn-secure:hover {
  background: linear-gradient(135deg, #6ee7b7 0%, #34d399 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(74, 222, 128, 0.4);
  color: #000000;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .security-container {
    padding: 0 30px;
  }
  
  .security-features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .highlights-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .notification-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .security-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .security-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .security-feature-card {
    padding: 25px;
  }
  
  .feature-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
  
  .feature-title {
    font-size: 1.3rem;
  }
  
  .highlights-title {
    font-size: 1.6rem;
  }
  
  .security-development {
    padding: 30px;
  }
  
  .development-title {
    font-size: 1.5rem;
  }
  
  .notification-title {
    font-size: 1.5rem;
  }
  
  .notification-feature {
    padding: 20px;
  }
  
  .security-cta {
    padding: 35px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .security-container {
    padding: 0 20px;
  }
  
  .security-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .security-intro p,
  .feature-content p,
  .development-content p,
  .notification-text p {
    font-size: 1rem;
  }
  
  .security-feature-card {
    padding: 20px;
  }
  
  .feature-header {
    align-items: center;
    text-align: center;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-icon i {
    font-size: 1.3rem;
  }
  
  .feature-title {
    font-size: 1.2rem;
  }
  
  .security-item {
    padding: 15px;
  }
  
  .security-item i {
    font-size: 1.2rem;
  }
  
  .security-item span {
    font-size: 1rem;
  }
  
  .highlights-title {
    font-size: 1.4rem;
  }
  
  .security-development {
    padding: 25px;
  }
  
  .development-title {
    font-size: 1.3rem;
  }
  
  .notification-title {
    font-size: 1.3rem;
  }
  
  .notification-feature {
    flex-direction: column;
    text-align: center;
    padding: 20px:
  }
  
  .notification-icon {
    width: 45px;
    height: 45px;
  }
  
  .notification-icon i {
    font-size: 1.3rem;
  }
  
  .notification-feature-title {
    font-size: 1.1rem;
  }
  
  .security-cta {
    padding: 30px 25px;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
  
  .cta-desc {
    font-size: 1.1rem;
  }
  
  .btn-secure {
    padding: 15px 25px;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
  }
  
  .security-badge {
    top: 15px;
    right: 15px;
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

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

.main-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.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

.footer-brand {
  padding-right: 20px;
}

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

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ff4500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}

.footer-logo-tagline {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 500;
  margin-top: 5px;
  display: block;
}

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

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
}

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

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

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #ffd700 0%, #ff4500 100%);
  border-radius: 1px;
}

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

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cccccc;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 0;
}

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

.footer-link i {
  color: #ffd700;
  font-size: 0.9rem;
  width: 16px;
  transition: all 0.3s ease;
}

.footer-link:hover i {
  transform: scale(1.1);
}

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

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

.security-badge:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-2px);
}

.security-badge i {
  color: #4ade80;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.badge-info {
  display: flex;
  flex-direction: column;
}

.badge-title {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
}

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

.footer-cta {
  margin-top: auto;
}

.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 25px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #000000;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
  width: 100%;
}

.btn-footer-cta:hover {
  background: linear-gradient(135deg, #ffed4a 0%, #ffa500 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
  color: #000000;
}

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

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

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

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

.footer-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 15px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #ffd700;
  font-weight: 600;
}

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

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

.disclaimer-text {
  color: #999999;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 30px;
  }
  
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
  }
  
  .footer-games {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px 0 30px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    padding-right: 0;
    margin-bottom: 20px;
  }
  
  .footer-legal {
    display: none;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-features {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 0 25px;
  }
  
  .footer-brand {
    margin-bottom: 15px;
  }
  
  .footer-logo-text {
    font-size: 2rem;
  }
  
  .footer-logo-tagline {
    font-size: 0.8rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .footer-link {
    font-size: 0.95rem;
  }
  
  .contact-item {
    font-size: 0.95rem;
  }
  
  .security-badge {
    padding: 10px;
  }
  
  .btn-footer-cta {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .footer-bottom {
    padding: 25px 0;
  }
  
  .footer-copyright p {
    font-size: 0.9rem;
  }
  
  .feature-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .disclaimer-text {
    font-size: 0.8rem;
  }
  
  .footer-features {
    gap: 10px;
  }
  
  .security-badges {
    gap: 10px;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  font-family: 'Sarabun', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 70px;
}

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.4s ease;
  z-index: 0;
}

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

.sticky-btn i {
  font-size: 1.3rem;
  margin-bottom: 4px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-text {
  font-size: 0.85rem;
  line-height: 1.1;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

/* Login Button */
.sticky-btn-login {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-login::before {
  background: rgba(59, 130, 246, 0.15);
}

.sticky-btn-login:hover,
.sticky-btn-login:active {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  transform: translateY(-2px);
}

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

/* Register Button */
.sticky-btn-register {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-register::before {
  background: rgba(34, 197, 94, 0.15);
}

.sticky-btn-register:hover,
.sticky-btn-register:active {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  transform: translateY(-2px);
}

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

/* Bonus Button */
.sticky-btn-bonus {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  position: relative;
}

.sticky-btn-bonus::before {
  background: rgba(255, 215, 0, 0.25);
}

.sticky-btn-bonus:hover,
.sticky-btn-bonus:active {
  background: rgba(255, 215, 0, 0.25);
  color: #ffed4a;
  transform: translateY(-2px);
}

.sticky-btn-bonus:hover i,
.sticky-btn-bonus:active i {
  transform: scale(1.1) rotate(10deg);
}

.sticky-btn-bonus::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ff8c00, #ffd700);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

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

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

@media (max-width: 360px) {
  .sticky-btn {
    padding: 6px 2px;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .btn-text {
    font-size: 0.7rem;
  }
}

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

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

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

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

/* Hide sticky buttons when mobile menu is open */
.mobile-menu-overlay.active ~ .sticky-buttons {
  display: none;
}

/* Add smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Accessibility improvements */
.sticky-btn:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.sticky-btn:focus:not(:focus-visible) {
  outline: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .sticky-buttons {
    background: #000000;
    border-top: 2px solid #ffffff;
  }
  
  .sticky-btn {
    border-right: 2px solid #ffffff;
  }
  
  .sticky-btn:last-child {
    border-right: none;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .sticky-btn,
  .sticky-btn i,
  .btn-text,
  .sticky-btn::before {
    transition: none;
  }
  
  .sticky-btn-bonus::after {
    animation: none;
  }
}

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 69, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ff8c00, #ffd700);
  border-radius: 25px 25px 0 0;
}

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

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

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

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

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

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

.error-message {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  color: #fca5a5;
  font-size: 0.9rem;
  margin-bottom: 20px;
  animation: shake 0.5s ease-in-out;
}

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

.error-message i {
  color: #ef4444;
  font-size: 1rem;
}

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

.form-group {
  position: relative;
}

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

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

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

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

.form-input:valid {
  border-color: rgba(34, 197, 94, 0.5);
}

.form-input.error {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.05);
}

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

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

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

.password-toggle:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

.password-toggle i {
  font-size: 1rem;
}

.field-error {
  color: #fca5a5;
  font-size: 0.85rem;
  margin-top: 6px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.field-error:before {
  content: '⚠';
  font-size: 0.8rem;
}

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

.remember-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.remember-checkbox input[type="checkbox"] {
  display: none;
}

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

.remember-checkbox input:checked + .checkmark {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  border-color: #ffd700;
}

.remember-checkbox input:checked + .checkmark:after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000000;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-text {
  color: #cccccc;
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #000000;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Sarabun', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.btn-login:hover {
  background: linear-gradient(135deg, #ffed4a 0%, #ffa500 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

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

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

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

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

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

.btn-register {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: transparent;
  color: #ffd700;
  border: 2px solid rgba(255, 215, 0, 0.5);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Sarabun', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.btn-register:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
  color: #ffed4a;
  transform: translateY(-2px);
}

.login-footer {
  margin-top: 30px;
  text-align: center;
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #4ade80;
  font-size: 0.85rem;
  margin-bottom: 15px;
  font-weight: 500;
}

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

.support-info p {
  color: #cccccc;
  font-size: 0.9rem;
  margin: 0;
}

.support-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.support-link:hover {
  color: #ffed4a;
  text-decoration: underline;
}

/* Animations */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

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

.login-card {
  animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 0;
  }
  
  .login-container {
    padding: 0 15px;
  }
  
  .login-card {
    padding: 30px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .form-input {
    padding: 14px 16px;
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 0 10px;
  }
  
  .login-card {
    padding: 25px 20px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .btn-login {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .btn-register {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .checkbox-text {
    font-size: 0.85rem;
  }
  
  .security-info {
    font-size: 0.8rem;
  }
  
  .support-info p {
    font-size: 0.85rem;
  }
}

/* Focus styles for accessibility */
.form-input:focus-visible,
.btn-login:focus-visible,
.btn-register:focus-visible,
.password-toggle:focus-visible {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .login-card {
    background: #000000;
    border-color: #ffffff;
  }
  
  .form-input {
    border-color: #ffffff;
    background: #000000;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .login-card,
  .logo-image,
  .form-input,
  .btn-login,
  .btn-register,
  .password-toggle {
    transition: none;
    animation: none;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.register-container {
  max-width: 450px;
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

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

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ff8c00, #4ade80, #ffd700);
  border-radius: 25px 25px 0 0;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

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

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

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

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

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

.success-message {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  color: #4ade80;
  font-size: 0.9rem;
  margin-bottom: 20px;
  animation: slideInDown 0.5s ease-out;
}

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

.success-message i {
  color: #22c55e;
  font-size: 1rem;
}

.error-message {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  color: #fca5a5;
  font-size: 0.9rem;
  margin-bottom: 20px;
  animation: shake 0.5s ease-in-out;
}

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

.error-message i {
  color: #ef4444;
  font-size: 1rem;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

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

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

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

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

.form-input:valid {
  border-color: rgba(34, 197, 94, 0.5);
}

.form-input.error {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.05);
}

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

.field-error {
  color: #fca5a5;
  font-size: 0.85rem;
  margin-top: 6px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.field-error:before {
  content: '⚠';
  font-size: 0.8rem;
}

.terms-agreement {
  position: relative;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  line-height: 1.5;
}

.terms-checkbox input[type="checkbox"] {
  display: none;
}

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

.terms-checkbox input:checked + .checkmark {
  background: linear-gradient(135deg, #ffd700 0%, #4ade80 100%);
  border-color: #ffd700;
}

.terms-checkbox input:checked + .checkmark:after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000000;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-text {
  color: #cccccc;
  font-size: 0.9rem;
  font-weight: 500;
}

.terms-link,
.privacy-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.terms-link:hover,
.privacy-link:hover {
  color: #ffed4a;
  text-decoration: underline;
}

.btn-register {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #4ade80 100%);
  color: #000000;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Sarabun', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.btn-register:hover {
  background: linear-gradient(135deg, #ffed4a 0%, #6ee7b7 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

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

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

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

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

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

.btn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: transparent;
  color: #ffd700;
  border: 2px solid rgba(255, 215, 0, 0.5);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Sarabun', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.btn-login:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
  color: #ffed4a;
  transform: translateY(-2px);
}

.register-footer {
  margin-top: 30px;
  text-align: center;
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #4ade80;
  font-size: 0.85rem;
  margin-bottom: 20px;
  font-weight: 500;
}

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

.features-info {
  display: flex;
  justify-content: space-around;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #cccccc;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}

.feature-item i {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.support-info p {
  color: #cccccc;
  font-size: 0.9rem;
  margin: 0;
}

.support-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.support-link:hover {
  color: #ffed4a;
  text-decoration: underline;
}

/* Animations */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

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

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

.register-card {
  animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 0;
  }
  
  .register-container {
    padding: 0 15px;
  }
  
  .register-card {
    padding: 30px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .form-input {
    padding: 14px 16px;
  }
  
  .features-info {
    gap: 10px;
  }
  
  .feature-item {
    font-size: 0.75rem;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .register-container {
    padding: 0 10px;
  }
  
  .register-card {
    padding: 25px 20px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .btn-register {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .btn-login {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .checkbox-text {
    font-size: 0.85rem;
  }
  
  .security-info {
    font-size: 0.8rem;
  }
  
  .features-info {
    justify-content: center;
    gap: 15px;
  }
  
  .feature-item {
    font-size: 0.7rem;
    min-width: 60px;
  }
  
  .support-info p {
    font-size: 0.85rem;
  }
}

/* Focus styles for accessibility */
.form-input:focus-visible,
.btn-register:focus-visible,
.btn-login:focus-visible,
.terms-checkbox:focus-visible {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .register-card {
    background: #000000;
    border-color: #ffffff;
  }
  
  .form-input {
    border-color: #ffffff;
    background: #000000;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .register-card,
  .logo-image,
  .form-input,
  .btn-register,
  .btn-login,
  .register-card::before {
    transition: none;
    animation: none;
  }
}

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

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

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

.hero-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ff4500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  color: #ffd700;
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-highlight i {
  font-size: 1.3rem;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #000000;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-hero-cta:hover {
  background: linear-gradient(135deg, #ffed4a 0%, #ffa500 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  color: #000000;
}

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

/* Promotion Sections */
.promotion-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.section-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ff4500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  margin: 0;
}

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

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

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

.promotion-card:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.15);
}

.promotion-card.featured {
  border: 2px solid rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.08);
}

.promotion-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.promotion-icon i {
  font-size: 2.5rem;
  color: #000000;
}

.promotion-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.promotion-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  font-weight: 500;
}

.promotion-list li i {
  color: #4ade80;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.bonus-highlight,
.cashback-highlight,
.discount-highlight,
.referral-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  text-align: center;
}

.bonus-amount,
.cashback-percentage,
.discount-percentage,
.referral-amount {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.bonus-label,
.cashback-label,
.discount-label,
.referral-label {
  font-size: 1rem;
  color: #cccccc;
  font-weight: 600;
  margin-top: 5px;
}

.btn-promotion-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #000000;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
  align-self: flex-start;
}

.btn-promotion-cta:hover {
  background: linear-gradient(135deg, #ffed4a 0%, #ffa500 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
  color: #000000;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container,
  .promotion-container {
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .promotion-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-highlight {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .btn-hero-cta {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
  
  .promotion-card {
    padding: 30px 25px;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
  }
  
  .promotion-icon i {
    font-size: 2rem;
  }
  
  .promotion-list li {
    font-size: 1rem;
  }
  
  .bonus-amount,
  .cashback-percentage,
  .discount-percentage,
  .referral-amount {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-container,
  .promotion-container {
    padding: 0 20px;
  }
  
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .promotion-section {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .hero-highlight {
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    text-align: center;
  }
  
  .btn-hero-cta {
    padding: 14px 25px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .promotion-card {
    padding: 25px 20px;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.8rem;
  }
  
  .promotion-list li {
    font-size: 0.95rem;
  }
  
  .bonus-highlight,
  .cashback-highlight,
  .discount-highlight,
  .referral-highlight {
    padding: 15px;
  }
  
  .bonus-amount,
  .cashback-percentage,
  .discount-percentage,
  .referral-amount {
    font-size: 1.8rem;
  }
  
  .btn-promotion-cta {
    padding: 14px 25px;
    font-size: 1rem;
    width: 100%;
  }
}

/* Focus styles for accessibility */
.btn-hero-cta:focus-visible,
.btn-promotion-cta:focus-visible {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .promotion-card {
    background: #000000;
    border-color: #ffffff;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .promotion-card,
  .btn-hero-cta,
  .btn-promotion-cta,
  .promotion-card::before {
    transition: none;
    animation: none;
  }
}