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

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

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

/* Hero Section */
.hero-section {
  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% 40%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 10%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(255, 69, 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 {
  max-width: 100%;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #ff6b35, #8a2be2);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

.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: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

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

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

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

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

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

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

.btn-primary {
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

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

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

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

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

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

.hero-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000;
  padding: 15px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  animation: pulse 2s infinite;
}

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

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .hero-container {
    padding: 0 30px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-features {
    gap: 15px;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .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-features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 30px;
  }
  
  .feature-item {
    padding: 12px;
    justify-content: center;
  }
  
  .hero-actions {
    justify-content: center;
    gap: 15px;
  }
  
  .btn {
    min-width: 150px;
    justify-content: center;
  }
  
  .hero-badge {
    top: -15px;
    right: -15px;
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
  }
  
  .hero-img {
    max-width: 100%;
  }
  
  .hero-badge {
    position: static;
    margin-top: 20px;
    align-self: center;
  }
}

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

.main-header.scrolled {
  background: rgba(15, 15, 35, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}

/* Logo Section */
.logo-section {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ff6b35);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoGlow 3s ease-in-out infinite;
  line-height: 1;
}

.logo-tagline {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.8rem;
  color: #b0b0b0;
  font-weight: 600;
  margin-top: -2px;
}

@keyframes logoGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Desktop Navigation */
.desktop-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  margin: 0 40px;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

.nav-link.active {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.15);
}

/* Desktop CTA Button */
.desktop-cta {
  flex-shrink: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

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

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

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

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

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

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

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

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

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

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

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

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

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

/* Mobile Navigation */
.mobile-nav {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 300px;
}

.mobile-nav-item {
  margin-bottom: 10px;
}

.mobile-nav-item:last-child {
  margin-bottom: 0;
  margin-top: 30px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

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

.mobile-nav-link i {
  font-size: 1.3rem;
  color: #ff6b35;
  min-width: 20px;
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 25px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.mobile-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.mobile-cta-button i {
  font-size: 1.2rem;
  color: #000;
}

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

@media (max-width: 768px) {
  .header-content {
    height: 60px;
  }
  
  .mobile-menu-header {
    height: 60px;
  }
  
  .desktop-nav,
  .desktop-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-tagline {
    font-size: 0.75rem;
  }
}

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

/* Add body padding to prevent content from hiding under fixed header */
body {
  padding-top: 70px;
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
}

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

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

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

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

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

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

.review-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ff6b35);
  border-radius: 2px;
}

.review-body {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 60px;
  align-items: start;
}

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

.review-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.review-intro strong {
  color: #ffd700;
  font-weight: 700;
}

.review-highlights {
  margin-bottom: 40px;
}

.highlight-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-left: 4px solid #ffd700;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(10px);
}

.highlight-item i {
  font-size: 2rem;
  color: #ffd700;
  margin-top: 5px;
  min-width: 40px;
}

.highlight-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.highlight-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #b0b0b0;
}

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

.review-detailed {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.review-detailed p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 20px;
}

.review-detailed p:last-child {
  margin-bottom: 0;
}

.review-detailed strong {
  color: #ffd700;
  font-weight: 700;
}

.review-detailed a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.review-detailed a:hover {
  color: #ffd700;
  text-decoration: underline;
}

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

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

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

.review-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

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

.stat-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  transform: scale(1.05);
}

.stat-item i {
  font-size: 1.8rem;
  color: #ffd700;
  min-width: 30px;
}

.stat-number {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  min-width: 60px;
}

.stat-label {
  font-size: 1rem;
  color: #b0b0b0;
  font-weight: 600;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .review-container {
    padding: 0 30px;
  }
  
  .review-body {
    grid-template-columns: 1fr 400px;
    gap: 40px;
  }
  
  .review-title {
    font-size: 2.4rem;
  }
  
  .highlight-item {
    padding: 20px;
  }
  
  .review-detailed {
    padding: 25px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .review-section {
    padding: 80px 0;
  }
  
  .review-container {
    padding: 0 15px;
  }
  
  .review-header {
    margin-bottom: 40px;
  }
  
  .review-title {
    font-size: 2rem;
  }
  
  .review-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .review-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .highlight-item {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    text-align: center;
  }
  
  .highlight-item i {
    font-size: 2.5rem;
    margin-top: 0;
  }
  
  .highlight-content h3 {
    font-size: 1.3rem;
  }
  
  .review-detailed {
    padding: 20px;
  }
  
  .review-detailed p {
    font-size: 1rem;
  }
  
  .stat-item {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .review-title {
    font-size: 1.8rem;
  }
  
  .review-intro {
    font-size: 1rem;
  }
  
  .highlight-item {
    padding: 15px;
  }
  
  .highlight-content h3 {
    font-size: 1.2rem;
  }
  
  .highlight-content p {
    font-size: 0.95rem;
  }
  
  .review-detailed {
    padding: 15px;
  }
  
  .review-detailed p {
    font-size: 0.95rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}

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

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

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

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

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

.login-guide-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
}

.login-guide-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ffd700);
  border-radius: 2px;
}

.login-guide-body {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.login-guide-text {
  max-width: 100%;
}

.guide-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.guide-intro strong {
  color: #ffd700;
  font-weight: 700;
}

.login-steps {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 40px;
}

.steps-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.steps-title::before {
  content: '';
  width: 4px;
  height: 30px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-radius: 2px;
}

.steps-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 25px;
}

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

.quick-login {
  text-align: center;
}

.login-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  padding: 15px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.login-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.login-action i {
  font-size: 1.2rem;
  color: #000;
}

.login-btn {
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

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

.troubleshooting-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.troubleshooting-title::before {
  content: '';
  width: 4px;
  height: 30px;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  border-radius: 2px;
}

.troubleshooting > p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 25px;
}

.troubleshooting > p strong {
  color: #ffd700;
  font-weight: 700;
}

.troubleshooting-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.troubleshooting-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 3px solid #ff6b35;
  transition: all 0.3s ease;
}

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

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

.troubleshooting-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.troubleshooting-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #b0b0b0;
}

.login-guide-image {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

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

.contact-support {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

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

.support-header i {
  font-size: 1.8rem;
  color: #ffd700;
}

.support-header h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

.contact-support > p {
  font-size: 1rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 20px;
}

.contact-support strong {
  color: #ffd700;
  font-weight: 700;
}

.support-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

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

.support-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

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

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

.support-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-radius: 25px;
  color: #000;
  font-weight: 700;
  margin-top: 15px;
}

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

.additional-info {
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  border-top: 3px solid #8a2be2;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(138, 43, 226, 0.1);
  transform: translateY(-5px);
  border-top-color: #ffd700;
}

.info-item i {
  font-size: 2.2rem;
  color: #8a2be2;
  margin-bottom: 15px;
  display: block;
}

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

.info-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #b0b0b0;
}

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .login-guide-container {
    padding: 0 30px;
  }
  
  .login-guide-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .login-guide-title {
    font-size: 2.4rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .login-steps,
  .troubleshooting,
  .additional-info {
    padding: 25px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .login-guide-section {
    padding: 80px 0;
  }
  
  .login-guide-container {
    padding: 0 15px;
  }
  
  .login-guide-header {
    margin-bottom: 40px;
  }
  
  .login-guide-title {
    font-size: 2rem;
  }
  
  .guide-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .troubleshooting-item {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .troubleshooting-item i {
    font-size: 2rem;
    margin-top: 0;
  }
  
  .support-channels {
    gap: 10px;
  }
  
  .support-item {
    justify-content: center;
  }
  
  .login-steps,
  .troubleshooting,
  .contact-support,
  .additional-info {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .login-guide-title {
    font-size: 1.8rem;
  }
  
  .guide-intro {
    font-size: 1rem;
  }
  
  .steps-title,
  .troubleshooting-title {
    font-size: 1.3rem;
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  
  .steps-title::before,
  .troubleshooting-title::before {
    width: 30px;
    height: 4px;
  }
  
  .login-action {
    padding: 12px 25px;
  }
  
  .troubleshooting-content h4 {
    font-size: 1.1rem;
  }
  
  .troubleshooting-content p {
    font-size: 0.95rem;
  }
  
  .info-content h4 {
    font-size: 1.2rem;
  }
  
  .info-content p {
    font-size: 0.95rem;
  }
}

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

.comparison-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 40% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 20% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

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

.comparison-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #8a2be2, #ffd700, #ff6b35);
  border-radius: 2px;
}

.comparison-body {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

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

.comparison-img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.comparison-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000;
  padding: 18px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  animation: float 3s ease-in-out infinite;
}

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

.comparison-badge i {
  font-size: 1.3rem;
}

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

.comparison-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.comparison-intro strong {
  color: #ffd700;
  font-weight: 700;
}

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

.feature-category {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.category-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-title::before {
  content: '';
  width: 5px;
  height: 35px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-radius: 3px;
}

.feature-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.feature-lotto77,
.feature-others {
  padding: 25px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-lotto77 {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.feature-lotto77:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-5px);
}

.feature-others {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(128, 128, 128, 0.3);
}

.feature-others:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(128, 128, 128, 0.5);
}

.feature-lotto77 .feature-content,
.feature-others .feature-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-lotto77 i,
.feature-others i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.feature-lotto77 i {
  color: #ffd700;
}

.feature-others i {
  color: #ff6b35;
}

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

.feature-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #d0d0d0;
}

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

.game-variety {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.game-variety > p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
}

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

.game-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

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

.game-type:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.5);
  transform: scale(1.05);
}

.game-type i {
  font-size: 1.5rem;
  color: #ff6b35;
}

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

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.advantage-item {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border-left: 5px solid #8a2be2;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  background: rgba(138, 43, 226, 0.1);
  transform: translateX(10px);
  border-left-color: #ffd700;
}

.advantage-item i {
  font-size: 2.5rem;
  color: #8a2be2;
  margin-top: 5px;
  min-width: 50px;
}

.advantage-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.advantage-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #c0c0c0;
}

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

.reputation-section {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 25px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.reputation-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
  text-align: center;
}

.reputation-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 20px;
}

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

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

.reputation-content a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.reputation-content a:hover {
  color: #ffd700;
  text-decoration: underline;
}

.cta-section {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .comparison-container {
    padding: 0 30px;
  }
  
  .comparison-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .comparison-title {
    font-size: 2.4rem;
  }
  
  .feature-comparison {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .game-types {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .comparison-section {
    padding: 80px 0;
  }
  
  .comparison-container {
    padding: 0 15px;
  }
  
  .comparison-header {
    margin-bottom: 40px;
  }
  
  .comparison-title {
    font-size: 2rem;
  }
  
  .comparison-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .feature-category,
  .advantage-item,
  .reputation-section {
    padding: 20px;
  }
  
  .advantage-item {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .advantage-item i {
    font-size: 3rem;
    margin-top: 0;
    align-self: center;
  }
  
  .game-types {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .game-type {
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .comparison-title {
    font-size: 1.8rem;
  }
  
  .comparison-intro {
    font-size: 1rem;
  }
  
  .category-title {
    font-size: 1.4rem;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .category-title::before {
    width: 40px;
    height: 5px;
    align-self: center;
  }
  
  .feature-content h4 {
    font-size: 1.2rem;
  }
  
  .feature-content p {
    font-size: 0.95rem;
  }
  
  .advantage-content h4 {
    font-size: 1.3rem;
  }
  
  .advantage-content p {
    font-size: 0.95rem;
  }
  
  .reputation-title {
    font-size: 1.6rem;
  }
  
  .reputation-content p {
    font-size: 1rem;
  }
  
  .cta-title {
    font-size: 1.3rem;
  }
  
  .comparison-badge {
    position: static;
    margin-top: 15px;
    align-self: center;
  }
}

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

.beginner-guide-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 20%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

.beginner-guide-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
}

.beginner-guide-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ff6b35, #8a2be2);
  border-radius: 2px;
}

.beginner-guide-body {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

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

.guide-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.guide-intro strong {
  color: #ffd700;
  font-weight: 700;
}

.preparation-section,
.registration-section,
.deposit-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 30px;
}

.preparation-title,
.registration-title,
.deposit-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.preparation-title::before,
.registration-title::before,
.deposit-title::before {
  content: '';
  width: 5px;
  height: 35px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-radius: 3px;
}

.preparation-desc,
.registration-desc,
.deposit-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 25px;
}

.preparation-desc strong,
.registration-desc strong,
.deposit-desc strong {
  color: #ffd700;
  font-weight: 700;
}

.registration-desc a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.registration-desc a:hover {
  color: #ffd700;
  text-decoration: underline;
}

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

.lottery-type {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.lottery-type:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  transform: scale(1.05);
}

.lottery-type i {
  font-size: 2rem;
  color: #ff6b35;
  min-width: 40px;
}

.type-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.type-content p {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.4;
}

.registration-cta {
  text-align: center;
}

.register-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  color: #000;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

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

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

.deposit-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.deposit-method {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(138, 43, 226, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(138, 43, 226, 0.3);
  transition: all 0.3s ease;
}

.deposit-method:hover {
  background: rgba(138, 43, 226, 0.2);
  border-color: rgba(138, 43, 226, 0.5);
  transform: scale(1.05);
}

.deposit-method i {
  font-size: 1.5rem;
  color: #8a2be2;
  min-width: 25px;
}

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

.guide-image {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.guide-img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

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

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

.highlight:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

.highlight i {
  font-size: 2rem;
  color: #ffd700;
  min-width: 40px;
}

.highlight-text h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.highlight-text p {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.4;
}

.buying-steps {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 25px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 60px;
}

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

.steps-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #ffd700);
  border-radius: 2px;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

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

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #ffd700);
  z-index: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

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

.step-content p {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.4;
}

.tips-section {
  background: rgba(255, 255, 255, 0.02);
  padding: 50px;
  border-radius: 30px;
  border: 1px solid rgba(138, 43, 226, 0.2);
}

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

.tips-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #8a2be2;
  text-align: center;
  margin-bottom: 30px;
}

.tip-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(138, 43, 226, 0.1);
  border-radius: 15px;
  border-left: 5px solid #8a2be2;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

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

.tip-item i {
  font-size: 2.2rem;
  color: #8a2be2;
  margin-top: 8px;
  min-width: 45px;
}

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

.tip-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #c0c0c0;
}

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

.final-cta {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(138, 43, 226, 0.3);
}

.final-cta-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.final-cta-desc {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 25px;
}

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .beginner-guide-container {
    padding: 0 30px;
  }
  
  .beginner-guide-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .beginner-guide-title {
    font-size: 2.4rem;
  }
  
  .steps-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .step-item:not(:last-child)::after {
    display: none;
  }
  
  .lottery-types,
  .deposit-methods {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .beginner-guide-section {
    padding: 80px 0;
  }
  
  .beginner-guide-container {
    padding: 0 15px;
  }
  
  .beginner-guide-header {
    margin-bottom: 40px;
  }
  
  .beginner-guide-title {
    font-size: 2rem;
  }
  
  .guide-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .preparation-section,
  .registration-section,
  .deposit-section,
  .buying-steps,
  .tips-section {
    padding: 20px;
  }
  
  .steps-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .lottery-type {
    justify-content: center;
    text-align: center;
  }
  
  .deposit-method {
    justify-content: center;
  }
  
  .tip-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .tip-item i {
    font-size: 3rem;
    margin-top: 0;
  }
  
  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .beginner-guide-title {
    font-size: 1.8rem;
  }
  
  .guide-intro {
    font-size: 1rem;
  }
  
  .preparation-title,
  .registration-title,
  .deposit-title {
    font-size: 1.4rem;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .preparation-title::before,
  .registration-title::before,
  .deposit-title::before {
    width: 40px;
    height: 4px;
    align-self: center;
  }
  
  .steps-title {
    font-size: 1.6rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .step-content h4 {
    font-size: 1rem;
  }
  
  .step-content p {
    font-size: 0.85rem;
  }
  
  .tips-title {
    font-size: 1.5rem;
  }
  
  .tip-text h4 {
    font-size: 1.2rem;
  }
  
  .tip-text p {
    font-size: 0.95rem;
  }
  
  .final-cta-title {
    font-size: 1.4rem;
  }
  
  .final-cta-desc {
    font-size: 1rem;
  }
}

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

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 50% 10%, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

.why-choose-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
}

.why-choose-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #8a2be2, #ffd700, #ff6b35);
  border-radius: 2px;
}

.why-choose-body {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.choose-intro {
  max-width: 100%;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 40px;
}

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

.trust-factor {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.trust-item {
  display: flex;
  gap: 25px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border-left: 5px solid #ffd700;
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(15px);
  border-left-color: #ff6b35;
}

.trust-item i {
  font-size: 2.5rem;
  color: #ffd700;
  margin-top: 8px;
  min-width: 50px;
}

.trust-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.trust-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #c0c0c0;
}

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

.why-choose-image {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.choose-img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.choose-img:hover {
  transform: scale(1.05) rotate(1deg);
}

.popularity-stats {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.stat-box:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.5);
  transform: scale(1.05);
}

.stat-box i {
  font-size: 2rem;
  color: #ff6b35;
  min-width: 35px;
}

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

.stat-title {
  font-size: 0.9rem;
  color: #b0b0b0;
  font-weight: 600;
}

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

.advantages-section {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 25px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 60px;
}

.advantages-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin-bottom: 20px;
}

.advantages-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.advantages-intro strong {
  color: #ffd700;
  font-weight: 700;
}

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

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

.convenience-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-5px);
}

.convenience-item i {
  font-size: 2rem;
  color: #ff6b35;
  min-width: 40px;
}

.convenience-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.convenience-content p {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.4;
}

.special-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.vip-section,
.security-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px;
  border-radius: 20px;
  border-top: 4px solid #8a2be2;
  transition: all 0.3s ease;
}

.vip-section:hover,
.security-section:hover {
  background: rgba(138, 43, 226, 0.1);
  transform: translateY(-5px);
}

.vip-title,
.security-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #8a2be2;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vip-title::before,
.security-title::before {
  content: '';
  width: 4px;
  height: 30px;
  background: linear-gradient(135deg, #8a2be2, #ffd700);
  border-radius: 2px;
}

.vip-description,
.security-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #c0c0c0;
  margin-bottom: 25px;
}

.vip-description strong,
.security-description strong {
  color: #ffd700;
  font-weight: 700;
}

.vip-benefits,
.security-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-item,
.security-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(138, 43, 226, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover,
.security-feature:hover {
  background: rgba(138, 43, 226, 0.2);
  transform: translateX(5px);
}

.benefit-item i,
.security-feature i {
  font-size: 1.3rem;
  color: #8a2be2;
  min-width: 20px;
}

.benefit-item span,
.security-feature span {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
}

.customer-service {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 25px;
  border: 1px solid rgba(255, 69, 0, 0.2);
  margin-bottom: 40px;
}

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

.service-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  text-align: center;
  margin-bottom: 35px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 69, 0, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 69, 0, 0.3);
  transition: all 0.3s ease;
}

.service-channel:hover {
  background: rgba(255, 69, 0, 0.15);
  border-color: rgba(255, 69, 0, 0.5);
  transform: translateY(-8px);
}

.service-channel i {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 15px;
}

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

.channel-info p {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.4;
}

.mobile-app {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px;
  border-radius: 20px;
  border-left: 5px solid #ffd700;
  margin-bottom: 40px;
}

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

.app-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 25px;
}

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

.app-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 25px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.app-feature:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
  transform: scale(1.05);
}

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

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

.reviews-reputation {
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: 25px;
  border: 1px solid rgba(138, 43, 226, 0.2);
}

.reviews-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #8a2be2;
  text-align: center;
  margin-bottom: 20px;
}

.reviews-description,
.pantip-reviews {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 20px;
}

.pantip-reviews {
  margin-bottom: 40px;
}

.reviews-description strong,
.pantip-reviews strong {
  color: #ffd700;
  font-weight: 700;
}

.reviews-description a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.reviews-description a:hover {
  color: #ffd700;
  text-decoration: underline;
}

.final-cta-section {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(138, 43, 226, 0.3);
}

.final-cta-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .why-choose-container {
    padding: 0 30px;
  }
  
  .why-choose-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-choose-title {
    font-size: 2.4rem;
  }
  
  .special-features {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .convenience-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .service-channels {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .app-features {
    justify-content: center;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .why-choose-section {
    padding: 80px 0;
  }
  
  .why-choose-container {
    padding: 0 15px;
  }
  
  .why-choose-header {
    margin-bottom: 40px;
  }
  
  .why-choose-title {
    font-size: 2rem;
  }
  
  .intro-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .trust-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }
  
  .trust-item i {
    font-size: 3rem;
    margin-top: 0;
    align-self: center;
  }
  
  .convenience-item {
    justify-content: center;
    text-align: center;
  }
  
  .vip-section,
  .security-section,
  .advantages-section,
  .customer-service,
  .mobile-app,
  .reviews-reputation {
    padding: 25px;
  }
  
  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .why-choose-title {
    font-size: 1.8rem;
  }
  
  .intro-text {
    font-size: 1rem;
  }
  
  .advantages-title,
  .service-title,
  .reviews-title {
    font-size: 1.5rem;
  }
  
  .vip-title,
  .security-title {
    font-size: 1.3rem;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .vip-title::before,
  .security-title::before {
    width: 30px;
    height: 4px;
    align-self: center;
  }
  
  .app-title {
    font-size: 1.4rem;
    text-align: center;
  }
  
  .final-cta-title {
    font-size: 1.4rem;
  }
  
  .app-features {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-value {
    font-size: 1.3rem;
  }
  
  .convenience-content h4,
  .channel-info h4 {
    font-size: 1.1rem;
  }
  
  .trust-content h3 {
    font-size: 1.3rem;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0a0a1e 0%, #1a1a2e 50%, #0f0f23 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

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

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

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

/* Footer Top Section */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

/* Footer About */
.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, #ff6b35);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: footerLogoGlow 3s ease-in-out infinite;
  line-height: 1;
}

.footer-logo-tagline {
  display: block;
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  color: #b0b0b0;
  font-weight: 600;
  margin-top: 5px;
}

@keyframes footerLogoGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #c0c0c0;
  margin-bottom: 25px;
}

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

.footer-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid #ffd700;
  transition: all 0.3s ease;
}

.footer-feature:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

.footer-feature i {
  font-size: 1.1rem;
  color: #ffd700;
  min-width: 18px;
}

.footer-feature span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

/* Footer Links */
.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: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ff6b35);
  border-radius: 1px;
}

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

.footer-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #ffd700;
  transform: translateX(8px);
}

.footer-nav a i {
  font-size: 0.9rem;
  color: #ff6b35;
  min-width: 15px;
}

/* Footer Contact */
.contact-info {
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.contact-item i {
  font-size: 1.2rem;
  color: #ff6b35;
  margin-top: 2px;
  min-width: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: 0.8rem;
  color: #b0b0b0;
  font-weight: 600;
}

.contact-value {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: #ffd700;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
}

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

.social-link:hover {
  background: #ffd700;
  color: #000;
  transform: scale(1.1) translateY(-2px);
  border-color: #ffd700;
}

.social-link i {
  font-size: 1.1rem;
}

/* Footer Middle Section */
.footer-middle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.payment-title,
.security-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 20px;
  text-align: center;
}

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

.payment-icon,
.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(138, 43, 226, 0.3);
  transition: all 0.3s ease;
}

.payment-icon:hover,
.security-badge:hover {
  background: rgba(138, 43, 226, 0.1);
  border-color: rgba(138, 43, 226, 0.5);
  transform: translateY(-3px);
}

.payment-icon i,
.security-badge i {
  font-size: 1.8rem;
  color: #8a2be2;
  margin-bottom: 8px;
}

.payment-icon span,
.security-badge span {
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 600;
}

/* Footer Bottom Section */
.footer-bottom {
  padding: 40px 0 20px;
}

.footer-legal {
  margin-bottom: 30px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 25px;
}

.legal-link {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

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

.disclaimer {
  background: rgba(255, 69, 0, 0.1);
  border: 1px solid rgba(255, 69, 0, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

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

.disclaimer-text strong {
  color: #ff6b35;
  font-weight: 700;
}

.age-restriction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.age-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ff6b35;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 700;
}

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

.age-text {
  font-size: 0.9rem;
  color: #c0c0c0;
  font-weight: 600;
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

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

.domain-text {
  color: #8a2be2;
  font-weight: 600;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #8a2be2, #ffd700);
  color: #000;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
}

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 30px;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-about {
    grid-column: span 2;
  }
  
  .footer-middle {
    gap: 30px;
  }
  
  .payment-icons,
  .badges {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0 30px;
  }
  
  .footer-about {
    grid-column: span 1;
    text-align: center;
  }
  
  .footer-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  
  .footer-feature {
    flex: 1;
    min-width: calc(50% - 5px);
  }
  
  .footer-middle {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 0;
  }
  
  .payment-icons,
  .badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .footer-copyright {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .legal-links {
    gap: 15px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .contact-item {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-top {
    padding: 30px 0 25px;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .footer-features {
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-feature {
    min-width: auto;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .age-restriction {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .disclaimer {
    padding: 15px;
  }
  
  .disclaimer-text {
    font-size: 0.85rem;
  }
  
  .payment-icon,
  .security-badge {
    padding: 12px 8px;
  }
  
  .payment-icon span,
  .security-badge span {
    font-size: 0.8rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(26, 26, 46, 0.95));
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  z-index: 998;
  padding: 8px 0;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
}

.sticky-buttons-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  gap: 8px;
}

.sticky-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 8px;
  border-radius: 12px;
  transition: all 0.3s ease;
  flex: 1;
  min-height: 60px;
  position: relative;
  overflow: hidden;
  font-weight: 700;
  text-align: center;
}

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

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

.sticky-btn:hover {
  transform: translateY(-3px);
}

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

.sticky-btn-text {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Login Button */
.sticky-btn-login {
  background: linear-gradient(135deg, #8a2be2, #9f4de8);
  color: #ffffff;
  border: 2px solid rgba(138, 43, 226, 0.3);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #9f4de8, #b569f0);
  border-color: rgba(138, 43, 226, 0.6);
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
  color: #ffffff;
}

/* Register Button */
.sticky-btn-register {
  background: linear-gradient(135deg, #ff6b35, #ff7f50);
  color: #ffffff;
  border: 2px solid rgba(255, 107, 53, 0.3);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #ff7f50, #ff9370);
  border-color: rgba(255, 107, 53, 0.6);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  color: #ffffff;
}

/* Bonus Button */
.sticky-btn-bonus {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  border: 2px solid rgba(255, 215, 0, 0.3);
  position: relative;
}

.sticky-btn-bonus::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffd700, #ff6b35, #8a2be2, #ffd700);
  background-size: 400% 400%;
  border-radius: 12px;
  z-index: -1;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.sticky-btn-bonus:hover {
  background: linear-gradient(135deg, #ffed4e, #fff176);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  color: #000000;
  transform: translateY(-4px) scale(1.02);
}

.sticky-btn-bonus i {
  animation: bounce 2s infinite;
}

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .sticky-buttons-container {
    padding: 0 20px;
  }
  
  .sticky-btn {
    padding: 14px 10px;
    min-height: 65px;
  }
  
  .sticky-btn i {
    font-size: 1.5rem;
  }
  
  .sticky-btn-text {
    font-size: 0.9rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 10px 0;
  }
  
  .sticky-buttons-container {
    padding: 0 10px;
    gap: 6px;
  }
  
  .sticky-btn {
    padding: 12px 6px;
    min-height: 65px;
    border-radius: 10px;
  }
  
  .sticky-btn i {
    font-size: 1.6rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn-text {
    font-size: 0.8rem;
    font-weight: 600;
  }
}

@media (max-width: 480px) {
  .sticky-buttons {
    padding: 8px 0;
  }
  
  .sticky-buttons-container {
    padding: 0 8px;
    gap: 4px;
  }
  
  .sticky-btn {
    padding: 10px 4px;
    min-height: 60px;
    border-radius: 8px;
  }
  
  .sticky-btn i {
    font-size: 1.4rem;
  }
  
  .sticky-btn-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .sticky-btn {
    padding: 8px 3px;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 1.3rem;
  }
  
  .sticky-btn-text {
    font-size: 0.7rem;
  }
}

/* Add bottom padding to body to prevent content from hiding under sticky buttons */
body {
  padding-bottom: 85px;
}

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

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

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

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

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

.login-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 450px;
  position: relative;
  z-index: 2;
}

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ff6b35);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite;
  margin-bottom: 8px;
}

@keyframes titleGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

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

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

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

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

.form-label i {
  font-size: 1rem;
  color: #ffd700;
}

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

.form-input {
  width: 100%;
  padding: 15px 50px 15px 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  outline: none;
}

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

.form-input:valid {
  border-color: #4ade80;
}

.form-input:invalid.touched {
  border-color: #f87171;
}

.form-input::placeholder {
  color: #9ca3af;
  font-weight: 500;
}

.input-icon {
  position: absolute;
  left: 15px;
  color: #ffd700;
  font-size: 1.1rem;
  pointer-events: none;
  z-index: 2;
}

.password-toggle {
  position: absolute;
  right: 15px;
  background: transparent;
  border: none;
  color: #b0b0b0;
  font-size: 1rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
  z-index: 2;
}

.password-toggle:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

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

.error-message.show {
  display: block;
  animation: slideDown 0.3s ease;
}

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

/* Form Options */
.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.remember-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}

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

.checkmark {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.remember-checkbox input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-color: #ffd700;
}

.remember-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  color: #c0c0c0;
  font-size: 0.9rem;
  font-weight: 500;
  user-select: none;
}

.forgot-password {
  color: #ff6b35;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

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

.login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000;
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

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

.login-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.login-button:disabled {
  background: #6b7280;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.login-button:disabled::before {
  display: none;
}

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

.login-button.loading .button-text {
  opacity: 0.7;
}

.login-button.loading .loading-spinner {
  display: block;
}

.register-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(138, 43, 226, 0.5);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.register-button:hover {
  background: rgba(138, 43, 226, 0.1);
  border-color: #8a2be2;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Error Alert */
.error-alert {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
  animation: slideIn 0.3s ease;
}

.error-alert.show {
  display: flex;
}

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

.error-alert i {
  color: #f87171;
  font-size: 1.2rem;
}

.error-text {
  flex: 1;
  color: #f87171;
  font-weight: 600;
  font-size: 0.9rem;
}

.close-error {
  background: transparent;
  border: none;
  color: #f87171;
  font-size: 1rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.close-error:hover {
  background: rgba(248, 113, 113, 0.2);
}

/* Login Features */
.login-features {
  display: flex;
  justify-content: space-around;
  gap: 15px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

.feature-item span {
  color: #c0c0c0;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .login-container {
    padding: 0 30px;
  }
  
  .login-content {
    max-width: 420px;
    padding: 35px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .login-section {
    padding: 80px 0 100px;
  }
  
  .login-container {
    padding: 0 15px;
  }
  
  .login-content {
    max-width: 100%;
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 12px 45px 12px 40px;
    font-size: 1rem;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .login-features {
    gap: 10px;
  }
  
  .feature-item span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .login-content {
    padding: 20px 15px;
    margin: 0 10px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 10px 40px 10px 35px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 1rem;
  }
  
  .password-toggle {
    right: 12px;
  }
  
  .login-button {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .register-button {
    padding: 10px 15px;
    font-size: 0.95rem;
  }
  
  .feature-item {
    gap: 5px;
  }
  
  .feature-item i {
    font-size: 1.3rem;
  }
  
  .feature-item span {
    font-size: 0.75rem;
  }
}

/* Register Section */
.register-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 120px;
  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, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 20% 70%, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.register-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 450px;
  position: relative;
  z-index: 2;
}

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ff6b35);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite;
  margin-bottom: 8px;
}

@keyframes titleGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

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

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

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

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

.form-label i {
  font-size: 1rem;
  color: #ffd700;
}

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

.form-input {
  width: 100%;
  padding: 15px 50px 15px 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  outline: none;
}

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

.form-input:valid {
  border-color: #4ade80;
}

.form-input:invalid.touched {
  border-color: #f87171;
}

.form-input::placeholder {
  color: #9ca3af;
  font-weight: 500;
}

.input-icon {
  position: absolute;
  left: 15px;
  color: #ffd700;
  font-size: 1.1rem;
  pointer-events: none;
  z-index: 2;
}

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

.error-message.show {
  display: block;
  animation: slideDown 0.3s ease;
}

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

/* Form Terms */
.form-terms {
  margin-top: 10px;
}

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

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

.checkmark {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-color: #ffd700;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  color: #c0c0c0;
  font-size: 0.9rem;
  font-weight: 500;
  user-select: none;
  line-height: 1.5;
}

.terms-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: #ffd700;
  text-decoration: underline;
}

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

.register-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000;
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

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

.register-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.register-button:disabled {
  background: #6b7280;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.register-button:disabled::before {
  display: none;
}

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

.register-button.loading .button-text {
  opacity: 0.7;
}

.register-button.loading .loading-spinner {
  display: block;
}

.login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(138, 43, 226, 0.5);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.login-button:hover {
  background: rgba(138, 43, 226, 0.1);
  border-color: #8a2be2;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Error Alert */
.error-alert {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
  animation: slideIn 0.3s ease;
}

.error-alert.show {
  display: flex;
}

/* Success Alert */
.success-alert {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
  animation: slideIn 0.3s ease;
}

.success-alert.show {
  display: flex;
}

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

.error-alert i {
  color: #f87171;
  font-size: 1.2rem;
}

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

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

.error-text {
  color: #f87171;
}

.success-text {
  color: #22c55e;
}

.close-error {
  background: transparent;
  border: none;
  color: #f87171;
  font-size: 1rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.close-error:hover {
  background: rgba(248, 113, 113, 0.2);
}

/* Register Features */
.register-features {
  display: flex;
  justify-content: space-around;
  gap: 15px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

.feature-item span {
  color: #c0c0c0;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .register-container {
    padding: 0 30px;
  }
  
  .register-content {
    max-width: 420px;
    padding: 35px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .register-section {
    padding: 80px 0 100px;
  }
  
  .register-container {
    padding: 0 15px;
  }
  
  .register-content {
    max-width: 100%;
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 12px 45px 12px 40px;
    font-size: 1rem;
  }
  
  .register-features {
    gap: 10px;
  }
  
  .feature-item span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .register-content {
    padding: 20px 15px;
    margin: 0 10px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 10px 40px 10px 35px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 1rem;
  }
  
  .register-button {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .login-button {
    padding: 10px 15px;
    font-size: 0.95rem;
  }
  
  .feature-item {
    gap: 5px;
  }
  
  .feature-item i {
    font-size: 1.3rem;
  }
  
  .feature-item span {
    font-size: 0.75rem;
  }
  
  .checkbox-text {
    font-size: 0.85rem;
  }
  
  .checkmark {
    width: 18px;
    height: 18px;
  }
}

/* Hero Section */
.hero-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  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.15) 0%, transparent 70%),
              radial-gradient(circle at 20% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
  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-family: 'Prompt', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ff6b35, #8a2be2);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroGlow 4s ease-in-out infinite;
  margin-bottom: 30px;
  line-height: 1.2;
}

@keyframes heroGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

.hero-features {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

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

.feature-badge:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.6);
  transform: translateY(-5px);
}

.feature-badge i {
  font-size: 1.3rem;
  color: #ffd700;
}

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

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

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

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

.hero-cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
}

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

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

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

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

.promotion-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%);
  pointer-events: none;
}

.promotion-section.alt::before {
  background: radial-gradient(circle at 70% 30%, rgba(138, 43, 226, 0.08) 0%, transparent 50%);
}

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

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

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

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

.promotion-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ff6b35);
  border-radius: 2px;
}

.promotion-body {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.promotion-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.promotion-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-left: 4px solid #ffd700;
  transition: all 0.3s ease;
}

.promotion-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(10px);
  border-left-color: #ff6b35;
}

.promotion-item i {
  font-size: 1.5rem;
  color: #ffd700;
  margin-top: 2px;
  min-width: 25px;
}

.promotion-item span {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
}

.promotion-cta {
  text-align: center;
}

.promotion-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.promotion-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(255, 215, 0, 0.4);
}

.promotion-btn.alt {
  background: linear-gradient(135deg, #8a2be2, #ff6b35);
  box-shadow: 0 12px 35px rgba(138, 43, 226, 0.3);
}

.promotion-btn.alt:hover {
  box-shadow: 0 15px 45px rgba(138, 43, 226, 0.4);
}

.promotion-btn.vip {
  background: linear-gradient(135deg, #ffd700, #8a2be2);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
  border: 2px solid rgba(138, 43, 226, 0.3);
}

.promotion-btn.vip:hover {
  box-shadow: 0 15px 45px rgba(255, 215, 0, 0.4);
  border-color: rgba(138, 43, 226, 0.6);
}

.promotion-btn.referral {
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
}

.promotion-btn.referral:hover {
  box-shadow: 0 15px 45px rgba(255, 107, 53, 0.4);
}

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

/* VIP Section Special Styling */
#vip-promotion .promotion-item {
  border-left-color: #8a2be2;
}

#vip-promotion .promotion-item:hover {
  background: rgba(138, 43, 226, 0.1);
  border-left-color: #ffd700;
}

#vip-promotion .promotion-item i {
  color: #8a2be2;
}

/* Referral Section Special Styling */
#referral-promotion .promotion-item {
  border-left-color: #ff6b35;
}

#referral-promotion .promotion-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-left-color: #ffd700;
}

#referral-promotion .promotion-item i {
  color: #ff6b35;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .hero-container,
  .promotion-container {
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .promotion-title {
    font-size: 2.2rem;
  }
  
  .hero-features {
    gap: 20px;
  }
  
  .feature-badge {
    padding: 12px 20px;
  }
  
  .promotion-body {
    padding: 35px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-section,
  .promotion-section {
    padding: 60px 0;
  }
  
  .hero-container,
  .promotion-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-header {
    margin-bottom: 35px;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .feature-badge {
    padding: 10px 18px;
    width: fit-content;
  }
  
  .feature-badge span {
    font-size: 0.95rem;
  }
  
  .hero-cta-btn {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
  
  .promotion-body {
    padding: 25px 20px;
  }
  
  .promotion-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 18px;
  }
  
  .promotion-item i {
    font-size: 2rem;
    margin-top: 0;
    align-self: center;
  }
  
  .promotion-item span {
    font-size: 1rem;
  }
  
  .promotion-btn {
    padding: 15px 25px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .feature-badge {
    padding: 8px 15px;
  }
  
  .feature-badge span {
    font-size: 0.9rem;
  }
  
  .hero-cta-btn {
    padding: 14px 25px;
    font-size: 1rem;
  }
  
  .promotion-body {
    padding: 20px 15px;
  }
  
  .promotion-item {
    padding: 15px;
  }
  
  .promotion-item i {
    font-size: 1.8rem;
  }
  
  .promotion-item span {
    font-size: 0.95rem;
  }
  
  .promotion-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .promotion-btn i {
    font-size: 1.1rem;
  }
}