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

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

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

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

/* Hero Section Styles */
.hero-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 46, 0.8) 50%, rgba(22, 33, 62, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  z-index: 1;
}

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

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

.hero-text {
  padding-right: 20px;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

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

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #000;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
}

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

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

.btn-secondary:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
}

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

.image-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
}

.overlay-content i {
  color: #000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-text {
    padding-right: 10px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero-text {
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 10px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .feature-item {
    padding: 12px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .hero-container {
    padding: 0 5px;
  }
}

/* Header Styles */
.main-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

/* Header Logo */
.header-logo {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1;
}

.logo-subtitle {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.75rem;
  color: #e0e0e0;
  text-align: center;
  margin-top: -2px;
}

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

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e0e0e0;
  text-decoration: none;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  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.1), transparent);
  transition: left 0.5s;
}

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

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

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

/* Header CTA Button */
.header-cta {
  margin-left: 20px;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #000;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
}

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

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

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

.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(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
  backdrop-filter: blur(20px);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.4s ease-in-out;
}

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

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

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

.mobile-logo {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.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: rotate(90deg);
}

/* Mobile Navigation */
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  gap: 5px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #e0e0e0;
  text-decoration: none;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 20px 30px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

.mobile-nav-link i {
  font-size: 1.2rem;
  width: 20px;
}

/* Mobile CTA Button */
.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #000;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 30px;
  margin: 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
}

.mobile-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 15px;
  }
  
  .nav-links {
    gap: 20px;
  }
  
  .nav-link {
    padding: 8px 12px;
    font-size: 0.95rem;
  }
  
  .header-cta {
    margin-left: 15px;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-container {
    height: 70px;
    padding: 0 15px;
  }
  
  .logo-text {
    font-size: 1.8rem;
  }
  
  .logo-subtitle {
    font-size: 0.7rem;
  }
  
  body {
    padding-top: 70px;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 65px;
    padding: 0 10px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-subtitle {
    font-size: 0.65rem;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-logo {
    font-size: 1.6rem;
  }
  
  .mobile-nav {
    padding: 20px 0;
  }
  
  .mobile-nav-link {
    padding: 18px 20px;
    font-size: 1rem;
  }
  
  .mobile-cta-button {
    margin: 20px;
    padding: 16px 25px;
    font-size: 1rem;
  }
  
  body {
    padding-top: 65px;
  }
}

/* Fix for very small screens */
@media (max-width: 360px) {
  .header-container {
    height: 60px;
    padding: 0 8px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .logo-subtitle {
    font-size: 0.6rem;
  }
  
  body {
    padding-top: 60px;
  }
}

/* Introduction Section Styles */
.introduction-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f172a 100%);
  position: relative;
}

.introduction-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

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

.intro-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.3;
}

.intro-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.intro-image {
  position: relative;
}

.intro-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.security-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
}

.security-badge i {
  color: white;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

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

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

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

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

.card-description {
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 1rem;
}

/* Highlights Section */
.highlights-section {
  margin-bottom: 50px;
}

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

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

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

.highlight-item i {
  color: #ffd700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.highlight-item span {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.5;
}

.highlight-item strong {
  color: #ffd700;
}

/* Auto System Info */
.auto-system-info {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(15px);
}

.auto-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.auto-description {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.auto-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auto-icon {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

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

.auto-icon span {
  color: #ffffff;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .introduction-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .intro-title {
    font-size: 2.4rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .auto-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .introduction-section {
    padding: 60px 15px;
  }
  
  .intro-title {
    font-size: 2rem;
  }
  
  .intro-description {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px;
  }
  
  .highlights-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .highlight-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .auto-system-info {
    padding: 30px 20px;
  }
  
  .auto-title {
    font-size: 1.6rem;
  }
  
  .auto-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .introduction-section {
    padding: 40px 10px;
  }
  
  .intro-title {
    font-size: 1.8rem;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
  }
  
  .card-icon i {
    font-size: 1.5rem;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .auto-system-info {
    padding: 20px 15px;
  }
  
  .auto-icons {
    gap: 15px;
  }
  
  .auto-icon {
    padding: 12px 15px;
  }
}

/* Services Section Styles */
.services-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 60%);
  z-index: 1;
}

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

/* Services Header */
.services-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.services-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.3;
}

.services-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 35px;
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.service-card:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.5);
}

.service-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotateY(360deg);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
}

.service-icon i {
  font-size: 2.2rem;
  color: #000;
}

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

.service-description {
  color: #e0e0e0;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 25px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.feature-tag {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Card Specific Styles */
.casino-card {
  border-left: 4px solid #e74c3c;
}

.baccarat-card {
  border-left: 4px solid #9b59b6;
}

.sports-card {
  border-left: 4px solid #27ae60;
}

/* Premium Features */
.premium-features {
  margin-bottom: 60px;
}

.features-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}

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

.features-description {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

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

.member-benefits {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

.benefit-item i {
  color: #ffd700;
  font-size: 1.1rem;
}

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

.features-image {
  position: relative;
}

.features-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.quality-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}

.quality-badge i {
  color: white;
}

/* Access Links */
.access-links {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(15px);
}

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

.links-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
}

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

.link-item {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.link-item:hover {
  background: rgba(255, 215, 0, 0.15);
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.4);
}

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

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

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

.link-content h4 a:hover {
  color: #ffffff;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .features-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .services-title {
    font-size: 2.4rem;
  }
  
  .features-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 15px;
  }
  
  .services-title {
    font-size: 2rem;
  }
  
  .services-description {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 30px 25px;
  }
  
  .member-benefits {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .links-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .link-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .access-links {
    padding: 30px 20px;
  }
  
  .links-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 40px 10px;
  }
  
  .services-title {
    font-size: 1.8rem;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
  }
  
  .service-icon i {
    font-size: 1.8rem;
  }
  
  .service-title {
    font-size: 1.3rem;
  }
  
  .features-title {
    font-size: 1.5rem;
  }
  
  .access-links {
    padding: 25px 15px;
  }
  
  .link-item {
    padding: 20px;
  }
}

/* Registration Section Styles */
.registration-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1a202c 100%);
  position: relative;
}

.registration-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

/* Registration Header */
.registration-header {
  text-align: center;
  margin-bottom: 60px;
}

.registration-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
}

/* Registration Content */
.registration-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  margin-bottom: 70px;
  align-items: start;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(15px);
}

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

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

.card-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
}

.card-description {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

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

.registration-steps {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center;
}

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

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

.step-text {
  color: #e0e0e0;
  font-weight: 600;
  font-size: 0.9rem;
}

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

.btn-register {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.4);
}

.btn-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.6);
}

/* Reliability Info */
.reliability-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.reliability-image {
  position: relative;
}

.reliability-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.trust-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
}

.trust-badge i {
  color: white;
}

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

.reliability-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reliability-item {
  display: flex;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #ffd700;
}

.reliability-item i {
  color: #ffd700;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 5px;
}

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

.reliability-text p {
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Signup Benefits */
.signup-benefits {
  margin-bottom: 60px;
}

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

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

.benefits-subtitle {
  color: #e0e0e0;
  font-size: 1.1rem;
}

.benefits-subtitle a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 700;
}

.benefits-subtitle a:hover {
  text-decoration: underline;
}

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

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

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

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

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

.benefit-description {
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 1rem;
}

/* Service Info */
.service-info {
  margin-bottom: 60px;
}

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

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

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

.service-item i {
  color: #ffd700;
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 5px;
}

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

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

/* Key Features */
.key-features {
  margin-bottom: 60px;
  text-align: center;
}

.features-header {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 40px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  padding: 20px 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  text-align: left;
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
  transform: translateX(10px);
}

.feature-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text {
  color: #e0e0e0;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Security Section */
.security-section {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(29, 78, 216, 0.05) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(15px);
  text-align: center;
}

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

.security-description {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.security-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(59, 130, 246, 0.2);
  padding: 15px 25px;
  border-radius: 25px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #ffffff;
}

.security-badge i {
  color: #3b82f6;
  font-size: 1.2rem;
}

.security-badge span {
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .registration-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .registration-title {
    font-size: 2.4rem;
  }
  
  .benefits-title {
    font-size: 1.8rem;
  }
  
  .security-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .registration-section {
    padding: 60px 15px;
  }
  
  .registration-title {
    font-size: 2rem;
  }
  
  .info-card {
    padding: 30px 25px;
  }
  
  .registration-steps {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .reliability-grid {
    gap: 15px;
  }
  
  .reliability-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .features-list {
    gap: 15px;
  }
  
  .feature-highlight {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .registration-section {
    padding: 40px 10px;
  }
  
  .registration-title {
    font-size: 1.8rem;
  }
  
  .card-title {
    font-size: 1.5rem;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
  }
  
  .benefit-icon i {
    font-size: 1.5rem;
  }
  
  .benefit-title {
    font-size: 1.2rem;
  }
  
  .feature-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .feature-text {
    font-size: 1rem;
  }
  
  .security-section {
    padding: 30px 20px;
  }
}

/* Slots Section Styles */
.slots-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1a202c 50%, #2d3748 100%);
  position: relative;
}

.slots-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
  z-index: 1;
}

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

/* Slots Header */
.slots-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.slots-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.3;
}

.slots-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

/* Slots Content */
.slots-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  margin-bottom: 70px;
  align-items: start;
}

/* Providers Section */
.providers-section {
  margin-bottom: 40px;
}

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

.providers-description {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

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

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

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

.provider-card:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.provider-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.provider-icon i {
  font-size: 1.5rem;
  color: #fff;
}

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

.provider-desc {
  color: #e0e0e0;
  font-size: 0.9rem;
}

/* Free Credits Section */
.free-credits-section {
  margin-top: 40px;
}

.credits-card {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(15px);
}

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

.credits-header i {
  color: #22c55e;
  font-size: 2rem;
}

.credits-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #22c55e;
}

.credits-description {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: center;
}

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

.credit-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(34, 197, 94, 0.1);
  padding: 12px 15px;
  border-radius: 10px;
}

.credit-feature i {
  color: #22c55e;
  font-size: 1.1rem;
}

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

.credits-button {
  text-align: center;
}

.btn-credits {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 25px;
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(34, 197, 94, 0.4);
}

.btn-credits:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(34, 197, 94, 0.6);
}

/* Slots Image */
.slots-image {
  position: relative;
  align-self: center;
}

.slots-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.jackpot-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.4);
}

.jackpot-badge i {
  color: white;
}

/* RNG System */
.rng-system {
  margin-bottom: 60px;
}

.rng-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(15px);
}

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

.rng-description {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.7;
}

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

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

.rng-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(59, 130, 246, 0.1);
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.rng-feature i {
  color: #3b82f6;
  font-size: 1.3rem;
}

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

/* RTP Section */
.rtp-section {
  margin-bottom: 60px;
  text-align: center;
}

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

.rtp-description {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.rtp-description a {
  color: #ec4899;
  text-decoration: none;
  font-weight: 700;
}

.rtp-description a:hover {
  text-decoration: underline;
}

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

.stat-item {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 30px 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
  transform: translateY(-5px);
}

.stat-number {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
}

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

/* Popular Games */
.popular-games {
  margin-bottom: 60px;
}

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

.games-description {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.game-card:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.game-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.game-icon i {
  font-size: 1.8rem;
  color: #fff;
}

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

.game-feature {
  color: #e0e0e0;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Slots CTA */
.slots-cta {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 107, 53, 0.1) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 50px;
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.slots-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

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

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

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

.cta-description {
  color: #e0e0e0;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

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

.btn-primary-cta {
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #000;
  padding: 18px 35px;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 35px rgba(255, 215, 0, 0.4);
}

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

.btn-secondary-cta {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  padding: 16px 33px;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .slots-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .rng-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .slots-title {
    font-size: 2.4rem;
  }
  
  .providers-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .slots-section {
    padding: 60px 15px;
  }
  
  .slots-title {
    font-size: 2rem;
  }
  
  .slots-description {
    font-size: 1rem;
  }
  
  .providers-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .provider-card {
    padding: 20px;
  }
  
  .credits-card {
    padding: 25px 20px;
  }
  
  .rng-content {
    padding: 30px 20px;
  }
  
  .rtp-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
  
  .stat-item {
    padding: 25px 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }
  
  .game-card {
    padding: 20px;
  }
  
  .slots-cta {
    padding: 40px 25px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary-cta,
  .btn-secondary-cta {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .slots-section {
    padding: 40px 10px;
  }
  
  .slots-title {
    font-size: 1.8rem;
  }
  
  .provider-icon {
    width: 50px;
    height: 50px;
  }
  
  .provider-icon i {
    font-size: 1.2rem;
  }
  
  .game-icon {
    width: 60px;
    height: 60px;
  }
  
  .game-icon i {
    font-size: 1.5rem;
  }
  
  .credits-features {
    gap: 10px;
  }
  
  .credit-feature {
    padding: 10px 12px;
  }
  
  .rng-features {
    gap: 15px;
  }
  
  .rng-feature {
    padding: 12px 15px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .slots-cta {
    padding: 30px 15px;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
}

/* Strategies Section Styles */
.strategies-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
  position: relative;
}

.strategies-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
  z-index: 1;
}

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

/* Strategies Header */
.strategies-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.strategies-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.3;
}

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

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

/* Strategies Content */
.strategies-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  margin-bottom: 70px;
  align-items: start;
}

/* Login Info */
.login-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(15px);
}

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

.login-header i {
  color: #ffd700;
  font-size: 2rem;
}

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
}

.login-description {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

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

.preparation-tips {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 185, 129, 0.1);
  padding: 15px 20px;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.tip-item i {
  color: #10b981;
  font-size: 1.2rem;
}

.tip-item span {
  color: #e0e0e0;
  font-weight: 600;
}

/* Strategies Image */
.strategies-image {
  position: relative;
  align-self: center;
}

.strategies-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.strategy-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100());
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.4);
}

.strategy-badge i {
  color: white;
}

/* Game Techniques */
.game-techniques {
  margin-bottom: 60px;
}

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

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

.technique-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

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

.technique-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.technique-icon i {
  font-size: 2rem;
  color: #fff;
}

.technique-name {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin-bottom: 15px;
}

.technique-description {
  color: #e0e0e0;
  line-height: 1.7;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 20px;
}

.technique-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.feature-point {
  background: rgba(99, 102, 241, 0.2);
  color: #6366f1;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

/* Betting Links */
.betting-links {
  margin-bottom: 60px;
}

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

.links-description {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

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

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

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

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

.link-box i {
  color: #ffd700;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 5px;
}

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

.link-info p {
  color: #e0e0e0;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Betting Tips */
.betting-tips {
  margin-bottom: 60px;
}

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

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
}

.tip-category {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

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

.category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.category-icon i {
  font-size: 1.5rem;
  color: #fff;
}

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

.category-description {
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 1rem;
}

/* Additional Services */
.additional-services {
  margin-bottom: 60px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

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

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

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

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

.info-description {
  color: #e0e0e0;
  line-height: 1.7;
  font-size: 1rem;
}

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

/* Money Management */
.money-management {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(15px);
}

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

.management-description {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.rule-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(239, 68, 68, 0.1);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #ef4444;
  transition: all 0.3s ease;
}

.rule-item:hover {
  background: rgba(239, 68, 68, 0.2);
  transform: translateY(-2px);
}

.rule-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.rule-text {
  color: #e0e0e0;
  font-weight: 600;
  font-size: 1rem;
}

.responsible-gaming {
  text-align: center;
}

.warning-box {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(239, 68, 68, 0.2);
  border: 2px solid #ef4444;
  border-radius: 15px;
  padding: 20px 30px;
  backdrop-filter: blur(10px);
}

.warning-box i {
  color: #ef4444;
  font-size: 1.5rem;
}

.warning-text {
  color: #ef4444;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .strategies-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .strategies-title {
    font-size: 2.4rem;
  }
  
  .techniques-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .official-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .strategies-section {
    padding: 60px 15px;
  }
  
  .strategies-title {
    font-size: 2rem;
  }
  
  .login-card {
    padding: 30px 25px;
  }
  
  .login-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .technique-card {
    padding: 25px 20px;
  }
  
  .technique-icon {
    width: 70px;
    height: 70px;
  }
  
  .technique-icon i {
    font-size: 1.8rem;
  }
  
  .tip-category {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .category-icon {
    align-self: center;
  }
  
  .link-box {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .management-rules {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .rule-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .warning-box {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .strategies-section {
    padding: 40px 10px;
  }
  
  .strategies-title {
    font-size: 1.8rem;
  }
  
  .login-card {
    padding: 25px 20px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .technique-card {
    padding: 20px 15px;
  }
  
  .technique-icon {
    width: 60px;
    height: 60px;
  }
  
  .technique-icon i {
    font-size: 1.5rem;
  }
  
  .category-icon {
    width: 50px;
    height: 50px;
  }
  
  .category-icon i {
    font-size: 1.2rem;
  }
  
  .additional-services {
    padding: 30px 20px;
  }
  
  .money-management {
    padding: 30px 20px;
  }
  
  .management-title {
    font-size: 1.6rem;
  }
  
  .rule-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .warning-box {
    padding: 15px 20px;
  }
}

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

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
  z-index: 1;
}

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

/* Footer Content */
.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding: 60px 0 40px;
}

/* Footer Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1;
}

.footer-logo-subtitle {
  font-size: 0.9rem;
  color: #e0e0e0;
  margin-top: 5px;
}

.footer-description {
  color: #b0b0b0;
  line-height: 1.7;
  font-size: 1rem;
}

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

.footer-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e0e0e0;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-feature i {
  color: #ffd700;
  font-size: 1rem;
  width: 16px;
}

/* Footer Links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

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

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

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

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

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

.footer-link i {
  font-size: 0.85rem;
  width: 14px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

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

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-link.facebook {
  background: #1877f2;
  color: white;
}

.social-link.line {
  background: #00c300;
  color: white;
}

.social-link.twitter {
  background: #1da1f2;
  color: white;
}

.social-link.telegram {
  background: #0088cc;
  color: white;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  border-color: #ffd700;
}

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

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

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

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

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

.badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.1);
  padding: 8px 12px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  font-size: 0.8rem;
  color: #e0e0e0;
  font-weight: 600;
}

.badge-item i {
  color: #ffd700;
  font-size: 0.9rem;
}

/* Footer Disclaimer */
.footer-disclaimer {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  margin-bottom: 30px;
  padding: 20px;
}

.disclaimer-content {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.warning-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.warning-icon i {
  color: #ef4444;
  font-size: 1.2rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-features {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    padding: 40px 0 30px;
    gap: 30px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-logo-text {
    font-size: 2rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-badges {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .disclaimer-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 10px;
  }
  
  .footer-content {
    padding: 30px 0 20px;
    gap: 25px;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  .social-links {
    gap: 12px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .social-link i {
    font-size: 1rem;
  }
  
  .footer-badges {
    gap: 10px;
  }
  
  .badge-item {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  
  .footer-disclaimer {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .disclaimer-text {
    font-size: 0.85rem;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-features {
    gap: 10px;
  }
  
  .footer-feature {
    font-size: 0.85rem;
  }
  
  .social-link {
    width: 32px;
    height: 32px;
  }
  
  .social-link i {
    font-size: 0.9rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 998;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 70px;
  gap: 4px;
}

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

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

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

.btn-text {
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.sticky-btn:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.1);
}

.sticky-btn:hover i {
  transform: scale(1.1);
}

.sticky-btn:hover .btn-text {
  transform: scale(1.05);
}

/* Login Button */
.login-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.login-btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100());
  color: #ffffff;
}

/* Register Button */
.register-btn {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.register-btn:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100());
  color: #ffffff;
}

/* Credit Button */
.credit-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #000000;
  position: relative;
}

.credit-btn:hover {
  background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100());
  color: #000000;
}

.credit-btn::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    border-top: 1px solid rgba(255, 215, 0, 0.3);
  }
  
  .sticky-btn {
    padding: 10px 6px;
    min-height: 65px;
    font-size: 0.8rem;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .btn-text {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    min-height: 60px;
    font-size: 0.75rem;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .btn-text {
    font-size: 0.65rem;
  }
  
  .credit-btn::after {
    width: 10px;
    height: 10px;
    top: -1px;
    right: -1px;
  }
}

@media (max-width: 360px) {
  .sticky-btn {
    padding: 6px 2px;
    min-height: 55px;
    gap: 2px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
  }
  
  .btn-text {
    font-size: 0.6rem;
  }
  
  .credit-btn::after {
    width: 8px;
    height: 8px;
  }
}

/* Adjust main content to account for sticky buttons */
body {
  padding-bottom: 70px;
}

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

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

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

/* Ensure sticky buttons are visible above other content */
.sticky-buttons {
  z-index: 998;
}

/* Prevent sticky buttons from interfering with mobile menu */
.mobile-menu-overlay.active ~ .sticky-buttons {
  display: none;
}

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  z-index: 1;
}

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

/* Login Card */
.login-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.login-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 215, 0, 0.3);
}

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

.logo-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

/* Error Message */
.error-message {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 25px;
  color: #ef4444;
  font-weight: 600;
  animation: slideInDown 0.3s ease;
}

.error-message.hidden {
  display: none;
}

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

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

/* Form Styles */
.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: #e0e0e0;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 5px;
}

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

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

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

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

.form-input.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.form-input.success {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

/* Password Input Wrapper */
.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

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

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

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

.input-error:empty {
  display: none;
}

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

.remember-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e0e0e0;
  font-size: 0.9rem;
  cursor: pointer;
  user-select: none;
}

.remember-checkbox input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.remember-checkbox input[type="checkbox"]:checked {
  background: #ffd700;
  border-color: #ffd700;
}

.remember-checkbox input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: -2px;
  left: 2px;
  color: #000;
  font-size: 12px;
  font-weight: bold;
}

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

.forgot-password:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Login Button */
.login-button {
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #000000;
  border: none;
  border-radius: 15px;
  padding: 16px 24px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px 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.2), transparent);
  transition: left 0.6s;
}

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

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

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

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

.button-spinner {
  position: absolute;
}

.button-spinner.hidden {
  display: none;
}

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

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

/* Form Divider */
.form-divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
  color: #b0b0b0;
  font-size: 0.9rem;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.form-divider span {
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 5px 15px;
}

/* Register Button */
.register-button {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 15px;
  padding: 14px 24px;
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.register-button:hover {
  background: #ffd700;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Login Footer */
.login-footer {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b0b0b0;
  font-size: 0.85rem;
  text-align: center;
  margin: 0;
  line-height: 1.4;
}

.security-note i {
  color: #22c55e;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 15px;
  }
  
  .login-card {
    padding: 30px 25px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .logo-image {
    width: 80px;
    height: 80px;
  }
  
  .form-options {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 15px 10px;
  }
  
  .login-card {
    padding: 25px 20px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .login-button,
  .register-button {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .security-note {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .login-card {
    padding: 20px 15px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  z-index: 1;
}

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

/* Register Card */
.register-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.register-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border-color: rgba(34, 197, 94, 0.3);
}

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

.logo-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

/* Error & Success Messages */
.error-message,
.success-message {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 25px;
  font-weight: 600;
  animation: slideInDown 0.3s ease;
}

.error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.success-message {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.error-message.hidden,
.success-message.hidden {
  display: none;
}

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

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

/* Form Styles */
.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: #e0e0e0;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 5px;
}

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

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

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

.form-input:focus {
  outline: none;
  border-color: #22c55e;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-input.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.form-input.success {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

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

.input-error:empty {
  display: none;
}

/* Input Help */
.input-help {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b0b0b0;
  font-size: 0.8rem;
  margin-top: 5px;
}

.input-help i {
  color: #22c55e;
  font-size: 0.8rem;
}

/* Form Terms */
.form-terms {
  margin: 15px 0;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #e0e0e0;
  font-size: 0.9rem;
  cursor: pointer;
  user-select: none;
  line-height: 1.5;
}

.terms-checkbox input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-checkbox input[type="checkbox"]:checked {
  background: #22c55e;
  border-color: #22c55e;
}

.terms-checkbox input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: -2px;
  left: 2px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

.terms-text {
  flex: 1;
}

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

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

/* Register Button */
.register-button {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  border: none;
  border-radius: 15px;
  padding: 16px 24px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 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.2), transparent);
  transition: left 0.6s;
}

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

.register-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

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

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

.button-spinner {
  position: absolute;
}

.button-spinner.hidden {
  display: none;
}

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

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

/* Form Divider */
.form-divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
  color: #b0b0b0;
  font-size: 0.9rem;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.form-divider span {
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 5px 15px;
}

/* Login Button */
.login-button {
  background: transparent;
  color: #22c55e;
  border: 2px solid #22c55e;
  border-radius: 15px;
  padding: 14px 24px;
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.login-button:hover {
  background: #22c55e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

/* Register Footer */
.register-footer {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e0e0e0;
  font-size: 0.9rem;
  background: rgba(34, 197, 94, 0.1);
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.feature-item i {
  color: #22c55e;
  font-size: 1rem;
  width: 16px;
}

.security-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b0b0b0;
  font-size: 0.85rem;
  text-align: center;
  margin: 0;
  line-height: 1.4;
}

.security-note i {
  color: #22c55e;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 15px;
  }
  
  .register-card {
    padding: 30px 25px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .logo-image {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 15px 10px;
  }
  
  .register-card {
    padding: 25px 20px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .register-button,
  .login-button {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .terms-checkbox {
    font-size: 0.85rem;
  }
  
  .security-note {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .register-card {
    padding: 20px 15px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .terms-checkbox {
    font-size: 0.8rem;
  }
}

/* Hero Section */
.hero-section {
  padding: 100px 20px 80px;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  z-index: 1;
}

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-primary::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.6s;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
}

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

.promotion-section:nth-child(odd) {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

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

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

.promotion-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.promotion-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.3;
}

.promotion-description {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.promotion-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.promotion-info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}

.promotion-highlight {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(15px);
  min-width: 200px;
}

.highlight-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

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

.highlight-amount {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 8px;
}

.highlight-label {
  color: #e0e0e0;
  font-size: 1rem;
  font-weight: 600;
}

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

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

.feature-item:hover {
  background: rgba(34, 197, 94, 0.1);
  transform: translateX(5px);
}

.feature-item i {
  color: #22c55e;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item span {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.5;
}

.promotion-cta {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-promotion {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100());
  color: #ffffff;
  padding: 18px 35px;
  border-radius: 25px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-promotion::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.6s;
}

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

.btn-promotion:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.6);
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .promotion-title {
    font-size: 2.2rem;
  }
  
  .promotion-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .promotion-info {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 15px 60px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta .btn-primary {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 60px 15px;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-description {
    font-size: 1rem;
  }
  
  .promotion-highlight {
    padding: 25px 20px;
    min-width: auto;
  }
  
  .highlight-icon {
    width: 70px;
    height: 70px;
  }
  
  .highlight-icon i {
    font-size: 1.8rem;
  }
  
  .highlight-amount {
    font-size: 1.6rem;
  }
  
  .feature-item {
    padding: 12px 15px;
  }
  
  .feature-item span {
    font-size: 0.95rem;
  }
  
  .btn-promotion {
    padding: 16px 28px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 10px 40px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta .btn-primary {
    padding: 14px 25px;
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 40px 10px;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .promotion-description {
    font-size: 0.95rem;
  }
  
  .promotion-highlight {
    padding: 20px 15px;
  }
  
  .highlight-icon {
    width: 60px;
    height: 60px;
  }
  
  .highlight-icon i {
    font-size: 1.5rem;
  }
  
  .highlight-amount {
    font-size: 1.4rem;
  }
  
  .feature-item {
    padding: 10px 12px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
  
  .btn-promotion {
    padding: 14px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .highlight-icon {
    width: 50px;
    height: 50px;
  }
  
  .highlight-icon i {
    font-size: 1.2rem;
  }
  
  .highlight-amount {
    font-size: 1.2rem;
  }
  
  .btn-promotion {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-container {
    padding: 1rem;
  }
}