/* Base Theme Styles */
:root {
  --primary-color: #ff6b35;
  --secondary-color: #1a1a2e;
  --accent-color: #ffd700;
  --bg-dark: #0f0f23;
  --bg-darker: #0a0a1a;
  --text-light: #ffffff;
  --text-gray: #b8b8b8;
  --gradient-primary: linear-gradient(135deg, #ff6b35, #ff8f65);
  --gradient-dark: linear-gradient(135deg, #1a1a2e, #16213e);
  --shadow-light: 0 4px 15px rgba(255, 107, 53, 0.3);
  --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Sarabun', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-light);
}

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

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-light);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

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

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

.hero-text {
  max-width: 600px;
}

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

.hero-icon {
  color: var(--accent-color);
  margin-right: 15px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

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

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

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

.feature-item i {
  color: var(--primary-color);
  font-size: 16px;
}

.feature-item span {
  font-weight: 600;
  font-size: 14px;
}

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

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

.hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-dark);
  transition: transform 0.3s ease;
}

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

.hero-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--gradient-primary);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-light);
  animation: pulse 2s infinite;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px;
  background: var(--gradient-dark);
  border-radius: 20px;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255, 107, 53, 0.2);
}

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

.stat-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-5px);
}

.stat-number {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    padding: 25px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 10px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .feature-item {
    padding: 10px 14px;
  }
  
  .feature-item span {
    font-size: 13px;
  }
  
  .hero-stats {
    padding: 20px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 12px;
  }
}

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

.main-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.05) 0%, transparent 50%, rgba(255, 107, 53, 0.05) 100%);
  pointer-events: none;
}

.header-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  position: relative;
  z-index: 1;
}

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

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

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

.logo-icon {
  font-size: 2rem;
  color: var(--accent-color);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.site-name {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 40px;
}

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

.nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.nav-link:hover {
  color: var(--primary-color);
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

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

.header-cta-btn {
  font-size: 0.95rem;
  padding: 12px 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-menu-trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
}

.mobile-menu-trigger:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin: 2px 0;
}

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

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

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

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

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

.mobile-menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  background: rgba(15, 15, 35, 0.8);
}

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

.mobile-menu-close {
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

.mobile-nav {
  padding: 40px 20px;
}

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

.mobile-nav-menu li {
  width: 100%;
}

.mobile-nav-link {
  display: block;
  width: 100%;
  padding: 18px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

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

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

.mobile-nav-link:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateX(10px);
}

.mobile-cta-item {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.mobile-cta-btn {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  justify-content: center;
  border-radius: 15px;
}

.mobile-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

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

@media (max-width: 768px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-trigger {
    display: flex;
  }
  
  .header-container {
    padding: 12px 15px;
  }
  
  .site-name {
    font-size: 1.3rem;
  }
  
  .logo-icon {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 10px;
  }
  
  .site-name {
    font-size: 1.2rem;
  }
  
  .logo-icon {
    font-size: 1.6rem;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-nav {
    padding: 30px 15px;
  }
  
  .mobile-nav-link {
    padding: 15px 18px;
    font-size: 1rem;
  }
  
  .mobile-cta-btn {
    padding: 15px;
    font-size: 1rem;
  }
}

/* Platform Overview Section */
.platform-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-light);
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-icon {
  color: var(--accent-color);
  margin-right: 15px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

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

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

.content-block {
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.content-block:hover {
  background: rgba(255, 107, 53, 0.05);
  transform: translateX(10px);
}

.content-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin: 0;
}

.content-paragraph strong {
  color: var(--text-light);
  font-weight: 700;
}

.inline-link {
  color: var(--primary-color);
  font-weight: 700;
  transition: color 0.3s ease;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s ease;
}

.inline-link:hover {
  color: var(--accent-color);
  text-decoration-color: var(--accent-color);
}

.features-list {
  margin-top: 40px;
  padding: 30px;
  background: var(--gradient-dark);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-list-item:last-child {
  border-bottom: none;
}

.feature-list-item:hover {
  color: var(--primary-color);
  transform: translateX(10px);
}

.feature-list-item i {
  color: var(--primary-color);
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.feature-list-item span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
}

.platform-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.platform-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-dark);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

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

.platform-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  max-width: 450px;
}

.highlight-card {
  background: var(--gradient-dark);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-light);
}

.highlight-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.highlight-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .platform-content {
    gap: 60px;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .content-paragraph {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 80px 15px;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .content-block {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .content-paragraph {
    font-size: 1rem;
  }
  
  .features-list {
    padding: 25px;
  }
  
  .feature-list-item {
    padding: 12px 0;
  }
  
  .feature-list-item span {
    font-size: 0.95rem;
  }
  
  .highlight-card {
    padding: 20px;
  }
  
  .highlight-card h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .platform-section {
    padding: 60px 10px;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .content-block {
    padding: 18px;
    margin-bottom: 20px;
  }
  
  .content-paragraph {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .features-list {
    padding: 20px;
  }
  
  .feature-list-item {
    padding: 10px 0;
    gap: 12px;
  }
  
  .feature-list-item i {
    font-size: 16px;
  }
  
  .feature-list-item span {
    font-size: 0.9rem;
  }
  
  .highlight-card {
    padding: 18px;
  }
  
  .highlight-card i {
    font-size: 1.8rem;
  }
  
  .highlight-card h3 {
    font-size: 1rem;
  }
  
  .highlight-card p {
    font-size: 0.9rem;
  }
}

/* Automation System Section */
.automation-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
  position: relative;
  overflow: hidden;
}

.automation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 30% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(26, 26, 46, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

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

.automation-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: flex-start;
  margin-top: 60px;
}

.automation-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.automation-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.automation-img:hover {
  transform: scale(1.02) rotateY(5deg);
}

.automation-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  width: 100%;
  max-width: 500px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: var(--gradient-dark);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.badge-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-light);
  border-color: var(--primary-color);
}

.badge-item i {
  color: var(--primary-color);
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.badge-item span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
}

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

.automation-text .content-block {
  margin-bottom: 25px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  border-left: 5px solid var(--primary-color);
  transition: all 0.4s ease;
  position: relative;
}

.automation-text .content-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.automation-text .content-block:hover::before {
  opacity: 1;
}

.automation-text .content-block:hover {
  background: rgba(255, 107, 53, 0.08);
  transform: translateX(15px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.final-block {
  border-left-color: var(--accent-color) !important;
}

.final-block:hover {
  background: rgba(255, 215, 0, 0.08) !important;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2) !important;
}

.automation-cta {
  margin-top: 40px;
  text-align: center;
  padding: 30px;
  background: var(--gradient-dark);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-large:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

/* Enhanced responsive design */
@media (max-width: 1024px) {
  .automation-content {
    gap: 60px;
  }
  
  .automation-text .content-block {
    padding: 24px;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .automation-section {
    padding: 80px 15px;
  }
  
  .automation-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .section-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .automation-text .content-block {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .badge-item {
    padding: 15px 18px;
  }
  
  .badge-item i {
    font-size: 18px;
    width: 20px;
  }
  
  .badge-item span {
    font-size: 0.95rem;
  }
  
  .automation-cta {
    padding: 25px;
  }
  
  .btn-large {
    padding: 16px 32px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .automation-section {
    padding: 60px 10px;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .automation-text .content-block {
    padding: 18px;
    margin-bottom: 18px;
  }
  
  .content-paragraph {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .badge-item {
    padding: 12px 15px;
    gap: 10px;
  }
  
  .badge-item i {
    font-size: 16px;
    width: 18px;
  }
  
  .badge-item span {
    font-size: 0.9rem;
  }
  
  .automation-cta {
    padding: 20px;
    margin-top: 30px;
  }
  
  .btn-large {
    padding: 14px 28px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
  }
}

/* Budget Strategy Section */
.budget-strategy-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 50%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.budget-strategy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
              linear-gradient(135deg, rgba(26, 26, 46, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

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

.budget-strategy-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: flex-start;
  margin-top: 60px;
}

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

.strategy-text .content-block {
  margin-bottom: 30px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border-left: 6px solid var(--primary-color);
  transition: all 0.4s ease;
  position: relative;
}

.strategy-text .content-block::after {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.strategy-text .content-block:hover::after {
  opacity: 1;
}

.strategy-text .content-block:hover {
  background: rgba(255, 107, 53, 0.06);
  transform: translateX(12px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.learning-steps {
  margin: 40px 0;
  padding: 35px;
  background: var(--gradient-dark);
  border-radius: 25px;
  border: 2px solid rgba(255, 107, 53, 0.2);
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  transition: all 0.3s ease;
}

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

.step-item:hover {
  background: rgba(255, 107, 53, 0.08);
  transform: translateX(10px);
}

.step-number {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  box-shadow: var(--shadow-light);
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

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

.strategy-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.strategy-img:hover {
  transform: scale(1.03) rotateY(-3deg);
}

.budget-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  width: 100%;
  max-width: 450px;
}

.budget-card {
  border-left: 4px solid #4CAF50;
}

.risk-card {
  border-left: 4px solid #2196F3;
}

.return-card {
  border-left: 4px solid var(--accent-color);
}

.budget-highlights .highlight-card {
  padding: 20px;
  background: var(--gradient-dark);
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.budget-highlights .highlight-card:hover::before {
  left: 100%;
}

.budget-highlights .highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.budget-highlights .highlight-card i {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.budget-card i {
  color: #4CAF50;
}

.risk-card i {
  color: #2196F3;
}

.return-card i {
  color: var(--accent-color);
}

.budget-highlights .highlight-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.budget-highlights .highlight-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
}

.money-management-chart {
  width: 100%;
  max-width: 450px;
  padding: 25px;
  background: var(--gradient-dark);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.chart-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-align: center;
  justify-content: center;
}

.chart-title i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.chart-title h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
}

.chart-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chart-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chart-bar {
  height: 25px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.chart-bar::before {
  content: attr(data-percent) '%';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.necessary .chart-bar {
  background: linear-gradient(90deg, #FF6B35 0%, #FF6B35 50%, rgba(255, 255, 255, 0.1) 50%);
}

.entertainment .chart-bar {
  background: linear-gradient(90deg, #FFD700 0%, #FFD700 30%, rgba(255, 255, 255, 0.1) 30%);
}

.savings .chart-bar {
  background: linear-gradient(90deg, #4CAF50 0%, #4CAF50 20%, rgba(255, 255, 255, 0.1) 20%);
}

.chart-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .budget-strategy-content {
    gap: 60px;
  }
  
  .strategy-text .content-block {
    padding: 25px;
  }
  
  .learning-steps {
    padding: 30px;
  }
  
  .step-item {
    padding: 18px;
  }
}

@media (max-width: 768px) {
  .budget-strategy-section {
    padding: 80px 15px;
  }
  
  .budget-strategy-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .section-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .strategy-text .content-block {
    padding: 22px;
    margin-bottom: 25px;
  }
  
  .learning-steps {
    padding: 25px;
  }
  
  .step-item {
    padding: 15px;
    gap: 15px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .step-content h4 {
    font-size: 1rem;
  }
  
  .budget-highlights {
    gap: 12px;
  }
  
  .money-management-chart {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .budget-strategy-section {
    padding: 60px 10px;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .strategy-text .content-block {
    padding: 18px;
    margin-bottom: 20px;
  }
  
  .content-paragraph {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .learning-steps {
    padding: 20px;
  }
  
  .step-item {
    padding: 12px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    margin: 0 auto;
  }
  
  .step-content h4 {
    font-size: 0.95rem;
  }
  
  .budget-highlights .highlight-card {
    padding: 18px;
  }
  
  .budget-highlights .highlight-card h3 {
    font-size: 1rem;
  }
  
  .money-management-chart {
    padding: 18px;
  }
  
  .chart-title h4 {
    font-size: 0.9rem;
  }
  
  .chart-item span {
    font-size: 0.85rem;
  }
  
  .chart-bar {
    height: 20px;
  }
  
  .chart-bar::before {
    font-size: 0.7rem;
    right: 8px;
  }
}

/* Analysis Section */
.analysis-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 30%, var(--bg-dark) 70%, var(--bg-darker) 100%);
  position: relative;
  overflow: hidden;
}

.analysis-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 60% 40%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(26, 26, 46, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

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

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

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

.analysis-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease;
  border: 2px solid rgba(255, 107, 53, 0.2);
}

.analysis-img:hover {
  transform: scale(1.02) rotateX(2deg);
  box-shadow: 0 35px 90px rgba(255, 107, 53, 0.2);
}

.lottery-types {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: 100%;
  max-width: 480px;
}

.lottery-card {
  padding: 22px;
  background: var(--gradient-dark);
  border-radius: 18px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.thai-lottery {
  border-left: 5px solid #FF6B35;
}

.yiki-lottery {
  border-left: 5px solid #FFD700;
}

.stock-lottery {
  border-left: 5px solid #4CAF50;
}

.lottery-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.thai-lottery:hover {
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.yiki-lottery:hover {
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.stock-lottery:hover {
  box-shadow: 0 20px 50px rgba(76, 175, 80, 0.2);
}

.lottery-card i {
  font-size: 2.2rem;
  margin-bottom: 15px;
  display: block;
}

.thai-lottery i {
  color: #FF6B35;
}

.yiki-lottery i {
  color: #FFD700;
}

.stock-lottery i {
  color: #4CAF50;
}

.lottery-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}

.lottery-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.4;
}

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

.analysis-text .content-block {
  margin-bottom: 28px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 22px;
  border-left: 6px solid var(--primary-color);
  transition: all 0.4s ease;
  position: relative;
}

.analysis-text .content-block::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.analysis-text .content-block:hover::after {
  opacity: 1;
}

.analysis-text .content-block:hover {
  background: rgba(255, 107, 53, 0.08);
  transform: translateX(15px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.15);
}

.analysis-text .final-block {
  border-left-color: var(--accent-color);
}

.analysis-text .final-block:hover {
  background: rgba(255, 215, 0, 0.08) !important;
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.15) !important;
}

.analysis-tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding: 30px;
  background: var(--gradient-dark);
  border-radius: 25px;
  border: 2px solid rgba(255, 107, 53, 0.2);
}

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

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

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

.tool-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 107, 53, 0.1);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.tool-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.tool-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.tool-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .analysis-content {
    gap: 60px;
  }
  
  .analysis-text .content-block {
    padding: 28px;
  }
  
  .analysis-tools {
    padding: 25px;
  }
  
  .tool-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .analysis-section {
    padding: 80px 15px;
  }
  
  .analysis-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .section-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .analysis-text .content-block {
    padding: 24px;
    margin-bottom: 24px;
  }
  
  .lottery-card {
    padding: 20px;
  }
  
  .lottery-card h4 {
    font-size: 1.1rem;
  }
  
  .analysis-tools {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  
  .tool-card {
    padding: 18px;
  }
  
  .tool-card h4 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .analysis-section {
    padding: 60px 10px;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .analysis-text .content-block {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .content-paragraph {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .lottery-types {
    gap: 15px;
  }
  
  .lottery-card {
    padding: 18px;
  }
  
  .lottery-card i {
    font-size: 2rem;
  }
  
  .lottery-card h4 {
    font-size: 1rem;
  }
  
  .lottery-card p {
    font-size: 0.9rem;
  }
  
  .analysis-tools {
    padding: 20px;
    gap: 15px;
  }
  
  .tool-card {
    padding: 15px;
  }
  
  .tool-card i {
    font-size: 1.8rem;
  }
  
  .tool-card h4 {
    font-size: 0.95rem;
  }
  
  .tool-card p {
    font-size: 0.85rem;
  }
}

/* Payment Security Section */
.payment-security-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 25%, var(--bg-darker) 50%, var(--bg-dark) 75%, var(--bg-darker) 100%);
  position: relative;
  overflow: hidden;
}

.payment-security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.06) 0%, transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
              radial-gradient(circle at 50% 10%, rgba(26, 26, 46, 0.5) 0%, transparent 80%);
  pointer-events: none;
}

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

.payment-security-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: flex-start;
  margin-top: 60px;
}

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

.payment-text .content-block {
  margin-bottom: 30px;
  padding: 35px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 25px;
  border-left: 8px solid var(--primary-color);
  transition: all 0.4s ease;
  position: relative;
}

.payment-text .content-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, transparent 60%);
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.payment-text .content-block:hover::before {
  opacity: 1;
}

.payment-text .content-block:hover {
  background: rgba(255, 107, 53, 0.08);
  transform: translateX(18px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.final-block {
  border-left-color: #4CAF50 !important;
}

.final-block:hover {
  background: rgba(76, 175, 80, 0.08) !important;
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15) !important;
}

.conclusion-block {
  border-left-color: var(--accent-color) !important;
}

.conclusion-block:hover {
  background: rgba(255, 215, 0, 0.08) !important;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15) !important;
}

.payment-methods {
  margin: 40px 0;
  padding: 35px;
  background: var(--gradient-dark);
  border-radius: 25px;
  border: 2px solid rgba(255, 107, 53, 0.25);
}

.method-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.method-item:last-child {
  border-bottom: none;
}

.method-item::before {
  content: '';
  position: absolute;
  left: -35px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-color);
  border-radius: 2px;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.method-item:hover::before {
  transform: scaleY(1);
}

.method-item:hover {
  color: var(--primary-color);
  transform: translateX(15px);
}

.banking:hover {
  color: #1976D2;
}

.ewallet:hover {
  color: #FF6B35;
}

.crypto:hover {
  color: #F7931A;
}

.cards:hover {
  color: #1A1F71;
}

.international:hover {
  color: #4CAF50;
}

.method-item i {
  font-size: 22px;
  width: 28px;
  text-align: center;
  transition: color 0.3s ease;
}

.banking i {
  color: #1976D2;
}

.ewallet i {
  color: #FF6B35;
}

.crypto i {
  color: #F7931A;
}

.cards i {
  color: #1A1F71;
}

.international i {
  color: #4CAF50;
}

.method-item span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.4;
}

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

.security-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease;
  border: 3px solid rgba(255, 107, 53, 0.2);
}

.security-img:hover {
  transform: scale(1.02) rotateY(-5deg);
  box-shadow: 0 40px 100px rgba(255, 107, 53, 0.2);
}

.security-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 500px;
}

.security-badge {
  padding: 25px;
  background: var(--gradient-dark);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

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

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

.ssl {
  border-left: 5px solid #4CAF50;
}

.mfa {
  border-left: 5px solid #2196F3;
}

.blockchain {
  border-left: 5px solid #9C27B0;
}

.ai {
  border-left: 5px solid #FF9800;
}

.security-badge:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.ssl:hover {
  box-shadow: 0 25px 60px rgba(76, 175, 80, 0.2);
}

.mfa:hover {
  box-shadow: 0 25px 60px rgba(33, 150, 243, 0.2);
}

.blockchain:hover {
  box-shadow: 0 25px 60px rgba(156, 39, 176, 0.2);
}

.ai:hover {
  box-shadow: 0 25px 60px rgba(255, 152, 0, 0.2);
}

.security-badge i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.ssl i {
  color: #4CAF50;
}

.mfa i {
  color: #2196F3;
}

.blockchain i {
  color: #9C27B0;
}

.ai i {
  color: #FF9800;
}

.security-badge h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}

.security-badge p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.3;
}

.security-cta {
  width: 100%;
  max-width: 500px;
  text-align: center;
  padding: 30px;
  background: var(--gradient-dark);
  border-radius: 25px;
  border: 2px solid rgba(255, 107, 53, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .payment-security-content {
    gap: 60px;
  }
  
  .payment-text .content-block {
    padding: 30px;
  }
  
  .payment-methods {
    padding: 30px;
  }
  
  .security-badges {
    gap: 18px;
  }
  
  .security-badge {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .payment-security-section {
    padding: 80px 15px;
  }
  
  .payment-security-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .section-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .payment-text .content-block {
    padding: 25px;
    margin-bottom: 25px;
  }
  
  .payment-methods {
    padding: 25px;
  }
  
  .method-item {
    padding: 15px 0;
    gap: 15px;
  }
  
  .method-item i {
    font-size: 20px;
    width: 24px;
  }
  
  .method-item span {
    font-size: 1rem;
  }
  
  .security-badges {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .security-badge {
    padding: 18px;
  }
  
  .security-badge h4 {
    font-size: 1rem;
  }
  
  .security-cta {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .payment-security-section {
    padding: 60px 10px;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .payment-text .content-block {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .content-paragraph {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .payment-methods {
    padding: 20px;
  }
  
  .method-item {
    padding: 12px 0;
    gap: 12px;
  }
  
  .method-item i {
    font-size: 18px;
    width: 20px;
  }
  
  .method-item span {
    font-size: 0.9rem;
  }
  
  .security-badge {
    padding: 15px;
  }
  
  .security-badge i {
    font-size: 2.2rem;
  }
  
  .security-badge h4 {
    font-size: 0.95rem;
  }
  
  .security-badge p {
    font-size: 0.85rem;
  }
  
  .security-cta {
    padding: 20px;
  }
  
  .btn-large {
    width: 100%;
    max-width: 280px;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
  padding: 80px 20px 40px;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.footer-brand {
  max-width: 100%;
}

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

.footer-logo .logo-icon {
  font-size: 2.2rem;
  color: var(--accent-color);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-logo .site-name {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 25px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-weight: 600;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.footer-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30%;
  height: 2px;
  background: var(--accent-color);
}

.footer-title i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

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

.footer-link {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 5px 0;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

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

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

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

.security-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.security-badge:hover {
  background: rgba(255, 107, 53, 0.08);
  transform: translateX(5px);
}

.security-badge i {
  color: var(--primary-color);
  font-size: 1rem;
}

.security-badge span {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-cta {
  margin-top: 10px;
}

.footer-cta-btn {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  justify-content: center;
  border-radius: 12px;
}

.footer-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  margin: 40px 0;
}

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

.footer-copyright p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin: 0;
}

.footer-disclaimer {
  max-width: 600px;
}

.disclaimer-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

.disclaimer-text i {
  color: #FF9800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

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

@media (max-width: 768px) {
  .main-footer {
    padding: 60px 15px 30px;
    margin-top: 80px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-title {
    justify-content: center;
  }
  
  .footer-menu {
    align-items: center;
  }
  
  .security-badges {
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .disclaimer-text {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 50px 10px 25px;
  }
  
  .footer-content {
    gap: 35px;
  }
  
  .footer-logo .logo-icon {
    font-size: 2rem;
  }
  
  .footer-logo .site-name {
    font-size: 1.6rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-cta-btn {
    padding: 12px;
    font-size: 0.95rem;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
  
  .disclaimer-text {
    font-size: 0.8rem;
  }
  
  .security-badge {
    padding: 8px 12px;
  }
  
  .security-badge span {
    font-size: 0.85rem;
  }
}

/* Sticky Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 2px solid var(--primary-color);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-buttons::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 215, 0, 0.05) 50%, rgba(255, 107, 53, 0.05) 100%);
  pointer-events: none;
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 15px 10px;
  text-decoration: none;
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

.sticky-btn span {
  font-size: 0.8rem;
  line-height: 1;
  text-align: center;
}

.sticky-btn-login {
  background: linear-gradient(135deg, #2196F3, #1976D2);
}

.sticky-btn-login:hover,
.sticky-btn-login:active,
.sticky-btn-login:focus {
  background: linear-gradient(135deg, #1976D2, #1565C0);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

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

.sticky-btn-register {
  background: linear-gradient(135deg, var(--primary-color), #FF8F65);
}

.sticky-btn-register:hover,
.sticky-btn-register:active,
.sticky-btn-register:focus {
  background: linear-gradient(135deg, #E55A2B, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

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

.sticky-btn-bonus {
  background: linear-gradient(135deg, var(--accent-color), #FFE55C);
  color: #1a1a2e;
  animation: pulse-bonus 2s infinite;
}

.sticky-btn-bonus:hover,
.sticky-btn-bonus:active,
.sticky-btn-bonus:focus {
  background: linear-gradient(135deg, #E6C200, var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  animation: none;
}

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

@keyframes pulse-bonus {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 8px rgba(255, 215, 0, 0);
  }
}

/* Responsive Design for Sticky Buttons */
@media (max-width: 768px) {
  .sticky-btn {
    padding: 12px 8px;
    gap: 4px;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 10px 5px;
    gap: 3px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .sticky-btn span {
    font-size: 0.65rem;
    letter-spacing: 0.2px;
  }
}

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

/* Ensure sticky buttons don't interfere with page content */
body {
  padding-bottom: 70px;
}

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

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

/* Add proper spacing for main content to avoid sticky buttons overlap */
.hero-section,
.platform-section,
.automation-section,
.budget-strategy-section,
.analysis-section,
.payment-security-section {
  position: relative;
  z-index: 1;
}

/* Ensure footer doesn't get covered by sticky buttons */
.main-footer {
  margin-bottom: 70px;
}

@media (max-width: 768px) {
  .main-footer {
    margin-bottom: 65px;
  }
}

@media (max-width: 480px) {
  .main-footer {
    margin-bottom: 60px;
  }
}

/* Login Section Styles */
.login-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 25%, var(--bg-darker) 50%, var(--bg-dark) 75%, var(--bg-darker) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

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

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

.login-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
}

.login-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 50%, rgba(255, 215, 0, 0.05) 100%);
  pointer-events: none;
}

.login-logo {
  text-align: center;
  padding: 40px 40px 20px;
  position: relative;
  z-index: 1;
}

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

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

.login-form-container {
  padding: 20px 40px 40px;
  position: relative;
  z-index: 1;
}

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

.login-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}

.login-title i {
  color: var(--primary-color);
  font-size: 1.6rem;
}

.login-subtitle {
  color: var(--text-gray);
  font-size: 1rem;
  margin: 0;
}

.error-message {
  background: linear-gradient(135deg, #FF4444, #CC0000);
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
  animation: slideInDown 0.3s ease;
}

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

.error-text {
  font-weight: 600;
  flex: 1;
}

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

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

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 5px;
}

.form-label i {
  color: var(--primary-color);
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

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

.form-input::placeholder {
  color: var(--text-gray);
  opacity: 0.8;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

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

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

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

.password-toggle:hover {
  color: var(--primary-color);
}

.field-error {
  font-size: 0.85rem;
  color: #FF4444;
  font-weight: 600;
  display: none;
  margin-top: 5px;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.login-btn {
  position: relative;
  overflow: hidden;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 12px;
}

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

.login-btn .btn-text {
  transition: opacity 0.3s ease;
}

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

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

.register-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--text-light);
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.register-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

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

.login-links {
  text-align: center;
  margin-bottom: 20px;
}

.forgot-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: var(--primary-color);
}

.forgot-link i {
  font-size: 0.8rem;
}

.security-info {
  text-align: center;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 20px;
  color: #4CAF50;
  font-size: 0.85rem;
  font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 15px;
  }
  
  .login-container {
    max-width: 400px;
  }
  
  .login-form-container {
    padding: 15px 30px 30px;
  }
  
  .login-logo {
    padding: 30px 30px 15px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .form-input {
    padding: 14px 18px;
  }
  
  .login-btn,
  .register-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 15px 10px;
  }
  
  .login-container {
    max-width: 100%;
  }
  
  .login-form-container {
    padding: 15px 25px 25px;
  }
  
  .login-logo {
    padding: 25px 25px 15px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.4rem;
    gap: 10px;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .login-btn,
  .register-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .error-message {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

/* Register Section Styles */
.register-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 25%, var(--bg-darker) 50%, var(--bg-dark) 75%, var(--bg-darker) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

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

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

.register-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
}

.register-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 50%, rgba(255, 215, 0, 0.05) 100%);
  pointer-events: none;
}

.register-logo {
  text-align: center;
  padding: 40px 40px 20px;
  position: relative;
  z-index: 1;
}

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

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

.register-form-container {
  padding: 20px 40px 40px;
  position: relative;
  z-index: 1;
}

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

.register-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}

.register-title i {
  color: var(--primary-color);
  font-size: 1.6rem;
}

.register-subtitle {
  color: var(--text-gray);
  font-size: 1rem;
  margin: 0;
}

.error-message {
  background: linear-gradient(135deg, #FF4444, #CC0000);
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
  animation: slideInDown 0.3s ease;
}

.success-message {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  animation: slideInDown 0.3s ease;
}

.error-message i,
.success-message i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.error-text,
.success-text {
  font-weight: 600;
  flex: 1;
}

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

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

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 5px;
}

.form-label i {
  color: var(--primary-color);
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

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

.form-input::placeholder {
  color: var(--text-gray);
  opacity: 0.8;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

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

.form-input.success {
  border-color: #4CAF50;
  background: rgba(76, 175, 80, 0.1);
}

.field-error {
  font-size: 0.85rem;
  color: #FF4444;
  font-weight: 600;
  display: none;
  margin-top: 5px;
}

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

.field-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-top: 5px;
  opacity: 0.8;
}

.field-hint i {
  color: var(--primary-color);
  font-size: 0.7rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.register-btn {
  position: relative;
  overflow: hidden;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 12px;
}

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

.register-btn .btn-text {
  transition: opacity 0.3s ease;
}

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

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

.login-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--text-light);
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

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

.terms-info {
  text-align: center;
  margin-bottom: 20px;
}

.terms-text {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  color: var(--text-gray);
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
  flex-wrap: wrap;
}

.terms-text i {
  color: var(--primary-color);
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.terms-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: var(--accent-color);
}

.security-info {
  text-align: center;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 20px;
  color: #4CAF50;
  font-size: 0.85rem;
  font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 15px;
  }
  
  .register-container {
    max-width: 400px;
  }
  
  .register-form-container {
    padding: 15px 30px 30px;
  }
  
  .register-logo {
    padding: 30px 30px 15px;
  }
  
  .register-logo .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .form-input {
    padding: 14px 18px;
  }
  
  .register-btn,
  .login-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 15px 10px;
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-form-container {
    padding: 15px 25px 25px;
  }
  
  .register-logo {
    padding: 25px 25px 15px;
  }
  
  .register-logo .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.4rem;
    gap: 10px;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .register-btn,
  .login-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .error-message,
  .success-message {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .terms-text {
    font-size: 0.75rem;
    text-align: center;
    justify-content: flex-start;
  }
}

/* Hero Section */
.hero-section {
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

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

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

.hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-light);
  text-align: center;
  max-width: 900px;
}

.hero-icon {
  color: var(--accent-color);
  font-size: 2.8rem;
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.3));
  animation: pulse-hero 3s infinite;
}

@keyframes pulse-hero {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.3));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(5px 5px 10px rgba(255, 215, 0, 0.5));
  }
}

.hero-cta {
  display: flex;
  justify-content: center;
}

.hero-btn {
  padding: 20px 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 15px;
  animation: bounce-cta 2s infinite;
}

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

.hero-btn:hover {
  animation: none;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

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

.promotion-section:nth-child(odd) {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.promotion-section.alternate {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

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

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

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promotion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, transparent 50%, rgba(255, 215, 0, 0.02) 100%);
  pointer-events: none;
}

.promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(255, 107, 53, 0.2);
  border-color: var(--primary-color);
}

.promotion-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.promotion-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.3;
}

.promotion-title i {
  color: var(--primary-color);
  font-size: 2rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.promotion-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 107, 53, 0.08);
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.6;
}

.promotion-cta {
  text-align: center;
  padding: 30px;
  background: var(--gradient-dark);
  border-radius: 20px;
  border: 2px solid rgba(255, 107, 53, 0.3);
}

.promotion-cta .btn {
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 12px;
}

.promotion-cta .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Section-specific styling */
#new-member-bonus .promotion-title i {
  color: #4CAF50;
}

#new-member-bonus .feature-item {
  border-left-color: #4CAF50;
}

#new-member-bonus .feature-item i {
  color: #4CAF50;
}

#first-deposit-bonus .promotion-title i {
  color: #2196F3;
}

#first-deposit-bonus .feature-item {
  border-left-color: #2196F3;
}

#first-deposit-bonus .feature-item i {
  color: #2196F3;
}

#vip-weekly-bonus .promotion-title i {
  color: var(--accent-color);
}

#vip-weekly-bonus .feature-item {
  border-left-color: var(--accent-color);
}

#vip-weekly-bonus .feature-item i {
  color: var(--accent-color);
}

#referral-program .promotion-title i {
  color: #9C27B0;
}

#referral-program .feature-item {
  border-left-color: #9C27B0;
}

#referral-program .feature-item i {
  color: #9C27B0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
    gap: 15px;
  }
  
  .hero-icon {
    font-size: 2.3rem;
  }
  
  .promotion-card {
    padding: 40px;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 15px 60px;
  }
  
  .hero-title {
    font-size: 2rem;
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-icon {
    font-size: 2rem;
  }
  
  .hero-btn {
    padding: 16px 40px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 60px 15px;
  }
  
  .promotion-card {
    padding: 30px;
  }
  
  .promotion-title {
    font-size: 1.7rem;
    flex-direction: column;
    gap: 15px;
  }
  
  .promotion-title i {
    font-size: 1.8rem;
  }
  
  .feature-item {
    padding: 18px;
  }
  
  .feature-item span {
    font-size: 1rem;
  }
  
  .promotion-cta .btn {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 10px 50px;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-icon {
    font-size: 1.8rem;
  }
  
  .hero-btn {
    padding: 14px 30px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }
  
  .promotion-section {
    padding: 50px 10px;
  }
  
  .promotion-card {
    padding: 25px;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .promotion-title i {
    font-size: 1.5rem;
  }
  
  .feature-item {
    padding: 15px;
    gap: 12px;
  }
  
  .feature-item i {
    font-size: 1.1rem;
  }
  
  .feature-item span {
    font-size: 0.95rem;
  }
  
  .promotion-cta {
    padding: 25px;
  }
  
  .promotion-cta .btn {
    padding: 14px 25px;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
}