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

body {
  font-family: 'Sarabun', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffed4e;
}

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

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

/* Button Base Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

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

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid #ffd700;
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffed4e;
}

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  z-index: 1;
}

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

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

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

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

.hero-description {
  font-size: 1.25rem;
  color: #cccccc;
  line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

/* Responsive Design */
@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: 1.1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .feature-item {
    padding: 12px;
  }
  
  .feature-item i {
    font-size: 1.25rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (min-width: 1281px) {
  .hero-container {
    max-width: 1280px;
  }
}

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

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

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
}

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

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

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.logo-number {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtitle {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  color: #ffd700;
  font-weight: 600;
  margin-top: -2px;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.nav-item {
  position: relative;
}

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

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

.nav-link i {
  font-size: 1.1rem;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 1px;
}

/* CTA Button */
.cta-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

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

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.cta-button:hover::before {
  width: 100px;
  height: 100px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 4px;
}

.mobile-menu-toggle:hover {
  border-color: rgba(255, 215, 0, 0.6);
  background: rgba(255, 215, 0, 0.1);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: #ffd700;
  border-radius: 1px;
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

.mobile-logo {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.mobile-logo-number {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  color: #ffd700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.6);
}

/* Mobile Navigation */
.mobile-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 300px;
}

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

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  color: #cccccc;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

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

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

/* Mobile CTA Button */
.mobile-cta-item {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .logo-subtitle {
    font-size: 0.8rem;
  }
  
  .header-container {
    min-height: 60px;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-subtitle {
    font-size: 0.75rem;
  }
  
  .mobile-menu-toggle {
    width: 35px;
    height: 35px;
  }
  
  .hamburger-line {
    width: 18px;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-logo {
    font-size: 1.3rem;
  }
  
  .mobile-nav {
    padding: 15px;
  }
  
  .mobile-nav-link {
    padding: 12px 18px;
    font-size: 1rem;
  }
  
  .mobile-cta-button {
    padding: 12px 18px;
    font-size: 1rem;
  }
}

@media (min-width: 1281px) {
  .header-container {
    max-width: 1280px;
  }
}

/* Lucky Numbers Section */
.lucky-numbers-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
  padding: 100px 0;
  position: relative;
}

.lucky-numbers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  z-index: 1;
}

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

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

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

.lucky-numbers-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: flex-start;
}

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

.intro-text {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.8;
  font-weight: 500;
}

.content-text p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  text-align: justify;
}

.lucky-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
}

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

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

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

.benefit-content h3 {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
}

.conclusion-text {
  font-style: italic;
  background: rgba(255, 215, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #ffd700;
  color: #e0e0e0 !important;
}

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

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

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

.image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.lucky-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.lucky-text {
  font-size: 1rem;
  color: #cccccc;
  font-weight: 500;
}

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

@media (max-width: 768px) {
  .lucky-numbers-section {
    padding: 80px 0;
  }
  
  .lucky-numbers-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .intro-text {
    font-size: 1.1rem;
  }
  
  .content-text p {
    font-size: 1rem;
    text-align: left;
  }
  
  .benefit-item {
    padding: 16px;
  }
  
  .benefit-number {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }
  
  .benefit-content h3 {
    font-size: 1rem;
  }
  
  .lucky-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .lucky-numbers-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .intro-text {
    font-size: 1rem;
  }
  
  .content-text p {
    font-size: 0.95rem;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .benefit-number {
    align-self: center;
  }
  
  .conclusion-text {
    padding: 16px;
  }
  
  .image-overlay {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 15px;
  }
  
  .lucky-number {
    font-size: 2rem;
  }
  
  .lucky-text {
    font-size: 0.9rem;
  }
}

@media (min-width: 1281px) {
  .lucky-numbers-container {
    max-width: 1280px;
  }
}

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

.cultural-meaning-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at bottom left, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
  z-index: 1;
}

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

.cultural-meaning-content {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-top: 60px;
}

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

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
  transition: transform 0.4s ease;
}

.content-image:hover img {
  transform: scale(1.03) rotate(1deg);
}

.cultural-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

.cultural-insights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.insight-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insight-card:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(8px);
}

.insight-card:hover::before {
  opacity: 1;
}

.insight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  border-radius: 15px;
  flex-shrink: 0;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.insight-content h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.insight-content p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  text-align: justify;
}

.evolution-section {
  background: rgba(255, 215, 0, 0.08);
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid #ffd700;
}

.evolution-title {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.evolution-title::before {
  content: '';
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.evolution-section p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.cultural-understanding {
  margin-top: 20px;
}

.understanding-highlight {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  border-radius: 15px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
}

.understanding-highlight i {
  font-size: 2rem;
  color: #ffd700;
  flex-shrink: 0;
  margin-top: 5px;
}

.highlight-text {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .cultural-meaning-content {
    grid-template-columns: 400px 1fr;
    gap: 40px;
  }
  
  .insight-card {
    padding: 20px;
  }
  
  .insight-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .cultural-meaning-section {
    padding: 80px 0;
  }
  
  .cultural-meaning-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .intro-text {
    font-size: 1.1rem;
  }
  
  .insight-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }
  
  .insight-icon {
    align-self: center;
  }
  
  .insight-content h3 {
    font-size: 1.2rem;
  }
  
  .insight-content p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .evolution-section {
    padding: 20px;
  }
  
  .evolution-title {
    font-size: 1.3rem;
  }
  
  .understanding-highlight {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .understanding-highlight i {
    align-self: center;
  }
  
  .highlight-text {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .cultural-meaning-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .cultural-badge {
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    font-size: 0.8rem;
  }
  
  .intro-text {
    font-size: 1rem;
  }
  
  .insight-card {
    padding: 18px;
  }
  
  .insight-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .insight-content h3 {
    font-size: 1.1rem;
  }
  
  .insight-content p {
    font-size: 0.9rem;
  }
  
  .evolution-section {
    padding: 18px;
  }
  
  .evolution-title {
    font-size: 1.2rem;
  }
  
  .evolution-section p {
    font-size: 0.95rem;
  }
  
  .understanding-highlight {
    padding: 20px;
  }
  
  .understanding-highlight i {
    font-size: 1.5rem;
  }
  
  .highlight-text {
    font-size: 0.95rem;
  }
}

@media (min-width: 1281px) {
  .cultural-meaning-container {
    max-width: 1280px;
  }
}

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

.platform-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
  z-index: 1;
}

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

.platform-features-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: flex-start;
  margin-top: 60px;
}

.inline-link {
  color: #ffd700;
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.3s ease;
}

.inline-link:hover {
  color: #ffed4e;
  text-decoration: none;
}

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

.feature-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 215, 0, 0.06);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  border-radius: 10px;
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 900;
}

.feature-content h3 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-content p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.6;
  text-align: justify;
}

.competitive-features {
  background: rgba(255, 215, 0, 0.08);
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid #ffd700;
  margin: 30px 0;
}

.competitive-header h3 {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.competitive-header h3::before {
  content: '';
  width: 25px;
  height: 2px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.competitive-content p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.service-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
}

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

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

.highlight-item i {
  font-size: 1.3rem;
  color: #ffd700;
  width: 20px;
  text-align: center;
}

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

.multi-game-platform {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  padding: 25px;
  border-radius: 15px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  margin-top: 30px;
}

.platform-title {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 15px;
  text-align: center;
}

.multi-game-platform p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.content-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.15);
  transition: transform 0.4s ease;
}

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

.platform-stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-item {
  text-align: center;
  padding: 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .platform-features-content {
    grid-template-columns: 1fr 350px;
    gap: 40px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    padding: 18px;
  }
}

@media (max-width: 768px) {
  .platform-features-section {
    padding: 80px 0;
  }
  
  .platform-features-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .intro-text {
    font-size: 1.1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .feature-icon {
    align-self: center;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .competitive-features {
    padding: 20px;
  }
  
  .competitive-header h3 {
    font-size: 1.3rem;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px;
  }
  
  .multi-game-platform {
    padding: 20px;
  }
  
  .platform-title {
    font-size: 1.3rem;
  }
  
  .platform-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-item {
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  }
  
  .stat-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .platform-features-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .intro-text {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 16px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .feature-content h3 {
    font-size: 1rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
  
  .competitive-features {
    padding: 18px;
  }
  
  .competitive-header h3 {
    font-size: 1.2rem;
  }
  
  .competitive-content p {
    font-size: 0.95rem;
  }
  
  .highlight-item {
    padding: 12px;
  }
  
  .highlight-item i {
    font-size: 1.2rem;
  }
  
  .highlight-item span {
    font-size: 0.9rem;
  }
  
  .multi-game-platform {
    padding: 18px;
  }
  
  .platform-title {
    font-size: 1.2rem;
  }
  
  .multi-game-platform p {
    font-size: 0.95rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

@media (min-width: 1281px) {
  .platform-features-container {
    max-width: 1280px;
  }
}

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

.marketing-strategy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top left, rgba(255, 215, 0, 0.05) 0%, transparent 50%), 
              radial-gradient(ellipse at bottom right, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
  z-index: 1;
}

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

.marketing-strategy-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-top: 60px;
}

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

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
  transition: transform 0.4s ease;
}

.content-image:hover img {
  transform: scale(1.03);
}

.brand-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.9);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.brand-elements {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.brand-thai {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Prompt', sans-serif;
}

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

.brand-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Prompt', sans-serif;
}

.marketing-insights {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 30px 0;
}

.insight-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

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

.insight-card:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.insight-card:hover::before {
  opacity: 1;
}

.insight-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px 15px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.insight-header i {
  font-size: 1.5rem;
  color: #ffd700;
  width: 30px;
  text-align: center;
}

.insight-header h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.insight-body {
  padding: 20px 25px 25px;
}

.insight-body p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}

.psychology-section {
  background: rgba(255, 215, 0, 0.08);
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid #ffd700;
  margin: 30px 0;
}

.psychology-title {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.psychology-title::before {
  content: '';
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.psychology-section p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.network-strategy {
  margin: 30px 0;
}

.network-title {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

.network-brands {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px 0;
}

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

.brand-item:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
  transform: scale(1.02);
}

.brand-item i {
  font-size: 1.5rem;
  color: #ffd700;
  width: 30px;
  text-align: center;
}

.brand-content h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0 0 5px 0;
}

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

.network-strategy > p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.8;
  text-align: justify;
  margin-top: 20px;
}

.success-analysis {
  margin-top: 30px;
}

.analysis-highlight {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(34, 193, 195, 0.1), rgba(34, 193, 195, 0.05));
  border-radius: 15px;
  border: 2px solid rgba(34, 193, 195, 0.3);
  position: relative;
}

.analysis-highlight i {
  font-size: 2rem;
  color: #22c1c3;
  flex-shrink: 0;
  margin-top: 5px;
}

.highlight-text {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.highlight-text strong {
  color: #22c1c3;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .marketing-strategy-content {
    grid-template-columns: 350px 1fr;
    gap: 40px;
  }
  
  .brand-elements {
    flex-direction: column;
    gap: 10px;
  }
  
  .brand-thai,
  .brand-english {
    font-size: 1.3rem;
  }
  
  .brand-number {
    font-size: 1.8rem;
  }
  
  .network-brands {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .marketing-strategy-section {
    padding: 80px 0;
  }
  
  .marketing-strategy-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .intro-text {
    font-size: 1.1rem;
  }
  
  .insight-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 20px;
  }
  
  .insight-header h3 {
    font-size: 1.1rem;
  }
  
  .insight-body {
    padding: 20px;
  }
  
  .insight-body p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .psychology-section {
    padding: 20px;
  }
  
  .psychology-title {
    font-size: 1.3rem;
  }
  
  .brand-item {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }
  
  .analysis-highlight {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .analysis-highlight i {
    align-self: center;
  }
  
  .highlight-text {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .marketing-strategy-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .brand-overlay {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 15px;
  }
  
  .brand-thai,
  .brand-english {
    font-size: 1.1rem;
  }
  
  .brand-number {
    font-size: 1.5rem;
  }
  
  .intro-text {
    font-size: 1rem;
  }
  
  .insight-header {
    padding: 18px;
  }
  
  .insight-header i {
    font-size: 1.3rem;
  }
  
  .insight-header h3 {
    font-size: 1rem;
  }
  
  .insight-body {
    padding: 18px;
  }
  
  .insight-body p {
    font-size: 0.9rem;
  }
  
  .psychology-section {
    padding: 18px;
  }
  
  .psychology-title {
    font-size: 1.2rem;
  }
  
  .psychology-section p {
    font-size: 0.95rem;
  }
  
  .network-title {
    font-size: 1.3rem;
  }
  
  .brand-item {
    padding: 16px;
  }
  
  .brand-item i {
    font-size: 1.3rem;
  }
  
  .brand-content h4 {
    font-size: 1rem;
  }
  
  .brand-content p {
    font-size: 0.85rem;
  }
  
  .network-strategy > p {
    font-size: 0.95rem;
  }
  
  .analysis-highlight {
    padding: 20px;
  }
  
  .analysis-highlight i {
    font-size: 1.5rem;
  }
  
  .highlight-text {
    font-size: 0.95rem;
  }
}

@media (min-width: 1281px) {
  .marketing-strategy-container {
    max-width: 1280px;
  }
}

/* Sacred Phenomenon Section */
.sacred-phenomenon-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.sacred-phenomenon-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at top right, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
  z-index: 1;
}

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

.sacred-phenomenon-content {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 60px;
  align-items: flex-start;
  margin-top: 60px;
}

.phenomenon-insights {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 30px 0;
}

.insight-card.premium {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

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

.insight-card.premium .insight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  border-radius: 15px;
  font-size: 1.8rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.insight-card.premium .insight-content h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.insight-card.premium .insight-content p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.security-features {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 15px;
  padding: 25px;
  margin: 25px 0;
}

.features-title {
  font-size: 1.3rem;
  color: #ffd700;
  margin-bottom: 15px;
  text-align: center;
}

.security-features > p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
}

.premium-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

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

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

.feature-item i {
  font-size: 1.3rem;
  color: #ffd700;
  width: 25px;
  text-align: center;
}

.feature-text h4 {
  font-size: 1rem;
  color: #ffffff;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.feature-text p {
  font-size: 0.9rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.4;
}

.evolution-plus {
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 15px;
  padding: 25px;
  margin: 25px 0;
}

.plus-title {
  font-size: 1.3rem;
  color: #8a2be2;
  margin-bottom: 15px;
  text-align: center;
}

.evolution-plus p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.excellence-features {
  margin: 25px 0;
}

.excellence-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.excellence-item:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(8px);
}

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

.excellence-content h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.excellence-content p {
  font-size: 0.95rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.4;
}

.system-excellence {
  background: rgba(255, 215, 0, 0.08);
  border-left: 5px solid #ffd700;
  border-radius: 15px;
  padding: 25px;
  margin: 30px 0;
}

.system-title {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.system-title::before {
  content: '';
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.system-excellence p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.cultural-technology {
  margin-top: 30px;
}

.conclusion-highlight {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(50, 205, 50, 0.1), rgba(50, 205, 50, 0.05));
  border-radius: 15px;
  border: 2px solid rgba(50, 205, 50, 0.3);
  position: relative;
}

.conclusion-highlight i {
  font-size: 2rem;
  color: #32cd32;
  flex-shrink: 0;
  margin-top: 5px;
}

.highlight-text {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.highlight-text strong {
  color: #32cd32;
  font-weight: 700;
}

.content-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
  transition: transform 0.4s ease;
}

.content-image:hover img {
  transform: scale(1.03) rotate(-1deg);
}

.sacred-numbers {
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.sacred-numbers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.number-display {
  position: relative;
  z-index: 2;
}

.sacred-8888 {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
  font-family: 'Prompt', sans-serif;
}

.sacred-text {
  font-size: 1.2rem;
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'Prompt', sans-serif;
}

.sacred-description {
  font-size: 1rem;
  color: #cccccc;
  font-weight: 500;
  font-family: 'Sarabun', sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .sacred-phenomenon-content {
    grid-template-columns: 1fr 400px;
    gap: 40px;
  }
  
  .premium-features {
    grid-template-columns: 1fr;
  }
  
  .sacred-8888 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .sacred-phenomenon-section {
    padding: 80px 0;
  }
  
  .sacred-phenomenon-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .intro-text {
    font-size: 1.1rem;
  }
  
  .insight-card.premium {
    padding: 25px;
  }
  
  .insight-card.premium .insight-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .insight-card.premium .insight-content h3 {
    font-size: 1.3rem;
  }
  
  .insight-card.premium .insight-content p {
    font-size: 1rem;
    text-align: left;
  }
  
  .security-features,
  .evolution-plus,
  .system-excellence {
    padding: 20px;
  }
  
  .features-title,
  .plus-title {
    font-size: 1.2rem;
  }
  
  .excellence-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .conclusion-highlight {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .conclusion-highlight i {
    align-self: center;
  }
  
  .highlight-text {
    text-align: left;
  }
  
  .sacred-8888 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .sacred-phenomenon-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .intro-text {
    font-size: 1rem;
  }
  
  .insight-card.premium {
    padding: 20px;
  }
  
  .insight-card.premium .insight-icon {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }
  
  .insight-card.premium .insight-content h3 {
    font-size: 1.2rem;
  }
  
  .insight-card.premium .insight-content p {
    font-size: 0.95rem;
  }
  
  .security-features,
  .evolution-plus,
  .system-excellence {
    padding: 18px;
  }
  
  .features-title,
  .plus-title,
  .system-title {
    font-size: 1.1rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 12px;
  }
  
  .feature-text h4 {
    font-size: 0.95rem;
  }
  
  .feature-text p {
    font-size: 0.85rem;
  }
  
  .excellence-number {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }
  
  .excellence-content h4 {
    font-size: 1rem;
  }
  
  .excellence-content p {
    font-size: 0.9rem;
  }
  
  .conclusion-highlight {
    padding: 20px;
  }
  
  .conclusion-highlight i {
    font-size: 1.5rem;
  }
  
  .highlight-text {
    font-size: 0.95rem;
  }
  
  .sacred-numbers {
    padding: 20px;
  }
  
  .sacred-8888 {
    font-size: 2.5rem;
  }
  
  .sacred-text {
    font-size: 1.1rem;
  }
  
  .sacred-description {
    font-size: 0.9rem;
  }
}

@media (min-width: 1281px) {
  .sacred-phenomenon-container {
    max-width: 1280px;
  }
}

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

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  z-index: 1;
}

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

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

/* Company Info Section */
.company-info {
  padding-right: 20px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.footer-logo-number {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo-subtitle {
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  color: #ffd700;
  font-weight: 600;
  margin-top: 2px;
}

.company-description {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

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

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

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

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

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

.footer-links li {
  margin: 0;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cccccc;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 5px 0;
  transition: all 0.3s ease;
  border-radius: 4px;
}

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

.footer-links a i {
  color: #ffd700;
  width: 16px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

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

/* Security Badges */
.security-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

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

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

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

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

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

.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  color: #ffd700;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Disclaimer */
.footer-disclaimer {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  
  .company-info {
    grid-column: 1 / -1;
    margin-bottom: 20px;
    padding-right: 0;
  }
  
  .payment-security {
    grid-column: 1 / -1;
    margin-top: 20px;
  }
  
  .security-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 40px 15px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  
  .company-info {
    margin-bottom: 15px;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .company-description {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .security-badges {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 30px 15px 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-logo-text {
    font-size: 1.4rem;
  }
  
  .footer-logo-subtitle {
    font-size: 0.9rem;
  }
  
  .company-description {
    font-size: 0.9rem;
  }
  
  .contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .security-item {
    padding: 8px 10px;
  }
  
  .security-item span {
    font-size: 0.85rem;
  }
  
  .social-links {
    gap: 8px;
  }
  
  .social-link {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .disclaimer-text {
    font-size: 0.8rem;
  }
  
  .footer-disclaimer {
    padding: 12px;
  }
}

@media (min-width: 1281px) {
  .footer-container {
    max-width: 1280px;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-top: 2px solid rgba(255, 215, 0, 0.4);
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  border-right: 1px solid rgba(255, 215, 0, 0.2);
  min-height: 65px;
}

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

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

.sticky-btn span {
  font-size: 0.85rem;
  line-height: 1.2;
  text-align: center;
  transition: all 0.3s ease;
}

/* Individual Button Styles */
.sticky-login {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(52, 152, 219, 0.05));
  border-bottom: 3px solid #3498db;
}

.sticky-login:hover {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(52, 152, 219, 0.1));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.sticky-login i {
  color: #3498db;
}

.sticky-register {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(46, 204, 113, 0.05));
  border-bottom: 3px solid #2ecc71;
}

.sticky-register:hover {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.2), rgba(46, 204, 113, 0.1));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.sticky-register i {
  color: #2ecc71;
}

.sticky-credit {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
  border-bottom: 3px solid #ffd700;
}

.sticky-credit:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.sticky-credit i {
  color: #ffd700;
}

.sticky-credit span {
  color: #ffd700;
}

/* Hover Effects */
.sticky-btn:hover {
  color: #ffffff;
}

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

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

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

/* Animation for attention */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.sticky-credit {
  animation: pulse 2s infinite;
}

.sticky-credit:hover {
  animation: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    border-top-width: 1px;
  }
  
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.8rem;
    min-height: 60px;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 3px;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
  }
}

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

@media (max-width: 320px) {
  .sticky-btn {
    padding: 6px 2px;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .sticky-btn span {
    font-size: 0.65rem;
  }
}

/* Ensure buttons don't interfere with main content */
body {
  padding-bottom: 65px; /* Match sticky button height */
}

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

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

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

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at top left, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  z-index: 1;
}

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

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

/* Login Logo */
.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

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

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

/* Login Card */
.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

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

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

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

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

/* Error Message */
.error-message {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  color: #ff6b6b;
  font-size: 0.9rem;
}

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

.error-message i {
  font-size: 1rem;
  flex-shrink: 0;
}

/* Form Styles */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

.input-icon {
  position: absolute;
  left: 15px;
  color: #ffd700;
  font-size: 1.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, 215, 0, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
}

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

.form-input:valid {
  border-color: rgba(46, 204, 113, 0.5);
}

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

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

/* Password Toggle */
.toggle-password {
  position: absolute;
  right: 15px;
  background: transparent;
  border: none;
  color: #ffd700;
  font-size: 1rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  z-index: 2;
}

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

/* Field Error */
.field-error {
  font-size: 0.85rem;
  color: #ff6b6b;
  margin-top: 5px;
  display: none;
}

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

/* Form Actions */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  border: none;
  border-radius: 12px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #cccccc;
  text-align: center;
}

.security-info i {
  color: #2ecc71;
  font-size: 1rem;
}

/* Loading State */
.login-btn.loading {
  pointer-events: none;
}

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

.login-btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid #000000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 15px;
  }
  
  .login-card {
    padding: 30px 25px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 1rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 10px;
  }
  
  .login-card {
    padding: 25px 20px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 12px 12px 12px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 1rem;
  }
  
  .toggle-password {
    right: 12px;
  }
  
  .login-btn,
  .register-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .security-info {
    font-size: 0.85rem;
  }
}

@media (max-width: 320px) {
  .login-card {
    padding: 20px 15px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .form-input {
    padding: 10px 10px 10px 35px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 10px;
    font-size: 0.95rem;
  }
  
  .toggle-password {
    right: 10px;
    font-size: 0.9rem;
  }
  
  .login-btn,
  .register-btn {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at top right, rgba(46, 204, 113, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  z-index: 1;
}

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

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

/* Register Logo */
.register-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
  transition: transform 0.3s ease;
}

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

/* Register Card */
.register-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2ecc71, #27ae60, #2ecc71);
  border-radius: 20px 20px 0 0;
}

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

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1.2;
}

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

/* Error Message */
.error-message {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  color: #ff6b6b;
  font-size: 0.9rem;
}

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

.error-message i {
  font-size: 1rem;
  flex-shrink: 0;
}

/* Success Message */
.success-message {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  color: #2ecc71;
  font-size: 0.9rem;
}

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

.success-message i {
  font-size: 1rem;
  flex-shrink: 0;
}

/* Form Styles */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

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

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

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

.form-input:valid {
  border-color: rgba(46, 204, 113, 0.6);
}

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

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

/* Field Error */
.field-error {
  font-size: 0.85rem;
  color: #ff6b6b;
  margin-top: 5px;
  display: none;
}

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

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

.field-help i {
  color: #3498db;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Form Actions */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
  position: relative;
  overflow: hidden;
}

.register-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

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

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

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

.login-btn:hover {
  background: rgba(46, 204, 113, 0.1);
  border-color: rgba(46, 204, 113, 0.5);
  color: #2ecc71;
  transform: translateY(-1px);
}

/* Register Footer */
.register-footer {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(46, 204, 113, 0.2);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.security-info,
.terms-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #cccccc;
  text-align: center;
  line-height: 1.4;
}

.security-info i {
  color: #2ecc71;
  font-size: 1rem;
  flex-shrink: 0;
}

.terms-info i {
  color: #3498db;
  font-size: 1rem;
  flex-shrink: 0;
}

.terms-info strong {
  color: #2ecc71;
  font-weight: 600;
}

/* Loading State */
.register-btn.loading {
  pointer-events: none;
}

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

.register-btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Success Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-message.show {
  animation: fadeInUp 0.5s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 15px;
  }
  
  .register-card {
    padding: 30px 25px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 1rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 10px;
  }
  
  .register-card {
    padding: 25px 20px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 12px 12px 12px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 1rem;
  }
  
  .register-btn,
  .login-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .security-info,
  .terms-info {
    font-size: 0.85rem;
  }
}

@media (max-width: 320px) {
  .register-card {
    padding: 20px 15px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .form-input {
    padding: 10px 10px 10px 35px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 10px;
    font-size: 0.95rem;
  }
  
  .register-btn,
  .login-btn {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
  
  .security-info,
  .terms-info {
    font-size: 0.8rem;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  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, 215, 0, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse at top right, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  z-index: 1;
}

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

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffed4e, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  margin-bottom: 0;
  text-align: center;
  max-width: 900px;
}

.hero-description {
  max-width: 700px;
  text-align: center;
}

.hero-description p {
  font-size: 1.3rem;
  color: #e0e0e0;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 20px 0;
  max-width: 800px;
  width: 100%;
}

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

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

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

.highlight-item span {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

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

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

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

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

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

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
  z-index: 1;
}

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

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

.promotion-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.4;
  margin: 0;
}

.promotion-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

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

.promotion-description p {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

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

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

.feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 12px 0 0 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(8px);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-item i {
  font-size: 1.5rem;
  color: #ffd700;
  flex-shrink: 0;
  width: 30px;
  text-align: center;
}

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

.promotion-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.promotion-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 25px;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description p {
    font-size: 1.1rem;
  }
  
  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .highlight-item {
    flex-direction: row;
    text-align: left;
    padding: 15px;
  }
  
  .highlight-item i {
    font-size: 1.5rem;
    margin-bottom: 0;
    margin-right: 5px;
  }
  
  .hero-cta {
    padding: 16px 32px;
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
  
  .promotion-description p {
    font-size: 1.1rem;
  }
  
  .feature-item {
    padding: 16px;
  }
  
  .feature-item i {
    font-size: 1.3rem;
  }
  
  .feature-item span {
    font-size: 1rem;
  }
  
  .promotion-cta {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description p {
    font-size: 1rem;
  }
  
  .highlight-item {
    padding: 12px;
  }
  
  .highlight-item i {
    font-size: 1.3rem;
  }
  
  .highlight-item span {
    font-size: 0.9rem;
  }
  
  .hero-cta {
    padding: 14px 28px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-description p {
    font-size: 1rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  
  .feature-item i {
    font-size: 1.4rem;
    margin-bottom: 8px;
    width: auto;
  }
  
  .feature-item span {
    font-size: 0.95rem;
  }
  
  .promotion-cta {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  .hero-title {
    font-size: 1.7rem;
  }
  
  .hero-description p {
    font-size: 0.95rem;
  }
  
  .hero-cta {
    padding: 12px 24px;
    font-size: 1rem;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .promotion-description p {
    font-size: 0.95rem;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
  
  .promotion-cta {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (min-width: 1281px) {
  .hero-container,
  .promotion-container {
    max-width: 1280px;
  }
}