/* 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;
  transition: all 0.3s ease;
}

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

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #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% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

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

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

.feature-item span {
  font-weight: 600;
  color: #ffffff;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: none;
}

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

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

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

.btn-secondary:hover {
  background: #ffd700;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
}

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

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

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

@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.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-features {
    gap: 15px;
  }
  
  .feature-item {
    padding: 12px 15px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

/* Header Styles */
.site-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.main-navigation {
  position: relative;
}

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

/* Brand */
.nav-brand {
  flex-shrink: 0;
}

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

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

.brand-link i {
  font-size: 2rem;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.brand-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.nav-item {
  position: relative;
}

.nav-link {
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.nav-link:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

/* CTA Button */
.nav-cta {
  flex-shrink: 0;
}

.btn-cta {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a1a;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  border: none;
  cursor: pointer;
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

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

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 90vw;
  height: 100%;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
  border-left: 3px solid #ffd700;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
  right: 0;
}

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

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.mobile-brand-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
}

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

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

/* Mobile Navigation */
.mobile-nav {
  padding: 20px 0;
}

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

.mobile-nav-item {
  margin-bottom: 8px;
}

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

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

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

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

/* Mobile CTA Button */
.mobile-cta-item {
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 0 25px;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 30px;
  }
  
  .nav-list {
    gap: 20px;
  }
  
  .desktop-menu {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
    height: 70px;
  }
  
  .brand-text {
    font-size: 1.5rem;
  }
  
  .brand-link i {
    font-size: 1.7rem;
  }
  
  .desktop-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
    height: 65px;
  }
  
  .brand-text {
    font-size: 1.3rem;
  }
  
  .brand-link i {
    font-size: 1.5rem;
  }
  
  .brand-link {
    gap: 8px;
  }
  
  .mobile-menu {
    width: 280px;
  }
  
  .mobile-menu-header {
    padding: 20px 15px;
  }
  
  .mobile-nav-link {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .mobile-cta-item {
    padding: 0 20px;
  }
  
  .mobile-cta-btn {
    padding: 12px 18px;
    font-size: 1rem;
  }
}

/* Focus States for Accessibility */
.nav-link:focus,
.btn-cta:focus,
.mobile-menu-toggle:focus,
.mobile-menu-close:focus,
.mobile-nav-link:focus,
.mobile-cta-btn:focus {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.lottery-revolution-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;
  color: #ffd700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

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

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

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

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

.revolution-image {
  position: relative;
}

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

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

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

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

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

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

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

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #1a1a1a;
}

.feature-title {
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.revolution-conclusion {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.conclusion-text {
  font-size: 1.15rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.8;
  text-align: justify;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .lottery-revolution-container {
    padding: 0 30px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .revolution-content {
    gap: 40px;
  }
  
  .feature-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .lottery-revolution-section {
    padding: 80px 0;
  }
  
  .revolution-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .revolution-description {
    font-size: 1rem;
    text-align: left;
  }
  
  .feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .revolution-conclusion {
    padding: 30px 25px;
  }
  
  .conclusion-text {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .lottery-revolution-container {
    padding: 0 15px;
  }
  
  .lottery-revolution-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .revolution-content {
    margin-bottom: 50px;
  }
  
  .revolution-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .feature-icon i {
    font-size: 1.3rem;
  }
  
  .feature-title {
    font-size: 1rem;
  }
  
  .revolution-conclusion {
    padding: 25px 20px;
  }
  
  .conclusion-text {
    font-size: 0.95rem;
  }
}

/* Cat8888 Strategy Section */
.cat8888-strategy-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cat8888-strategy-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.strategy-content {
  margin-bottom: 80px;
}

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

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

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

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

.strategy-image {
  position: relative;
}

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

.strategy-img:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 25px 60px rgba(255, 215, 0, 0.2);
}

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

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

.feature-box {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.feature-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #ffd700, transparent, #ffd700);
  border-radius: 22px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
}

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

.feature-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 215, 0, 0.05);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

.feature-heading {
  font-size: 1.25rem;
  color: #ffd700;
  margin-bottom: 15px;
  font-weight: 700;
}

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

.strategy-highlight {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.03) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 50px;
  margin-bottom: 60px;
}

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

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

.highlight-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

.highlight-description strong {
  color: #ffd700;
}

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

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.strategy-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 25px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.strategy-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  animation: rotate 10s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

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

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

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cat8888-strategy-container {
    padding: 0 30px;
  }
  
  .strategy-main {
    gap: 50px;
  }
  
  .highlight-content {
    gap: 40px;
  }
  
  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .strategy-cta {
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .cat8888-strategy-section {
    padding: 80px 0;
  }
  
  .strategy-main {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .strategy-description {
    font-size: 1rem;
    text-align: left;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-box {
    padding: 30px 20px;
  }
  
  .highlight-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .strategy-highlight {
    padding: 40px 30px;
  }
  
  .highlight-title {
    font-size: 1.5rem;
  }
  
  .highlight-description {
    text-align: left;
  }
  
  .highlight-stats {
    justify-content: center;
  }
  
  .strategy-cta {
    padding: 40px 30px;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .cat8888-strategy-container {
    padding: 0 15px;
  }
  
  .cat8888-strategy-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .strategy-description {
    font-size: 0.95rem;
  }
  
  .feature-box {
    padding: 25px 15px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
  
  .feature-heading {
    font-size: 1.1rem;
  }
  
  .feature-text {
    font-size: 0.95rem;
  }
  
  .strategy-highlight {
    padding: 30px 20px;
  }
  
  .highlight-title {
    font-size: 1.3rem;
  }
  
  .highlight-description {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .strategy-cta {
    padding: 30px 20px;
  }
  
  .cta-title {
    font-size: 1.4rem;
  }
  
  .cta-text {
    font-size: 1rem;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
  }
}

/* Chokdd Speed Section */
.chokdd-speed-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.chokdd-speed-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

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

.speed-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

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

.intro-image {
  position: relative;
}

.speed-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.speed-img:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow: 0 25px 70px rgba(255, 215, 0, 0.3);
}

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

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

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

.speed-features {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 50px;
}

.features-title {
  font-size: 1.8rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

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

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

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

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1a1a1a;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.1rem;
  color: #ffd700;
  margin-bottom: 8px;
  font-weight: 600;
}

.step-description {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.5;
  margin: 0;
}

.speed-highlight {
  margin: 0;
}

.highlight-box {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 25px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 100px;
  height: 200%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  transform: skew(-20deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100px) skew(-20deg); }
  100% { transform: translateX(400px) skew(-20deg); }
}

.highlight-icon {
  width: 80px;
  height: 80px;
  background: rgba(26, 26, 26, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 2rem;
  color: #1a1a1a;
}

.highlight-content {
  flex: 1;
}

.highlight-title {
  font-size: 1.6rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 700;
}

.highlight-text {
  font-size: 1rem;
  color: #2d2d2d;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.highlight-text strong {
  color: #1a1a1a;
  font-weight: 700;
}

.highlight-text a {
  color: #1a1a1a;
  font-weight: 700;
  text-decoration: underline;
}

.speed-guarantee {
  margin: 0;
}

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

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

.guarantee-description {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

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

.guarantee-description a {
  color: #ffd700;
  text-decoration: underline;
}

.guarantee-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.stat-card:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

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

.stat-icon i {
  font-size: 1.2rem;
  color: #1a1a1a;
}

.stat-info {
  flex: 1;
}

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

.stat-label {
  font-size: 0.9rem;
  color: #ffd700;
  font-weight: 600;
  margin: 2px 0;
}

.stat-desc {
  font-size: 0.8rem;
  color: #cccccc;
  line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .chokdd-speed-container {
    padding: 0 30px;
  }
  
  .speed-content {
    gap: 60px;
  }
  
  .speed-intro {
    gap: 40px;
  }
  
  .guarantee-content {
    gap: 40px;
  }
  
  .features-list {
    grid-template-columns: 1fr;
  }
  
  .speed-features {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .chokdd-speed-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .speed-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .speed-description {
    font-size: 1rem;
    text-align: left;
  }
  
  .guarantee-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .features-title {
    font-size: 1.5rem;
  }
  
  .highlight-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px;
  }
  
  .highlight-text {
    text-align: left;
  }
  
  .speed-features {
    padding: 30px 25px;
  }
  
  .guarantee-title {
    font-size: 1.5rem;
  }
  
  .guarantee-description {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .chokdd-speed-container {
    padding: 0 15px;
  }
  
  .chokdd-speed-section {
    padding: 60px 0;
  }
  
  .speed-content {
    gap: 40px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .speed-description {
    font-size: 0.95rem;
  }
  
  .speed-features {
    padding: 25px 20px;
  }
  
  .features-title {
    font-size: 1.3rem;
  }
  
  .feature-step {
    padding: 20px 15px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .step-title {
    font-size: 1rem;
  }
  
  .step-description {
    font-size: 0.9rem;
  }
  
  .highlight-box {
    padding: 25px 20px;
  }
  
  .highlight-icon {
    width: 60px;
    height: 60px;
  }
  
  .highlight-icon i {
    font-size: 1.5rem;
  }
  
  .highlight-title {
    font-size: 1.3rem;
  }
  
  .highlight-text {
    font-size: 0.95rem;
  }
  
  .guarantee-title {
    font-size: 1.3rem;
  }
  
  .guarantee-description {
    font-size: 1rem;
  }
  
  .stat-card {
    padding: 15px;
  }
  
  .stat-icon {
    width: 40px;
    height: 40px;
  }
  
  .stat-icon i {
    font-size: 1rem;
  }
  
  .stat-value {
    font-size: 1.3rem;
  }
}

/* Lottovip Innovation Section */
.lottovip-innovation-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1e1e1e 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.lottovip-innovation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.innovation-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

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

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

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

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

.intro-image {
  position: relative;
}

.innovation-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.innovation-img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 70px rgba(255, 215, 0, 0.3);
}

.innovation-features {
  margin: 0;
}

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

.feature-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: left;
  transition: all 0.4s 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.6s ease;
}

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

.feature-card:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #1a1a1a;
}

.feature-title {
  font-size: 1.3rem;
  color: #ffd700;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.feature-description {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

.innovation-highlight {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 50px;
}

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

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

.highlight-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

.highlight-description strong {
  color: #ffd700;
}

.highlight-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.benefit-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

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

.benefit-item span {
  color: #ffffff;
  font-weight: 600;
}

.innovation-system {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
}

.system-title {
  font-size: 1.6rem;
  color: #ffd700;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.system-description {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: justify;
}

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

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

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

.system-feature:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

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

.system-icon i {
  font-size: 1.3rem;
  color: #1a1a1a;
}

.system-info {
  flex: 1;
}

.system-feature-title {
  font-size: 1.2rem;
  color: #ffd700;
  margin-bottom: 8px;
  font-weight: 600;
}

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

.innovation-cta {
  margin: 0;
}

.cta-box {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffd700, transparent, #ffd700, transparent, #ffd700);
  border-radius: 27px;
  opacity: 0.3;
  animation: border-glow 3s ease-in-out infinite;
  z-index: -1;
}

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

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

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

.cta-text {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 30px;
}

.cta-text a {
  color: #ffd700;
  text-decoration: underline;
  font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .lottovip-innovation-container {
    padding: 0 30px;
  }
  
  .innovation-content {
    gap: 60px;
  }
  
  .innovation-intro {
    gap: 40px;
  }
  
  .highlight-content {
    gap: 30px;
  }
  
  .feature-grid {
    gap: 30px;
  }
  
  .innovation-highlight {
    padding: 40px 30px;
  }
  
  .innovation-system {
    padding: 30px;
  }
  
  .cta-box {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .lottovip-innovation-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .innovation-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .innovation-description {
    font-size: 1rem;
    text-align: left;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .feature-column {
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .highlight-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
  
  .highlight-description {
    text-align: left;
  }
  
  .system-features {
    grid-template-columns: 1fr;
  }
  
  .innovation-highlight {
    padding: 30px 25px;
  }
  
  .innovation-system {
    padding: 25px;
  }
  
  .system-description {
    text-align: left;
  }
  
  .cta-box {
    padding: 30px 25px;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .lottovip-innovation-container {
    padding: 0 15px;
  }
  
  .lottovip-innovation-section {
    padding: 60px 0;
  }
  
  .innovation-content {
    gap: 40px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .innovation-description {
    font-size: 0.95rem;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.3rem;
  }
  
  .feature-title {
    font-size: 1.1rem;
  }
  
  .feature-description {
    font-size: 0.95rem;
  }
  
  .innovation-highlight {
    padding: 25px 20px;
  }
  
  .highlight-title {
    font-size: 1.5rem;
  }
  
  .highlight-description {
    font-size: 1rem;
  }
  
  .innovation-system {
    padding: 20px;
  }
  
  .system-title {
    font-size: 1.4rem;
  }
  
  .system-description {
    font-size: 1rem;
  }
  
  .system-feature {
    padding: 20px 15px;
  }
  
  .system-icon {
    width: 40px;
    height: 40px;
  }
  
  .system-icon i {
    font-size: 1.1rem;
  }
  
  .system-feature-title {
    font-size: 1.1rem;
  }
  
  .system-feature-desc {
    font-size: 0.9rem;
  }
  
  .cta-box {
    padding: 25px 20px;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-text {
    font-size: 1rem;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
  }
}

/* Ruay Platform Section */
.ruay-platform-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.ruay-platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.ruay-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

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

.intro-content {
  max-width: 100%;
}

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

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

.intro-image {
  position: relative;
}

.ruay-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.ruay-img:hover {
  transform: scale(1.02) rotate(-1deg);
  box-shadow: 0 25px 70px rgba(255, 215, 0, 0.3);
}

.ruay-features {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 50px;
}

.features-title {
  font-size: 1.8rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

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

.feature-item {
  background: rgba(255, 215, 0, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::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;
}

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

.feature-item:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.25);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

.feature-heading {
  font-size: 1.2rem;
  color: #ffd700;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.feature-text {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

.ruay-community {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 50px;
}

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

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

.community-description strong {
  color: #ffd700;
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 25px 20px;
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  display: block;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

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

.ruay-innovation {
  margin: 0;
}

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

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

.innovation-description {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

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

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

.innovation-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 18px;
  border-radius: 10px;
  border-left: 4px solid #ffd700;
  transition: all 0.3s ease;
}

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

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

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

.innovation-highlight {
  position: relative;
}

.highlight-card {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80px;
  height: 200%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  transform: skew(-15deg);
  animation: shimmer-ruay 4s infinite;
}

@keyframes shimmer-ruay {
  0% { transform: translateX(-100px) skew(-15deg); }
  100% { transform: translateX(350px) skew(-15deg); }
}

.highlight-header {
  margin-bottom: 15px;
}

.highlight-title {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin: 0;
  font-weight: 700;
}

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

.highlight-text {
  font-size: 1rem;
  color: #2d2d2d;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.highlight-text strong {
  color: #1a1a1a;
  font-weight: 700;
}

.highlight-badge {
  text-align: center;
}

.badge-text {
  background: rgba(26, 26, 26, 0.2);
  color: #1a1a1a;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
}

.ruay-legal {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
}

.legal-title {
  font-size: 1.6rem;
  color: #ffd700;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.legal-description {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

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

.legal-description a {
  color: #ffd700;
  text-decoration: underline;
  font-weight: 600;
}

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

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

.legal-badge:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.legal-badge i {
  color: #ffd700;
  font-size: 1.3rem;
}

.legal-badge span {
  color: #ffffff;
  font-weight: 600;
}

.ruay-cta {
  margin: 0;
}

.cta-container {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-container::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #ffd700, transparent, #ffd700, transparent, #ffd700);
  border-radius: 28px;
  opacity: 0.4;
  animation: border-glow-ruay 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes border-glow-ruay {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

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

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

.cta-text {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 30px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .ruay-platform-container {
    padding: 0 30px;
  }
  
  .ruay-content {
    gap: 60px;
  }
  
  .ruay-intro {
    gap: 40px;
  }
  
  .innovation-grid {
    gap: 40px;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .ruay-features {
    padding: 40px 30px;
  }
  
  .ruay-community {
    padding: 40px 30px;
  }
  
  .ruay-legal {
    padding: 30px;
  }
  
  .cta-container {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .ruay-platform-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .ruay-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .ruay-description {
    font-size: 1rem;
    text-align: left;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .features-title {
    font-size: 1.5rem;
  }
  
  .feature-item {
    padding: 25px 20px;
  }
  
  .community-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .innovation-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .ruay-features {
    padding: 30px 25px;
  }
  
  .ruay-community {
    padding: 30px 25px;
  }
  
  .community-description {
    text-align: left;
  }
  
  .innovation-description {
    text-align: left;
  }
  
  .legal-description {
    text-align: left;
  }
  
  .legal-badges {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .ruay-platform-container {
    padding: 0 15px;
  }
  
  .ruay-platform-section {
    padding: 60px 0;
  }
  
  .ruay-content {
    gap: 40px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .ruay-description {
    font-size: 0.95rem;
  }
  
  .ruay-features {
    padding: 25px 20px;
  }
  
  .features-title {
    font-size: 1.3rem;
  }
  
  .feature-item {
    padding: 20px 15px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
  
  .feature-heading {
    font-size: 1.1rem;
  }
  
  .feature-text {
    font-size: 0.95rem;
  }
  
  .ruay-community {
    padding: 25px 20px;
  }
  
  .community-title {
    font-size: 1.5rem;
  }
  
  .community-description {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .innovation-title {
    font-size: 1.5rem;
  }
  
  .innovation-description {
    font-size: 1rem;
  }
  
  .highlight-card {
    padding: 25px 20px;
  }
  
  .highlight-title {
    font-size: 1.2rem;
  }
  
  .highlight-text {
    font-size: 0.95rem;
  }
  
  .ruay-legal {
    padding: 25px 20px;
  }
  
  .legal-title {
    font-size: 1.4rem;
  }
  
  .legal-description {
    font-size: 1rem;
  }
  
  .cta-container {
    padding: 30px 20px;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-text {
    font-size: 1rem;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
  }
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
  border-top: 3px solid #ffd700;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.footer-logo i {
  font-size: 2rem;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer-brand-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

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

.contact-text {
  color: #cccccc;
  font-weight: 600;
}

/* Footer Links Section */
.footer-section {
  max-width: 100%;
}

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

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

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

.footer-nav-item {
  margin-bottom: 10px;
}

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

.footer-nav-link:hover {
  color: #ffd700;
  border-left-color: #ffd700;
  padding-left: 10px;
  transform: translateX(5px);
}

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

/* Footer Services Section */
.footer-service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border-left: 3px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.footer-service-item:hover {
  background: rgba(255, 215, 0, 0.08);
  border-left-color: #ffd700;
  transform: translateX(3px);
}

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

.footer-service-item span {
  color: #cccccc;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Footer Security Section */
.footer-security {
  max-width: 100%;
}

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

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

.security-badge:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

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

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

/* Footer CTA Button */
.footer-cta {
  margin-top: 10px;
}

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

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

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

/* Footer Legal Section */
.footer-legal {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding-top: 30px;
  text-align: center;
}

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

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

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

.legal-divider {
  color: rgba(255, 215, 0, 0.5);
  font-weight: bold;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.copyright-text {
  color: #cccccc;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.disclaimer-text {
  color: #999999;
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
}

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

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-brand {
    grid-column: auto;
    text-align: center;
  }
  
  .footer-description {
    text-align: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .security-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .footer-legal {
    padding-top: 20px;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .legal-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .site-footer {
    padding: 30px 0 10px;
  }
  
  .footer-content {
    gap: 25px;
    margin-bottom: 25px;
  }
  
  .footer-logo {
    justify-content: center;
    gap: 10px;
  }
  
  .footer-logo i {
    font-size: 1.7rem;
  }
  
  .footer-brand-text {
    font-size: 1.5rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .security-badges {
    grid-template-columns: 1fr;
  }
  
  .security-badge,
  .footer-service-item {
    padding: 8px 10px;
  }
  
  .security-badge span,
  .footer-service-item span {
    font-size: 0.85rem;
  }
  
  .footer-nav-link {
    font-size: 0.95rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .copyright-text {
    font-size: 0.85rem;
  }
  
  .disclaimer-text {
    font-size: 0.75rem;
  }
  
  .legal-link {
    font-size: 0.9rem;
  }
}

/* Focus States for Accessibility */
.contact-link:focus,
.footer-nav-link:focus,
.footer-cta-btn:focus,
.legal-link:focus {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

/* Sticky Bottom Buttons */
.sticky-bottom-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 1200;
  padding: 0;
}

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

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.sticky-btn i {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.btn-text {
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
  text-align: center;
  white-space: nowrap;
}

/* Individual Button Styles */
.sticky-btn-login {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.8) 0%, rgba(41, 128, 185, 0.8) 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, rgba(52, 152, 219, 1) 0%, rgba(41, 128, 185, 1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.sticky-btn-register {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.8) 0%, rgba(39, 174, 96, 0.8) 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, rgba(46, 204, 113, 1) 0%, rgba(39, 174, 96, 1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.sticky-btn-credit {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 237, 78, 0.9) 100%);
  color: #1a1a1a;
  position: relative;
}

.sticky-btn-credit::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60px;
  height: 200%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
  transform: skew(-20deg);
  animation: shine-sticky 3s infinite;
  pointer-events: none;
}

@keyframes shine-sticky {
  0% { transform: translateX(-100px) skew(-20deg); }
  100% { transform: translateX(200px) skew(-20deg); }
}

.sticky-btn-credit:hover {
  background: linear-gradient(135deg, rgba(255, 237, 78, 1) 0%, rgba(255, 215, 0, 1) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-bottom-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 10px 6px;
    gap: 3px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .btn-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    gap: 2px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .btn-text {
    font-size: 0.7rem;
    line-height: 1.2;
  }
}

@media (max-width: 360px) {
  .btn-text {
    font-size: 0.65rem;
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .sticky-btn {
    min-height: 50px;
  }
}

/* Focus States for Accessibility */
.sticky-btn:focus {
  outline: 2px solid #ffd700;
  outline-offset: -2px;
}

/* Ensure buttons stay above other content */
.sticky-bottom-buttons {
  isolation: isolate;
}

/* Prevent layout shift when buttons are rendered */
body {
  padding-bottom: 60px;
}

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

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

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

.login-page::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 70%);
  pointer-events: none;
}

.login-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Login Card */
.login-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

/* Error Message */
.error-message {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(192, 57, 43, 0.1) 100%);
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 12px;
  color: #e74c3c;
  font-size: 0.95rem;
  font-weight: 600;
}

.error-message.show {
  display: flex;
  animation: slideDown 0.3s ease;
}

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

.error-message i {
  font-size: 1.1rem;
}

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

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

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

.form-label i {
  font-size: 0.9rem;
  width: 16px;
}

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

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

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

.form-input:invalid {
  border-color: rgba(231, 76, 60, 0.5);
}

.form-input.error {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
}

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

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}

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

.password-toggle:focus {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Field Error */
.field-error {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
  font-weight: 500;
}

/* Login Button */
.login-btn {
  width: 100%;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a1a;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid #1a1a1a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

.register-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, rgba(46, 204, 113, 0.8), rgba(39, 174, 96, 0.8));
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
}

.register-btn:hover {
  background: linear-gradient(45deg, rgba(46, 204, 113, 1), rgba(39, 174, 96, 1));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
}

.additional-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.forgot-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

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

/* Features Grid */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 100%;
}

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

.feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.feature-item i {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 8px;
  display: block;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-page {
    padding: 20px 0;
  }
  
  .login-container {
    padding: 0 15px;
    gap: 30px;
  }
  
  .login-card {
    padding: 30px 25px;
    max-width: none;
  }
  
  .login-title {
    font-size: 1.7rem;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-item {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 0 10px;
  }
  
  .login-card {
    padding: 25px 20px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .login-logo {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .password-toggle {
    right: 12px;
  }
  
  .login-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .feature-item {
    padding: 12px 10px;
  }
  
  .feature-item i {
    font-size: 1.3rem;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
}

/* Focus States for Accessibility */
.form-input:focus,
.login-btn:focus,
.register-btn:focus,
.forgot-link:focus {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .login-card {
    border-color: #ffd700;
    border-width: 2px;
  }
  
  .form-input {
    border-width: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

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

.register-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

/* Register Card */
.register-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

/* Messages */
.error-message, .success-message {
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}

.error-message {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(192, 57, 43, 0.1) 100%);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}

.success-message {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
}

.error-message.show, .success-message.show {
  display: flex;
  animation: slideDown 0.3s ease;
}

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

.error-message i, .success-message i {
  font-size: 1.1rem;
}

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

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

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

.form-label i {
  font-size: 0.9rem;
  width: 16px;
}

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

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

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

.form-input:invalid {
  border-color: rgba(231, 76, 60, 0.5);
}

.form-input.error {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
}

.form-input.success {
  border-color: #2ecc71;
  background: rgba(46, 204, 113, 0.1);
}

/* Field Help */
.field-help {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-top: 6px;
  font-family: 'Sarabun', sans-serif;
}

.field-help i {
  font-size: 0.8rem;
}

/* Field Error */
.field-error {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
  font-weight: 500;
}

/* Register Button */
.register-btn {
  width: 100%;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a1a;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid #1a1a1a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Register Footer */
.register-footer {
  text-align: center;
}

.login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffd700;
  text-decoration: none;
  border: 2px solid #ffd700;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.login-btn:hover {
  background: #ffd700;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.terms-notice {
  margin-top: 20px;
}

.terms-text {
  font-size: 0.85rem;
  color: #cccccc;
  line-height: 1.5;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.terms-text i {
  color: #ffd700;
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}

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

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

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 800px;
}

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

.benefit-item::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;
}

.benefit-item:hover::before {
  left: 100%;
}

.benefit-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.benefit-item i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 12px;
  display: block;
  position: relative;
  z-index: 1;
}

.benefit-item h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.benefit-item span {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-page {
    padding: 20px 0;
  }
  
  .register-container {
    padding: 0 15px;
    gap: 30px;
  }
  
  .register-card {
    padding: 30px 25px;
    max-width: none;
  }
  
  .register-title {
    font-size: 1.7rem;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .benefit-item {
    padding: 20px 15px;
  }
  
  .terms-text {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .register-container {
    padding: 0 10px;
  }
  
  .register-card {
    padding: 25px 20px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .register-logo {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .benefit-item {
    padding: 15px 12px;
  }
  
  .benefit-item i {
    font-size: 1.7rem;
  }
  
  .benefit-item h3 {
    font-size: 1rem;
  }
  
  .benefit-item span {
    font-size: 0.85rem;
  }
  
  .terms-text {
    font-size: 0.8rem;
  }
}

/* Focus States for Accessibility */
.form-input:focus,
.register-btn:focus,
.login-btn:focus,
.terms-link:focus,
.privacy-link:focus {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .register-card {
    border-color: #ffd700;
    border-width: 2px;
  }
  
  .form-input {
    border-width: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

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

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

.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  margin: 0;
  max-width: 900px;
}

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

.highlight-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  padding: 12px 20px;
  backdrop-filter: blur(10px);
}

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

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

.hero-cta-btn {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a1a;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 20px 40px;
  border-radius: 60px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-cta-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer-hero 3s infinite;
}

@keyframes shimmer-hero {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-cta-btn:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
}

/* Promotion Sections */
.promotion-section {
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  position: relative;
  overflow: hidden;
}

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

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

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

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

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

.promotion-icon i {
  font-size: 2rem;
  color: #1a1a1a;
}

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

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

.promotion-features {
  max-width: 100%;
}

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

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

.feature-item:hover {
  background: rgba(255, 215, 0, 0.05);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.15);
}

.feature-item i {
  color: #ffd700;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item span {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
}

/* Promotion CTA */
.promotion-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.03) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
}

.amount-highlight,
.bonus-highlight,
.referral-highlight,
.cashback-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.amount,
.percentage {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 2px 2px 8px rgba(255, 215, 0, 0.5);
  line-height: 1;
}

.currency,
.bonus-text,
.cashback-text {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promotion-btn {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a1a;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  width: 100%;
  justify-content: center;
  max-width: 250px;
}

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

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

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

@media (max-width: 768px) {
  .hero-promotion {
    padding: 80px 0;
  }
  
  .hero-content {
    gap: 30px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-highlight {
    gap: 15px;
  }
  
  .highlight-badge {
    padding: 8px 15px;
  }
  
  .highlight-badge span {
    font-size: 0.9rem;
  }
  
  .hero-cta-btn {
    font-size: 1.1rem;
    padding: 16px 32px;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .promotion-title {
    font-size: 1.7rem;
  }
  
  .feature-item {
    padding: 15px;
  }
  
  .feature-item span {
    font-size: 1rem;
  }
  
  .promotion-cta {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .hero-container,
  .promotion-container {
    padding: 0 15px;
  }
  
  .hero-promotion {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-highlight {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .highlight-badge {
    padding: 6px 12px;
  }
  
  .highlight-badge span {
    font-size: 0.85rem;
  }
  
  .hero-cta-btn {
    font-size: 1rem;
    padding: 14px 28px;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-header {
    margin-bottom: 40px;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.5rem;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .feature-list {
    gap: 15px;
  }
  
  .feature-item {
    padding: 12px 15px;
    gap: 12px;
  }
  
  .feature-item span {
    font-size: 0.95rem;
  }
  
  .promotion-cta {
    padding: 25px 20px;
    gap: 20px;
  }
  
  .amount,
  .percentage {
    font-size: 2.5rem;
  }
  
  .currency,
  .bonus-text,
  .cashback-text {
    font-size: 1rem;
  }
  
  .promotion-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
  .feature-item {
    border-width: 2px;
  }
  
  .promotion-cta {
    border-width: 3px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}