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

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

/* Hero Text */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

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

.feature-icon {
  color: #ffc107;
  font-size: 1.2rem;
}

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

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  min-width: 180px;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(45deg, #ffc107, #ff8c00);
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
  background: linear-gradient(45deg, #ff8c00, #ffc107);
}

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

.btn-secondary:hover {
  background: #ffc107;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

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

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

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

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

.overlay-badge {
  background: linear-gradient(45deg, #ffc107, #ff8c00);
  color: #000000;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
  animation: pulse 2s infinite;
}

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

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-container {
    padding: 0 20px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 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: 280px;
  }
  
  .overlay-badge {
    position: static;
    margin-bottom: 20px;
  }
  
  .image-overlay {
    position: static;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .feature-item {
    padding: 12px;
    text-align: center;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Site Header */
.site-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d1117 100%);
  border-bottom: 2px solid rgba(255, 193, 7, 0.3);
  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;
}

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

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

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

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

.logo-domain {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-left: 2px;
}

/* Main Navigation */
.main-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 25px;
  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(45deg, #ffc107, #ff8c00);
  transition: left 0.3s ease;
  z-index: -1;
}

.nav-link:hover::before {
  left: 0;
}

.nav-link:hover {
  color: #000000;
  transform: translateY(-2px);
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  background: linear-gradient(45deg, #ffc107, #ff8c00);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: linear-gradient(45deg, #ff8c00, #ffc107);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

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

/* 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: 0;
  gap: 4px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #ffc107;
  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(6px, -6px);
}

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

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

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

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

.mobile-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffc107;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: #ffc107;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(255, 193, 7, 0.2);
  border-color: rgba(255, 193, 7, 0.5);
}

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

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

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

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

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

.mobile-nav-link:hover {
  background: rgba(255, 193, 7, 0.1);
  border-color: rgba(255, 193, 7, 0.4);
  color: #ffc107;
  transform: translateX(5px);
}

.mobile-nav-link i {
  font-size: 1.2rem;
  color: #ffc107;
}

/* Mobile CTA Button */
.mobile-cta-item {
  margin-top: 20px;
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  background: linear-gradient(45deg, #ffc107, #ff8c00);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  width: 100%;
}

.mobile-cta-button:hover {
  background: linear-gradient(45deg, #ff8c00, #ffc107);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

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

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

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

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }
  
  .logo-text,
  .logo-domain {
    font-size: 1.3rem;
  }
  
  .mobile-menu-content {
    padding: 15px;
  }
  
  .mobile-nav-menu {
    max-width: 280px;
  }
  
  .mobile-nav-link {
    padding: 12px 18px;
    font-size: 1rem;
  }
}

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

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

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

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

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

.review-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.review-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

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

.review-description p {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.review-description strong {
  color: #ffc107;
  font-weight: 600;
}

.review-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

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

.highlight-item:hover {
  background: rgba(255, 193, 7, 0.1);
  transform: translateX(5px);
}

.highlight-icon {
  color: #ffc107;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

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

.highlight-item strong {
  color: #ffc107;
  font-weight: 600;
}

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

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

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

.review-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 400px;
}

.stat-item {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
  padding: 25px 15px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 193, 7, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 140, 0, 0.2) 100%);
  border-color: rgba(255, 193, 7, 0.4);
  transform: translateY(-3px);
}

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

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 500;
}

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

@media (max-width: 768px) {
  .review-section {
    padding: 60px 0;
  }
  
  .review-container {
    padding: 0 20px;
  }
  
  .review-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  
  .review-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .review-description p {
    font-size: 0.95rem;
  }
  
  .highlight-item {
    padding: 12px 15px;
  }
  
  .review-image {
    order: -1;
  }
  
  .review-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stat-item {
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .review-section {
    padding: 40px 0;
  }
  
  .review-container {
    padding: 0 15px;
  }
  
  .review-title {
    font-size: 1.6rem;
  }
  
  .review-description p {
    font-size: 0.9rem;
  }
  
  .highlight-item {
    padding: 10px 12px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .highlight-icon {
    align-self: center;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

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

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

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

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

/* Login Image */
.login-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

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

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

.login-features {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(45deg, #ffc107, #ff8c00);
  color: #000000;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
  transition: all 0.3s ease;
}

.feature-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 193, 7, 0.4);
}

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

/* Login Text */
.login-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

.login-description {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.login-description p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.7;
  text-align: justify;
}

.login-description strong {
  color: #ffc107;
  font-weight: 600;
}

.login-description a {
  color: #ffc107;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.login-description a:hover {
  border-bottom-color: #ffc107;
}

/* Login Steps */
.login-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 193, 7, 0.2);
  transition: all 0.3s ease;
}

.step-item:hover {
  background: rgba(255, 193, 7, 0.08);
  border-color: rgba(255, 193, 7, 0.3);
  transform: translateX(5px);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ffc107, #ff8c00);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

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

.step-content p {
  color: #cccccc;
  font-size: 0.95rem;
  margin: 0;
}

/* Login Buttons */
.login-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.login-buttons .btn {
  flex: 1;
  min-width: 180px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .login-container {
    padding: 0 30px;
  }
  
  .login-content {
    gap: 50px;
  }
  
  .login-title {
    font-size: 1.9rem;
  }
  
  .login-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .login-section {
    padding: 60px 0;
  }
  
  .login-container {
    padding: 0 20px;
  }
  
  .login-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .login-title {
    font-size: 1.7rem;
    text-align: center;
  }
  
  .login-description p {
    font-size: 0.95rem;
  }
  
  .login-image {
    order: -1;
  }
  
  .login-features {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-badge {
    justify-content: center;
    width: 200px;
  }
  
  .login-buttons {
    justify-content: center;
  }
  
  .login-buttons .btn {
    flex: none;
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 40px 0;
  }
  
  .login-container {
    padding: 0 15px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .login-description p {
    font-size: 0.9rem;
    text-align: left;
  }
  
  .step-item {
    padding: 15px;
    gap: 15px;
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .feature-badge {
    width: 100%;
    max-width: 250px;
  }
  
  .login-buttons .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Popularity Section */
.popularity-section {
  background: linear-gradient(135deg, #0d1117 0%, #1a1a1a 50%, #0d1117 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

.popularity-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

/* Popularity Text */
.popularity-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.popularity-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

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

.popularity-description p {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.popularity-description strong {
  color: #ffc107;
  font-weight: 600;
}

.popularity-description a {
  color: #ffc107;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.popularity-description a:hover {
  border-bottom-color: #ffc107;
}

/* Popularity List */
.popularity-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
}

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

.list-item:hover {
  background: rgba(255, 193, 7, 0.1);
  transform: translateX(5px);
  border-left-width: 6px;
}

.list-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ffc107, #ff8c00);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.list-item span {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
}

.list-item strong {
  color: #ffc107;
  font-weight: 600;
}

/* Popularity Conclusion */
.popularity-conclusion {
  margin-top: 30px;
  padding: 25px;
  background: rgba(255, 193, 7, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.popularity-conclusion p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}

.popularity-conclusion strong {
  color: #ffc107;
  font-weight: 600;
}

/* Popularity Image */
.popularity-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

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

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

/* Popularity Achievements */
.popularity-achievements {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 400px;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
  border-radius: 15px;
  border: 1px solid rgba(255, 193, 7, 0.2);
  transition: all 0.3s ease;
}

.achievement-item:hover {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 140, 0, 0.2) 100%);
  border-color: rgba(255, 193, 7, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2);
}

.achievement-icon {
  font-size: 2rem;
  color: #ffc107;
  flex-shrink: 0;
}

.achievement-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.achievement-number {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffc107;
}

.achievement-label {
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .popularity-container {
    padding: 0 30px;
  }
  
  .popularity-content {
    gap: 50px;
  }
  
  .popularity-title {
    font-size: 2rem;
  }
  
  .popularity-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .popularity-section {
    padding: 60px 0;
  }
  
  .popularity-container {
    padding: 0 20px;
  }
  
  .popularity-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .popularity-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .popularity-description p {
    font-size: 0.95rem;
  }
  
  .list-item {
    padding: 15px;
    gap: 15px;
  }
  
  .list-number {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  
  .list-item span {
    font-size: 0.95rem;
  }
  
  .popularity-image {
    order: -1;
  }
  
  .popularity-achievements {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .achievement-item {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .popularity-section {
    padding: 40px 0;
  }
  
  .popularity-container {
    padding: 0 15px;
  }
  
  .popularity-title {
    font-size: 1.6rem;
  }
  
  .popularity-description p {
    font-size: 0.9rem;
    text-align: left;
  }
  
  .list-item {
    padding: 12px 15px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .list-number {
    width: 25px;
    height: 25px;
    font-size: 0.9rem;
  }
  
  .popularity-conclusion {
    padding: 20px 15px;
  }
  
  .popularity-conclusion p {
    font-size: 0.9rem;
    text-align: left;
  }
  
  .popularity-achievements {
    flex-direction: column;
  }
  
  .achievement-item {
    max-width: 100%;
    padding: 15px;
  }
  
  .achievement-icon {
    font-size: 1.5rem;
  }
  
  .achievement-number {
    font-size: 1.2rem;
  }
}

/* Pros and Cons Section */
.pros-cons-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d1117 50%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pros-cons-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 193, 7, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

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

/* Header */
.pros-cons-header {
  text-align: center;
  margin-bottom: 50px;
}

.pros-cons-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

.pros-cons-intro {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.pros-cons-intro strong {
  color: #ffc107;
  font-weight: 600;
}

/* Main Content */
.pros-cons-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: flex-start;
}

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

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

.pros-cons-description p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.pros-cons-description strong {
  color: #ffc107;
  font-weight: 600;
}

.pros-cons-description a {
  color: #ffc107;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.pros-cons-description a:hover {
  border-bottom-color: #ffc107;
}

/* Benefits List */
.pros-cons-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 20px;
  background: rgba(46, 125, 50, 0.1);
  border-radius: 10px;
  border-left: 4px solid #4caf50;
  transition: all 0.3s ease;
}

.benefit-item.disadvantage {
  background: rgba(244, 67, 54, 0.1);
  border-left-color: #f44336;
}

.benefit-item:hover {
  background: rgba(46, 125, 50, 0.15);
  transform: translateX(5px);
}

.benefit-item.disadvantage:hover {
  background: rgba(244, 67, 54, 0.15);
}

.benefit-icon {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.benefit-item.disadvantage .benefit-icon {
  color: #f44336;
}

.benefit-item span {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
}

.benefit-item strong {
  color: #ffc107;
  font-weight: 600;
}

/* Testimonial */
.pros-cons-testimonial {
  background: rgba(255, 193, 7, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.pros-cons-testimonial p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 15px;
}

.pros-cons-testimonial p:last-child {
  margin-bottom: 0;
}

.pros-cons-testimonial strong {
  color: #ffc107;
  font-weight: 600;
}

/* Image Section */
.pros-cons-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.pros-cons-img {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

/* Comparison Stats */
.comparison-stats {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 400px;
}

.stat-positive,
.stat-negative {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-positive {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(46, 125, 50, 0.1) 100%);
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.stat-negative {
  background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(211, 47, 47, 0.1) 100%);
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.stat-positive:hover {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(46, 125, 50, 0.2) 100%);
  border-color: rgba(76, 175, 80, 0.5);
  transform: translateY(-3px);
}

.stat-negative:hover {
  background: linear-gradient(135deg, rgba(244, 67, 54, 0.2) 0%, rgba(211, 47, 47, 0.2) 100%);
  border-color: rgba(244, 67, 54, 0.5);
  transform: translateY(-3px);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-positive .stat-icon {
  background: linear-gradient(45deg, #4caf50, #2e7d32);
  color: #ffffff;
}

.stat-negative .stat-icon {
  background: linear-gradient(45deg, #f44336, #d32f2f);
  color: #ffffff;
}

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

.stat-title {
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 500;
}

.stat-value {
  font-family: 'Prompt', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.stat-positive .stat-value {
  color: #4caf50;
}

.stat-negative .stat-value {
  color: #f44336;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pros-cons-container {
    padding: 0 30px;
  }
  
  .pros-cons-main {
    gap: 40px;
  }
  
  .pros-cons-title {
    font-size: 2rem;
  }
  
  .pros-cons-intro {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .pros-cons-section {
    padding: 60px 0;
  }
  
  .pros-cons-container {
    padding: 0 20px;
  }
  
  .pros-cons-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pros-cons-title {
    font-size: 1.8rem;
  }
  
  .pros-cons-intro {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .pros-cons-description p {
    font-size: 1rem;
  }
  
  .benefit-item {
    padding: 15px 18px;
  }
  
  .pros-cons-image {
    order: -1;
  }
  
  .comparison-stats {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .pros-cons-section {
    padding: 40px 0;
  }
  
  .pros-cons-container {
    padding: 0 15px;
  }
  
  .pros-cons-title {
    font-size: 1.6rem;
  }
  
  .pros-cons-intro {
    font-size: 0.9rem;
  }
  
  .pros-cons-description p {
    font-size: 0.95rem;
  }
  
  .benefit-item {
    padding: 12px 15px;
    gap: 12px;
  }
  
  .benefit-item span {
    font-size: 0.9rem;
  }
  
  .pros-cons-testimonial {
    padding: 20px 15px;
  }
  
  .pros-cons-testimonial p {
    font-size: 0.9rem;
  }
  
  .stat-positive,
  .stat-negative {
    padding: 15px;
    gap: 12px;
  }
  
  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .stat-value {
    font-size: 1.4rem;
  }
}

/* User Experience Section */
.experience-section {
  background: linear-gradient(135deg, #0d1117 0%, #1a1a1a 50%, #0d1117 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.experience-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

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

/* Header */
.experience-header {
  text-align: center;
  margin-bottom: 50px;
}

.experience-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

.experience-intro {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.experience-intro strong {
  color: #ffc107;
  font-weight: 600;
}

/* Main Content */
.experience-main {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: flex-start;
}

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

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

.experience-description p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.experience-description strong {
  color: #ffc107;
  font-weight: 600;
}

.experience-description a {
  color: #ffc107;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.experience-description a:hover {
  border-bottom-color: #ffc107;
}

/* Testimonials */
.experience-testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.testimonial-item:hover {
  background: rgba(255, 193, 7, 0.08);
  transform: translateX(5px);
  border-left-width: 6px;
}

.testimonial-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ffc107, #ff8c00);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

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

/* Conclusion */
.experience-conclusion {
  background: rgba(255, 193, 7, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.experience-conclusion p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}

.experience-conclusion strong {
  color: #ffc107;
  font-weight: 600;
}

/* Image Section */
.experience-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

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

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

/* Statistics */
.experience-statistics {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 400px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 193, 7, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 140, 0, 0.2) 100%);
  border-color: rgba(255, 193, 7, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ffc107, #ff8c00);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

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

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

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .experience-container {
    padding: 0 30px;
  }
  
  .experience-main {
    gap: 40px;
  }
  
  .experience-title {
    font-size: 2rem;
  }
  
  .experience-intro {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .experience-section {
    padding: 60px 0;
  }
  
  .experience-container {
    padding: 0 20px;
  }
  
  .experience-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .experience-title {
    font-size: 1.8rem;
  }
  
  .experience-intro {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .experience-description p {
    font-size: 1rem;
  }
  
  .testimonial-item {
    padding: 15px 18px;
    gap: 15px;
  }
  
  .testimonial-number {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  
  .experience-image {
    order: -1;
  }
  
  .experience-statistics {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .stat-card {
    flex: 1;
    min-width: 120px;
    max-width: 150px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .experience-section {
    padding: 40px 0;
  }
  
  .experience-container {
    padding: 0 15px;
  }
  
  .experience-title {
    font-size: 1.6rem;
  }
  
  .experience-intro {
    font-size: 0.9rem;
  }
  
  .experience-description p {
    font-size: 0.95rem;
  }
  
  .testimonial-item {
    padding: 12px 15px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .testimonial-number {
    width: 25px;
    height: 25px;
    font-size: 0.9rem;
    align-self: center;
  }
  
  .experience-conclusion {
    padding: 20px 15px;
  }
  
  .experience-conclusion p {
    font-size: 0.9rem;
    text-align: left;
  }
  
  .experience-statistics {
    flex-direction: column;
  }
  
  .stat-card {
    max-width: 100%;
    padding: 12px 15px;
  }
  
  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .stat-number {
    font-size: 1.2rem;
  }
}

/* Site Footer */
.site-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  border-top: 2px solid rgba(255, 193, 7, 0.3);
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

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

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

.footer-content {
  padding: 50px 0 30px;
}

/* Footer Main */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin-bottom: 40px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

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

.footer-logo-domain {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-left: 2px;
}

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

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

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

.contact-icon {
  color: #ffc107;
  font-size: 1rem;
  width: 16px;
}

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

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

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

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

.footer-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: #ffc107;
  transition: width 0.3s ease;
}

.footer-link:hover::before {
  width: 10px;
}

.footer-link:hover {
  color: #ffc107;
  padding-left: 20px;
}

/* Footer Features */
.footer-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 193, 7, 0.2);
}

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

.feature-card:hover {
  background: rgba(255, 193, 7, 0.05);
  border-color: rgba(255, 193, 7, 0.3);
  transform: translateY(-2px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(255, 193, 7, 0.2), rgba(255, 140, 0, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.3rem;
  color: #ffc107;
}

.feature-content h5 {
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 2px 0;
}

.feature-content p {
  font-size: 0.8rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 193, 7, 0.2);
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

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

.footer-disclaimer {
  background: rgba(255, 193, 7, 0.05);
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

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

.disclaimer-icon {
  color: #ff6b35;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 30px;
  }
  
  .footer-main {
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .footer-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 20px;
  }
  
  .footer-content {
    padding: 40px 0 25px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-logo-text,
  .footer-logo-domain {
    font-size: 1.8rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-icon i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    padding: 30px 0 20px;
  }
  
  .footer-logo-text,
  .footer-logo-domain {
    font-size: 1.5rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-column {
    text-align: left;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .disclaimer-text {
    font-size: 0.8rem;
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
  
  .footer-disclaimer {
    padding: 12px 15px;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d1117 100%);
  border-top: 1px solid rgba(255, 193, 7, 0.3);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 0;
  margin: 0;
}

.sticky-button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 193, 7, 0.2);
  min-height: 60px;
}

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

.sticky-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(255, 193, 7, 0.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.sticky-button:hover::before,
.sticky-button:active::before {
  transform: translateX(0);
}

/* Login Button */
.sticky-login {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(21, 101, 192, 0.1) 100%);
}

.sticky-login .sticky-icon {
  color: #2196f3;
}

.sticky-login .sticky-text {
  color: #ffffff;
}

.sticky-login:hover,
.sticky-login:active {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.2) 0%, rgba(21, 101, 192, 0.2) 100%);
  transform: translateY(-2px);
}

.sticky-login:hover .sticky-icon,
.sticky-login:active .sticky-icon {
  color: #64b5f6;
  transform: scale(1.1);
}

/* Register Button */
.sticky-register {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(46, 125, 50, 0.1) 100%);
}

.sticky-register .sticky-icon {
  color: #4caf50;
}

.sticky-register .sticky-text {
  color: #ffffff;
}

.sticky-register:hover,
.sticky-register:active {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(46, 125, 50, 0.2) 100%);
  transform: translateY(-2px);
}

.sticky-register:hover .sticky-icon,
.sticky-register:active .sticky-icon {
  color: #81c784;
  transform: scale(1.1);
}

/* Credit Button */
.sticky-credit {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
}

.sticky-credit .sticky-icon {
  color: #ffc107;
  animation: pulse-gift 2s infinite;
}

.sticky-credit .sticky-text {
  color: #ffffff;
  font-weight: 600;
}

.sticky-credit:hover,
.sticky-credit:active {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 140, 0, 0.2) 100%);
  transform: translateY(-2px);
}

.sticky-credit:hover .sticky-icon,
.sticky-credit:active .sticky-icon {
  color: #ffeb3b;
  transform: scale(1.1);
  animation: pulse-gift-hover 1s infinite;
}

/* Icon and Text Styles */
.sticky-icon {
  font-size: 1.2rem;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.sticky-text {
  font-family: 'Prompt', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  line-height: 1.2;
}

/* Animations */
@keyframes pulse-gift {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulse-gift-hover {
  0% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-button {
    padding: 10px 6px;
    min-height: 55px;
  }
  
  .sticky-icon {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }
  
  .sticky-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-button {
    padding: 8px 4px;
    min-height: 50px;
  }
  
  .sticky-icon {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .sticky-text {
    font-size: 0.7rem;
    line-height: 1.1;
  }
}

@media (max-width: 360px) {
  .sticky-button {
    padding: 6px 2px;
    min-height: 45px;
  }
  
  .sticky-icon {
    font-size: 0.9rem;
  }
  
  .sticky-text {
    font-size: 0.65rem;
  }
}

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

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

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

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

/* Active/Touch States for Mobile */
@media (max-width: 768px) {
  .sticky-button:active {
    background: rgba(255, 193, 7, 0.3) !important;
  }
  
  .sticky-button:active .sticky-icon {
    transform: scale(0.95);
  }
  
  .sticky-button:active .sticky-text {
    transform: scale(0.95);
  }
}

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

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

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

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

/* Login Card */
.login-card {
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 20px;
  padding: 40px;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  position: relative;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #ffc107, #ff8c00);
  border-radius: 20px 20px 0 0;
}

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

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

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

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

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 8px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

/* Login Form */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Error Container */
.error-container {
  display: none;
  margin-bottom: 10px;
}

.error-container.show {
  display: block;
}

.error-message {
  background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(211, 47, 47, 0.1) 100%);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 8px;
  padding: 12px 15px;
  color: #f44336;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.error-message::before {
  content: '';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #f44336;
}

/* Form Groups */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.label-icon {
  color: #ffc107;
  font-size: 1rem;
}

/* Form Inputs */
.form-input {
  padding: 12px 15px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: #999999;
  font-size: 0.95rem;
}

.form-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffc107;
  box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.2);
}

.form-input:invalid {
  border-color: rgba(244, 67, 54, 0.5);
}

.form-input:invalid:focus {
  box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.2);
}

/* Password Wrapper */
.password-wrapper {
  position: relative;
}

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

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

/* Field Errors */
.field-error {
  font-size: 0.85rem;
  color: #f44336;
  display: none;
  margin-top: 4px;
}

.field-error.show {
  display: block;
}

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

/* Buttons */
.primary-btn,
.secondary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 25px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.primary-btn {
  background: linear-gradient(45deg, #ffc107, #ff8c00);
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.primary-btn:hover {
  background: linear-gradient(45deg, #ff8c00, #ffc107);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

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

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

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

/* Button Icons */
.btn-icon {
  font-size: 1.1rem;
}

/* Button Loader */
.btn-loader {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn-loader.show {
  display: block;
}

.btn-loader.show ~ .btn-icon,
.btn-loader.show ~ .btn-text {
  opacity: 0;
}

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

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

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

.feature-icon {
  color: #ffc107;
  font-size: 1.2rem;
}

.feature-item span {
  font-size: 0.8rem;
  color: #cccccc;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-container {
    padding: 0 20px;
  }
  
  .login-card {
    padding: 30px 25px;
    margin: 10px 0;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .login-features {
    flex-direction: column;
    gap: 12px;
  }
  
  .feature-item {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 0 15px;
  }
  
  .login-card {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .form-input {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  
  .primary-btn,
  .secondary-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .feature-item span {
    font-size: 0.75rem;
  }
}

/* Focus and Accessibility */
.form-input:focus,
.primary-btn:focus,
.secondary-btn:focus,
.password-toggle:focus {
  outline: 2px solid #ffc107;
  outline-offset: 2px;
}

/* Animation for smooth transitions */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-card {
  animation: fadeIn 0.5s ease-out;
}

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

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

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

.register-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

/* Register Card */
.register-card {
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 20px;
  padding: 40px;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  position: relative;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #ffc107, #ff8c00);
  border-radius: 20px 20px 0 0;
}

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

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

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

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

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 8px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

/* Register Form */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Error Container */
.error-container,
.success-container {
  display: none;
  margin-bottom: 10px;
}

.error-container.show,
.success-container.show {
  display: block;
}

.error-message {
  background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(211, 47, 47, 0.1) 100%);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 8px;
  padding: 12px 15px;
  color: #f44336;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.error-message::before {
  content: '\f071';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #f44336;
}

.success-message {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(46, 125, 50, 0.1) 100%);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 8px;
  padding: 12px 15px;
  color: #4caf50;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.success-message::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #4caf50;
}

/* Form Groups */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.label-icon {
  color: #ffc107;
  font-size: 1rem;
}

/* Form Inputs */
.form-input {
  padding: 12px 15px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: #999999;
  font-size: 0.95rem;
}

.form-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffc107;
  box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.2);
}

.form-input:invalid {
  border-color: rgba(244, 67, 54, 0.5);
}

.form-input:invalid:focus {
  box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.2);
}

/* Field Errors */
.field-error {
  font-size: 0.85rem;
  color: #f44336;
  display: none;
  margin-top: 4px;
}

.field-error.show {
  display: block;
}

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

/* Buttons */
.primary-btn,
.secondary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 25px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.primary-btn {
  background: linear-gradient(45deg, #ffc107, #ff8c00);
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.primary-btn:hover {
  background: linear-gradient(45deg, #ff8c00, #ffc107);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

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

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

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

/* Button Icons */
.btn-icon {
  font-size: 1.1rem;
}

/* Button Loader */
.btn-loader {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn-loader.show {
  display: block;
}

.btn-loader.show ~ .btn-icon,
.btn-loader.show ~ .btn-text {
  opacity: 0;
}

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

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

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

.feature-icon {
  color: #ffc107;
  font-size: 1.2rem;
}

.feature-item span {
  font-size: 0.8rem;
  color: #cccccc;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-container {
    padding: 0 20px;
  }
  
  .register-card {
    padding: 30px 25px;
    margin: 10px 0;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .register-features {
    flex-direction: column;
    gap: 12px;
  }
  
  .feature-item {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .register-container {
    padding: 0 15px;
  }
  
  .register-card {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .form-input {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  
  .primary-btn,
  .secondary-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .feature-item span {
    font-size: 0.75rem;
  }
}

/* Focus and Accessibility */
.form-input:focus,
.primary-btn:focus,
.secondary-btn:focus {
  outline: 2px solid #ffc107;
  outline-offset: 2px;
}

/* Animation for smooth transitions */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.register-card {
  animation: fadeIn 0.5s ease-out;
}

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

.promo-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255, 193, 7, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

.promo-hero-subtitle {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.highlight-item:hover {
  background: rgba(255, 193, 7, 0.2);
  border-color: rgba(255, 193, 7, 0.5);
  transform: translateY(-3px);
}

.highlight-icon {
  color: #ffc107;
  font-size: 1.3rem;
}

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

/* Promo Sections */
.promo-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d1117 100%);
  position: relative;
  overflow: hidden;
}

.promo-section.promo-alternate {
  background: linear-gradient(135deg, #0d1117 0%, #1a1a1a 100%);
}

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

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

.promo-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

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

.promo-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffc107;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
  margin: 0;
}

.promo-details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.promo-list {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.promo-item:hover {
  padding-left: 10px;
}

.promo-icon {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.promo-icon.info-icon {
  color: #2196f3;
}

.promo-icon.star-icon {
  color: #ffc107;
}

.promo-icon.birthday-icon {
  color: #e91e63;
}

.promo-icon.heart-icon {
  color: #f44336;
}

.promo-icon.users-icon {
  color: #9c27b0;
}

.promo-icon.infinity-icon {
  color: #ff5722;
}

.promo-icon.trophy-icon {
  color: #ffc107;
}

.promo-item span {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.6;
}

.promo-cta {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 193, 7, 0.2);
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  background: linear-gradient(45deg, #ffc107, #ff8c00);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

.promo-btn:hover {
  background: linear-gradient(45deg, #ff8c00, #ffc107);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

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

/* Promo Summary Section */
.promo-summary-section {
  background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
  padding: 60px 0;
  position: relative;
}

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

.promo-summary-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.summary-text {
  margin-bottom: 30px;
}

.summary-text p {
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.8;
  font-weight: 500;
  margin: 0;
}

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

.summary-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(45deg, #000000, #333333);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.summary-btn:hover {
  background: linear-gradient(45deg, #333333, #000000);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .promo-hero-container,
  .promo-container,
  .promo-summary-container {
    padding: 0 30px;
  }
  
  .promo-hero-title {
    font-size: 2.2rem;
  }
  
  .promo-title {
    font-size: 2rem;
  }
  
  .promo-hero-highlights {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .promo-hero-section {
    padding: 80px 0 60px;
  }
  
  .promo-section {
    padding: 60px 0;
  }
  
  .promo-hero-container,
  .promo-container,
  .promo-summary-container {
    padding: 0 20px;
  }
  
  .promo-hero-title {
    font-size: 2rem;
  }
  
  .promo-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .promo-title {
    font-size: 1.8rem;
  }
  
  .promo-details {
    padding: 30px 25px;
  }
  
  .promo-hero-highlights {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .highlight-item {
    padding: 12px 20px;
  }
  
  .promo-item {
    padding: 12px 0;
  }
  
  .promo-item span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .promo-hero-section {
    padding: 60px 0 40px;
  }
  
  .promo-section {
    padding: 40px 0;
  }
  
  .promo-hero-container,
  .promo-container,
  .promo-summary-container {
    padding: 0 15px;
  }
  
  .promo-hero-title {
    font-size: 1.8rem;
  }
  
  .promo-hero-subtitle {
    font-size: 1rem;
  }
  
  .promo-title {
    font-size: 1.6rem;
  }
  
  .promo-details {
    padding: 25px 20px;
  }
  
  .promo-item {
    padding: 10px 0;
    gap: 12px;
  }
  
  .promo-item span {
    font-size: 0.95rem;
  }
  
  .highlight-item {
    padding: 10px 18px;
    gap: 10px;
  }
  
  .highlight-item span {
    font-size: 0.9rem;
  }
  
  .promo-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .summary-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  .summary-text p {
    font-size: 1rem;
  }
  
  .promo-summary-section {
    padding: 40px 0;
  }
}