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

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

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

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

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

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

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

.btn-secondary {
  background: transparent;
  color: #00d4aa;
  border: 2px solid #00d4aa;
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.2);
}

.btn-secondary:hover {
  background: #00d4aa;
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 170, 0.3);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

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

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

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #00d4aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.hero-description {
  font-size: 1.2rem;
  color: #b0b6c3;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

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

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00d4aa;
  transform: translateY(-2px);
}

.feature-item i {
  font-size: 1.5rem;
  color: #00d4aa;
  width: 24px;
  text-align: center;
}

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

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

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

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

.image-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
}

.payout-badge {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  padding: 15px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

.payout-badge i {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 5px;
  display: block;
}

.payout-badge span {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.2;
}

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

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

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

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

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-container {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .feature-item {
    padding: 12px;
  }
  
  .feature-item i {
    font-size: 1.2rem;
  }
  
  .payout-badge {
    padding: 12px 15px;
  }
}

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

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

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

.logo-link {
  display: inline-block;
  text-decoration: none;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #00d4aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-link:hover .logo-text {
  filter: brightness(1.2);
}

.main-navigation {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 12px 0;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

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

.nav-link:hover {
  color: #00d4aa;
}

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

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

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1002;
}

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

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

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

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

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

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

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}

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

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

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

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

.mobile-navigation {
  flex-grow: 1;
  padding: 20px 0;
}

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

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #00d4aa;
  padding-left: 35px;
}

.mobile-nav-link i {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
  color: #ff6b35;
}

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

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-cta-btn:hover {
  background: linear-gradient(135deg, #f7931e, #ff6b35);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 107, 53, 0.4);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 30px;
  }
  
  .cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
    height: 70px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .main-navigation,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 65px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-menu-header {
    padding: 20px 15px;
  }
  
  .mobile-nav-link {
    padding: 18px 20px;
    font-size: 1rem;
  }
  
  .mobile-nav-link:hover {
    padding-left: 30px;
  }
  
  .mobile-cta-item {
    padding: 0 20px;
  }
  
  .mobile-cta-btn {
    padding: 16px 20px;
    font-size: 1rem;
  }
}

/* Evolution Section */
.evolution-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.evolution-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

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

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

.evolution-header {
  text-align: center;
  margin-bottom: 20px;
}

.evolution-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #00d4aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

.evolution-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

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

.evolution-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e1e5e9;
  text-align: justify;
}

.evolution-paragraph strong {
  color: #00d4aa;
  font-weight: 700;
}

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

.evolution-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1) contrast(1.1);
  transition: transform 0.3s ease;
}

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

.payout-highlight {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #00d4aa, #00b894);
  padding: 15px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
  animation: glow 2s ease-in-out infinite alternate;
}

.payout-highlight i {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 5px;
  display: block;
}

.payout-highlight span {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.2;
}

.evolution-features {
  margin-top: 40px;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00d4aa;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 212, 170, 0.2);
}

.feature-card i {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.4;
}

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

/* Animations */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes glow {
  from {
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
  }
  to {
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.6);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .evolution-title {
    font-size: 2.4rem;
  }
  
  .evolution-body {
    gap: 40px;
  }
  
  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .evolution-section {
    padding: 80px 0;
  }
  
  .evolution-container {
    padding: 0 15px;
  }
  
  .evolution-title {
    font-size: 2rem;
  }
  
  .evolution-body {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .evolution-paragraph {
    font-size: 1rem;
    text-align: left;
  }
  
  .evolution-image {
    order: -1;
  }
  
  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .feature-card i {
    font-size: 2rem;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .evolution-section {
    padding: 60px 0;
  }
  
  .evolution-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .evolution-content {
    gap: 40px;
  }
  
  .evolution-paragraph {
    font-size: 0.95rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
  
  .payout-highlight {
    padding: 12px 15px;
    bottom: 15px;
    left: 15px;
  }
  
  .payout-highlight span {
    font-size: 0.8rem;
  }
}

/* Platforms Section */
.platforms-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.platforms-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 100px,
    rgba(255, 107, 53, 0.03) 100px,
    rgba(255, 107, 53, 0.03) 102px
  );
}

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

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

.platforms-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #00d4aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

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

.platforms-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.intro-paragraph {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e1e5e9;
}

.intro-paragraph strong {
  color: #00d4aa;
  font-weight: 700;
}

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

.platform-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.platform-card::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 ease;
}

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

.platform-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #00d4aa;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
}

.platform-card.featured {
  border: 2px solid #ff6b35;
  background: rgba(255, 107, 53, 0.05);
}

.platform-card.featured::after {
  content: 'แนะนำ';
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
}

.platform-rank {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.platform-rank i {
  color: #ff6b35;
  font-size: 1.5rem;
}

.platform-rank span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00d4aa;
}

.platform-info {
  margin-bottom: 25px;
}

.platform-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.platform-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #b0b6c3;
  margin-bottom: 20px;
}

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

.platform-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 212, 170, 0.1);
  color: #00d4aa;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(0, 212, 170, 0.3);
}

.feature-tag i {
  font-size: 0.8rem;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 25px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.platform-btn:hover {
  background: linear-gradient(135deg, #f7931e, #ff6b35);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 107, 53, 0.4);
}

.platforms-note {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.note-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.note-content i {
  color: #00d4aa;
  font-size: 1.5rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.note-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e1e5e9;
  margin: 0;
}

.note-text strong {
  color: #00d4aa;
  font-weight: 700;
}

.note-text a {
  color: #ff6b35;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.note-text a:hover {
  color: #f7931e;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .platforms-title {
    font-size: 2.4rem;
  }
  
  .platforms-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .intro-paragraph {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .platforms-section {
    padding: 80px 0;
  }
  
  .platforms-container {
    padding: 0 15px;
  }
  
  .platforms-title {
    font-size: 2rem;
  }
  
  .platforms-header {
    margin-bottom: 40px;
  }
  
  .platforms-content {
    gap: 40px;
  }
  
  .platforms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .platform-card {
    padding: 25px;
  }
  
  .platform-name {
    font-size: 1.5rem;
  }
  
  .intro-paragraph {
    font-size: 1rem;
  }
  
  .note-content {
    flex-direction: column;
    gap: 15px;
  }
  
  .note-content i {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .platforms-section {
    padding: 60px 0;
  }
  
  .platforms-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .platform-card {
    padding: 20px;
  }
  
  .platform-name {
    font-size: 1.3rem;
  }
  
  .platform-description {
    font-size: 0.95rem;
  }
  
  .platform-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .feature-tag {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
  
  .platforms-note {
    padding: 20px;
  }
  
  .note-text p {
    font-size: 0.95rem;
  }
}

/* Government Lottery Section */
.government-lottery-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.government-lottery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
  animation: float 15s ease-in-out infinite;
}

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

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

.lottery-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #00d4aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

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

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

.lottery-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1) contrast(1.1);
  transition: transform 0.3s ease;
}

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

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

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.badge.safety {
  background: linear-gradient(135deg, #00d4aa, #00b894);
}

.badge.transparent {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

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

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

.lottery-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lottery-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e1e5e9;
  text-align: justify;
}

.lottery-paragraph strong {
  color: #00d4aa;
  font-weight: 700;
}

.platform-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.platform-example {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s ease;
}

.platform-example:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00d4aa;
  transform: translateY(-5px);
}

.platform-example-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 10px;
}

.platform-example-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b0b6c3;
  margin: 0;
}

.platform-example-text strong {
  color: #00d4aa;
  font-weight: 700;
}

.login-section {
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: 15px;
  padding: 25px;
}

.login-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #e1e5e9;
  margin: 0;
}

.login-text strong {
  color: #00d4aa;
  font-weight: 700;
}

.login-link {
  color: #ff6b35;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.3s ease;
}

.login-link:hover {
  color: #f7931e;
}

.lottery-steps {
  margin-bottom: 60px;
}

.steps-header {
  text-align: center;
  margin-bottom: 40px;
}

.steps-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
}

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

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f7931e, #00d4aa);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00d4aa;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.step-content {
  position: relative;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.step-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b0b6c3;
  margin-bottom: 15px;
}

.step-description strong {
  color: #00d4aa;
  font-weight: 700;
}

.step-icon {
  font-size: 2rem;
  color: #00d4aa;
  opacity: 0.3;
  position: absolute;
  bottom: -10px;
  right: 10px;
}

.lottery-features {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.features-intro {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
}

.features-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e1e5e9;
  margin: 0;
  text-align: justify;
}

.features-text strong {
  color: #00d4aa;
  font-weight: 700;
}

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

.platform-highlight {
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.platform-highlight:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: #ff6b35;
  transform: translateY(-5px);
}

.platform-highlight-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 15px;
}

.platform-highlight-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #b0b6c3;
  margin: 0;
}

.platform-highlight-text strong {
  color: #00d4aa;
  font-weight: 700;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .lottery-title {
    font-size: 2.4rem;
  }
  
  .lottery-content {
    gap: 40px;
  }
  
  .steps-title {
    font-size: 2rem;
  }
  
  .steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .government-lottery-section {
    padding: 80px 0;
  }
  
  .lottery-container {
    padding: 0 15px;
  }
  
  .lottery-title {
    font-size: 2rem;
  }
  
  .lottery-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .lottery-image {
    order: -1;
  }
  
  .lottery-paragraph {
    font-size: 1rem;
    text-align: left;
  }
  
  .platform-examples {
    grid-template-columns: 1fr;
  }
  
  .steps-title {
    font-size: 1.8rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-platforms {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .government-lottery-section {
    padding: 60px 0;
  }
  
  .lottery-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .lottery-content {
    margin-bottom: 60px;
  }
  
  .lottery-paragraph {
    font-size: 0.95rem;
  }
  
  .platform-example {
    padding: 15px;
  }
  
  .login-section {
    padding: 20px;
  }
  
  .steps-title {
    font-size: 1.6rem;
  }
  
  .step-card {
    padding: 25px 15px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  
  .step-title {
    font-size: 1.1rem;
  }
  
  .step-description {
    font-size: 0.9rem;
  }
  
  .step-icon {
    font-size: 1.5rem;
  }
  
  .lottery-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 15px;
  }
  
  .badge {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
  
  .features-intro {
    padding: 20px;
  }
  
  .features-text {
    font-size: 1rem;
  }
  
  .platform-highlight {
    padding: 20px;
  }
}

/* Lao Lottery Section */
.lao-lottery-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.lao-lottery-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
  animation: pulse-glow 8s ease-in-out infinite;
}

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

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

.lao-lottery-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #00d4aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

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

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

.lao-lottery-description {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.lao-lottery-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e1e5e9;
  text-align: justify;
}

.lao-lottery-paragraph strong {
  color: #00d4aa;
  font-weight: 700;
}

.platform-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.platform-highlight-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.platform-highlight-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #ff6b35, #f7931e, #00d4aa);
}

.platform-highlight-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00d4aa;
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(0, 212, 170, 0.2);
}

.platform-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 15px;
}

.platform-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #b0b6c3;
  margin: 0;
}

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

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

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

.feature-item:hover {
  background: rgba(0, 212, 170, 0.1);
  border-color: #00d4aa;
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 2rem;
  color: #00d4aa;
  margin-top: 5px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

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

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

.signup-section {
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: 25px;
}

.signup-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #e1e5e9;
  margin: 0;
}

.signup-text strong {
  color: #00d4aa;
  font-weight: 700;
}

.signup-link {
  color: #ff6b35;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.3s ease;
}

.signup-link:hover {
  color: #f7931e;
}

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

.lao-lottery-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1) contrast(1.1);
  transition: transform 0.3s ease;
}

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

.lottery-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
}

.stat-card {
  flex: 1;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card i {
  font-size: 1.5rem;
  color: #00d4aa;
  flex-shrink: 0;
}

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

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

.stat-label {
  font-size: 0.85rem;
  color: #b0b6c3;
}

.comparison-section {
  margin-top: 60px;
}

.comparison-header {
  text-align: center;
  margin-bottom: 40px;
}

.comparison-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
}

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

.comparison-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.comparison-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.comparison-card.lao::before {
  background: linear-gradient(90deg, #00d4aa, #00b894);
}

.comparison-card.thai::before {
  background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.comparison-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.comparison-card.lao:hover {
  border-color: #00d4aa;
  box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
}

.comparison-card.thai:hover {
  border-color: #ff6b35;
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.comparison-header-card {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.comparison-header-card i {
  font-size: 2rem;
}

.comparison-card.lao .comparison-header-card i {
  color: #00d4aa;
}

.comparison-card.thai .comparison-header-card i {
  color: #ff6b35;
}

.comparison-header-card h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.comparison-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.comparison-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-feature i {
  font-size: 1rem;
  flex-shrink: 0;
}

.comparison-card.lao .comparison-feature i {
  color: #00d4aa;
}

.comparison-card.thai .comparison-feature i {
  color: #ff6b35;
}

.comparison-feature span {
  font-size: 0.95rem;
  color: #e1e5e9;
  font-weight: 500;
}

/* Animations */
@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .lao-lottery-title {
    font-size: 2.4rem;
  }
  
  .lao-lottery-content {
    gap: 40px;
  }
  
  .comparison-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .lao-lottery-section {
    padding: 80px 0;
  }
  
  .lao-lottery-container {
    padding: 0 15px;
  }
  
  .lao-lottery-title {
    font-size: 2rem;
  }
  
  .lao-lottery-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .lao-lottery-image {
    order: -1;
  }
  
  .lao-lottery-paragraph {
    font-size: 1rem;
    text-align: left;
  }
  
  .comparison-title {
    font-size: 1.8rem;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .lottery-stats {
    position: static;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .lao-lottery-section {
    padding: 60px 0;
  }
  
  .lao-lottery-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .lao-lottery-paragraph {
    font-size: 0.95rem;
  }
  
  .platform-highlight-card {
    padding: 20px;
  }
  
  .platform-name {
    font-size: 1.2rem;
  }
  
  .feature-item {
    padding: 15px;
  }
  
  .feature-item i {
    font-size: 1.5rem;
  }
  
  .feature-content h4 {
    font-size: 1.1rem;
  }
  
  .feature-content p {
    font-size: 0.95rem;
  }
  
  .signup-section {
    padding: 20px;
  }
  
  .comparison-title {
    font-size: 1.6rem;
  }
  
  .comparison-card {
    padding: 25px 20px;
  }
  
  .comparison-header-card i {
    font-size: 1.5rem;
  }
  
  .comparison-header-card h4 {
    font-size: 1.4rem;
  }
  
  .comparison-feature {
    padding: 10px 12px;
  }
  
  .comparison-feature span {
    font-size: 0.9rem;
  }
  
  .stat-card {
    padding: 12px;
    gap: 10px;
  }
  
  .stat-card i {
    font-size: 1.2rem;
  }
  
  .stat-number {
    font-size: 0.9rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

/* International Lottery Section */
.international-lottery-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.international-lottery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
  animation: gradient-shift 12s ease-in-out infinite;
}

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

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

.international-lottery-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #00d4aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

.international-lottery-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 80px;
}

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

.lottery-type-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lottery-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.lottery-type-card.hanoi::before {
  background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.lottery-type-card.stock::before {
  background: linear-gradient(90deg, #00d4aa, #00b894);
}

.lottery-type-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.lottery-type-card.hanoi:hover {
  border-color: #ff6b35;
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.lottery-type-card.stock:hover {
  border-color: #00d4aa;
  box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
}

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

.card-header i {
  font-size: 2rem;
}

.lottery-type-card.hanoi .card-header i {
  color: #ff6b35;
}

.lottery-type-card.stock .card-header i {
  color: #00d4aa;
}

.card-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lottery-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #e1e5e9;
  margin: 0;
  text-align: justify;
}

.lottery-description strong {
  color: #00d4aa;
  font-weight: 700;
}

.lottery-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid;
  transition: all 0.3s ease;
}

.lottery-type-card.hanoi .feature-badge {
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  border-color: rgba(255, 107, 53, 0.3);
}

.lottery-type-card.stock .feature-badge {
  background: rgba(0, 212, 170, 0.1);
  color: #00d4aa;
  border-color: rgba(0, 212, 170, 0.3);
}

.feature-badge:hover {
  transform: scale(1.05);
}

.feature-badge i {
  font-size: 0.8rem;
}

.platform-showcase {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}

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

.showcase-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1) contrast(1.1);
  transition: transform 0.3s ease;
}

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

.showcase-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
}

.overlay-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 20px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
  animation: bounce-glow 3s ease-in-out infinite;
}

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

.platform-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.platform-detail {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
}

.platform-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 15px;
}

.platform-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #b0b6c3;
  margin: 0;
  text-align: justify;
}

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

.credibility-section {
  background: rgba(0, 212, 170, 0.05);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 15px;
  padding: 20px;
}

.credibility-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #00d4aa;
  margin-bottom: 10px;
}

.credibility-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e1e5e9;
  margin: 0;
}

.credibility-text strong {
  color: #00d4aa;
  font-weight: 700;
}

.platform-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.example-item {
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

.example-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: #ff6b35;
  transform: translateY(-5px);
}

.example-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 8px;
}

.example-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #b0b6c3;
  margin: 0;
}

.example-text strong {
  color: #00d4aa;
  font-weight: 700;
}

.benefits-section {
  margin-bottom: 60px;
}

.benefits-header {
  text-align: center;
  margin-bottom: 40px;
}

.benefits-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::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 ease;
}

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

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00d4aa;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 212, 170, 0.2);
}

.benefit-card i {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 20px;
  display: block;
}

.benefit-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.4;
}

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

.credit-bonus-section {
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: 25px;
}

.bonus-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.bonus-content i {
  color: #ff6b35;
  font-size: 1.5rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.bonus-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e1e5e9;
  margin: 0;
}

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

.bonus-link {
  color: #ff6b35;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.3s ease;
}

.bonus-link:hover {
  color: #f7931e;
}

.conclusion-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

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

.conclusion-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
}

.conclusion-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e1e5e9;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #00d4aa, #00b894);
  color: #ffffff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
}

.cta-button:hover {
  background: linear-gradient(135deg, #00b894, #00d4aa);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 212, 170, 0.4);
}

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

/* Animations */
@keyframes gradient-shift {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes bounce-glow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .international-lottery-title {
    font-size: 2.4rem;
  }
  
  .lottery-types {
    grid-template-columns: 1fr;
  }
  
  .platform-showcase {
    gap: 40px;
  }
  
  .benefits-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .international-lottery-section {
    padding: 80px 0;
  }
  
  .international-lottery-container {
    padding: 0 15px;
  }
  
  .international-lottery-title {
    font-size: 2rem;
  }
  
  .lottery-types {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .lottery-type-card {
    padding: 25px;
  }
  
  .platform-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .platform-showcase-image {
    order: -1;
  }
  
  .benefits-title {
    font-size: 1.8rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .platform-examples {
    grid-template-columns: 1fr;
  }
  
  .bonus-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .conclusion-section {
    padding: 30px;
  }
  
  .conclusion-text {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .international-lottery-section {
    padding: 60px 0;
  }
  
  .international-lottery-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .lottery-type-card {
    padding: 20px;
  }
  
  .card-header i {
    font-size: 1.5rem;
  }
  
  .card-header h3 {
    font-size: 1.5rem;
  }
  
  .lottery-description {
    font-size: 0.95rem;
  }
  
  .platform-detail {
    padding: 20px;
  }
  
  .platform-name {
    font-size: 1.4rem;
  }
  
  .platform-description {
    font-size: 0.95rem;
  }
  
  .credibility-section {
    padding: 15px;
  }
  
  .example-item {
    padding: 15px;
  }
  
  .benefits-title {
    font-size: 1.6rem;
  }
  
  .benefit-card {
    padding: 25px 20px;
  }
  
  .benefit-card i {
    font-size: 2rem;
  }
  
  .benefit-card h4 {
    font-size: 1.1rem;
  }
  
  .credit-bonus-section {
    padding: 20px;
  }
  
  .conclusion-title {
    font-size: 1.8rem;
  }
  
  .conclusion-text {
    font-size: 0.95rem;
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 1rem;
  }
  
  .overlay-badge {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .overlay-badge i {
    font-size: 1rem;
  }
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
  opacity: 0.6;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #00d4aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #b0b6c3;
  margin-bottom: 20px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e1e5e9;
  font-weight: 500;
}

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

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

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(255, 107, 53, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-cta-btn:hover {
  background: linear-gradient(135deg, #f7931e, #ff6b35);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 107, 53, 0.4);
}

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

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

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b0b6c3;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.footer-link:hover {
  color: #00d4aa;
  padding-left: 5px;
}

.footer-link i {
  font-size: 0.9rem;
  color: #ff6b35;
  width: 16px;
  text-align: center;
}

.footer-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #00d4aa;
  transform: translateY(-3px);
}

.feature-highlight i {
  font-size: 1.8rem;
  color: #00d4aa;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

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

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

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

.copyright {
  flex-grow: 1;
}

.copyright p {
  margin: 0;
  color: #b0b6c3;
  font-size: 0.95rem;
}

.footer-badges {
  display: flex;
  gap: 20px;
}

.security-badge,
.license-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 15px;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: 20px;
  color: #00d4aa;
  font-size: 0.85rem;
  font-weight: 600;
}

.security-badge i,
.license-badge i {
  font-size: 0.8rem;
}

.footer-disclaimer {
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.disclaimer-text {
  font-size: 0.9rem;
  color: #e1e5e9;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .brand-section {
    grid-column: 1 / -1;
  }
  
  .footer-features {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 20px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .footer-logo-text {
    font-size: 1.5rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .footer-features {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
  }
  
  .feature-highlight {
    padding: 15px;
  }
  
  .feature-highlight i {
    font-size: 1.5rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 30px 0 15px;
  }
  
  .footer-content {
    gap: 25px;
    margin-bottom: 30px;
  }
  
  .footer-logo-text {
    font-size: 1.3rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-cta-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  .footer-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .feature-highlight {
    padding: 12px;
  }
  
  .feature-highlight i {
    font-size: 1.3rem;
  }
  
  .feature-text h4 {
    font-size: 0.95rem;
  }
  
  .feature-text p {
    font-size: 0.85rem;
  }
  
  .footer-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .footer-disclaimer {
    padding: 15px;
  }
  
  .disclaimer-text {
    font-size: 0.85rem;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 12px 8px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.login-btn::before {
  background: linear-gradient(180deg, #00d4aa, #00b894);
}

.register-btn::before {
  background: linear-gradient(180deg, #ff6b35, #f7931e);
}

.credit-btn::before {
  background: linear-gradient(180deg, #f7931e, #ff6b35);
}

.sticky-btn:hover::before {
  transform: translateY(0);
}

.sticky-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.sticky-btn i {
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

.sticky-btn span {
  position: relative;
  z-index: 2;
  text-align: center;
  line-height: 1.2;
}

.login-btn {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.register-btn {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.login-btn:hover {
  color: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 212, 170, 0.3);
}

.register-btn:hover {
  color: #ffffff;
  box-shadow: 0 -2px 10px rgba(255, 107, 53, 0.3);
}

.credit-btn:hover {
  color: #ffffff;
  box-shadow: 0 -2px 10px rgba(247, 147, 30, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 10px 5px;
    font-size: 0.8rem;
    gap: 4px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .sticky-btn span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 3px;
    font-size: 0.75rem;
    gap: 3px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
    line-height: 1.1;
  }
}

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

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

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

/* Ensure main content has proper spacing from header */
main {
  padding-top: 80px;
}

@media (max-width: 768px) {
  main {
    padding-top: 70px;
  }
}

@media (max-width: 480px) {
  main {
    padding-top: 65px;
  }
}

/* Login Section */
.login-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
  animation: gradient-float 15s ease-in-out infinite;
}

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

.login-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.login-form-wrapper:hover {
  border-color: rgba(0, 212, 170, 0.3);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

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

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

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

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

.login-title {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #00d4aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

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

.error-message {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 53, 69, 0.1);
  color: #ff6b6b;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(220, 53, 69, 0.3);
  margin-bottom: 25px;
  animation: shake 0.5s ease-in-out;
}

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

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

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
}

.form-label i {
  font-size: 0.9rem;
  color: #00d4aa;
  width: 16px;
  text-align: center;
}

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

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

.form-input:focus {
  border-color: #00d4aa;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form-input.error {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

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

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #b0b6c3;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.password-toggle:hover {
  color: #00d4aa;
  background: rgba(255, 255, 255, 0.05);
}

.input-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 4px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #00d4aa, #00b894);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.login-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #00b894, #00d4aa);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 212, 170, 0.4);
}

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

.btn-loader {
  display: none;
}

.login-btn.loading .btn-text {
  display: none;
}

.login-btn.loading .btn-loader {
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-footer {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: #ff6b35;
  border: 2px solid #ff6b35;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.register-btn:hover {
  background: #ff6b35;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.login-features {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

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

.feature-item span {
  font-size: 0.85rem;
  color: #b0b6c3;
  font-weight: 600;
}

/* Animations */
@keyframes gradient-float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(1deg);
  }
  66% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-2px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(2px);
  }
}

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

@media (max-width: 480px) {
  .login-container {
    max-width: 340px;
  }
  
  .login-form-wrapper {
    padding: 25px 20px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  
  .login-features {
    gap: 15px;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
  
  .feature-item span {
    font-size: 0.8rem;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
  animation: gradient-pulse 12s ease-in-out infinite;
}

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

.register-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.register-form-wrapper:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

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

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

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

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

.register-title {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #00d4aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.register-subtitle {
  font-size: 1rem;
  color: #b0b6c3;
  margin: 0;
  line-height: 1.5;
}

.error-message {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 53, 69, 0.1);
  color: #ff6b6b;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(220, 53, 69, 0.3);
  margin-bottom: 25px;
  animation: shake 0.5s ease-in-out;
}

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

.success-message {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(40, 167, 69, 0.1);
  color: #40a745;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(40, 167, 69, 0.3);
  margin-bottom: 25px;
  animation: fade-in 0.5s ease-in-out;
}

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

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

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #ffffff;
  font-size: 1rem;
}

.form-label i {
  font-size: 0.9rem;
  color: #00d4aa;
  width: 16px;
  text-align: center;
}

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

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

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

.form-input.error {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-input.success {
  border-color: #28a745;
  background: rgba(40, 167, 69, 0.1);
}

.input-error {
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: 4px;
  min-height: 22px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.input-help {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b0b6c3;
  font-size: 0.85rem;
  margin-top: 5px;
}

.input-help i {
  font-size: 0.8rem;
  color: #00d4aa;
}

.register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.register-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #f7931e, #ff6b35);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 107, 53, 0.4);
}

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

.btn-loader {
  display: none;
}

.register-btn.loading .btn-text {
  display: none;
}

.register-btn.loading .btn-loader {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  color: #00d4aa;
  border: 2px solid #00d4aa;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.login-btn:hover {
  background: #00d4aa;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
}

.register-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

.benefit-item i {
  font-size: 1.8rem;
  color: #ff6b35;
  flex-shrink: 0;
  width: 30px;
  text-align: center;
}

.benefit-text {
  text-align: left;
}

.benefit-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.benefit-text p {
  font-size: 0.85rem;
  color: #b0b6c3;
  margin: 0;
  line-height: 1.4;
}

.register-features {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

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

.feature-item span {
  font-size: 0.8rem;
  color: #b0b6c3;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

/* Animations */
@keyframes gradient-pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-3px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(3px);
  }
}

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

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

@media (max-width: 480px) {
  .register-container {
    max-width: 360px;
  }
  
  .register-form-wrapper {
    padding: 25px 20px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 2rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
  
  .register-benefits {
    padding: 15px;
    gap: 15px;
  }
  
  .benefit-item {
    padding: 12px;
  }
  
  .benefit-item i {
    font-size: 1.5rem;
  }
  
  .benefit-text h4 {
    font-size: 0.95rem;
  }
  
  .benefit-text p {
    font-size: 0.8rem;
  }
  
  .register-features {
    gap: 10px;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
  
  .feature-item span {
    font-size: 0.75rem;
  }
}

/* Hero Section */
.hero-section {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 212, 170, 0.15) 0%, transparent 50%);
  animation: hero-glow 10s ease-in-out infinite;
}

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

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

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #00d4aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  max-width: 900px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #e1e5e9;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 20px 0;
}

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

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00d4aa;
  transform: translateY(-5px);
}

.highlight-item i {
  font-size: 1.2rem;
  color: #ff6b35;
}

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

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #00d4aa, #00b894);
  color: #ffffff;
  text-decoration: none;
  border-radius: 15px;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero-cta-btn:hover {
  background: linear-gradient(135deg, #00b894, #00d4aa);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 212, 170, 0.5);
}

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

/* Promotion Sections */
.promotion-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0f3460 100%);
  position: relative;
}

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

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 100px,
    rgba(255, 255, 255, 0.02) 100px,
    rgba(255, 255, 255, 0.02) 102px
  );
}

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

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promotion-card::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.8s ease;
}

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

.promotion-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ff6b35;
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.promotion-card.featured {
  border: 2px solid #00d4aa;
  background: rgba(0, 212, 170, 0.05);
}

.promotion-card.featured::after {
  content: 'แนะนำ';
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #00d4aa, #00b894);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0, 212, 170, 0.4);
}

.promotion-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.promotion-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
  flex-shrink: 0;
}

.promotion-icon i {
  font-size: 2.2rem;
  color: #ffffff;
}

.promotion-card.featured .promotion-icon {
  background: linear-gradient(135deg, #00d4aa, #00b894);
  box-shadow: 0 10px 25px rgba(0, 212, 170, 0.3);
}

.promotion-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

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

.promotion-features {
  list-style: none;
  margin: 0 0 35px 0;
  padding: 0;
  display: grid;
  gap: 15px;
}

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

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

.feature-item:hover {
  padding-left: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.feature-item i {
  font-size: 1.1rem;
  color: #00d4aa;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

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

.promotion-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.promotion-btn:hover {
  background: linear-gradient(135deg, #f7931e, #ff6b35);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
}

.promotion-card.featured .promotion-btn {
  background: linear-gradient(135deg, #00d4aa, #00b894);
  box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
}

.promotion-card.featured .promotion-btn:hover {
  background: linear-gradient(135deg, #00b894, #00d4aa);
  box-shadow: 0 12px 25px rgba(0, 212, 170, 0.4);
}

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

/* Animations */
@keyframes hero-glow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
  }
  50% {
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.6);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-highlights {
    gap: 20px;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-header {
    gap: 15px;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
  }
  
  .promotion-icon i {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 80px;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-highlights {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .highlight-item {
    padding: 12px 20px;
  }
  
  .hero-cta-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 40px 0;
  }
  
  .promotion-container {
    padding: 0 15px;
  }
  
  .promotion-card {
    padding: 30px 25px;
  }
  
  .promotion-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .promotion-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .highlight-item {
    padding: 10px 16px;
  }
  
  .highlight-item i {
    font-size: 1rem;
  }
  
  .highlight-item span {
    font-size: 0.9rem;
  }
  
  .hero-cta-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .promotion-card {
    padding: 25px 20px;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.5rem;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .feature-item {
    padding: 12px 0;
  }
  
  .feature-item span {
    font-size: 0.95rem;
  }
  
  .promotion-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .promotion-card.featured::after {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}