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

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

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

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

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

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

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

.btn-secondary {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.6);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 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: 2;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #b8b8b8;
  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: 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;
}

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

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

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

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

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

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

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

.image-overlay {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.9), rgba(78, 205, 196, 0.9));
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.overlay-content {
  display: flex;
  gap: 30px;
  align-items: center;
}

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

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 2px;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .overlay-content {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .overlay-content {
    flex-direction: column;
    gap: 15px;
  }
  
  .image-overlay {
    bottom: -30px;
    left: 20px;
    right: 20px;
    transform: none;
  }
}

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

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

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  position: relative;
}

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

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

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

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

/* Navigation Styles */
.nav {
  display: flex;
  align-items: center;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 25px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

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

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

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

.btn-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: #ffffff;
  border-radius: 25px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.hamburger {
  width: 25px;
  height: 3px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 15, 35, 0.98);
  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 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
}

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

.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 107, 0.1), transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(78, 205, 196, 0.1), transparent 50%);
  pointer-events: none;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

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

.mobile-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-logo-icon i {
  font-size: 1.2rem;
  color: #ffffff;
}

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

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

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

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

/* Mobile Navigation */
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px 25px;
  position: relative;
  z-index: 2;
}

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

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border-radius: 15px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.mobile-nav-link i {
  font-size: 1.1rem;
  width: 25px;
  text-align: center;
  color: #ff6b6b;
}

/* Mobile Menu CTA */
.mobile-menu-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: #ffffff;
  border-radius: 15px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

.btn-mobile-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.6);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .header-content {
    padding: 12px 0;
  }
  
  .nav-list {
    gap: 4px;
  }
  
  .nav-link {
    padding: 10px 16px;
    font-size: 0.95rem;
  }
  
  .btn-cta {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
  }
  
  .logo-icon i {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 10px 0;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .logo-icon {
    width: 35px;
    height: 35px;
  }
  
  .logo-icon i {
    font-size: 1.2rem;
  }
  
  .hamburger {
    width: 22px;
    height: 2.5px;
  }
  
  .mobile-menu-header {
    padding: 15px 20px;
  }
  
  .mobile-nav {
    padding: 25px 20px;
  }
  
  .mobile-nav-link {
    padding: 15px 18px;
    font-size: 1rem;
  }
  
  .btn-mobile-cta {
    padding: 16px 20px;
    font-size: 1rem;
  }
}

/* Body 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;
  }
}

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

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

.about-content {
  position: relative;
  z-index: 2;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.about-text strong {
  color: #ff6b6b;
  font-weight: 600;
}

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

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

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

.image-features {
  position: absolute;
  top: -15px;
  right: -15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.9), rgba(78, 205, 196, 0.9));
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

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

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

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

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

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

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

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

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

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

.service-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #b8b8b8;
}

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

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-20px, -20px) rotate(360deg); }
}

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

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

.cta-description {
  font-size: 1.2rem;
  color: #b8b8b8;
  margin-bottom: 30px;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .about-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image {
    order: -1;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .about-main {
    margin-bottom: 60px;
  }
  
  .about-text p {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }
  
  .service-card {
    padding: 25px;
  }
  
  .image-features {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
  
  .cta-section {
    padding: 40px 30px;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
  
  .cta-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 1.3rem;
  }
  
  .service-title {
    font-size: 1.2rem;
  }
  
  .feature-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .cta-section {
    padding: 30px 20px;
  }
  
  .cta-title {
    font-size: 1.4rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

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

.payout-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(78, 205, 196, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.payout-content {
  position: relative;
  z-index: 2;
}

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

.payout-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 80px;
}

.payout-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

.highlight-item {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(78, 205, 196, 0.95));
  padding: 15px 20px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.highlight-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.highlight-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 5px;
}

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

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

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

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

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

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

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

.card-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.card-description strong {
  color: #ff6b6b;
  font-weight: 600;
}

/* Comparison Section */
.comparison-section {
  margin-bottom: 80px;
}

.comparison-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.comparison-card.winner {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

.comparison-card.winner::before {
  content: 'แนะนำ';
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

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

.comparison-header i {
  font-size: 1.2rem;
  color: #ff6b6b;
}

.comparison-header h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

.comparison-rate {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.comparison-label {
  font-size: 1rem;
  color: #b8b8b8;
  margin-bottom: 25px;
}

.comparison-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.feature-item i {
  font-size: 0.8rem;
}

.feature-item i.fa-check {
  color: #4ecdc4;
}

.feature-item i.fa-times {
  color: #ff6b6b;
}

/* Calculation Section */
.calculation-section {
  margin-bottom: 80px;
}

.calculation-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.calculation-example {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.example-card {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  min-width: 300px;
}

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

.example-header i {
  font-size: 1.2rem;
  color: #ff6b6b;
}

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

.example-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.example-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.example-row.highlight {
  background: rgba(255, 107, 107, 0.1);
  padding: 15px;
  border-radius: 10px;
  border-bottom: none;
  margin-top: 10px;
}

.example-row .label {
  font-size: 1rem;
  color: #b8b8b8;
}

.example-row .value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.example-row.highlight .value {
  color: #ff6b6b;
  font-size: 1.3rem;
}

.calculation-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.calculation-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

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

/* Bonus Section */
.bonus-section {
  margin-bottom: 80px;
}

.bonus-content {
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 107, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: center;
}

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

.bonus-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 25px;
}

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

.bonus-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

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

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

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

/* Testimony Section */
.testimony-section {
  text-align: center;
}

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

.testimony-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 40px;
}

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

.cta-final {
  margin-top: 40px;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .payout-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .payout-visual {
    order: -1;
  }
  
  .bonus-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .bonus-benefits {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .payout-section {
    padding: 60px 0;
  }
  
  .payout-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .payout-main {
    margin-bottom: 60px;
  }
  
  .payout-highlight {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .comparison-title,
  .calculation-title {
    font-size: 1.6rem;
  }
  
  .comparison-rate {
    font-size: 2.5rem;
  }
  
  .calculation-section,
  .bonus-section {
    margin-bottom: 60px;
  }
  
  .bonus-content {
    padding: 30px;
  }
  
  .bonus-benefits {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .payout-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .payout-card {
    padding: 20px;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .comparison-card {
    padding: 20px;
  }
  
  .comparison-rate {
    font-size: 2rem;
  }
  
  .comparison-title,
  .calculation-title,
  .testimony-title {
    font-size: 1.4rem;
  }
  
  .example-card {
    padding: 20px;
    min-width: auto;
  }
  
  .bonus-content {
    padding: 20px;
  }
  
  .highlight-item {
    padding: 10px 15px;
  }
  
  .highlight-number {
    font-size: 1.4rem;
  }
  
  .highlight-label {
    font-size: 0.8rem;
  }
  
  .btn-large {
    padding: 15px 30px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }
}

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

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

.login-content {
  position: relative;
  z-index: 2;
}

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

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

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

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.info-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.card-icon i {
  font-size: 1.3rem;
  color: #ffffff;
}

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

.card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.card-description strong {
  color: #ff6b6b;
  font-weight: 600;
}

.login-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.login-features {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.9), rgba(78, 205, 196, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

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

/* Interface Section */
.interface-section {
  margin-bottom: 80px;
  text-align: center;
}

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

.interface-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 40px;
}

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

.lottery-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.category-item:hover {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.category-item i {
  font-size: 1.2rem;
  color: #ff6b6b;
}

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

/* Stability Section */
.stability-section {
  margin-bottom: 80px;
}

.stability-content {
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 107, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.stability-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

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

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

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

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

.stability-item i {
  font-size: 1.1rem;
  color: #ff6b6b;
  width: 18px;
  text-align: center;
}

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

/* Login Steps */
.login-steps {
  margin-bottom: 80px;
}

.steps-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

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

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.step-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

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

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

/* Security Section */
.security-section {
  margin-bottom: 80px;
}

.security-content {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(78, 205, 196, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
}

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

.security-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 30px;
}

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

.security-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

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

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

/* Convenience Section */
.convenience-section {
  margin-bottom: 80px;
}

.convenience-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

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

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

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

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

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

.convenience-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.convenience-icon i {
  font-size: 1.4rem;
  color: #ffffff;
}

.convenience-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.convenience-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.convenience-card a {
  color: #4ecdc4;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.convenience-card a:hover {
  color: #ff6b6b;
}

/* Final CTA */
.final-cta {
  text-align: center;
}

.cta-content {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.cta-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 25px 25px;
  animation: float 25s infinite linear;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.cta-description {
  font-size: 1.1rem;
  color: #b8b8b8;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

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

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .login-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .login-visual {
    order: -1;
  }
  
  .stability-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
  }
  
  .convenience-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .login-section {
    padding: 60px 0;
  }
  
  .login-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .login-main {
    margin-bottom: 60px;
  }
  
  .login-features {
    position: static;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
    transform: none;
    left: auto;
  }
  
  .interface-section,
  .stability-section,
  .login-steps,
  .security-section,
  .convenience-section {
    margin-bottom: 60px;
  }
  
  .interface-title,
  .steps-title,
  .security-title,
  .convenience-title {
    font-size: 1.6rem;
  }
  
  .lottery-categories {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .stability-content,
  .security-content,
  .cta-content {
    padding: 30px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .step-item {
    padding: 20px;
  }
  
  .security-features {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .info-card {
    padding: 20px;
  }
  
  .card-icon {
    width: 45px;
    height: 45px;
  }
  
  .card-icon i {
    font-size: 1.2rem;
  }
  
  .card-title {
    font-size: 1.1rem;
  }
  
  .feature-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .interface-title,
  .steps-title,
  .security-title,
  .convenience-title {
    font-size: 1.4rem;
  }
  
  .category-item {
    padding: 15px;
  }
  
  .stability-content,
  .security-content,
  .cta-content {
    padding: 25px 20px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }
  
  .convenience-icon {
    width: 50px;
    height: 50px;
  }
  
  .convenience-icon i {
    font-size: 1.2rem;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

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

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

.lottery-types-content {
  position: relative;
  z-index: 2;
}

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

.lottery-types-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 80px;
}

.lottery-types-info {
  max-width: 100%;
}

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

.main-description strong {
  color: #ff6b6b;
  font-weight: 600;
}

.main-description a {
  color: #4ecdc4;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.main-description a:hover {
  color: #ff6b6b;
}

.special-lotteries {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.special-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.special-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.special-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.special-icon i {
  font-size: 1.3rem;
  color: #ffffff;
}

.special-content {
  flex: 1;
}

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

.special-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
}

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

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

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

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

.variety-stats {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-badge {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(78, 205, 196, 0.95));
  padding: 12px 18px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 3px;
}

/* Popular Lotteries */
.popular-lotteries {
  margin-bottom: 80px;
}

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

.popular-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

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

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

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

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

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

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

.lottery-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.lottery-card:hover .lottery-icon {
  transform: scale(1.1);
}

.lottery-icon i {
  font-size: 1.4rem;
  color: #ffffff;
}

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

.lottery-schedule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.lottery-schedule i {
  font-size: 0.9rem;
  color: #ff6b6b;
}

.lottery-schedule span {
  font-size: 0.9rem;
  color: #e0e0e0;
}

.lottery-details {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.detail-item {
  flex: 1;
  padding: 8px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Expansion Section */
.expansion-section {
  margin-bottom: 80px;
}

.expansion-content {
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 107, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.expansion-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

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

.expansion-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

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

.benefit-item i {
  font-size: 1.1rem;
  color: #ff6b6b;
  width: 18px;
  text-align: center;
}

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

/* Organization Section */
.organization-section {
  margin-bottom: 80px;
}

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

.organization-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.organization-description strong {
  color: #ff6b6b;
  font-weight: 600;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  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, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

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

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

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

.feature-header i {
  font-size: 1.2rem;
  color: #ff6b6b;
}

.feature-header h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

/* VIP Section */
.vip-section {
  margin-bottom: 80px;
}

.vip-content {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(78, 205, 196, 0.15));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.vip-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: float 30s infinite linear;
}

.vip-visual {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.vip-badge {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
  transform: rotate(-10deg);
  transition: transform 0.3s ease;
}

.vip-badge:hover {
  transform: rotate(0deg) scale(1.05);
}

.vip-badge i {
  font-size: 2rem;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.vip-badge span {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
}

.vip-info {
  position: relative;
  z-index: 2;
}

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

.vip-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 25px;
}

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

.vip-benefits {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

.vip-benefit:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}

.vip-benefit i {
  font-size: 0.9rem;
  color: #ffd700;
}

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

/* Analysis Section */
.analysis-section {
  margin-bottom: 80px;
}

.analysis-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

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

.analysis-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

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

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

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

.analysis-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.analysis-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.analysis-icon i {
  font-size: 1.1rem;
  color: #ffffff;
}

.analysis-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.analysis-item p {
  font-size: 0.9rem;
  color: #b8b8b8;
  line-height: 1.4;
}

/* Final CTA */
.final-cta {
  text-align: center;
}

.cta-wrapper {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: float 35s infinite linear;
}

.final-cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.final-cta-description {
  font-size: 1.2rem;
  color: #b8b8b8;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.btn-large {
  position: relative;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .lottery-types-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .lottery-visual {
    order: -1;
  }
  
  .expansion-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .expansion-benefits {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .vip-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .analysis-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .lottery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .lottery-types-section {
    padding: 60px 0;
  }
  
  .lottery-types-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .lottery-types-main {
    margin-bottom: 60px;
  }
  
  .variety-stats {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
  
  .popular-lotteries,
  .expansion-section,
  .organization-section,
  .vip-section,
  .analysis-section {
    margin-bottom: 60px;
  }
  
  .popular-title,
  .organization-title,
  .analysis-title {
    font-size: 1.6rem;
  }
  
  .lottery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .organization-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .expansion-content,
  .vip-content,
  .cta-wrapper {
    padding: 30px;
  }
  
  .vip-benefits {
    justify-content: center;
  }
  
  .final-cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .lottery-types-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .special-item {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .special-icon {
    width: 45px;
    height: 45px;
  }
  
  .special-icon i {
    font-size: 1.2rem;
  }
  
  .lottery-card {
    padding: 20px;
  }
  
  .lottery-icon {
    width: 50px;
    height: 50px;
  }
  
  .lottery-icon i {
    font-size: 1.2rem;
  }
  
  .feature-card {
    padding: 25px;
  }
  
  .vip-badge {
    width: 80px;
    height: 80px;
  }
  
  .vip-badge i {
    font-size: 1.6rem;
  }
  
  .vip-title {
    font-size: 1.5rem;
  }
  
  .expansion-benefits {
    flex-direction: column;
  }
  
  .vip-benefits {
    justify-content: center;
    gap: 10px;
  }
  
  .analysis-item {
    padding: 15px;
  }
  
  .analysis-icon {
    width: 35px;
    height: 35px;
  }
  
  .expansion-content,
  .vip-content,
  .cta-wrapper {
    padding: 25px 20px;
  }
  
  .final-cta-title {
    font-size: 1.5rem;
  }
  
  .btn-large {
    width: 100%;
    max-width: 280px;
  }
}

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

.security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 40% 20%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 60% 80%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.security-content {
  position: relative;
  z-index: 2;
}

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

.security-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 80px;
}

.security-intro {
  margin-bottom: 40px;
}

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

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

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

.feature-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s 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, 255, 255, 0.08), transparent);
  transition: left 0.5s;
}

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

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

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

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

.feature-content {
  flex: 1;
}

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

.feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

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

.security-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.9), rgba(78, 205, 196, 0.9));
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
}

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

/* Reviews Section */
.reviews-section {
  margin-bottom: 80px;
}

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

.reviews-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

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

.issue-analysis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.issue-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 107, 107, 0.05);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.issue-card:hover {
  background: rgba(255, 107, 107, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.issue-icon i {
  font-size: 1.2rem;
  color: #ffffff;
}

.issue-content {
  flex: 1;
}

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

.issue-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.issue-description a {
  color: #4ecdc4;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.issue-description a:hover {
  color: #ff6b6b;
}

/* Warning Section */
.warning-section {
  margin-bottom: 80px;
}

.warning-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.warning-content {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(255, 193, 7, 0.08));
  border: 2px solid rgba(255, 193, 7, 0.3);
  border-radius: 25px;
  padding: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.warning-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.03) 1px, transparent 1px);
  background-size: 25px 25px;
  animation: float 25s infinite linear;
}

.warning-main {
  position: relative;
  z-index: 2;
}

.warning-main p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.warning-main strong {
  color: #ffc107;
  font-weight: 600;
}

.warning-alerts {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 2;
}

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

.alert-item:hover {
  background: rgba(255, 193, 7, 0.15);
  transform: translateX(5px);
}

.alert-item i {
  font-size: 1rem;
  color: #ffc107;
  width: 18px;
  text-align: center;
}

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

/* Risk Management */
.risk-management {
  margin-bottom: 80px;
}

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

.risk-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

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

.safety-tips {
  background: rgba(78, 205, 196, 0.05);
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 25px;
  padding: 40px;
}

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

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

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

.tip-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tip-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tip-icon i {
  font-size: 1.1rem;
  color: #ffffff;
}

.tip-item span {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e0e0e0;
}

/* Contact Section */
.contact-section {
  margin-bottom: 80px;
}

.contact-content {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.contact-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.contact-info strong {
  color: #ff6b6b;
  font-weight: 600;
}

.contact-info a {
  color: #4ecdc4;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #ff6b6b;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

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

.channel-item i {
  font-size: 1.1rem;
  color: #ff6b6b;
  width: 20px;
  text-align: center;
}

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

/* Responsibility Section */
.responsibility-section {
  margin-bottom: 80px;
}

.responsibility-content {
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.08), rgba(255, 107, 107, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
}

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

.responsibility-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

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

.responsibility-advice {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

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

.advice-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.advice-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advice-icon i {
  font-size: 1.2rem;
  color: #ffffff;
}

.advice-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

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

/* Final Security CTA */
.final-security-cta {
  text-align: center;
}

.security-cta-content {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.security-cta-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: float 30s infinite linear;
}

.security-cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.security-cta-description {
  font-size: 1.2rem;
  color: #b8b8b8;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.security-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .security-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .security-visual {
    order: -1;
  }
  
  .warning-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .issue-analysis {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .responsibility-advice {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .security-section {
    padding: 60px 0;
  }
  
  .security-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .security-main {
    margin-bottom: 60px;
  }
  
  .security-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
  
  .reviews-section,
  .warning-section,
  .risk-management,
  .contact-section,
  .responsibility-section {
    margin-bottom: 60px;
  }
  
  .reviews-title,
  .warning-title,
  .risk-title,
  .responsibility-title {
    font-size: 1.6rem;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .warning-content,
  .safety-tips,
  .contact-content,
  .responsibility-content,
  .security-cta-content {
    padding: 30px;
  }
  
  .security-cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .security-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .feature-item {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }
  
  .feature-icon i {
    font-size: 1.2rem;
  }
  
  .issue-card,
  .advice-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .issue-icon,
  .advice-icon {
    margin: 0 auto;
  }
  
  .tip-item {
    padding: 15px;
  }
  
  .tip-icon {
    width: 35px;
    height: 35px;
  }
  
  .security-badge {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  
  .warning-content,
  .safety-tips,
  .contact-content,
  .responsibility-content,
  .security-cta-content {
    padding: 25px 20px;
  }
  
  .security-cta-title {
    font-size: 1.5rem;
  }
  
  .security-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  margin-top: 80px;
}

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

.footer-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 20px;
}

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

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

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

.footer-logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.footer-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.footer-feature i {
  font-size: 1rem;
  color: #ff6b6b;
  width: 18px;
  text-align: center;
}

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

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

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

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

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

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

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

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

.footer-link i {
  font-size: 0.85rem;
  color: #ff6b6b;
  width: 15px;
  text-align: center;
}

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

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

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

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

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

.contact-text {
  font-size: 0.95rem;
  color: #e0e0e0;
}

/* Footer CTA */
.footer-cta {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: float 25s infinite linear;
}

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

.cta-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.cta-description {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.5;
}

.cta-button {
  position: relative;
  z-index: 2;
}

.btn-footer-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: #ffffff;
  border-radius: 25px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

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

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

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

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

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 25px;
}

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

.footer-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

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

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

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

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

/* Footer Disclaimer */
.footer-disclaimer {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
}

.disclaimer-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #e0e0e0;
  text-align: center;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
  }
  
  .footer-cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    padding: 40px 0 15px;
  }
  
  .footer-main {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
  
  .footer-links {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-logo-icon {
    width: 45px;
    height: 45px;
  }
  
  .footer-logo-icon i {
    font-size: 1.3rem;
  }
  
  .cta-title {
    font-size: 1.4rem;
  }
  
  .footer-cta {
    padding: 25px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    text-align: center;
  }
  
  .footer-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 30px 0 10px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-features {
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-logo {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    margin-bottom: 15px;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-logo-icon {
    width: 40px;
    height: 40px;
  }
  
  .footer-logo-icon i {
    font-size: 1.2rem;
  }
  
  .footer-description {
    text-align: center;
    font-size: 0.95rem;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .cta-title {
    font-size: 1.3rem;
  }
  
  .footer-cta {
    padding: 20px;
  }
  
  .btn-footer-cta {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .footer-badges {
    gap: 10px;
  }
  
  .security-badge {
    padding: 5px 10px;
  }
  
  .security-badge i,
  .security-badge span {
    font-size: 0.75rem;
  }
  
  .disclaimer-text {
    font-size: 0.8rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.98), rgba(26, 26, 46, 0.98));
  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);
  padding: 0;
}

.sticky-buttons-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  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;
  font-family: 'Sarabun', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  min-height: 60px;
}

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

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

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

.sticky-btn span {
  font-size: 0.8rem;
  line-height: 1;
  transition: all 0.3s ease;
}

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

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

/* Login Button */
.sticky-btn-login {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #44a08d, #4ecdc4);
  color: #ffffff;
  box-shadow: 0 -5px 15px rgba(78, 205, 196, 0.4);
}

/* Register Button */
.sticky-btn-register {
  background: linear-gradient(135deg, #ff8e53, #ff6b6b);
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: #ffffff;
  box-shadow: 0 -5px 15px rgba(255, 107, 107, 0.4);
}

/* Credit Button */
.sticky-btn-credit {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a1a2e;
  position: relative;
}

.sticky-btn-credit::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 8px;
  height: 8px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.sticky-btn-credit:hover {
  background: linear-gradient(135deg, #ffed4e, #ffd700);
  color: #1a1a2e;
  box-shadow: 0 -5px 15px rgba(255, 215, 0, 0.5);
}

.sticky-btn-credit i,
.sticky-btn-credit span {
  position: relative;
  z-index: 2;
}

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

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    gap: 2px;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
    line-height: 1.1;
  }
  
  .sticky-btn-credit::after {
    width: 6px;
    height: 6px;
    top: 1px;
    right: 1px;
  }
}

@media (max-width: 360px) {
  .sticky-btn span {
    font-size: 0.65rem;
  }
  
  .sticky-btn i {
    font-size: 0.85rem;
  }
}

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

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

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

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

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

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.login-box {
  width: 100%;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.login-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

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

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

.login-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.login-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

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

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

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

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

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

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

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

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

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

.form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: #4ecdc4;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

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

.toggle-password {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: #b8b8b8;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
  z-index: 2;
}

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

/* Error Messages */
.error-message {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideIn 0.3s ease;
}

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

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

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

.field-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 5px;
  font-weight: 500;
  display: none;
}

.field-error.show {
  display: block;
  animation: slideIn 0.3s ease;
}

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

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

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

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

.remember-me input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-color: transparent;
}

.remember-me input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.remember-text {
  font-size: 0.9rem;
  color: #e0e0e0;
}

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

.forgot-password:hover {
  color: #ff6b6b;
  text-decoration: underline;
}

/* Buttons */
.login-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  border: none;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  font-family: 'Sarabun', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

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

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

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

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

.btn-loader {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.divider span {
  background: rgba(255, 255, 255, 0.05);
  color: #b8b8b8;
  padding: 0 20px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.register-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  border: none;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: 'Sarabun', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
}

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

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

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.5);
  color: #ffffff;
}

/* Login Footer */
.login-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.security-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

.security-item i {
  font-size: 0.9rem;
  color: #4ecdc4;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 80px 0 60px;
  }
  
  .login-box {
    padding: 30px;
    margin: 0 20px;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .form-options {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .security-info {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .login-box {
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .login-header {
    margin-bottom: 30px;
  }
  
  .login-logo {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px 12px 12px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 0.9rem;
  }
  
  .toggle-password {
    right: 12px;
  }
  
  .login-btn,
  .register-btn {
    padding: 12px;
    font-size: 1rem;
  }
  
  .security-info {
    flex-direction: column;
    gap: 10px;
  }
  
  .security-item {
    justify-content: center;
  }
}

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

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

.register-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.register-box {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.register-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

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

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

.register-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.register-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

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

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

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

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

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

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

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

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

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

.form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: #4ecdc4;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

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

.form-input.success {
  border-color: #4ecdc4;
  background: rgba(78, 205, 196, 0.1);
}

/* Field Help */
.field-help {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #b8b8b8;
  margin-top: 5px;
}

.field-help i {
  color: #4ecdc4;
  font-size: 0.75rem;
}

/* Messages */
.success-message {
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideIn 0.3s ease;
}

.error-message {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideIn 0.3s ease;
}

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

.success-message i {
  color: #4ecdc4;
  font-size: 1rem;
}

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

.success-message span,
.error-message span {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

.field-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 5px;
  font-weight: 500;
  display: none;
}

.field-error.show {
  display: block;
  animation: slideIn 0.3s ease;
}

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

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

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

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

.terms-checkbox input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  border-color: transparent;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.terms-text {
  font-size: 0.9rem;
  color: #e0e0e0;
  line-height: 1.4;
}

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

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

/* Buttons */
.register-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  border: none;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  font-family: 'Sarabun', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

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

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

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.5);
}

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

.btn-loader {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.divider span {
  background: rgba(255, 255, 255, 0.05);
  color: #b8b8b8;
  padding: 0 20px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.login-btn {
  width: 100%;
  padding: 15px;
  background: transparent;
  border: 2px solid #4ecdc4;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #4ecdc4;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: 'Sarabun', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
}

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

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

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

/* Register Footer */
.register-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.security-info {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

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

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

.security-item i {
  font-size: 0.9rem;
  color: #4ecdc4;
}

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

/* Benefits Info */
.benefits-info {
  text-align: center;
}

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

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

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

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

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

.benefit-item span {
  font-size: 0.8rem;
  color: #e0e0e0;
  font-weight: 500;
  line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 80px 0 60px;
  }
  
  .register-box {
    padding: 30px;
    margin: 0 20px;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .security-info {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .register-box {
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .register-header {
    margin-bottom: 30px;
  }
  
  .register-logo {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px 12px 12px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 0.9rem;
  }
  
  .register-btn,
  .login-btn {
    padding: 12px;
    font-size: 1rem;
  }
  
  .terms-text {
    font-size: 0.85rem;
  }
  
  .benefits-title {
    font-size: 1.1rem;
  }
  
  .security-info {
    flex-direction: column;
    gap: 8px;
  }
  
  .security-item {
    justify-content: center;
  }
}

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

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

.hero-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.3rem;
  color: #b8b8b8;
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

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

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

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.stat-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #b8b8b8;
  margin-top: 3px;
}

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

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

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

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

.promotion-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

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

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.promo-badge-deposit {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.promo-badge-vip {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a1a2e;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.promo-badge-referral {
  background: linear-gradient(135deg, #ff8e53, #ff6b6b);
  box-shadow: 0 4px 15px rgba(255, 142, 83, 0.3);
}

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

.promotion-highlight {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.highlight-amount {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.amount {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.currency {
  font-size: 2rem;
  font-weight: 600;
  color: #ff6b6b;
}

.highlight-label {
  font-size: 1.2rem;
  color: #b8b8b8;
  font-weight: 500;
}

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

.promo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

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

.promo-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.promotion-cta {
  margin-top: 40px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

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

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

.btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.6);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.3rem;
}

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

/* Final CTA Section */
.final-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  position: relative;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.08) 0%, transparent 70%),
              radial-gradient(circle at 30% 80%, rgba(78, 205, 196, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-text {
  margin-bottom: 50px;
}

.cta-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.2rem;
  color: #b8b8b8;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.cta-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #e0e0e0;
}

.cta-feature i {
  color: #4ecdc4;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0 50px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-item {
    padding: 15px 20px;
  }
  
  .stat-icon {
    width: 45px;
    height: 45px;
  }
  
  .stat-icon i {
    font-size: 1.3rem;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .amount {
    font-size: 3rem;
  }
  
  .currency {
    font-size: 1.5rem;
  }
  
  .highlight-label {
    font-size: 1.1rem;
  }
  
  .final-cta-section {
    padding: 60px 0;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-description {
    font-size: 1.1rem;
  }
  
  .cta-features {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .promotion-title {
    font-size: 1.5rem;
  }
  
  .amount {
    font-size: 2.5rem;
  }
  
  .currency {
    font-size: 1.3rem;
  }
  
  .promo-list {
    gap: 12px;
  }
  
  .promo-item {
    padding: 12px 15px;
  }
  
  .promo-item span {
    font-size: 0.95rem;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .promo-badge {
    padding: 6px 15px;
    font-size: 0.85rem;
  }
}