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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, #ee5a52, #e74c3c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

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

.btn-secondary:hover {
  background: linear-gradient(135deg, #44a08d, #3d8b85);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

/* Hero Section */
.hero-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="10" cy="50" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="90" cy="30" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

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

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #b0b0b0;
  max-width: 90%;
}

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

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  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.25rem;
  color: #4ecdc4;
}

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

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

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1) contrast(1.1);
}

.image-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
}

.overlay-content i {
  font-size: 1.1rem;
}

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

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

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .feature-item {
    padding: 0.75rem;
    text-align: left;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
  
  .image-overlay {
    top: 15px;
    right: 15px;
    padding: 8px 15px;
  }
  
  .overlay-content {
    font-size: 0.8rem;
  }
}

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

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

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

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

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

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

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

.logo-tagline {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.7rem;
  color: #b0b0b0;
  text-align: center;
  margin-top: 2px;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.nav-link {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  transition: width 0.3s ease;
}

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

/* Desktop CTA Button */
.cta-button {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
  background: linear-gradient(135deg, #ee5a52, #e74c3c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

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

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

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.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-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

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

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ff6b6b;
}

/* Mobile Navigation */
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.mobile-nav-link {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav-link:hover {
  color: #4ecdc4;
  padding-left: 1rem;
}

/* Mobile CTA Section */
.mobile-cta-section {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta-button {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  width: 100%;
  justify-content: center;
}

.mobile-cta-button:hover {
  background: linear-gradient(135deg, #ee5a52, #e74c3c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 0.95rem;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-container {
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .logo-tagline {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-menu-content {
    padding: 1.5rem;
  }
  
  .mobile-nav-link {
    font-size: 1.3rem;
  }
  
  .mobile-cta-button {
    font-size: 1.1rem;
    padding: 14px 28px;
  }
}

/* Body padding to account for fixed header */
body {
  padding-top: 70px;
}

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

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

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.about-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  margin-bottom: 3rem;
}

.about-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #d0d0d0;
}

.about-description strong {
  color: #4ecdc4;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

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

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin-bottom: 0;
}

.about-image {
  position: relative;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1) contrast(1.1);
}

.stats-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  padding: 1rem;
  backdrop-filter: blur(10px);
  display: flex;
  gap: 1rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.stat-item i {
  font-size: 1.5rem;
  color: #4ecdc4;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

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

.stat-label {
  font-size: 0.85rem;
  color: #b0b0b0;
  line-height: 1;
}

.bottom-info {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.bottom-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #d0d0d0;
}

.bottom-info strong {
  color: #4ecdc4;
  font-weight: 700;
}

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

.inline-link:hover {
  color: #ee5a52;
}

.cta-section {
  text-align: center;
  margin-top: 2.5rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    gap: 40px;
  }
  
  .about-title {
    font-size: 2.4rem;
  }
  
  .features-grid {
    gap: 1rem;
  }
  
  .feature-card {
    padding: 1.25rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .bottom-info {
    padding: 2rem;
  }
  
  .stats-overlay {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .stat-item {
    justify-content: center;
    flex: none;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 0 15px;
  }
  
  .about-title {
    font-size: 1.75rem;
  }
  
  .about-description p {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 1rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.25rem;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .bottom-info {
    padding: 1.5rem;
  }
  
  .bottom-info p {
    font-size: 1rem;
  }
  
  .stats-overlay {
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 0.75rem;
  }
}

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

.checkchi-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 1000px;
  margin: 0 auto;
}

.checkchi-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 4rem;
}

.intro-text {
  margin-bottom: 3rem;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #d0d0d0;
}

.intro-text strong {
  color: #ff6b6b;
  font-weight: 700;
}

.premium-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-row {
  display: flex;
  gap: 1.5rem;
}

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

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

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

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

.feature-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.feature-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #b0b0b0;
  margin: 0;
}

.content-image {
  position: relative;
}

.checkchi-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1) contrast(1.1);
}

.quality-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  padding: 10px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

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

.system-details {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.system-details p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #d0d0d0;
}

.system-details strong {
  color: #ff6b6b;
  font-weight: 700;
}

.system-highlights {
  margin: 3rem 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

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

.highlight-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #4ecdc4;
}

.highlight-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin: 0;
}

.conclusion-text {
  margin-top: 2rem;
}

.conclusion-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
}

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

.inline-link:hover {
  color: #44a08d;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.4rem;
  }
  
  .checkchi-content {
    gap: 40px;
  }
  
  .feature-row {
    gap: 1rem;
  }
  
  .feature-item {
    padding: 1.25rem;
  }
  
  .highlight-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .checkchi-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .checkchi-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .feature-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .feature-item {
    flex-direction: row;
  }
  
  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .system-details {
    padding: 2rem;
  }
  
  .quality-badge {
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .checkchi-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .intro-text p, .system-details p, .conclusion-text p {
    font-size: 1rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .feature-icon {
    margin: 0 auto;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .highlight-number {
    margin: 0 auto;
  }
  
  .system-details {
    padding: 1.5rem;
  }
  
  .quality-badge {
    position: static;
    margin: 1rem auto 0;
    width: fit-content;
  }
}

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

.system-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at bottom, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

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

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

.section-subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.main-content {
  margin-bottom: 5rem;
}

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

.text-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.intro-block strong {
  color: #4ecdc4;
  font-weight: 700;
}

.gameplay-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.gameplay-info p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d0d0d0;
}

.gameplay-info strong {
  color: #4ecdc4;
  font-weight: 700;
}

.image-content {
  position: relative;
}

.system-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1) contrast(1.1);
}

.betting-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 12px;
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.bet-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.bet-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(78, 205, 196, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(78, 205, 196, 0.3);
}

.bet-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
}

.bet-payout {
  color: #4ecdc4;
  font-weight: 700;
  font-size: 0.9rem;
}

.game-rules {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 4rem;
}

.game-rules h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.rules-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 2rem;
}

.rules-content strong {
  color: #4ecdc4;
  font-weight: 700;
}

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

.rule-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.rule-card:hover {
  background: rgba(78, 205, 196, 0.1);
  transform: translateY(-3px);
  border-color: rgba(78, 205, 196, 0.3);
}

.rule-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

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

.rule-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.rule-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin: 0;
}

.system-features {
  margin-bottom: 4rem;
}

.feature-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
}

.feature-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 2rem;
}

.feature-content strong {
  color: #4ecdc4;
  font-weight: 700;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

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

.feature-list-item i {
  font-size: 1.5rem;
  color: #4ecdc4;
  margin-top: 0.25rem;
}

.feature-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.feature-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin: 0;
}

.money-management {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.management-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.management-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 1.5rem;
}

.management-content strong {
  color: #4ecdc4;
  font-weight: 700;
}

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

.inline-link:hover {
  color: #ee5a52;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .content-grid {
    gap: 40px;
  }
  
  .features-list {
    gap: 1rem;
  }
  
  .bet-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .system-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 1.9rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .features-list {
    grid-template-columns: 1fr;
  }
  
  .rules-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .game-rules, .money-management {
    padding: 2rem;
  }
  
  .betting-overlay {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .system-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .intro-block p, .gameplay-info p, .rules-content p, .feature-content p, .management-content p {
    font-size: 1rem;
  }
  
  .rules-grid {
    grid-template-columns: 1fr;
  }
  
  .rule-card {
    padding: 1.25rem;
  }
  
  .feature-list-item {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  
  .feature-list-item i {
    margin: 0 auto 0.5rem;
  }
  
  .game-rules, .money-management {
    padding: 1.5rem;
  }
  
  .bet-options {
    gap: 0.5rem;
  }
  
  .bet-option {
    padding: 0.4rem 0.75rem;
  }
}

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

.streaming-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

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

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

.section-subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.streaming-content {
  margin-bottom: 5rem;
}

.content-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
}

.tech-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 1.5rem;
}

.intro-content strong {
  color: #ff6b6b;
  font-weight: 700;
}

.tech-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.tech-feature:hover {
  background: rgba(255, 107, 107, 0.1);
  transform: translateY(-3px);
  border-color: rgba(255, 107, 107, 0.3);
}

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

.tech-icon i {
  font-size: 1.25rem;
  color: #ffffff;
}

.tech-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.tech-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #b0b0b0;
  margin: 0;
}

.visual-content {
  position: relative;
}

.streaming-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1) contrast(1.1);
}

.quality-indicators {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.quality-item {
  background: rgba(0, 0, 0, 0.8);
  padding: 8px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.quality-item i {
  font-size: 0.9rem;
  color: #ff6b6b;
}

.studio-info {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 4rem;
}

.studio-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.studio-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 3rem;
}

.studio-content strong {
  color: #ff6b6b;
  font-weight: 700;
}

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

.theme-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

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

.theme-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.theme-icon i {
  font-size: 1.75rem;
  color: #ffffff;
}

.theme-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.theme-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin: 0;
}

.technology-details {
  margin-bottom: 4rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.tech-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.tech-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 2rem;
}

.tech-section strong {
  color: #ff6b6b;
  font-weight: 700;
}

.compatibility-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.compat-item:hover {
  background: rgba(78, 205, 196, 0.1);
  border-color: rgba(78, 205, 196, 0.3);
}

.compat-item i {
  font-size: 1.25rem;
  color: #4ecdc4;
}

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

.feature-highlights {
  display: flex;
  flex-direction: column;
}

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.highlight-item i {
  font-size: 1.5rem;
  color: #4ecdc4;
  margin-top: 0.25rem;
}

.highlight-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.highlight-text strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.highlight-text span {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #b0b0b0;
}

.interactive-features {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.interaction-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.interaction-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 1.5rem;
}

.interaction-content strong {
  color: #ff6b6b;
  font-weight: 700;
}

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

.inline-link:hover {
  color: #44a08d;
}

.interaction-features {
  margin: 3rem 0;
}

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

.interaction-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.interaction-card:hover {
  background: rgba(78, 205, 196, 0.1);
  transform: translateY(-3px);
  border-color: rgba(78, 205, 196, 0.3);
}

.interaction-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

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

.interaction-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.interaction-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin: 0;
}

.cta-section {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.4rem;
  }
  
  .content-layout {
    gap: 40px;
  }
  
  .tech-features {
    gap: 1rem;
  }
  
  .tech-grid {
    gap: 3rem;
  }
  
  .studio-themes {
    gap: 1.5rem;
  }
  
  .compatibility-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .streaming-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .content-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .tech-features {
    grid-template-columns: 1fr;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .studio-info, .interactive-features {
    padding: 2rem;
  }
  
  .quality-indicators {
    left: 15px;
    right: 15px;
    top: 15px;
  }
  
  .interaction-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .streaming-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .intro-content p, .studio-content p, .tech-section p, .interaction-content p {
    font-size: 1rem;
  }
  
  .tech-feature {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  
  .theme-card {
    padding: 1.5rem;
  }
  
  .studio-info, .interactive-features {
    padding: 1.5rem;
  }
  
  .quality-indicators {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .quality-item {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .interaction-grid {
    grid-template-columns: 1fr;
  }
  
  .compat-item {
    justify-content: center;
  }
}

/* Promotions Section Styles */
.promotions-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f23 100%);
  position: relative;
}

.promotions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(78, 205, 196, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

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

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

.section-subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.promotions-content {
  margin-bottom: 5rem;
}

.main-info {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.promo-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 1.5rem;
}

.promo-intro strong {
  color: #4ecdc4;
  font-weight: 700;
}

.promo-visual {
  position: relative;
}

.promo-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1) contrast(1.1);
}

.promo-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.badge-item {
  background: rgba(0, 0, 0, 0.85);
  padding: 10px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(78, 205, 196, 0.3);
  width: fit-content;
}

.badge-item i {
  font-size: 1rem;
  color: #4ecdc4;
}

.advantages-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 4rem;
}

.advantages-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.advantages-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 3rem;
}

.advantages-content strong {
  color: #4ecdc4;
  font-weight: 700;
}

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

.advantage-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.advantage-card:hover {
  background: rgba(78, 205, 196, 0.1);
  transform: translateY(-5px);
  border-color: rgba(78, 205, 196, 0.3);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.advantage-icon i {
  font-size: 1.75rem;
  color: #ffffff;
}

.advantage-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.advantage-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin: 0;
}

.service-quality {
  margin-bottom: 4rem;
}

.service-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.service-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 2.5rem;
}

.service-content strong {
  color: #4ecdc4;
  font-weight: 700;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

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

.service-item i {
  font-size: 2rem;
  color: #4ecdc4;
}

.service-text h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.service-text span {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.5;
}

.trial-benefits {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 4rem;
}

.trial-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.trial-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 3rem;
}

.trial-content strong {
  color: #4ecdc4;
  font-weight: 700;
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

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

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

.benefit-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin: 0;
}

.special-features {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.features-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.features-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 1.5rem;
}

.features-content strong {
  color: #4ecdc4;
  font-weight: 700;
}

.final-cta {
  margin-top: 3rem;
  text-align: center;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 15px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 107, 107, 0.2);
}

.cta-content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .main-info {
    gap: 40px;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .service-row {
    gap: 1.5rem;
  }
  
  .benefits-list {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .promotions-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 1.9rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .main-info {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .service-row {
    grid-template-columns: 1fr;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
  }
  
  .advantages-section, .trial-benefits, .special-features {
    padding: 2rem;
  }
  
  .promo-badges {
    left: 15px;
    right: 15px;
    top: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .final-cta {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .promotions-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .promo-intro p, .advantages-content p, .service-content p, .trial-content p, .features-content p {
    font-size: 1rem;
  }
  
  .advantage-card {
    padding: 1.5rem;
  }
  
  .service-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem;
  }
  
  .service-item i {
    font-size: 1.75rem;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem;
  }
  
  .benefit-number {
    margin: 0 auto;
  }
  
  .advantages-section, .trial-benefits, .special-features {
    padding: 1.5rem;
  }
  
  .final-cta {
    padding: 1.5rem;
  }
  
  .cta-content h4 {
    font-size: 1.5rem;
  }
  
  .promo-badges {
    position: static;
    margin-top: 1rem;
    align-items: flex-start;
  }
  
  .badge-item {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

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

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(78, 205, 196, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

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

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

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

.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;
  display: block;
  line-height: 1.2;
}

.footer-logo-tagline {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  color: #b0b0b0;
  display: block;
  margin-top: 0.25rem;
}

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

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-weight: 600;
}

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

/* Footer Sections */
.footer-section {
  display: flex;
  flex-direction: column;
}

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

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

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

.footer-link {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
}

.footer-link:hover {
  color: #4ecdc4;
  padding-left: 0.5rem;
}

/* Footer CTA Section */
.footer-cta {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

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

.footer-cta-button {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  width: 100%;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-cta-button:hover {
  background: linear-gradient(135deg, #ee5a52, #e74c3c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

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

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

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

.footer-copyright {
  flex: 1;
}

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

.footer-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d0d0d0;
  font-size: 0.85rem;
  font-weight: 600;
}

.badge-item i {
  font-size: 1rem;
  color: #4ecdc4;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
  }
  
  .footer-games {
    display: none;
  }
}

@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .footer-cta {
    grid-column: span 2;
    text-align: center;
  }
  
  .footer-features {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0 2rem;
  }
  
  .footer-brand {
    grid-column: span 1;
    text-align: center;
  }
  
  .footer-cta {
    grid-column: span 1;
    order: -1;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-badges {
    justify-content: center;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    padding: 2rem 0 1.5rem;
    gap: 2rem;
  }
  
  .footer-cta {
    padding: 1.5rem;
  }
  
  .footer-logo-text {
    font-size: 1.75rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
  }
  
  .footer-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-badges {
    flex-direction: column;
    gap: 1rem;
  }
  
  .badge-item {
    justify-content: center;
  }
}

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

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

.sticky-btn i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  transition: all 0.3s ease;
}

.btn-text {
  font-size: 0.75rem;
  line-height: 1;
  transition: all 0.3s ease;
  text-align: center;
}

/* Login Button */
.sticky-btn-login {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: #ffffff;
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #44a08d, #3d8b85);
  transform: translateY(-2px);
}

/* Register Button */
.sticky-btn-register {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #5a67d8, #6b46c1);
  transform: translateY(-2px);
}

/* Credit Button */
.sticky-btn-credit {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #ffffff;
  position: relative;
}

.sticky-btn-credit:hover {
  background: linear-gradient(135deg, #ee5a52, #e74c3c);
  transform: translateY(-2px);
}

.sticky-btn-credit::before {
  content: 'HOT';
  position: absolute;
  top: -8px;
  right: 8px;
  background: #ff4757;
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 8px;
  animation: pulse 2s infinite;
}

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

/* Hover Effects */
.sticky-btn:hover i {
  transform: scale(1.1);
}

.sticky-btn:hover .btn-text {
  font-weight: 700;
}

/* Active State */
.sticky-btn:active {
  transform: scale(0.98);
}

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

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }
  
  .btn-text {
    font-size: 0.65rem;
  }
  
  .sticky-btn-credit::before {
    font-size: 0.55rem;
    padding: 1px 4px;
    top: -6px;
    right: 6px;
  }
}

/* Ensure buttons don't interfere with footer */
body {
  padding-bottom: 60px;
}

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

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

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

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

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

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

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

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

/* Error Message */
.error-message {
  display: none;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: #ff6b6b;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  animation: fadeInError 0.3s ease;
}

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

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

/* Form Styles */
.login-form {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

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

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

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

.form-input:focus {
  outline: none;
  border-color: #4ecdc4;
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

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

.form-input.error {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.password-toggle {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: #888888;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem;
  transition: color 0.3s ease;
}

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

.field-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

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

/* Form Actions */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-btn {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.login-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #44a08d, #3d8b85);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

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

.btn-loading {
  display: none;
}

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

.login-btn.loading .btn-loading {
  display: block;
  position: absolute;
}

.register-btn {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.register-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #4ecdc4;
  color: #4ecdc4;
  transform: translateY(-1px);
}

/* Login Features */
.login-features {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #b0b0b0;
  font-size: 0.85rem;
  font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 1rem 0;
  }
  
  .login-container {
    padding: 0 15px;
  }
  
  .login-content {
    padding: 2rem;
    border-radius: 15px;
  }
  
  .login-title {
    font-size: 1.75rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-features {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .feature-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .login-content {
    padding: 1.5rem;
    margin: 0 10px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 0.875rem 0.875rem 0.875rem 2.75rem;
  }
  
  .input-icon {
    left: 0.875rem;
    font-size: 1rem;
  }
  
  .password-toggle {
    right: 0.875rem;
  }
  
  .login-btn, .register-btn {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }
}

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

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

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

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

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

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

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

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

/* Messages */
.error-message, .success-message {
  display: none;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  animation: fadeInMessage 0.3s ease;
}

.error-message {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: #ff6b6b;
}

.success-message {
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.3);
  color: #4ecdc4;
}

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

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

/* Form Styles */
.register-form {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

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

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

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

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

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

.form-input.error {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-input.success {
  border-color: #4ecdc4;
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.field-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

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

.field-help {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #b0b0b0;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

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

/* Form Actions */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.register-btn {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.register-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #ee5a52, #e74c3c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

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

.btn-loading {
  display: none;
}

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

.register-btn.loading .btn-loading {
  display: block;
  position: absolute;
}

.login-btn {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.login-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #4ecdc4;
  color: #4ecdc4;
  transform: translateY(-1px);
}

/* Register Features */
.register-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #b0b0b0;
  font-size: 0.9rem;
  font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 1rem 0;
  }
  
  .register-container {
    padding: 0 15px;
  }
  
  .register-content {
    padding: 2rem;
    border-radius: 15px;
  }
  
  .register-title {
    font-size: 1.75rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .register-content {
    padding: 1.5rem;
    margin: 0 10px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 0.875rem 0.875rem 0.875rem 2.75rem;
  }
  
  .input-icon {
    left: 0.875rem;
    font-size: 1rem;
  }
  
  .register-btn, .login-btn {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }
  
  .feature-item {
    font-size: 0.85rem;
  }
}

/* Hero Section */
.hero-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 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(ellipse at center, rgba(255, 107, 107, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content {
  margin: 0 auto;
}

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

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

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

.hero-btn {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #ffffff;
  padding: 20px 40px;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
}

.hero-btn:hover {
  background: linear-gradient(135deg, #ee5a52, #e74c3c);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.5);
}

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

/* Promo Sections */
.promo-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  position: relative;
}

.promo-section.promo-alt {
  background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

.promo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(78, 205, 196, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.promo-section.promo-alt::before {
  background: radial-gradient(ellipse at center, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
}

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

.promo-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

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

.promo-header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  padding: 2rem;
  text-align: center;
  position: relative;
}

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

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

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

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

.promo-content {
  padding: 2rem;
}

.promo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 2.5rem;
}

.promo-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.promo-list li:last-child {
  border-bottom: none;
}

.promo-list li:hover {
  background: rgba(255, 255, 255, 0.03);
  margin: 0 -1rem;
  padding: 1rem;
  border-radius: 10px;
}

.promo-list li i {
  color: #4ecdc4;
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.promo-alt .promo-list li i {
  color: #ff6b6b;
}

.promo-list li span {
  font-size: 1.05rem;
  color: #d0d0d0;
  line-height: 1.6;
}

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

.promo-btn {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(78, 205, 196, 0.4);
}

.promo-alt .promo-btn {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  box-shadow: 0 6px 25px rgba(255, 107, 107, 0.4);
}

.promo-btn:hover {
  background: linear-gradient(135deg, #44a08d, #3d8b85);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(78, 205, 196, 0.5);
}

.promo-alt .promo-btn:hover {
  background: linear-gradient(135deg, #ee5a52, #e74c3c);
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.5);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .promo-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-btn {
    padding: 18px 36px;
    font-size: 1.2rem;
  }
  
  .promo-section {
    padding: 60px 0;
  }
  
  .promo-header, .promo-content {
    padding: 1.5rem;
  }
  
  .promo-title {
    font-size: 1.6rem;
  }
  
  .promo-list li {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-container, .promo-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
  }
  
  .promo-header, .promo-content {
    padding: 1.25rem;
  }
  
  .promo-title {
    font-size: 1.4rem;
  }
  
  .promo-list li span {
    font-size: 1rem;
  }
  
  .promo-btn {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .promo-list li:hover {
    margin: 0;
    padding: 1rem 0;
    background: transparent;
  }
}