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

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

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

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

a:hover {
  color: #ffed4a;
}

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

/* Hero Section Styles */
.hero-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 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(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-text {
  animation: slideInLeft 0.8s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(45deg, #ffd700, #ffed4a, #fff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #ffed4a, #fff);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
  color: #000;
}

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

.btn-secondary:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.feature-item span {
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-image {
  text-align: center;
  animation: slideInRight 0.8s ease-out;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 215, 0, 0.3);
}

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

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

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

@media screen and (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .feature-item {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .hero-features {
    gap: 10px;
  }
  
  .feature-item {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
}

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

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

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

/* Logo Styles */
.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.logo-subtitle {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.75rem;
  color: #cccccc;
  font-weight: 400;
  text-align: center;
}

/* Main Navigation */
.main-nav {
  display: flex;
}

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

.nav-item {
  position: relative;
}

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

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

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

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

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-btn:hover {
  background: linear-gradient(45deg, #ffed4a, #fff);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  color: #000;
}

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

/* Mobile Menu Trigger */
.mobile-menu-trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 4px;
}

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

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  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%;
  overflow-y: auto;
}

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

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

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

.mobile-menu-close:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: rotate(90deg);
}

/* Mobile Navigation */
.mobile-nav {
  flex: 1;
  padding: 30px 25px;
}

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  color: #cccccc;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

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

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

.mobile-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  color: #000;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mobile-cta-btn:hover {
  background: linear-gradient(45deg, #ffed4a, #fff);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  color: #000;
}

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

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .header-container {
    padding: 0 30px;
  }
  
  .nav-menu {
    gap: 20px;
  }
  
  .nav-link {
    padding: 10px 14px;
    font-size: 0.95rem;
  }
  
  .cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 768px) {
  .header-container {
    padding: 0 20px;
  }
  
  .header-content {
    padding: 12px 0;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-subtitle {
    font-size: 0.7rem;
  }
  
  .main-nav {
    display: none;
  }
  
  .cta-btn {
    display: none;
  }
  
  .mobile-menu-trigger {
    display: flex;
  }
}

@media screen and (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .logo-subtitle {
    font-size: 0.65rem;
  }
  
  .mobile-menu-header {
    padding: 15px 20px;
  }
  
  .mobile-logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-nav {
    padding: 25px 20px;
  }
  
  .mobile-nav-link {
    padding: 15px 16px;
    font-size: 1rem;
  }
  
  .mobile-cta-btn {
    padding: 15px 20px;
    font-size: 1rem;
  }
}

/* Trust Section Styles */
.trust-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.trust-image {
  text-align: center;
}

.trust-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(255, 69, 0, 0.2);
  border: 2px solid rgba(255, 69, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.trust-text {
  color: #ffffff;
}

.trust-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ff4500;
  line-height: 1.3;
}

.trust-description {
  margin-bottom: 40px;
}

.trust-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #cccccc;
}

.trust-description strong {
  color: #ff4500;
  font-weight: 600;
}

.trust-warning {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.warning-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(255, 69, 0, 0.1);
  border-radius: 12px;
  border-left: 4px solid #ff4500;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
}

.warning-item:hover {
  transform: translateX(10px);
}

.warning-item i {
  font-size: 1.3rem;
  color: #ff4500;
  min-width: 20px;
}

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

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .trust-container {
    padding: 0 30px;
  }
  
  .trust-content {
    gap: 60px;
  }
  
  .trust-title {
    font-size: 2.2rem;
  }
  
  .trust-description p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .trust-section {
    padding: 80px 0;
  }
  
  .trust-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .trust-title {
    font-size: 2rem;
  }
  
  .trust-description {
    text-align: left;
  }
  
  .trust-description p {
    font-size: 0.95rem;
  }
  
  .trust-warning {
    gap: 12px;
  }
  
  .warning-item {
    padding: 12px 16px;
  }
  
  .warning-item span {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .trust-container {
    padding: 0 15px;
  }
  
  .trust-section {
    padding: 60px 0;
  }
  
  .trust-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .trust-description p {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  .warning-item {
    padding: 10px 14px;
    gap: 12px;
  }
  
  .warning-item i {
    font-size: 1.1rem;
  }
  
  .warning-item span {
    font-size: 0.85rem;
  }
}

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

.risk-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.risk-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.risk-text {
  color: #ffffff;
}

.risk-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #dc143c, #ff6b6b, #ff4757);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}

.risk-description {
  margin-bottom: 50px;
}

.risk-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #cccccc;
}

.risk-description strong {
  color: #dc143c;
  font-weight: 600;
}

.risk-list {
  margin-bottom: 40px;
}

.risk-list-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #dc143c;
}

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

.risk-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(220, 20, 60, 0.1);
  border-radius: 10px;
  border-left: 4px solid #dc143c;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.risk-item:hover {
  background: rgba(220, 20, 60, 0.15);
  transform: translateX(5px);
}

.risk-item i {
  font-size: 1.2rem;
  color: #dc143c;
  min-width: 20px;
}

.risk-item span {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
}

.risk-conclusion p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #b3b3b3;
  font-style: italic;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(220, 20, 60, 0.2);
}

.risk-conclusion strong {
  color: #dc143c;
}

.risk-image {
  text-align: center;
}

.risk-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(220, 20, 60, 0.3);
  border: 2px solid rgba(220, 20, 60, 0.4);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

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

.lottery-types {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.lottery-type {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  border: 1px solid rgba(220, 20, 60, 0.3);
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 200px;
  justify-content: center;
  transition: all 0.3s ease;
}

.lottery-type:hover {
  background: rgba(220, 20, 60, 0.15);
  border-color: rgba(220, 20, 60, 0.5);
  transform: scale(1.05);
}

.lottery-type i {
  font-size: 1.1rem;
  color: #dc143c;
}

.lottery-type span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .risk-container {
    padding: 0 30px;
  }
  
  .risk-content {
    gap: 60px;
  }
  
  .risk-title {
    font-size: 2.4rem;
  }
  
  .risk-description p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .risk-section {
    padding: 80px 0;
  }
  
  .risk-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .risk-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .risk-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .risk-list-title {
    font-size: 1.3rem;
  }
  
  .risk-items {
    gap: 12px;
  }
  
  .risk-item {
    padding: 12px 16px;
  }
  
  .risk-item span {
    font-size: 0.9rem;
  }
  
  .lottery-types {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  
  .lottery-type {
    max-width: 150px;
    padding: 10px 16px;
  }
  
  .lottery-type span {
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 480px) {
  .risk-container {
    padding: 0 15px;
  }
  
  .risk-section {
    padding: 60px 0;
  }
  
  .risk-title {
    font-size: 1.9rem;
    line-height: 1.4;
  }
  
  .risk-description p {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
  
  .risk-list-title {
    font-size: 1.2rem;
  }
  
  .risk-item {
    padding: 10px 14px;
    gap: 12px;
  }
  
  .risk-item i {
    font-size: 1rem;
  }
  
  .risk-item span {
    font-size: 0.85rem;
  }
  
  .risk-conclusion p {
    font-size: 0.9rem;
    padding: 15px;
  }
  
  .lottery-type {
    max-width: 130px;
    padding: 8px 12px;
    gap: 8px;
  }
  
  .lottery-type i {
    font-size: 1rem;
  }
  
  .lottery-type span {
    font-size: 0.8rem;
  }
}

/* Warning Section Styles */
.warning-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 50%, #1a1a1a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.warning-text {
  color: #ffffff;
}

.warning-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ffa500, #ff8c00, #ffb347);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
  text-align: center;
}

.warning-description {
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.warning-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #cccccc;
  text-align: justify;
}

.warning-description strong {
  color: #ffa500;
  font-weight: 600;
}

.warning-description a {
  color: #ffa500;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.warning-description a:hover {
  color: #ffb347;
}

.warning-signs {
  margin-top: 60px;
}

.warning-signs-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ffa500;
  text-align: center;
}

.warning-signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.warning-sign-card {
  background: rgba(255, 165, 0, 0.1);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.warning-sign-card:hover {
  background: rgba(255, 165, 0, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
}

.warning-sign-card i {
  font-size: 2.5rem;
  color: #ffa500;
  margin-bottom: 15px;
}

.warning-sign-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.warning-sign-card p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
}

.warning-image-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

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

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

.scam-tactics {
  background: rgba(255, 165, 0, 0.08);
  border: 1px solid rgba(255, 165, 0, 0.2);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(8px);
}

.scam-tactics-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffa500;
  margin-bottom: 20px;
  text-align: center;
}

.scam-tactic {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 165, 0, 0.1);
}

.scam-tactic:last-child {
  border-bottom: none;
}

.scam-tactic i {
  font-size: 1.2rem;
  color: #ffa500;
  min-width: 20px;
}

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

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .warning-container {
    padding: 0 30px;
  }
  
  .warning-title {
    font-size: 2.3rem;
  }
  
  .warning-description p {
    font-size: 1rem;
  }
  
  .warning-signs-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .warning-section {
    padding: 80px 0;
  }
  
  .warning-title {
    font-size: 2rem;
  }
  
  .warning-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .warning-signs-title {
    font-size: 1.7rem;
  }
  
  .warning-signs-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .warning-sign-card {
    padding: 20px;
  }
  
  .warning-sign-card i {
    font-size: 2rem;
  }
  
  .warning-sign-card h4 {
    font-size: 1.2rem;
  }
  
  .warning-image-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .scam-tactics {
    padding: 20px;
  }
}

@media screen and (max-width: 480px) {
  .warning-container {
    padding: 0 15px;
  }
  
  .warning-section {
    padding: 60px 0;
  }
  
  .warning-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .warning-description p {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
  
  .warning-signs-title {
    font-size: 1.5rem;
  }
  
  .warning-sign-card {
    padding: 18px;
  }
  
  .warning-sign-card i {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  
  .warning-sign-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .warning-sign-card p {
    font-size: 0.9rem;
  }
  
  .scam-tactics {
    padding: 18px;
  }
  
  .scam-tactics-title {
    font-size: 1.2rem;
  }
  
  .scam-tactic {
    gap: 12px;
    padding: 10px 0;
  }
  
  .scam-tactic i {
    font-size: 1rem;
  }
  
  .scam-tactic span {
    font-size: 0.9rem;
  }
}

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

.legal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

.legal-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #8b0000, #dc143c, #ff6b6b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}

.legal-intro p {
  font-size: 1.2rem;
  color: #cccccc;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.legal-intro strong {
  color: #dc143c;
  font-weight: 600;
}

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

.legal-text {
  color: #ffffff;
}

.legal-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #cccccc;
  text-align: justify;
}

.legal-description strong {
  color: #dc143c;
  font-weight: 600;
}

.legal-laws {
  margin: 50px 0;
}

.laws-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #dc143c;
  margin-bottom: 30px;
}

.law-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.law-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(139, 0, 0, 0.1);
  border: 1px solid rgba(220, 20, 60, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.law-item:hover {
  background: rgba(139, 0, 0, 0.15);
  border-color: rgba(220, 20, 60, 0.5);
  transform: translateX(10px);
}

.law-item i {
  font-size: 1.5rem;
  color: #dc143c;
  margin-top: 5px;
  min-width: 25px;
}

.law-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.law-content p {
  font-size: 0.95rem;
  color: #b3b3b3;
  line-height: 1.6;
}

.legal-conclusion {
  margin-top: 40px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(220, 20, 60, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.legal-conclusion p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 20px;
}

.legal-conclusion p:last-child {
  margin-bottom: 0;
}

.legal-conclusion strong {
  color: #dc143c;
}

.legal-conclusion a {
  color: #dc143c;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.legal-conclusion a:hover {
  color: #ff6b6b;
}

.legal-visual {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.legal-visual img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(139, 0, 0, 0.3);
  border: 2px solid rgba(220, 20, 60, 0.4);
  transition: transform 0.3s ease;
}

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

.legal-penalties {
  background: rgba(139, 0, 0, 0.1);
  border: 1px solid rgba(220, 20, 60, 0.3);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(8px);
}

.penalties-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #dc143c;
  margin-bottom: 20px;
  text-align: center;
}

.penalty-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

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

.penalty-item:hover {
  background: rgba(220, 20, 60, 0.1);
  transform: scale(1.05);
}

.penalty-item i {
  font-size: 1.1rem;
  color: #dc143c;
  min-width: 16px;
}

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

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .legal-container {
    padding: 0 30px;
  }
  
  .legal-title {
    font-size: 2.4rem;
  }
  
  .legal-intro p {
    font-size: 1.1rem;
  }
  
  .legal-main-content {
    gap: 50px;
  }
}

@media screen and (max-width: 768px) {
  .legal-section {
    padding: 80px 0;
  }
  
  .legal-title {
    font-size: 2.1rem;
  }
  
  .legal-intro p {
    font-size: 1rem;
  }
  
  .legal-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .legal-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .laws-title {
    font-size: 1.4rem;
  }
  
  .law-item {
    padding: 16px;
    gap: 16px;
  }
  
  .law-item i {
    font-size: 1.3rem;
  }
  
  .law-content h4 {
    font-size: 1rem;
  }
  
  .law-content p {
    font-size: 0.9rem;
  }
  
  .legal-conclusion {
    padding: 20px;
  }
  
  .legal-conclusion p {
    font-size: 1rem;
  }
  
  .penalty-items {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media screen and (max-width: 480px) {
  .legal-container {
    padding: 0 15px;
  }
  
  .legal-section {
    padding: 60px 0;
  }
  
  .legal-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .legal-intro p {
    font-size: 0.95rem;
  }
  
  .legal-description p {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
  
  .laws-title {
    font-size: 1.3rem;
  }
  
  .law-item {
    padding: 14px;
    gap: 14px;
  }
  
  .law-item i {
    font-size: 1.2rem;
  }
  
  .law-content h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  
  .law-content p {
    font-size: 0.85rem;
  }
  
  .legal-conclusion {
    padding: 18px;
  }
  
  .legal-conclusion p {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  .legal-penalties {
    padding: 20px;
  }
  
  .penalties-title {
    font-size: 1.2rem;
  }
  
  .penalty-item {
    padding: 10px 12px;
    gap: 10px;
  }
  
  .penalty-item i {
    font-size: 1rem;
  }
  
  .penalty-item span {
    font-size: 0.85rem;
  }
}

/* Community Section Styles */
.community-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1a2a 50%, #1a1a1a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.community-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(138, 43, 226, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

.community-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #8a2be2, #9370db, #ba55d3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}

.community-intro p {
  font-size: 1.2rem;
  color: #cccccc;
  line-height: 1.8;
  max-width: 950px;
  margin: 0 auto;
  text-align: justify;
}

.community-intro strong {
  color: #8a2be2;
  font-weight: 600;
}

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

.community-text {
  color: #ffffff;
}

.community-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #cccccc;
  text-align: justify;
}

.community-description strong {
  color: #8a2be2;
  font-weight: 600;
}

.scammer-tactics {
  margin-bottom: 50px;
}

.tactics-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #8a2be2;
  margin-bottom: 30px;
}

.tactic-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tactic-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.tactic-item:hover {
  background: rgba(138, 43, 226, 0.15);
  border-color: rgba(138, 43, 226, 0.5);
  transform: translateX(10px);
}

.tactic-item i {
  font-size: 1.5rem;
  color: #8a2be2;
  margin-top: 5px;
  min-width: 25px;
}

.tactic-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.tactic-content p {
  font-size: 0.95rem;
  color: #b3b3b3;
  line-height: 1.6;
}

.community-risks {
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(138, 43, 226, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.community-risks p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 20px;
  text-align: justify;
}

.community-risks p:last-child {
  margin-bottom: 0;
}

.community-risks strong {
  color: #8a2be2;
}

.community-risks a {
  color: #8a2be2;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.community-risks a:hover {
  color: #ba55d3;
}

.community-visual {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.community-visual img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(138, 43, 226, 0.3);
  border: 2px solid rgba(138, 43, 226, 0.4);
  transition: transform 0.3s ease;
}

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

.protection-tips {
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(8px);
}

.tips-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #8a2be2;
  margin-bottom: 20px;
  text-align: center;
}

.tip-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.tip-item:hover {
  background: rgba(138, 43, 226, 0.1);
  transform: translateX(5px);
}

.tip-item i {
  font-size: 1.1rem;
  color: #8a2be2;
  min-width: 16px;
}

.tip-item span {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.4;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .community-container {
    padding: 0 30px;
  }
  
  .community-title {
    font-size: 2.4rem;
  }
  
  .community-intro p {
    font-size: 1.1rem;
  }
  
  .community-main-content {
    gap: 50px;
  }
}

@media screen and (max-width: 768px) {
  .community-section {
    padding: 80px 0;
  }
  
  .community-title {
    font-size: 2.1rem;
  }
  
  .community-intro p {
    font-size: 1rem;
  }
  
  .community-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .community-description p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .tactics-title {
    font-size: 1.4rem;
  }
  
  .tactic-item {
    padding: 16px;
    gap: 16px;
  }
  
  .tactic-item i {
    font-size: 1.3rem;
  }
  
  .tactic-content h4 {
    font-size: 1rem;
  }
  
  .tactic-content p {
    font-size: 0.9rem;
  }
  
  .community-risks {
    padding: 20px;
  }
  
  .community-risks p {
    font-size: 1rem;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 480px) {
  .community-container {
    padding: 0 15px;
  }
  
  .community-section {
    padding: 60px 0;
  }
  
  .community-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .community-intro p {
    font-size: 0.95rem;
  }
  
  .community-description p {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  
  .tactics-title {
    font-size: 1.3rem;
  }
  
  .tactic-item {
    padding: 14px;
    gap: 14px;
  }
  
  .tactic-item i {
    font-size: 1.2rem;
  }
  
  .tactic-content h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  
  .tactic-content p {
    font-size: 0.85rem;
  }
  
  .community-risks {
    padding: 18px;
  }
  
  .community-risks p {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }
  
  .protection-tips {
    padding: 20px;
  }
  
  .tips-title {
    font-size: 1.2rem;
  }
  
  .tip-item {
    padding: 10px 12px;
    gap: 12px;
  }
  
  .tip-item i {
    font-size: 1rem;
  }
  
  .tip-item span {
    font-size: 0.85rem;
  }
}

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

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

.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: 50px;
  margin-bottom: 40px;
}

/* Footer Brand Section */
.footer-brand {
  color: #ffffff;
}

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

.footer-logo-text {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  margin-bottom: 5px;
}

.footer-logo-subtitle {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 400;
}

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

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

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

.contact-item i {
  color: #ffd700;
  font-size: 1rem;
  width: 18px;
}

/* Footer Sections */
.footer-section {
  color: #ffffff;
}

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

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  border-radius: 1px;
}

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

.footer-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cccccc;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.footer-menu li a:hover {
  color: #ffd700;
  border-bottom-color: rgba(255, 215, 0, 0.3);
  transform: translateX(5px);
}

.footer-menu li a i {
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  margin: 40px 0 30px;
}

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

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

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

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

.social-link:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-disclaimer {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.disclaimer-text {
  color: #ff6b6b;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  padding: 12px 20px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .footer-container {
    padding: 0 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media screen and (max-width: 768px) {
  .main-footer {
    padding: 50px 0 25px;
  }
  
  .footer-container {
    padding: 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-brand {
    grid-column: span 1;
    text-align: center;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-description {
    text-align: left;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-title {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-social {
    order: -1;
  }
}

@media screen and (max-width: 480px) {
  .main-footer {
    padding: 40px 0 20px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-logo-subtitle {
    font-size: 0.8rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
    justify-content: center;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-menu li a {
    font-size: 0.9rem;
    justify-content: center;
  }
  
  .footer-copyright p {
    font-size: 0.8rem;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .disclaimer-text {
    font-size: 0.8rem;
    padding: 10px 15px;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  z-index: 1500;
  padding: 8px 0;
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 60px;
  gap: 4px;
}

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

.sticky-btn i {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

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

/* Button Specific Colors */
.sticky-btn-login {
  background: linear-gradient(135deg, #4a90e2, #357abd);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #357abd, #2968a3);
  transform: translateY(-2px);
  color: #ffffff;
}

.sticky-btn-login i {
  color: #ffffff;
}

.sticky-btn-register {
  background: linear-gradient(135deg, #28a745, #218838);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #218838, #1e7e34);
  transform: translateY(-2px);
  color: #ffffff;
}

.sticky-btn-register i {
  color: #ffffff;
}

.sticky-btn-credit {
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  color: #000000;
}

.sticky-btn-credit:hover {
  background: linear-gradient(135deg, #ffed4a, #fff);
  transform: translateY(-2px);
  color: #000000;
}

.sticky-btn-credit i {
  color: #000000;
}

.sticky-btn-credit .btn-text {
  color: #000000;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .sticky-buttons {
    padding: 6px 0;
  }
  
  .sticky-btn {
    padding: 10px 6px;
    min-height: 55px;
    font-size: 0.8rem;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .btn-text {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 480px) {
  .sticky-buttons {
    padding: 5px 0;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    min-height: 50px;
    font-size: 0.75rem;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .btn-text {
    font-size: 0.7rem;
  }
}

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

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

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

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

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

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

.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

.login-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  line-height: 1.3;
}

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

/* Error Message */
.error-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 8px;
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
}

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

/* Form Styles */
.login-form {
  margin-bottom: 30px;
}

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

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

.form-label i {
  font-size: 0.9rem;
}

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

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

.form-input:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.form-input:invalid:not(:placeholder-shown) {
  border-color: #ff6b6b;
}

.form-input:valid:not(:placeholder-shown) {
  border-color: #28a745;
}

/* Password Input Container */
.password-input-container {
  position: relative;
}

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

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

.password-toggle:focus {
  outline: 2px solid rgba(255, 215, 0, 0.3);
}

/* Input Errors */
.input-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.input-error:not(:empty)::before {
  content: '⚠';
  font-size: 0.9rem;
}

/* Login Button */
.login-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Prompt', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  position: relative;
}

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

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

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

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

/* Register Button */
.login-actions {
  margin-bottom: 20px;
}

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

.register-btn:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Help Link */
.login-help {
  text-align: center;
}

.help-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media screen and (max-width: 768px) {
  .login-container {
    padding: 0 20px;
  }
  
  .login-card {
    padding: 30px 25px;
    max-width: 400px;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .login-section {
    padding: 20px 0;
  }
  
  .login-container {
    padding: 0 15px;
  }
  
  .login-card {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .login-logo {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-label {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .login-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  
  .error-message {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(40, 167, 69, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.register-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

.register-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  line-height: 1.3;
}

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

/* Message Styles */
.error-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 8px;
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
}

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

.success-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 8px;
  color: #28a745;
  font-size: 0.9rem;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
}

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

/* Form Styles */
.register-form {
  margin-bottom: 30px;
}

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

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

.form-label i {
  font-size: 0.9rem;
}

.form-input {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

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

.form-input:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.02);
}

.form-input:invalid:not(:placeholder-shown) {
  border-color: #ff6b6b;
}

.form-input:valid:not(:placeholder-shown) {
  border-color: #28a745;
}

/* Input Errors */
.input-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 8px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.input-error:not(:empty)::before {
  content: '⚠';
  font-size: 0.9rem;
}

/* Register Button */
.register-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Prompt', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  position: relative;
}

.register-btn:hover:not(:disabled) {
  background: linear-gradient(45deg, #ffed4a, #fff);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

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

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

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

/* Login Button */
.register-actions {
  margin-bottom: 25px;
}

.login-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Help Text */
.register-help {
  text-align: center;
}

.help-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #cccccc;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

.help-text i {
  color: #ffd700;
  font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .register-container {
    padding: 0 20px;
  }
  
  .register-card {
    padding: 30px 25px;
    max-width: 400px;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 14px 16px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 16px 20px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .register-section {
    padding: 20px 0;
  }
  
  .register-container {
    padding: 0 15px;
  }
  
  .register-card {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .register-logo {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-group {
    margin-bottom: 25px;
  }
  
  .form-label {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  
  .error-message,
  .success-message {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
  
  .help-text {
    font-size: 0.8rem;
  }
}

/* Hero Section Styles */
.hero-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 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(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

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

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4a, #fff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  line-height: 1.3;
}

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

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.hero-cta-btn:hover {
  background: linear-gradient(45deg, #ffed4a, #fff);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
  color: #000;
}

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

/* Promotion Section Styles */
.promotion-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

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

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

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

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

.promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
}

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

.promotion-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.promotion-icon i {
  font-size: 1.8rem;
  color: #000;
}

.promotion-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1.4;
  flex: 1;
}

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

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

.promotion-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promotion-list li:last-child {
  border-bottom: none;
}

.promotion-list li i {
  color: #28a745;
  font-size: 1.1rem;
  margin-top: 3px;
  min-width: 20px;
}

.promotion-list li span {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.6;
}

.promotion-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  color: #000;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.promotion-cta-btn:hover {
  background: linear-gradient(45deg, #ffed4a, #fff);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  color: #000;
}

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

/* Disclaimer Section Styles */
.disclaimer-section {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 50%, #1a0a0a 100%);
  padding: 50px 0;
  border-top: 1px solid rgba(255, 107, 107, 0.2);
}

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

.disclaimer-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 30px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.disclaimer-icon {
  margin-top: 2px;
}

.disclaimer-icon i {
  font-size: 1.5rem;
  color: #ff6b6b;
}

.disclaimer-text {
  font-size: 1rem;
  color: #ff6b6b;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .hero-container,
  .promotion-container,
  .disclaimer-container {
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .promotion-list li span {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-section {
    padding: 100px 0 80px;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-cta-btn {
    padding: 18px 35px;
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-card {
    padding: 30px 25px;
  }
  
  .promotion-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .promotion-icon {
    width: 50px;
    height: 50px;
  }
  
  .promotion-icon i {
    font-size: 1.5rem;
  }
  
  .promotion-title {
    font-size: 1.5rem;
  }
  
  .disclaimer-content {
    flex-direction: column;
    gap: 15px;
    padding: 20px 25px;
  }
}

@media screen and (max-width: 480px) {
  .hero-container,
  .promotion-container,
  .disclaimer-container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.4;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-cta-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 40px 0;
  }
  
  .promotion-card {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .promotion-header {
    gap: 12px;
  }
  
  .promotion-icon {
    width: 45px;
    height: 45px;
  }
  
  .promotion-icon i {
    font-size: 1.3rem;
  }
  
  .promotion-title {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  
  .promotion-list {
    gap: 12px;
  }
  
  .promotion-list li {
    padding: 12px 0;
    gap: 12px;
  }
  
  .promotion-list li span {
    font-size: 0.95rem;
  }
  
  .promotion-cta-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .disclaimer-content {
    padding: 18px 20px;
  }
  
  .disclaimer-icon i {
    font-size: 1.3rem;
  }
  
  .disclaimer-text {
    font-size: 0.9rem;
  }
}