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

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 177, 66, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(248, 113, 113, 0.15) 0%, transparent 50%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

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

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

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

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

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

.feature-item:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateX(8px);
}

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

.feature-item span {
  font-weight: 500;
  color: #f1f5f9;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.6);
}

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

.btn-secondary:hover {
  background: #f59e0b;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

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

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(245, 158, 11, 0.3);
}

.hero-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
  animation: pulse 2s infinite;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: rgba(245, 158, 11, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(245, 158, 11, 0.15);
}

.stat-number {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.stat-label {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  
  .feature-item {
    padding: 10px 12px;
  }
  
  .hero-badge {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

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

.main-header.scrolled {
  background: rgba(15, 15, 35, 0.98);
  box-shadow: 0 5px 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: 70px;
}

/* Logo Styles */
.header-logo {
  flex-shrink: 0;
}

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

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

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

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

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

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

.nav-item {
  position: relative;
}

.nav-link {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 0;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #f59e0b;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  transition: width 0.3s ease;
}

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

/* Header CTA Button */
.header-cta {
  flex-shrink: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

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

.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(15, 15, 35, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  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;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

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

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

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

.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  color: #f59e0b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.5);
}

.mobile-menu-close i {
  font-size: 1.2rem;
}

/* Mobile Navigation */
.mobile-nav {
  flex: 1;
  padding: 20px 0;
  overflow-y: auto;
}

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

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

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

.mobile-nav-link:hover {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.mobile-nav-link i {
  width: 24px;
  text-align: center;
  color: #f59e0b;
}

/* Mobile CTA Button */
.mobile-cta-item {
  margin-top: 20px;
  padding: 0 20px;
  border-bottom: none;
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
  transition: all 0.3s ease;
}

.mobile-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

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

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

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

@media (max-width: 480px) {
  .header-container {
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .logo-subtitle {
    font-size: 0.7rem;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-logo {
    font-size: 1.3rem;
  }
  
  .mobile-nav-link {
    padding: 18px 15px;
    font-size: 1rem;
  }
  
  .mobile-cta-item {
    padding: 0 15px;
  }
}

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

.about-platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.15) 0%, transparent 50%);
  z-index: 1;
}

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

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

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

.platform-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.platform-description p {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
}

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

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

.highlight-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateX(10px);
}

.highlight-item i {
  font-size: 2rem;
  color: #f59e0b;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

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

.highlight-content p {
  font-size: 1rem;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.5;
}

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

.platform-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(245, 158, 11, 0.3);
  transition: transform 0.3s ease;
}

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

.platform-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.overlay-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 158, 11, 0.5);
}

.overlay-item i {
  color: #f59e0b;
  font-size: 1rem;
}

.overlay-item span {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .platform-content {
    gap: 60px;
  }
  
  .platform-title {
    font-size: 2.4rem;
  }
  
  .platform-description p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .about-platform-section {
    padding: 80px 0;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .platform-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .platform-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .highlight-item {
    padding: 20px;
  }
  
  .highlight-item i {
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
  }
  
  .highlight-content h3 {
    font-size: 1.2rem;
  }
  
  .overlay-item {
    padding: 10px 14px;
  }
  
  .overlay-item span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .platform-container {
    padding: 0 15px;
  }
  
  .platform-title {
    font-size: 1.8rem;
  }
  
  .platform-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .highlight-item {
    padding: 16px;
    gap: 15px;
  }
  
  .highlight-item i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
  
  .highlight-content h3 {
    font-size: 1.1rem;
  }
  
  .highlight-content p {
    font-size: 0.9rem;
  }
  
  .platform-overlay {
    bottom: 15px;
    left: 15px;
    right: 15px;
    gap: 10px;
  }
  
  .overlay-item {
    padding: 8px 12px;
  }
}

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

.banking-system-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
  z-index: 1;
}

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

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

.banking-image {
  position: relative;
  animation: fadeInLeft 1s ease-out;
}

.banking-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(120, 119, 198, 0.3);
  transition: transform 0.3s ease;
}

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

.security-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  background: linear-gradient(135deg, #7877c6, #5b59a6);
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(120, 119, 198, 0.4);
  animation: pulse 2s infinite;
}

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

.banking-text {
  animation: fadeInRight 1s ease-out;
}

.banking-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #7877c6, #a29bfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.banking-description p {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
}

.banking-description strong {
  color: #7877c6;
  font-weight: 700;
}

.banking-features {
  margin-bottom: 40px;
}

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

.feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(120, 119, 198, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(120, 119, 198, 0.1);
  border-color: rgba(120, 119, 198, 0.4);
  transform: translateX(-10px);
}

.feature-number {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #7877c6, #5b59a6);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(120, 119, 198, 0.3);
}

.feature-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.banking-limits {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.limit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: rgba(120, 119, 198, 0.1);
  border-radius: 20px;
  border: 2px solid rgba(120, 119, 198, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.limit-item:hover {
  background: rgba(120, 119, 198, 0.15);
  border-color: rgba(120, 119, 198, 0.5);
  transform: translateY(-5px);
}

.limit-item i {
  font-size: 2rem;
  color: #7877c6;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(120, 119, 198, 0.2);
  border-radius: 50%;
}

.limit-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 5px 0;
}

.limit-content span {
  font-size: 1.3rem;
  font-weight: 700;
  color: #7877c6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .banking-content {
    gap: 60px;
  }
  
  .banking-title {
    font-size: 2.4rem;
  }
  
  .banking-description p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .banking-system-section {
    padding: 80px 0;
  }
  
  .banking-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .banking-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .banking-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .feature-card {
    padding: 18px;
    gap: 15px;
  }
  
  .feature-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .feature-content h3 {
    font-size: 1rem;
  }
  
  .banking-limits {
    flex-direction: column;
    gap: 20px;
  }
  
  .limit-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .banking-container {
    padding: 0 15px;
  }
  
  .banking-title {
    font-size: 1.8rem;
  }
  
  .banking-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .feature-card {
    padding: 15px;
    gap: 12px;
  }
  
  .feature-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .feature-content h3 {
    font-size: 0.95rem;
  }
  
  .limit-item {
    padding: 18px 20px;
    gap: 12px;
  }
  
  .limit-item i {
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
  }
  
  .limit-content h4 {
    font-size: 1rem;
  }
  
  .limit-content span {
    font-size: 1.2rem;
  }
  
  .security-badge {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

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

.lottery-games-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(248, 113, 113, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out;
}

.lottery-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f87171, #fb7185, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.lottery-description {
  animation: fadeInLeft 1s ease-out;
}

.lottery-description p {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
}

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

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

.lottery-description a:hover {
  color: #fbbf24;
  text-decoration: underline;
}

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

.lottery-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(248, 113, 113, 0.3);
  transition: transform 0.3s ease;
}

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

.lottery-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.lottery-type-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(248, 113, 113, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lottery-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(248, 113, 113, 0.1), transparent);
  transition: left 0.5s ease;
}

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

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

.lottery-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f87171, #fb7185);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(248, 113, 113, 0.3);
  transition: transform 0.3s ease;
}

.lottery-type-card:hover .lottery-icon {
  transform: scale(1.1) rotate(10deg);
}

.lottery-icon i {
  font-size: 2rem;
  color: #ffffff;
}

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

.lottery-info p {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 15px;
  line-height: 1.5;
}

.payout {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .lottery-content {
    gap: 40px;
  }
  
  .lottery-title {
    font-size: 2.4rem;
  }
  
  .lottery-types {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .lottery-description p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .lottery-games-section {
    padding: 80px 0;
  }
  
  .lottery-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .lottery-title {
    font-size: 2rem;
  }
  
  .lottery-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .lottery-types {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .lottery-type-card {
    padding: 25px;
  }
  
  .lottery-icon {
    width: 60px;
    height: 60px;
  }
  
  .lottery-icon i {
    font-size: 1.8rem;
  }
  
  .lottery-info h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .lottery-container {
    padding: 0 15px;
  }
  
  .lottery-title {
    font-size: 1.8rem;
  }
  
  .lottery-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .lottery-type-card {
    padding: 20px;
  }
  
  .lottery-icon {
    width: 55px;
    height: 55px;
  }
  
  .lottery-icon i {
    font-size: 1.6rem;
  }
  
  .lottery-info h3 {
    font-size: 1.2rem;
  }
  
  .lottery-info p {
    font-size: 0.9rem;
  }
  
  .payout {
    font-size: 0.9rem;
    padding: 6px 16px;
  }
}

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

.membership-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

.membership-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

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

.membership-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #10b981, #34d399, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.membership-description p {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
}

.membership-description strong {
  color: #10b981;
  font-weight: 700;
}

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

.membership-description a:hover {
  color: #fbbf24;
  text-decoration: underline;
}

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

.btn-register,
.btn-website {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-register {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.btn-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.6);
}

.btn-website {
  background: transparent;
  color: #10b981;
  border: 2px solid #10b981;
}

.btn-website:hover {
  background: #10b981;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.membership-features {
  animation: fadeInRight 1s ease-out;
}

.feature-highlight {
  position: relative;
  margin-bottom: 40px;
}

.membership-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(16, 185, 129, 0.3);
  transition: transform 0.3s ease;
}

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

.commission-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
  animation: bounce 2s infinite;
}

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

.membership-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.benefit-item:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateX(-10px);
}

.benefit-item i {
  font-size: 1.8rem;
  color: #10b981;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

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

.benefit-content p {
  font-size: 1rem;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .membership-content {
    gap: 60px;
  }
  
  .membership-title {
    font-size: 2.4rem;
  }
  
  .membership-description p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .membership-section {
    padding: 80px 0;
  }
  
  .membership-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .membership-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .membership-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .registration-buttons {
    justify-content: center;
  }
  
  .btn-register,
  .btn-website {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .membership-benefits {
    gap: 15px;
  }
  
  .benefit-item {
    padding: 18px;
  }
  
  .benefit-item i {
    font-size: 1.6rem;
    width: 45px;
    height: 45px;
  }
  
  .benefit-content h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .membership-container {
    padding: 0 15px;
  }
  
  .membership-title {
    font-size: 1.8rem;
  }
  
  .membership-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .registration-buttons {
    flex-direction: column;
  }
  
  .btn-register,
  .btn-website {
    width: 100%;
    justify-content: center;
  }
  
  .benefit-item {
    padding: 15px;
    gap: 15px;
  }
  
  .benefit-item i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
  
  .benefit-content h3 {
    font-size: 1rem;
  }
  
  .benefit-content p {
    font-size: 0.9rem;
  }
  
  .commission-badge {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

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

.trustworthy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out;
}

.trustworthy-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trustworthy-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}

.trustworthy-image {
  position: relative;
  animation: fadeInLeft 1s ease-out;
}

.trustworthy-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(59, 130, 246, 0.3);
  transition: transform 0.3s ease;
}

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

.trust-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
  animation: pulse 2s infinite;
}

.trustworthy-text {
  animation: fadeInRight 1s ease-out;
}

.trustworthy-description p {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
}

.trustworthy-description strong {
  color: #3b82f6;
  font-weight: 700;
}

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

.trustworthy-description a:hover {
  color: #fbbf24;
  text-decoration: underline;
}

.service-features {
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

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

.feature-list-item:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-5px);
}

.feature-list-item i {
  font-size: 1.8rem;
  color: #3b82f6;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-list-item span {
  font-size: 1.05rem;
  color: #f1f5f9;
  line-height: 1.6;
}

.feature-list-item strong {
  color: #3b82f6;
  font-weight: 700;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.trust-stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.trust-stat-item:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-10px);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
  transition: transform 0.3s ease;
}

.trust-stat-item:hover .stat-icon {
  transform: scale(1.1) rotate(10deg);
}

.stat-icon i {
  font-size: 2rem;
  color: #ffffff;
}

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

.stat-content p {
  font-size: 1rem;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.5;
}

.final-description {
  text-align: center;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.final-description p {
  font-size: 1.2rem;
  color: #e2e8f0;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.final-description strong {
  color: #3b82f6;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .trustworthy-content {
    gap: 40px;
  }
  
  .trustworthy-title {
    font-size: 2.4rem;
  }
  
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .feature-list {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .trustworthy-section {
    padding: 80px 0;
  }
  
  .trustworthy-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .trustworthy-title {
    font-size: 2rem;
  }
  
  .trustworthy-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .feature-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-list-item {
    padding: 20px;
    gap: 15px;
  }
  
  .feature-list-item i {
    font-size: 1.6rem;
    width: 45px;
    height: 45px;
  }
  
  .feature-list-item span {
    font-size: 1rem;
  }
  
  .trust-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .trust-stat-item {
    padding: 25px 15px;
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
  }
  
  .stat-icon i {
    font-size: 1.8rem;
  }
  
  .final-description p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .trustworthy-container {
    padding: 0 15px;
  }
  
  .trustworthy-title {
    font-size: 1.8rem;
  }
  
  .trustworthy-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .feature-list-item {
    padding: 18px;
    gap: 12px;
  }
  
  .feature-list-item i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
  
  .feature-list-item span {
    font-size: 0.95rem;
  }
  
  .trust-stat-item {
    padding: 20px 12px;
  }
  
  .stat-icon {
    width: 55px;
    height: 55px;
  }
  
  .stat-icon i {
    font-size: 1.6rem;
  }
  
  .stat-content h3 {
    font-size: 1.2rem;
  }
  
  .stat-content p {
    font-size: 0.9rem;
  }
  
  .final-description p {
    font-size: 1rem;
  }
  
  .trust-badge {
    padding: 12px 16px;
    font-size: 1.1rem;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  padding: 80px 0 30px;
  margin-top: 100px;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

/* Footer About Section */
.footer-about {
  animation: fadeInUp 1s ease-out;
}

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

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.footer-logo-subtitle {
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  color: #cbd5e1;
  font-weight: 500;
  margin-top: 2px;
}

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

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

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

.contact-item i {
  color: #f59e0b;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Footer Sections */
.footer-section {
  animation: fadeInUp 1s ease-out;
}

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

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  border-radius: 2px;
}

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

.footer-menu li {
  margin-bottom: 10px;
}

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #f59e0b;
  transform: translateX(5px);
}

/* Footer Features */
.footer-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.feature-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-badge:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-3px);
}

.feature-badge i {
  color: #f59e0b;
  font-size: 1.2rem;
}

.feature-badge span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out 0.6s both;
}

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

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

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.security-badge i {
  color: #10b981;
  font-size: 1rem;
}

.security-badge span {
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }
  
  .footer-info {
    grid-column: span 3;
    margin-top: 20px;
  }
  
  .footer-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 60px 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-logo-text {
    font-size: 2rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
  }
  
  .footer-features {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 25px 0;
  }
  
  .feature-badge {
    padding: 12px;
  }
  
  .feature-badge span {
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-security {
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .main-footer {
    padding: 50px 0 15px;
  }
  
  .footer-content {
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  .feature-badge {
    flex-direction: column;
    gap: 5px;
    padding: 10px;
  }
  
  .feature-badge span {
    font-size: 0.8rem;
  }
  
  .footer-copyright p {
    font-size: 0.8rem;
  }
  
  .security-badge {
    padding: 6px 12px;
  }
  
  .security-badge span {
    font-size: 0.8rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  z-index: 998;
  padding: 0;
}

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

.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.5s ease;
}

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

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

.sticky-btn span {
  font-family: 'Sarabun', sans-serif;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.sticky-btn:hover i,
.sticky-btn:hover span {
  transform: scale(1.05);
}

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

.login-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* Register Button */
.register-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.register-btn:hover {
  background: linear-gradient(135deg, #0d9488, #047857);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

/* Credit Button */
.credit-btn {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  position: relative;
}

.credit-btn:hover {
  background: linear-gradient(135deg, #d97706, #ea580c);
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

/* Add pulse animation to credit button */
.credit-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  70% {
    width: 100%;
    height: 100%;
    opacity: 0.3;
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.8rem;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 1.3rem;
    margin-bottom: 3px;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.75rem;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
  }
}

/* Ensure content doesn't get hidden behind sticky buttons */
body {
  padding-bottom: 60px;
}

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

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

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(248, 113, 113, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.login-container {
  max-width: 450px;
  width: 100%;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f97316);
  border-radius: 25px 25px 0 0;
}

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
  border: 3px solid rgba(245, 158, 11, 0.3);
  transition: transform 0.3s ease;
}

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

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

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Error Message */
.error-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  color: #ef4444;
  font-size: 0.9rem;
  margin-bottom: 20px;
  animation: shakeX 0.5s ease-out;
}

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

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

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

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

.form-label {
  display: block;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.input-wrapper {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-input::placeholder {
  color: #94a3b8;
}

.form-input:focus {
  outline: none;
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.05);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

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

.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #f59e0b;
  font-size: 1.1rem;
}

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

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

.field-error {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.field-error.show {
  display: block;
  animation: fadeInUp 0.3s ease;
}

/* Buttons */
.login-button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border: none;
  border-radius: 15px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5);
}

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

.loading-spinner {
  display: none;
}

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

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

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

.register-button:hover {
  background: #10b981;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

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

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

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

.feature-item i {
  font-size: 1.5rem;
  color: #f59e0b;
  margin-bottom: 5px;
}

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 80px 15px 15px;
  }
  
  .login-card {
    padding: 30px 25px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 14px 18px 14px 45px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 16px;
    font-size: 1rem;
  }
  
  .password-toggle {
    right: 16px;
  }
  
  .login-button {
    padding: 14px;
    font-size: 1rem;
  }
  
  .register-button {
    padding: 12px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .login-container {
    max-width: 100%;
  }
  
  .login-card {
    padding: 25px 20px;
    margin: 0 10px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 16px 12px 40px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 14px;
    font-size: 0.9rem;
  }
  
  .password-toggle {
    right: 14px;
  }
  
  .login-features {
    gap: 10px;
  }
  
  .feature-item i {
    font-size: 1.3rem;
  }
  
  .feature-item span {
    font-size: 0.75rem;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.register-container {
  max-width: 500px;
  width: 100%;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.register-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #34d399, #6ee7b7);
  border-radius: 25px 25px 0 0;
}

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  border: 3px solid rgba(16, 185, 129, 0.3);
  transition: transform 0.3s ease;
}

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

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

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Messages */
.error-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  color: #ef4444;
  font-size: 0.9rem;
  margin-bottom: 20px;
  animation: shakeX 0.5s ease-out;
}

.success-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  color: #10b981;
  font-size: 0.9rem;
  margin-bottom: 20px;
  animation: fadeIn 0.5s ease-out;
}

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

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

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

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

.form-label {
  display: block;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 10px;
  font-size: 1rem;
}

.input-wrapper {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 18px 22px 18px 55px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-input::placeholder {
  color: #94a3b8;
}

.form-input:focus {
  outline: none;
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.05);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #10b981;
  font-size: 1.2rem;
}

.field-error {
  color: #ef4444;
  font-size: 0.9rem;
  margin-top: 8px;
  display: none;
}

.field-error.show {
  display: block;
  animation: fadeInUp 0.3s ease;
}

/* Buttons */
.register-button {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #10b981, #059669);
  border: none;
  border-radius: 15px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
}

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

.loading-spinner {
  display: none;
}

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

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

.login-button {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 2px solid #f59e0b;
  border-radius: 15px;
  color: #f59e0b;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.login-button:hover {
  background: #f59e0b;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

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

/* Register Features */
.register-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 25px 0;
}

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

.feature-item:hover {
  background: rgba(16, 185, 129, 0.1);
  transform: translateY(-2px);
}

.feature-item i {
  font-size: 1.3rem;
  color: #10b981;
  width: 24px;
  text-align: center;
}

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

/* Security Notice */
.security-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  text-align: left;
}

.security-notice i {
  color: #3b82f6;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.security-notice p {
  color: #cbd5e1;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 80px 15px 15px;
  }
  
  .register-card {
    padding: 30px 25px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 16px 20px 16px 50px;
    font-size: 1rem;
  }
  
  .input-icon {
    left: 18px;
    font-size: 1.1rem;
  }
  
  .register-button {
    padding: 16px;
    font-size: 1.1rem;
  }
  
  .login-button {
    padding: 14px;
    font-size: 1rem;
  }
  
  .register-features {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .register-container {
    max-width: 100%;
  }
  
  .register-card {
    padding: 25px 20px;
    margin: 0 10px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 14px 18px 14px 45px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 16px;
    font-size: 1rem;
  }
  
  .register-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .feature-item {
    padding: 10px;
  }
  
  .feature-item i {
    font-size: 1.2rem;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
  
  .security-notice {
    padding: 12px;
  }
  
  .security-notice p {
    font-size: 0.8rem;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 30%, rgba(245, 158, 11, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(248, 113, 113, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

.hero-content {
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #f87171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #e2e8f0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.hero-cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(245, 158, 11, 0.6);
}

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

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

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

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

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
  z-index: 1;
}

.promotion-alt::before {
  background: 
    radial-gradient(circle at 20% 20%, rgba(248, 113, 113, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
}

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

.promotion-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out;
}

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

.promotion-section:nth-child(odd) .promotion-title {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promotion-section:nth-child(even) .promotion-title {
  background: linear-gradient(135deg, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promotion-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.3s both;
}

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

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

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.promotion-section:nth-child(odd) .feature-item:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.promotion-section:nth-child(even) .feature-item:hover {
  border-color: rgba(16, 185, 129, 0.3);
}

.feature-item i {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.promotion-section:nth-child(odd) .feature-item i {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.15);
}

.promotion-section:nth-child(even) .feature-item i {
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
}

.feature-item:hover i {
  transform: scale(1.1);
}

.feature-item span {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.6;
  flex: 1;
}

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

.promotion-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
  transition: all 0.3s ease;
}

.promotion-button-alt {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.promotion-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5);
}

.promotion-button-alt:hover {
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
}

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .promotion-title {
    font-size: 2.2rem;
  }
  
  .feature-item {
    padding: 20px;
  }
  
  .feature-item i {
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 120px 0 80px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta-button {
    padding: 16px 32px;
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-title {
    font-size: 1.9rem;
  }
  
  .feature-item {
    padding: 18px;
    gap: 15px;
  }
  
  .feature-item i {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
  
  .feature-item span {
    font-size: 1rem;
  }
  
  .promotion-button {
    padding: 16px 28px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-container,
  .promotion-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta-button {
    padding: 14px 28px;
    font-size: 1.1rem;
    gap: 10px;
  }
  
  .hero-cta-button i {
    font-size: 1.3rem;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .feature-item {
    padding: 15px;
    gap: 12px;
  }
  
  .feature-item i {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }
  
  .feature-item span {
    font-size: 0.95rem;
  }
  
  .promotion-button {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .promotion-button i {
    font-size: 1.2rem;
  }
}