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

body {
  font-family: 'Sarabun', sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #2a2f3e 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e  50%, #fff2a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 36px;
  color: #b8bcc8;
  max-width: 90%;
}

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1f2e;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffed4e 0%, #fff2a0 100%);
}

.btn-secondary {
  background: transparent;
  color: #ffd700;
  border-color: #ffd700;
}

.btn-secondary:hover {
  background: #ffd700;
  color: #1a1f2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b8bcc8;
  font-weight: 600;
}

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

.hero-image {
  position: relative;
  max-width: 100%;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1f2e;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

.floating-icon-1 {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.floating-icon-2 {
  top: 60%;
  left: 5%;
  animation-delay: 1s;
}

.floating-icon-3 {
  bottom: 15%;
  right: 15%;
  animation-delay: 2s;
}

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

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

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

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .hero-buttons {
    gap: 15px;
  }
  
  .hero-features {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  
  .floating-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(15, 20, 25, 0.95) 0%, rgba(26, 31, 46, 0.95) 100%);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo a {
  text-decoration: none;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ffd700;
}

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

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1f2e;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

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

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 2000;
  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: 100vh;
  background: linear-gradient(135deg, #1a1f2e 0%, #2a2f3e 100%);
  border-left: 2px solid rgba(255, 215, 0, 0.3);
  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: 25px 30px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.mobile-menu-close {
  background: none;
  border: none;
  color: #ffd700;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #ffed4e;
}

.mobile-nav {
  padding: 30px;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
}

.mobile-nav-links li {
  margin-bottom: 20px;
}

.mobile-nav-link {
  display: block;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

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

.mobile-btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1f2e;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mobile-btn-cta:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #fff2a0 100%);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

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

@media (max-width: 850px) {
  .header-container {
    padding: 0 20px;
    height: 70px;
  }
  
  .logo-text {
    font-size: 1.7rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    width: 280px;
  }
  
  body {
    padding-top: 70px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
    height: 65px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .mobile-menu {
    width: 100%;
    border-left: none;
  }
  
  .mobile-menu-header {
    padding: 20px 25px;
  }
  
  .mobile-nav {
    padding: 25px;
  }
  
  .mobile-nav-link {
    padding: 12px 18px;
    font-size: 1.1rem;
  }
  
  body {
    padding-top: 65px;
  }
}

/* Platform Overview Section */
.platform-overview-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1f2e 0%, #2a2f3e 50%, #0a0e1a 100%);
  position: relative;
  overflow: hidden;
}

.platform-overview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

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

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

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

.platform-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.platform-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b8bcc8;
}

.platform-description p {
  margin-bottom: 20px;
}

.platform-description p:last-child {
  margin-bottom: 0;
}

.platform-description strong {
  color: #ffd700;
  font-weight: 700;
}

.platform-image {
  position: relative;
  max-width: 100%;
}

.platform-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  filter: brightness(1.05) contrast(1.05);
}

.platform-stats {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
  background: linear-gradient(135deg, #1a1f2e 0%, #2a2f3e 100%);
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.stat-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #b8bcc8;
  white-space: nowrap;
}

/* Popular Games Section */
.popular-games {
  margin-top: 40px;
}

.games-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
}

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

.game-card {
  background: linear-gradient(135deg, #2a2f3e 0%, #1a1f2e 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

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

.game-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.game-icon i {
  color: #1a1f2e;
  font-size: 1.5rem;
}

.game-info {
  flex: 1;
}

.game-name {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.game-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #b8bcc8;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .platform-container {
    padding: 0 30px;
  }
  
  .platform-content {
    gap: 40px;
  }
  
  .platform-title {
    font-size: 2.2rem;
  }
  
  .platform-stats {
    gap: 20px;
    padding: 18px 25px;
  }
  
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .platform-overview-section {
    padding: 80px 0;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .platform-title {
    font-size: 1.9rem;
    text-align: center;
  }
  
  .platform-description {
    font-size: 1rem;
  }
  
  .platform-stats {
    position: static;
    transform: none;
    margin-top: 20px;
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-item {
    justify-content: center;
  }
  
  .games-title {
    font-size: 1.7rem;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .game-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .platform-container {
    padding: 0 15px;
  }
  
  .platform-overview-section {
    padding: 60px 0;
  }
  
  .platform-title {
    font-size: 1.6rem;
  }
  
  .platform-description {
    font-size: 0.95rem;
  }
  
  .platform-stats {
    padding: 15px 20px;
  }
  
  .stat-number {
    font-size: 1.2rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .games-title {
    font-size: 1.5rem;
  }
  
  .game-card {
    padding: 18px;
    gap: 15px;
  }
  
  .game-icon {
    width: 50px;
    height: 50px;
  }
  
  .game-icon i {
    font-size: 1.3rem;
  }
  
  .game-name {
    font-size: 1.1rem;
  }
  
  .game-desc {
    font-size: 0.9rem;
  }
}

/* Why Betflixslot Section */
.why-betflixslot-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0e1a 0%, #1e2329 50%, #2a2f3a 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

.section-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fff2a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
}

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

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

.why-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b8bcc8;
  margin-bottom: 24px;
}

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

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

.why-image {
  position: relative;
  max-width: 100%;
}

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

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

.badge {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1f2e;
  padding: 8px 15px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  white-space: nowrap;
}

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

.additional-content {
  margin-bottom: 80px;
}

.additional-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b8bcc8;
  margin-bottom: 24px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.additional-content p:last-child {
  margin-bottom: 0;
}

.additional-content strong {
  color: #ffd700;
  font-weight: 700;
}

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

.highlight-card {
  background: linear-gradient(135deg, #2a2f3e 0%, #1a1f2e 100%);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.highlight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

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

.highlight-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.highlight-icon i {
  color: #1a1f2e;
  font-size: 2rem;
}

.highlight-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.highlight-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #b8bcc8;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .why-betflixslot-container {
    padding: 0 30px;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .why-content {
    gap: 40px;
  }
  
  .highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .why-betflixslot-section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .why-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .why-text p {
    font-size: 1rem;
    text-align: center;
  }
  
  .feature-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .additional-content {
    margin-bottom: 60px;
  }
  
  .additional-content p {
    font-size: 1rem;
  }
  
  .highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .highlight-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .why-betflixslot-container {
    padding: 0 15px;
  }
  
  .why-betflixslot-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .why-text p,
  .additional-content p {
    font-size: 0.95rem;
  }
  
  .badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .highlight-card {
    padding: 25px 18px;
  }
  
  .highlight-icon {
    width: 70px;
    height: 70px;
  }
  
  .highlight-icon i {
    font-size: 1.7rem;
  }
  
  .highlight-title {
    font-size: 1.2rem;
  }
  
  .highlight-desc {
    font-size: 0.9rem;
  }
}

/* New Experience Section */
.new-experience-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e2329 0%, #0a0e1a 50%, #2a2f3a 100%);
  position: relative;
  overflow: hidden;
}

.new-experience-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at bottom left, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

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

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

.section-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fff2a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.experience-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 80px;
}

.experience-image {
  position: relative;
  max-width: 100%;
}

.experience-img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1) contrast(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

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

.tech-badge {
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.95) 0%, rgba(42, 47, 62, 0.95) 100%);
  border: 2px solid rgba(255, 215, 0, 0.6);
  color: #ffd700;
  padding: 10px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

.experience-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b8bcc8;
  margin-bottom: 28px;
}

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

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

/* Features Showcase */
.features-showcase {
  margin-bottom: 80px;
}

.feature-highlight {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  background: linear-gradient(135deg, rgba(42, 47, 62, 0.6) 0%, rgba(26, 31, 46, 0.6) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.feature-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.feature-highlight.reverse {
  grid-template-columns: auto 1fr;
}

.feature-highlight:last-child {
  margin-bottom: 0;
}

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

.feature-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.feature-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #b8bcc8;
  margin: 0;
}

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

.feature-icon-large {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.feature-icon-large i {
  color: #1a1f2e;
  font-size: 3rem;
}

/* Key Features */
.key-features {
  margin-top: 50px;
}

.features-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}

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

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 25px;
  align-items: center;
  background: linear-gradient(135deg, rgba(42, 47, 62, 0.4) 0%, rgba(26, 31, 46, 0.4) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 25px 30px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.feature-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1f2e;
}

.feature-info h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  color: #ffd700;
  margin-bottom: 5px;
}

.feature-info h4 strong {
  font-weight: 700;
}

.feature-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #b8bcc8;
  margin: 0;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .new-experience-container {
    padding: 0 30px;
  }
  
  .section-title {
    font-size: 2.3rem;
  }
  
  .experience-content {
    gap: 50px;
  }
  
  .feature-highlight {
    gap: 40px;
    padding: 35px;
  }
  
  .feature-icon-large {
    width: 100px;
    height: 100px;
  }
  
  .feature-icon-large i {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .new-experience-section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 1.9rem;
  }
  
  .experience-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .experience-text p {
    font-size: 1rem;
  }
  
  .tech-badges {
    justify-content: center;
  }
  
  .image-overlay {
    position: static;
    padding: 20px 0 0;
  }
  
  .feature-highlight {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 25px;
    text-align: center;
  }
  
  .feature-highlight.reverse {
    grid-template-columns: 1fr;
  }
  
  .feature-content h3 {
    font-size: 1.6rem;
  }
  
  .feature-content p {
    font-size: 1rem;
  }
  
  .features-title {
    font-size: 1.7rem;
  }
  
  .feature-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding: 25px 20px;
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 480px) {
  .new-experience-container {
    padding: 0 15px;
  }
  
  .new-experience-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .experience-text p {
    font-size: 0.95rem;
  }
  
  .tech-badge {
    padding: 8px 15px;
    font-size: 0.8rem;
  }
  
  .feature-highlight {
    padding: 25px 20px;
  }
  
  .feature-content h3 {
    font-size: 1.4rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
  
  .feature-icon-large {
    width: 80px;
    height: 80px;
  }
  
  .feature-icon-large i {
    font-size: 2rem;
  }
  
  .features-title {
    font-size: 1.5rem;
  }
  
  .feature-item {
    padding: 20px 18px;
  }
  
  .feature-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .feature-info h4 {
    font-size: 1.1rem;
  }
  
  .feature-info p {
    font-size: 0.9rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.3rem;
  }
}

/* PG Slot Betflix Section */
.pg-slot-betflix-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f1419 0%, #1e2329 50%, #2a2f3a 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

.section-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fff2a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.pg-slot-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.pg-slot-text {
  max-width: 100%;
}

.pg-slot-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b8bcc8;
  margin-bottom: 25px;
}

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

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

.pg-slot-image {
  position: relative;
  max-width: 100%;
}

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

.quality-indicators {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.quality-badge {
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.95) 0%, rgba(42, 47, 62, 0.95) 100%);
  border: 2px solid rgba(255, 215, 0, 0.6);
  color: #ffd700;
  padding: 8px 15px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

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

/* Game Variety Section */
.game-variety-section {
  margin-bottom: 80px;
}

.variety-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 25px;
}

.variety-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b8bcc8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.variety-description strong {
  color: #ffd700;
  font-weight: 700;
}

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

.theme-card {
  background: linear-gradient(135deg, #2a2f3e 0%, #1a1f2e 100%);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.theme-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

.theme-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.theme-icon i {
  color: #1a1f2e;
  font-size: 2rem;
}

.theme-card h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 12px;
}

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

/* Bonus Features */
.bonus-features {
  margin-bottom: 80px;
}

.bonus-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}

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

.bonus-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b8bcc8;
  margin: 0;
}

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

.bonus-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bonus-feature {
  background: linear-gradient(135deg, rgba(42, 47, 62, 0.6) 0%, rgba(26, 31, 46, 0.6) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.bonus-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
}

.bonus-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.bonus-icon i {
  color: #1a1f2e;
  font-size: 1.5rem;
}

.bonus-info h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
}

.bonus-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #b8bcc8;
  margin: 0;
}

/* Service Excellence */
.service-excellence {
  margin-bottom: 60px;
}

.service-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 25px;
}

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

.service-description strong {
  color: #ffd700;
  font-weight: 700;
}

.service-description a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.service-description a:hover {
  color: #ffed4e;
}

.service-highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b8bcc8;
  font-weight: 600;
}

.service-item i {
  color: #ffd700;
  font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.cta-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.1rem;
  color: #b8bcc8;
  margin-bottom: 30px;
}

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1f2e;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffed4e 0%, #fff2a0 100%);
}

.btn-secondary {
  background: transparent;
  color: #ffd700;
  border-color: #ffd700;
}

.btn-secondary:hover {
  background: #ffd700;
  color: #1a1f2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pg-slot-container {
    padding: 0 30px;
  }
  
  .section-title {
    font-size: 2.3rem;
  }
  
  .pg-slot-content {
    gap: 40px;
  }
  
  .bonus-content {
    gap: 40px;
  }
  
  .service-highlights {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .pg-slot-betflix-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .pg-slot-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pg-slot-text p {
    font-size: 1rem;
  }
  
  .quality-indicators {
    position: static;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .variety-title,
  .bonus-title,
  .service-title {
    font-size: 1.8rem;
  }
  
  .variety-description,
  .service-description {
    font-size: 1rem;
  }
  
  .game-themes {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .bonus-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .bonus-features-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .service-highlights {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .cta-section {
    padding: 40px 30px;
  }
  
  .cta-content h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .pg-slot-container {
    padding: 0 15px;
  }
  
  .pg-slot-betflix-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .pg-slot-text p,
  .variety-description,
  .service-description {
    font-size: 0.95rem;
  }
  
  .quality-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .variety-title,
  .bonus-title,
  .service-title {
    font-size: 1.6rem;
  }
  
  .game-themes {
    grid-template-columns: 1fr;
  }
  
  .theme-card {
    padding: 25px 20px;
  }
  
  .theme-icon {
    width: 70px;
    height: 70px;
  }
  
  .theme-icon i {
    font-size: 1.7rem;
  }
  
  .bonus-features-grid {
    grid-template-columns: 1fr;
  }
  
  .bonus-feature {
    padding: 20px 18px;
  }
  
  .bonus-icon {
    width: 50px;
    height: 50px;
  }
  
  .bonus-icon i {
    font-size: 1.3rem;
  }
  
  .cta-section {
    padding: 30px 20px;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .cta-buttons {
    gap: 15px;
  }
}

/* Auto Wallet System Section */
.auto-wallet-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1f2e 0%, #0a0e1a 50%, #2a2f3a 100%);
  position: relative;
  overflow: hidden;
}

.auto-wallet-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top left, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

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

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

.section-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fff2a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.auto-wallet-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.auto-wallet-image {
  position: relative;
  max-width: 100%;
}

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

.speed-indicators {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.speed-badge {
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.95) 0%, rgba(42, 47, 62, 0.95) 100%);
  border: 2px solid rgba(255, 215, 0, 0.6);
  color: #ffd700;
  padding: 8px 15px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

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

.auto-wallet-text {
  max-width: 100%;
}

.auto-wallet-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b8bcc8;
  margin-bottom: 25px;
}

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

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

/* Process Section */
.process-section {
  margin-bottom: 80px;
}

.process-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 25px;
}

.process-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b8bcc8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.process-description strong {
  color: #ffd700;
  font-weight: 700;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-item::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ffd700 0%, transparent 100%);
}

.step-item:last-child::after {
  display: none;
}

.step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1f2e;
  z-index: 3;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon i {
  color: #ffd700;
  font-size: 2rem;
}

.step-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
}

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

/* Money Management */
.money-management {
  margin-bottom: 80px;
}

.management-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}

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

.management-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b8bcc8;
  margin: 0;
}

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

.management-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(42, 47, 62, 0.6) 0%, rgba(26, 31, 46, 0.6) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
}

.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.feature-card .feature-icon i {
  color: #1a1f2e;
  font-size: 1.5rem;
}

.feature-card h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #b8bcc8;
  margin: 0;
}

/* Benefits Section */
.benefits-section {
  margin-bottom: 80px;
}

.benefits-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 25px;
  align-items: center;
  background: linear-gradient(135deg, rgba(42, 47, 62, 0.4) 0%, rgba(26, 31, 46, 0.4) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 25px 30px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon i {
  color: #1a1f2e;
  font-size: 1.8rem;
}

.benefit-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  color: #ffd700;
  margin-bottom: 8px;
}

.benefit-content h4 strong {
  font-weight: 700;
}

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

/* Access Info */
.access-info {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.access-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.access-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b8bcc8;
  max-width: 800px;
  margin: 0 auto 30px;
}

.access-content strong {
  color: #ffd700;
  font-weight: 700;
}

.access-content a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.access-content a:hover {
  color: #ffed4e;
}

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1f2e;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffed4e 0%, #fff2a0 100%);
}

.btn-secondary {
  background: transparent;
  color: #ffd700;
  border-color: #ffd700;
}

.btn-secondary:hover {
  background: #ffd700;
  color: #1a1f2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .auto-wallet-container {
    padding: 0 30px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .auto-wallet-content {
    gap: 40px;
  }
  
  .management-content {
    gap: 40px;
  }
  
  .process-steps {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .auto-wallet-section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 1.9rem;
  }
  
  .auto-wallet-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .auto-wallet-text p {
    font-size: 1rem;
  }
  
  .speed-indicators {
    position: static;
    margin-top: 20px;
    justify-content: center;
  }
  
  .process-title,
  .management-title,
  .benefits-title {
    font-size: 1.8rem;
  }
  
  .process-description {
    font-size: 1rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .step-item::after {
    display: none;
  }
  
  .management-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .management-features {
    grid-template-columns: 1fr 1fr;
  }
  
  .benefit-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  
  .benefit-item:hover {
    transform: translateY(-5px);
  }
  
  .access-info {
    padding: 40px 30px;
  }
  
  .access-content h3 {
    font-size: 1.7rem;
  }
  
  .access-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .auto-wallet-container {
    padding: 0 15px;
  }
  
  .auto-wallet-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .auto-wallet-text p,
  .process-description {
    font-size: 0.95rem;
  }
  
  .speed-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .process-title,
  .management-title,
  .benefits-title {
    font-size: 1.6rem;
  }
  
  .step-icon {
    width: 70px;
    height: 70px;
  }
  
  .step-icon i {
    font-size: 1.7rem;
  }
  
  .step-content h4 {
    font-size: 1.1rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .management-features {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 20px 18px;
  }
  
  .feature-card .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-card .feature-icon i {
    font-size: 1.3rem;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
  }
  
  .benefit-icon i {
    font-size: 1.5rem;
  }
  
  .benefit-content h4 {
    font-size: 1.1rem;
  }
  
  .benefit-content p {
    font-size: 0.9rem;
  }
  
  .access-info {
    padding: 30px 20px;
  }
  
  .access-content h3 {
    font-size: 1.5rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .access-buttons {
    gap: 15px;
  }
}

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

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

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

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

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

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  display: block;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b8bcc8;
  margin-bottom: 25px;
  max-width: 300px;
}

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

.social-link {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1f2e;
  border-color: #ffd700;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

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

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-link {
  color: #b8bcc8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 0;
}

.footer-link:hover {
  color: #ffd700;
  padding-left: 10px;
}

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding-top: 30px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.legal-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.legal-link {
  color: #b8bcc8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #ffd700;
}

.copyright {
  text-align: right;
}

.copyright p {
  margin: 0;
  color: #b8bcc8;
  font-size: 0.9rem;
  line-height: 1.4;
}

.disclaimer {
  font-size: 0.8rem !important;
  color: #8a8f9a !important;
  margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    padding: 50px 30px 25px;
  }
  
  .footer-content {
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .legal-links {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 40px 20px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 35px;
  }
  
  .footer-section:nth-child(1) {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-description {
    max-width: 100%;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
    gap: 15px;
  }
  
  .copyright {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 30px 15px 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 25px;
  }
  
  .footer-section:nth-child(1) {
    grid-column: 1;
    margin-bottom: 10px;
  }
  
  .footer-logo-text {
    font-size: 1.7rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
  }
  
  .footer-description,
  .footer-link,
  .contact-item {
    font-size: 0.9rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .legal-link {
    font-size: 0.85rem;
  }
  
  .copyright p {
    font-size: 0.85rem;
  }
  
  .disclaimer {
    font-size: 0.75rem !important;
  }
}

/* Sticky Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: linear-gradient(135deg, rgba(15, 20, 25, 0.95) 0%, rgba(26, 31, 46, 0.95) 100%);
  backdrop-filter: blur(15px);
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.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, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

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

.sticky-btn:active i,
.sticky-btn:active span {
  transform: scale(0.95);
}

/* Individual Button Styles */
.sticky-btn-login {
  color: #60a5fa;
}

.sticky-btn-login:hover {
  color: #93c5fd;
}

.sticky-btn-register {
  color: #34d399;
}

.sticky-btn-register:hover {
  color: #6ee7b7;
}

.sticky-btn-credit {
  color: #ffd700;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.sticky-btn-credit:hover {
  color: #ffed4e;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 100%);
}

/* Add bottom padding to body to prevent content overlap */
body {
  padding-bottom: 70px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-btn {
    padding: 12px 8px;
    font-size: 0.8rem;
    min-height: 65px;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
  }
  
  body {
    padding-bottom: 65px;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.75rem;
    min-height: 60px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
    line-height: 1.1;
  }
  
  body {
    padding-bottom: 60px;
  }
}

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

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

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

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

.login-card {
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.95) 0%, rgba(42, 47, 62, 0.95) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

.error-message {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
  border: 2px solid rgba(220, 38, 38, 0.4);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fca5a5;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.error-message i {
  font-size: 1.2rem;
  color: #ef4444;
}

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

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

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

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

.input-icon {
  position: absolute;
  left: 18px;
  color: #ffd700;
  font-size: 1.1rem;
  z-index: 3;
}

.form-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  background: rgba(15, 20, 25, 0.8);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-input:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
  background: rgba(15, 20, 25, 0.9);
}

.form-input::placeholder {
  color: #6b7280;
}

.password-toggle {
  position: absolute;
  right: 18px;
  background: none;
  border: none;
  color: #b8bcc8;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
  z-index: 3;
}

.password-toggle:hover {
  color: #ffd700;
}

.field-error {
  display: block;
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 6px;
  min-height: 20px;
  font-weight: 500;
}

.form-actions {
  margin-top: 35px;
}

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

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

.btn-login:active:not(:disabled) {
  transform: translateY(0);
}

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

.loading-spinner {
  position: absolute;
  right: 20px;
}

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

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

.login-footer {
  margin-top: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.support-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.support-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b8bcc8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.support-link:hover {
  color: #ffd700;
}

.support-link i {
  font-size: 1rem;
}

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

@media (max-width: 480px) {
  .login-section {
    padding: 70px 10px 20px;
  }
  
  .login-card {
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.7rem;
  }
  
  .form-input {
    padding: 14px 18px 14px 45px;
  }
  
  .input-icon {
    left: 15px;
    font-size: 1rem;
  }
  
  .password-toggle {
    right: 15px;
  }
  
  .btn-login {
    padding: 16px 20px;
    font-size: 1rem;
  }
  
  .btn-register {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  
  .support-links {
    flex-direction: column;
    gap: 15px;
  }
  
  .support-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .login-card {
    padding: 20px 15px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .form-input {
    padding: 12px 16px 12px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
  }
  
  .password-toggle {
    right: 12px;
  }
}

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

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

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

.register-card {
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.95) 0%, rgba(42, 47, 62, 0.95) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

.error-message,
.success-message {
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.error-message {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
  border: 2px solid rgba(220, 38, 38, 0.4);
  color: #fca5a5;
}

.error-message i {
  font-size: 1.2rem;
  color: #ef4444;
}

.success-message {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(74, 222, 128, 0.1) 100%);
  border: 2px solid rgba(34, 197, 94, 0.4);
  color: #a7f3d0;
}

.success-message i {
  font-size: 1.2rem;
  color: #22c55e;
}

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

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

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

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

.input-icon {
  position: absolute;
  left: 18px;
  color: #ffd700;
  font-size: 1.1rem;
  z-index: 3;
}

.form-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  background: rgba(15, 20, 25, 0.8);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-input:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
  background: rgba(15, 20, 25, 0.9);
}

.form-input::placeholder {
  color: #6b7280;
}

.field-error {
  display: block;
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 6px;
  min-height: 20px;
  font-weight: 500;
}

.field-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #9ca3af;
  font-size: 0.85rem;
}

.field-hint i {
  color: #ffd700;
  font-size: 0.9rem;
}

.terms-section {
  margin: 30px 0;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  line-height: 1.5;
}

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

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
  background: rgba(15, 20, 25, 0.8);
}

.checkbox-container input[type="checkbox"]:checked + .checkbox-custom {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-color: #ffd700;
}

.checkbox-container input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #1a1f2e;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  color: #b8bcc8;
  font-size: 0.9rem;
}

.terms-link {
  color: #ffd700;
  text-decoration: underline;
  margin: 0 4px;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: #ffed4e;
}

.form-actions {
  margin-top: 35px;
}

.btn-register {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1f2e;
  border: none;
  border-radius: 12px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.btn-register:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffed4e 0%, #fff2a0 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.btn-register:active:not(:disabled) {
  transform: translateY(0);
}

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

.loading-spinner {
  position: absolute;
  right: 20px;
}

.btn-login {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: transparent;
  color: #ffd700;
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 12px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.register-footer {
  margin-top: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}

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

.security-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #22c55e;
  font-size: 0.9rem;
  font-weight: 600;
}

.security-item i {
  font-size: 1rem;
}

.support-links {
  display: flex;
  justify-content: center;
}

.support-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b8bcc8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.support-link:hover {
  color: #ffd700;
}

.support-link i {
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 80px 15px 30px;
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-card {
    padding: 30px 25px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.9rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .security-info {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 70px 10px 20px;
  }
  
  .register-card {
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.7rem;
  }
  
  .form-input {
    padding: 14px 18px 14px 45px;
  }
  
  .input-icon {
    left: 15px;
    font-size: 1rem;
  }
  
  .btn-register {
    padding: 16px 20px;
    font-size: 1rem;
  }
  
  .btn-login {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  
  .security-info {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .security-item,
  .support-link {
    font-size: 0.85rem;
  }
  
  .checkbox-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .register-card {
    padding: 20px 15px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .form-input {
    padding: 12px 16px 12px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
  }
  
  .security-info {
    gap: 12px;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #2a2f3e 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at top center, rgba(255, 215, 0, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at bottom center, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
  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.5rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fff2a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 25px;
}

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

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

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1f2e;
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

.promotion-section {
  background: linear-gradient(135deg, #1a1f2e 0%, #0a0e1a 50%, #2a2f3e 100%);
}

.promotion-section.promotion-alternate {
  background: linear-gradient(135deg, #0f1419 0%, #1e2329 50%, #2a2f3e 100%);
}

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

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

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

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

.promotion-content {
  max-width: 1000px;
  margin: 0 auto;
}

.promotion-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 50px;
}

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 25px;
  align-items: center;
  background: linear-gradient(135deg, rgba(42, 47, 62, 0.6) 0%, rgba(26, 31, 46, 0.6) 100%);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 25px 30px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

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

.feature-icon i {
  color: #1a1f2e;
  font-size: 1.8rem;
}

.feature-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #b8bcc8;
  margin: 0;
}

.promotion-cta {
  text-align: center;
  margin-top: 20px;
}

.btn-promotion-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1f2e;
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.btn-promotion-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffed4e 0%, #fff2a0 100%);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container,
  .promotion-container {
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .promotion-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 80px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .btn-hero-cta {
    padding: 18px 35px;
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-header {
    margin-bottom: 50px;
  }
  
  .promotion-title {
    font-size: 1.9rem;
  }
  
  .feature-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding: 25px 20px;
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
  }
  
  .feature-text p {
    font-size: 1rem;
  }
  
  .btn-promotion-cta {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-container,
  .promotion-container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .hero-title {
    font-size: 2.1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn-hero-cta {
    padding: 16px 30px;
    font-size: 1.1rem;
    gap: 12px;
  }
  
  .btn-hero-cta i {
    font-size: 1.3rem;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .feature-item {
    padding: 20px 18px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
  
  .feature-text p {
    font-size: 0.95rem;
  }
  
  .btn-promotion-cta {
    padding: 14px 25px;
    font-size: 1rem;
  }
  
  .btn-promotion-cta i {
    font-size: 1.1rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .feature-item {
    padding: 18px 15px;
  }
  
  .feature-icon {
    width: 55px;
    height: 55px;
  }
  
  .feature-icon i {
    font-size: 1.3rem;
  }
  
  .feature-text p {
    font-size: 0.9rem;
  }
}