/* Base Theme Styles */
:root {
  --primary-color: #ff6b35;
  --secondary-color: #4a90e2;
  --accent-color: #f39800;
  --bg-dark: #0d1117;
  --bg-dark-secondary: #161b22;
  --bg-dark-tertiary: #21262d;
  --text-primary: #ffffff;
  --text-secondary: #8b949e;
  --text-accent: #58a6ff;
  --border-color: #30363d;
  --success-color: #238636;
  --warning-color: #d29922;
  --error-color: #da3633;
}

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

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

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

a {
  color: var(--text-accent);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

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

/* Hero Section Styles */
.hero-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 50%, var(--bg-dark-tertiary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  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 {
  z-index: 3;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

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

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

.btn-secondary:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

.hero-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-weight: 600;
}

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

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

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.3));
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(243, 152, 0, 0.4);
}

.hero-badge i {
  font-size: 1.2rem;
}

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

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-badge {
    position: static;
    margin-top: 20px;
    align-self: center;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .feature-item {
    justify-content: center;
  }
}

/* Header Styles */
.main-header {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

.logo-link i {
  font-size: 2rem;
  color: var(--primary-color);
  filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

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

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 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;
}

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

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.btn-cta:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

/* 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 var(--primary-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 4px;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: scale(1.05);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
  transition: all 0.3s ease;
}

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

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

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

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

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
  border-left: 1px solid var(--border-color);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.mobile-logo i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.mobile-menu-close {
  width: 35px;
  height: 35px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: var(--primary-color);
  color: white;
  transform: rotate(90deg);
}

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

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

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

.mobile-nav-link {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

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

.mobile-cta-item {
  margin-top: 20px;
  padding: 0 20px;
}

.mobile-cta {
  width: 100%;
  justify-content: center;
  padding: 15px 25px;
  font-size: 1.1rem;
}

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

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .desktop-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-content {
    padding: 12px 0;
    min-height: 60px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-link i {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 12px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .logo-link i {
    font-size: 1.6rem;
  }
  
  .mobile-menu {
    width: 280px;
  }
  
  .mobile-nav-link {
    font-size: 1rem;
    padding: 12px 15px;
  }
  
  .mobile-cta-item {
    padding: 0 15px;
  }
}

/* Introduction Section Styles */
.introduction-section {
  background: var(--bg-dark-secondary);
  padding: 100px 0;
  position: relative;
}

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

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

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

.section-title {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 30px;
  line-height: 1.3;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.text-content {
  margin-bottom: 40px;
}

.text-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

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

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

.text-content a:hover {
  color: var(--accent-color);
}

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

.feature-card {
  background: var(--bg-dark-tertiary);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

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

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

.feature-card h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

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

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

.intro-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 20px rgba(74, 144, 226, 0.3));
}

.image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.overlay-content i {
  font-size: 2rem;
  color: var(--primary-color);
  animation: pulse 2s infinite;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .introduction-section {
    padding: 80px 0;
  }
  
  .introduction-content {
    gap: 40px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .text-content p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .introduction-section {
    padding: 60px 0;
  }
  
  .introduction-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .text-content p {
    font-size: 1rem;
    text-align: left;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    padding: 20px;
    text-align: center;
  }
  
  .image-overlay {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 15px;
  }
  
  .overlay-content {
    justify-content: center;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .introduction-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .text-content p {
    font-size: 0.95rem;
  }
  
  .feature-card {
    padding: 18px;
  }
  
  .feature-card i {
    font-size: 1.8rem;
  }
  
  .feature-card h4 {
    font-size: 1rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
  
  .overlay-content {
    gap: 10px;
    font-size: 0.9rem;
  }
  
  .overlay-content i {
    font-size: 1.5rem;
  }
}

/* Games Section Styles */
.games-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-tertiary) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.games-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

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

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

.games-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  filter: drop-shadow(0 0 25px rgba(243, 152, 0, 0.3));
  transition: transform 0.3s ease;
}

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

.games-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  background: linear-gradient(135deg, var(--warning-color), var(--accent-color));
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(210, 153, 34, 0.4);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.games-badge i {
  font-size: 1.1rem;
  color: #fff200;
}

.games-text {
  z-index: 3;
}

.games-features {
  margin: 40px 0;
}

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

.feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--secondary-color);
  transform: translateX(10px);
}

.feature-item i {
  font-size: 2rem;
  color: var(--secondary-color);
  min-width: 50px;
  margin-top: 5px;
}

.feature-text h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

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

.games-cta .btn {
  padding: 16px 35px;
  font-size: 1.2rem;
  border-radius: 50px;
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.games-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 107, 53, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .games-section {
    padding: 80px 0;
  }
  
  .games-content {
    gap: 40px;
  }
  
  .feature-item {
    padding: 18px;
  }
  
  .feature-item i {
    font-size: 1.8rem;
  }
  
  .feature-text h4 {
    font-size: 1.1rem;
  }
  
  .feature-text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .games-section {
    padding: 60px 0;
  }
  
  .games-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .games-image {
    order: -1;
  }
  
  .section-title {
    text-align: center;
  }
  
  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .games-badge {
    position: static;
    margin-bottom: 20px;
    align-self: center;
    font-size: 0.85rem;
  }
  
  .feature-item {
    margin-bottom: 20px;
    padding: 16px;
  }
  
  .feature-item:hover {
    transform: translateX(5px);
  }
  
  .games-cta {
    text-align: center;
    margin-top: 30px;
  }
  
  .games-cta .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .games-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .text-content p {
    font-size: 0.95rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px 15px;
  }
  
  .feature-item i {
    font-size: 2.5rem;
    min-width: auto;
    margin-top: 0;
  }
  
  .feature-text h4 {
    font-size: 1.1rem;
  }
  
  .feature-text p {
    font-size: 0.9rem;
  }
  
  .games-badge {
    padding: 10px 18px;
    font-size: 0.8rem;
  }
  
  .games-cta .btn {
    padding: 14px 30px;
    font-size: 1.1rem;
  }
}

/* Platform Section Styles */
.platform-section {
  background: var(--bg-dark-secondary);
  padding: 100px 0;
  position: relative;
}

.platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.05) 0%, transparent 30%, rgba(74, 144, 226, 0.05) 70%, transparent 100%);
  pointer-events: none;
}

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

.platform-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

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

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-top: 15px;
  line-height: 1.6;
}

.platform-main {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
}

.platform-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, var(--bg-dark-tertiary), rgba(255, 107, 53, 0.05));
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
  transition: width 0.3s ease;
}

.benefit-item:hover::before {
  width: 100%;
  opacity: 0.1;
}

.benefit-item:hover {
  transform: translateX(10px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.benefit-number {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.benefit-text h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.4;
  margin: 0;
}

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

.platform-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.2));
  transition: transform 0.3s ease;
}

.platform-img:hover {
  transform: scale(1.02) rotate(1deg);
}

.platform-features {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-highlight {
  background: linear-gradient(135deg, var(--bg-dark-tertiary), var(--bg-dark));
  border: 2px solid var(--border-color);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.feature-highlight:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .platform-section {
    padding: 80px 0;
  }
  
  .platform-main {
    gap: 40px;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .benefit-item {
    padding: 18px;
  }
  
  .benefit-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .benefit-text h4 {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 60px 0;
  }
  
  .platform-content {
    gap: 40px;
  }
  
  .platform-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .platform-image {
    order: -1;
  }
  
  .section-title {
    text-align: center;
  }
  
  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .benefit-item {
    padding: 16px;
  }
  
  .benefit-item:hover {
    transform: translateX(5px);
  }
  
  .platform-features {
    gap: 12px;
  }
  
  .feature-highlight {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .feature-highlight i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .platform-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .text-content p {
    font-size: 0.95rem;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px 15px;
  }
  
  .benefit-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .benefit-text h4 {
    font-size: 1rem;
    text-align: center;
  }
  
  .platform-features {
    flex-direction: column;
    gap: 10px;
  }
  
  .feature-highlight {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}

/* V3 Section Styles */
.v3-section {
  background: linear-gradient(135deg, var(--bg-dark-tertiary) 0%, var(--bg-dark) 50%, var(--bg-dark-secondary) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.v3-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 20%, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.v3-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.02) 50%, transparent 51%),
    linear-gradient(-45deg, transparent 49%, rgba(255, 255, 255, 0.02) 50%, transparent 51%);
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}

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

.v3-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.v3-text {
  text-align: center;
}

.v3-text .section-title {
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--text-primary), var(--text-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v3-text .section-title::after {
  display: none;
}

.v3-features {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 60px;
  align-items: start;
}

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

.v3-img {
  max-width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.4));
  transition: all 0.4s ease;
}

.v3-img:hover {
  transform: scale(1.05) rotate(-2deg);
  filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.6));
}

.v3-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--success-color), #32d74b);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(50, 215, 75, 0.4);
  animation: bounce 2s infinite;
}

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

.v3-badge i {
  font-size: 1.2rem;
  color: #fff;
}

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

.feature-box {
  background: linear-gradient(135deg, var(--bg-dark-secondary), var(--bg-dark-tertiary));
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(74, 144, 226, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

.feature-box:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.25);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.feature-icon i {
  font-size: 1.8rem;
  color: white;
}

.feature-box h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-box p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .v3-section {
    padding: 80px 0;
  }
  
  .v3-content {
    gap: 50px;
  }
  
  .v3-features {
    gap: 40px;
  }
  
  .features-grid {
    gap: 20px;
  }
  
  .feature-box {
    padding: 25px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 1.6rem;
  }
  
  .feature-box h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .v3-section {
    padding: 60px 0;
  }
  
  .v3-content {
    gap: 40px;
  }
  
  .v3-features {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .v3-image {
    order: -1;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .v3-badge {
    position: static;
    margin-bottom: 20px;
    align-self: center;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .feature-box {
    padding: 20px;
  }
  
  .feature-box h4 {
    font-size: 1.05rem;
  }
  
  .feature-box p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .v3-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .text-content p {
    font-size: 0.95rem;
  }
  
  .features-grid {
    gap: 15px;
  }
  
  .feature-box {
    padding: 18px 15px;
  }
  
  .feature-icon {
    width: 55px;
    height: 55px;
  }
  
  .feature-icon i {
    font-size: 1.4rem;
  }
  
  .feature-box h4 {
    font-size: 1rem;
  }
  
  .feature-box p {
    font-size: 0.85rem;
  }
  
  .v3-badge {
    padding: 10px 16px;
    font-size: 0.85rem;
    gap: 8px;
  }
  
  .v3-badge i {
    font-size: 1rem;
  }
}

/* Premium Service Section Styles */
.premium-service-section {
  background: var(--bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.premium-service-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 80%, rgba(243, 152, 0, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.premium-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.premium-header {
  text-align: center;
}

.premium-header .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.premium-main {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 60px;
  align-items: start;
}

.promotion-title {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin: 40px 0 25px;
  position: relative;
}

.promotion-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  border-radius: 2px;
}

.promotion-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.promo-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--bg-dark-tertiary), rgba(243, 152, 0, 0.05));
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promo-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
  transition: width 0.3s ease;
}

.promo-item:hover::before {
  width: 100%;
  opacity: 0.08;
}

.promo-item:hover {
  transform: translateX(8px);
  border-color: var(--accent-color);
  box-shadow: 0 8px 20px rgba(243, 152, 0, 0.2);
}

.promo-number {
  background: linear-gradient(135deg, var(--accent-color), var(--warning-color));
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(243, 152, 0, 0.3);
}

.promo-text h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 5px;
  line-height: 1.3;
}

.promo-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

.additional-content {
  margin-top: 30px;
}

.additional-content p {
  margin-bottom: 20px;
}

.additional-content a {
  color: var(--accent-color);
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.additional-content a:hover {
  color: var(--primary-color);
}

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

.premium-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 25px rgba(243, 152, 0, 0.3));
  transition: transform 0.3s ease;
}

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

.service-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.service-item {
  background: linear-gradient(135deg, var(--bg-dark-secondary), var(--bg-dark-tertiary));
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  justify-content: center;
}

.service-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(243, 152, 0, 0.2);
}

.service-item i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.cta-section {
  background: linear-gradient(135deg, var(--bg-dark-tertiary), var(--bg-dark-secondary));
  border: 2px solid var(--border-color);
  border-radius: 25px;
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-content h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.3rem;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-large::after {
  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: width 0.3s, height 0.3s;
}

.btn-large:hover::after {
  width: 300px;
  height: 300px;
}

.btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .premium-service-section {
    padding: 80px 0;
  }
  
  .premium-content {
    gap: 50px;
  }
  
  .premium-main {
    gap: 40px;
  }
  
  .cta-section {
    padding: 40px;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .premium-service-section {
    padding: 60px 0;
  }
  
  .premium-content {
    gap: 40px;
  }
  
  .premium-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .premium-image {
    order: -1;
  }
  
  .promotion-title {
    text-align: center;
  }
  
  .promotion-title::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .promo-item {
    padding: 16px 18px;
  }
  
  .promo-item:hover {
    transform: translateX(5px);
  }
  
  .service-highlights {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .service-item {
    flex: 1;
    min-width: 120px;
  }
  
  .cta-section {
    padding: 35px 25px;
  }
  
  .cta-content h3 {
    font-size: 1.6rem;
  }
  
  .btn-large {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .premium-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .text-content p {
    font-size: 0.95rem;
  }
  
  .promotion-title {
    font-size: 1.2rem;
  }
  
  .promo-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 18px 15px;
  }
  
  .promo-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .promo-text h4 {
    font-size: 0.95rem;
  }
  
  .promo-text p {
    font-size: 0.85rem;
  }
  
  .service-highlights {
    flex-direction: column;
    gap: 8px;
  }
  
  .service-item {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .cta-section {
    padding: 30px 20px;
  }
  
  .cta-content h3 {
    font-size: 1.4rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .btn-large {
    padding: 16px 35px;
    font-size: 1.2rem;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(180deg, var(--bg-dark-secondary) 0%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 107, 53, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

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

.footer-content {
  padding: 60px 0 40px;
}

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

/* Footer Brand Section */
.footer-brand {
  max-width: 400px;
}

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

.footer-logo i {
  font-size: 2.2rem;
  color: var(--primary-color);
  filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

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

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

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

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
}

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

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 5px 0;
  border-left: 2px solid transparent;
  padding-left: 8px;
}

.footer-links a:hover {
  color: var(--text-primary);
  border-left-color: var(--primary-color);
  transform: translateX(5px);
}

/* Footer Features */
.footer-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: linear-gradient(135deg, var(--bg-dark-tertiary), rgba(255, 107, 53, 0.05));
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-badge:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.feature-badge i {
  font-size: 1.8rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.badge-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Footer Social */
.footer-social {
  text-align: center;
  margin-bottom: 30px;
}

.social-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--bg-dark-tertiary), var(--bg-dark-secondary));
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: white;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

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

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

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

.footer-disclaimer p {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
    margin-bottom: 20px;
  }
  
  .footer-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .feature-badge {
    padding: 12px;
  }
  
  .feature-badge i {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    padding: 50px 0 30px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }
  
  .footer-brand {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links a {
    border-left: none;
    padding-left: 0;
    border-bottom: 1px solid transparent;
    padding-bottom: 8px;
  }
  
  .footer-links a:hover {
    border-left: none;
    border-bottom-color: var(--primary-color);
    transform: translateY(-2px);
  }
  
  .footer-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .feature-badge {
    justify-content: center;
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 12px;
  }
  
  .footer-content {
    padding: 40px 0 25px;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-logo i {
    font-size: 2rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .feature-badge {
    flex-direction: column;
    gap: 10px;
    padding: 15px 10px;
  }
  
  .feature-badge i {
    font-size: 2rem;
  }
  
  .badge-title {
    font-size: 0.9rem;
  }
  
  .badge-desc {
    font-size: 0.8rem;
  }
  
  .social-links {
    gap: 12px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .copyright p,
  .footer-disclaimer p {
    font-size: 0.85rem;
  }
  
  .footer-disclaimer p {
    font-size: 0.8rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
  border-top: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  z-index: 999;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border-color);
}

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

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

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

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

.sticky-btn span {
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Login Button */
.sticky-login {
  background: linear-gradient(135deg, var(--secondary-color), #357abd);
  color: white;
}

.sticky-login:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

/* Register Button */
.sticky-register {
  background: linear-gradient(135deg, var(--success-color), #1d6f2b);
  color: white;
}

.sticky-register:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(35, 134, 54, 0.4);
}

/* Bonus Button */
.sticky-bonus {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  position: relative;
}

.sticky-bonus::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.sticky-bonus:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 12px 8px;
    font-size: 0.9rem;
    gap: 6px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .sticky-btn span {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.85rem;
    gap: 5px;
    flex-direction: column;
  }
  
  .sticky-btn i {
    font-size: 1.3rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
    line-height: 1;
  }
}

@media (max-width: 360px) {
  .sticky-btn {
    padding: 8px 4px;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
  }
}

/* Ensure content doesn't get hidden behind sticky buttons */
body {
  padding-bottom: 70px;
}

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

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

/* Login Section Styles */
.login-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 50%, var(--bg-dark-tertiary) 100%);
  min-height: 100vh;
  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;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 70%, rgba(74, 144, 226, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.login-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  pointer-events: none;
}

.login-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box {
  background: linear-gradient(135deg, var(--bg-dark-secondary), var(--bg-dark-tertiary));
  border: 1px solid var(--border-color);
  border-radius: 25px;
  padding: 50px 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(255, 107, 53, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.login-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(74, 144, 226, 0.02));
  pointer-events: none;
}

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

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

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

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.login-form {
  position: relative;
  z-index: 3;
}

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

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

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

.form-input {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

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

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

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

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

.password-toggle:hover {
  color: var(--primary-color);
  background: rgba(255, 107, 53, 0.1);
}

.input-border {
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

.form-input:focus + .input-border,
.form-input:focus ~ .input-border {
  width: 100%;
}

.error-message {
  background: rgba(218, 54, 51, 0.1);
  border: 1px solid var(--error-color);
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--error-color);
  font-size: 0.9rem;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.error-message i {
  color: var(--error-color);
  font-size: 1rem;
}

.login-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Prompt', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}

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

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

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

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

.login-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

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

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

.login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
  z-index: 1;
}

.login-divider span {
  background: var(--bg-dark-secondary);
  color: var(--text-secondary);
  padding: 0 20px;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.register-btn {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Prompt', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.register-btn:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

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

.login-footer {
  margin-top: 30px;
  position: relative;
  z-index: 3;
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 12px;
  background: rgba(35, 134, 54, 0.1);
  border: 1px solid rgba(35, 134, 54, 0.2);
  border-radius: 8px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 15px;
  }
  
  .login-box {
    padding: 40px 25px;
    border-radius: 20px;
  }
  
  .login-title {
    font-size: 2rem;
  }
  
  .login-subtitle {
    font-size: 1rem;
  }
  
  .form-input {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 15px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 13px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 15px 10px;
  }
  
  .login-box {
    padding: 30px 20px;
    border-radius: 15px;
    max-width: 100%;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-label {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .login-btn {
    padding: 14px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .security-info {
    font-size: 0.8rem;
    padding: 10px;
  }
}

@media (max-width: 360px) {
  .login-box {
    padding: 25px 15px;
  }
  
  .login-logo {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .form-input {
    padding: 11px 14px;
  }
  
  .login-btn,
  .register-btn {
    padding: 12px;
    font-size: 0.85rem;
  }
}

/* Register Section Styles */
.register-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 50%, var(--bg-dark-tertiary) 100%);
  min-height: 100vh;
  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;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 30%, rgba(35, 134, 54, 0.1) 0%, transparent 50%),
              radial-gradient(ellipse at 30% 70%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.register-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
  opacity: 0.3;
  pointer-events: none;
}

.register-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.register-box {
  background: linear-gradient(135deg, var(--bg-dark-secondary), var(--bg-dark-tertiary));
  border: 1px solid var(--border-color);
  border-radius: 25px;
  padding: 50px 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(35, 134, 54, 0.15);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.register-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(35, 134, 54, 0.05), rgba(255, 107, 53, 0.02));
  pointer-events: none;
}

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

.register-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(35, 134, 54, 0.3);
  filter: drop-shadow(0 0 20px rgba(35, 134, 54, 0.4));
  transition: transform 0.3s ease;
}

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

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--success-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.register-form {
  position: relative;
  z-index: 3;
}

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

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

.form-label i {
  color: var(--success-color);
  font-size: 1rem;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.form-input:focus {
  outline: none;
  border-color: var(--success-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(35, 134, 54, 0.1);
}

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

.input-border {
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--success-color), var(--primary-color));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

.form-input:focus + .input-border {
  width: 100%;
}

.error-message {
  background: rgba(218, 54, 51, 0.1);
  border: 1px solid var(--error-color);
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--error-color);
  font-size: 0.9rem;
  animation: shake 0.5s ease-in-out;
}

.success-message {
  background: rgba(35, 134, 54, 0.1);
  border: 1px solid var(--success-color);
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--success-color);
  font-size: 0.9rem;
  animation: slideIn 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

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

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

.register-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--success-color), #32d74b);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Prompt', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}

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

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

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(35, 134, 54, 0.4);
}

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

.register-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

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

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

.register-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
  z-index: 1;
}

.register-divider span {
  background: var(--bg-dark-secondary);
  color: var(--text-secondary);
  padding: 0 20px;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Prompt', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.login-btn:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

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

.register-footer {
  margin-top: 30px;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 12px;
  background: rgba(35, 134, 54, 0.1);
  border: 1px solid rgba(35, 134, 54, 0.2);
  border-radius: 8px;
}

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

.terms-info {
  text-align: center;
  padding: 0 10px;
}

.terms-info p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}

.terms-info a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 15px;
  }
  
  .register-box {
    padding: 40px 25px;
    border-radius: 20px;
  }
  
  .register-title {
    font-size: 2rem;
  }
  
  .register-subtitle {
    font-size: 1rem;
  }
  
  .form-input {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 15px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 13px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 15px 10px;
  }
  
  .register-box {
    padding: 30px 20px;
    border-radius: 15px;
    max-width: 100%;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-label {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .register-btn {
    padding: 14px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .security-info {
    font-size: 0.8rem;
    padding: 10px;
  }
  
  .terms-info p {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .register-box {
    padding: 25px 15px;
  }
  
  .register-logo {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .form-input {
    padding: 11px 14px;
  }
  
  .register-btn,
  .login-btn {
    padding: 12px;
    font-size: 0.85rem;
  }
  
  .terms-info p {
    font-size: 0.7rem;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 70%, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}

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

.hero-content {
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--success-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  margin-top: 30px;
}

.btn-hero {
  padding: 20px 50px;
  font-size: 1.4rem;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4); }
  50% { box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6); }
  100% { box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4); }
}

.btn-hero:hover {
  transform: translateY(-3px) scale(1.02);
}

/* Promotion Section Styles */
.promotion-section {
  padding: 60px 0;
  background: var(--bg-dark-secondary);
  position: relative;
}

.promotion-section:nth-child(even) {
  background: var(--bg-dark-tertiary);
}

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.01) 50%, transparent 51%);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

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

.promotion-card {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-secondary));
  border: 1px solid var(--border-color);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.promotion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(74, 144, 226, 0.02));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

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

.featured-card {
  border: 2px solid var(--primary-color);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.featured-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--primary-color));
  border-radius: 25px;
  z-index: -1;
  animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
  0% { opacity: 0.8; }
  50% { opacity: 1; }
  100% { opacity: 0.8; }
}

.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.card-icon.secondary {
  background: linear-gradient(135deg, var(--secondary-color), #357abd);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.card-icon.success {
  background: linear-gradient(135deg, var(--success-color), #32d74b);
  box-shadow: 0 8px 25px rgba(35, 134, 54, 0.4);
}

.card-icon.warning {
  background: linear-gradient(135deg, var(--warning-color), #f39c12);
  box-shadow: 0 8px 25px rgba(243, 152, 0, 0.4);
}

.promotion-card:hover .card-icon {
  transform: scale(1.1) rotate(10deg);
}

.card-icon i {
  font-size: 2rem;
  color: white;
}

.card-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
  line-height: 1.3;
}

.card-badge {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  animation: float 3s ease-in-out infinite;
}

.card-badge.secondary {
  background: linear-gradient(135deg, var(--secondary-color), #357abd);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.card-badge.success {
  background: linear-gradient(135deg, var(--success-color), #32d74b);
  box-shadow: 0 4px 15px rgba(35, 134, 54, 0.3);
}

.card-badge.warning {
  background: linear-gradient(135deg, var(--warning-color), #f39c12);
  box-shadow: 0 4px 15px rgba(243, 152, 0, 0.3);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.card-content {
  position: relative;
  z-index: 3;
}

.promotion-features {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.promotion-features li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.promotion-features li:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-color);
  transform: translateX(5px);
}

.promotion-features i {
  color: var(--success-color);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.promotion-features span {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 1rem;
}

.card-cta {
  text-align: center;
  margin-top: 25px;
}

.card-cta .btn {
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 50px;
  min-width: 250px;
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), #357abd);
  box-shadow: 0 6px 25px rgba(74, 144, 226, 0.4);
}

.btn-success {
  background: linear-gradient(135deg, var(--success-color), #32d74b);
  box-shadow: 0 6px 25px rgba(35, 134, 54, 0.4);
}

.btn-warning {
  background: linear-gradient(135deg, var(--warning-color), #f39c12);
  box-shadow: 0 6px 25px rgba(243, 152, 0, 0.4);
}

.card-cta .btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-secondary:hover {
  box-shadow: 0 10px 35px rgba(74, 144, 226, 0.5);
}

.btn-success:hover {
  box-shadow: 0 10px 35px rgba(35, 134, 54, 0.5);
}

.btn-warning:hover {
  box-shadow: 0 10px 35px rgba(243, 152, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .btn-hero {
    padding: 18px 45px;
    font-size: 1.3rem;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-card {
    padding: 35px;
  }
  
  .card-title {
    font-size: 1.6rem;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
  }
  
  .card-icon i {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 50px;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .btn-hero {
    padding: 16px 40px;
    font-size: 1.2rem;
  }
  
  .promotion-container {
    padding: 0 15px;
  }
  
  .promotion-card {
    padding: 25px;
    border-radius: 20px;
  }
  
  .card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  
  .card-title {
    font-size: 1.4rem;
    text-align: center;
  }
  
  .card-icon {
    width: 55px;
    height: 55px;
  }
  
  .card-icon i {
    font-size: 1.6rem;
  }
  
  .card-badge {
    font-size: 0.85rem;
    padding: 6px 16px;
  }
  
  .promotion-features li {
    padding: 10px 12px;
  }
  
  .promotion-features span {
    font-size: 0.95rem;
  }
  
  .card-cta .btn {
    width: 100%;
    max-width: 300px;
    padding: 14px 35px;
    font-size: 1.1rem;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .hero-container {
    padding: 0 12px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn-hero {
    padding: 14px 35px;
    font-size: 1.1rem;
  }
  
  .promotion-container {
    padding: 0 12px;
  }
  
  .promotion-section {
    padding: 40px 0;
  }
  
  .promotion-card {
    padding: 20px;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
  }
  
  .card-icon i {
    font-size: 1.4rem;
  }
  
  .card-badge {
    font-size: 0.8rem;
    padding: 5px 14px;
  }
  
  .promotion-features li {
    padding: 8px 10px;
    gap: 12px;
  }
  
  .promotion-features span {
    font-size: 0.9rem;
  }
  
  .card-cta .btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .promotion-card {
    padding: 18px 15px;
  }
  
  .card-title {
    font-size: 1.1rem;
  }
  
  .promotion-features span {
    font-size: 0.85rem;
  }
  
  .card-cta .btn {
    padding: 11px 25px;
    font-size: 0.95rem;
  }
}