/* 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;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  justify-content: center;
  min-width: 160px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e55a2b 0%, #e8821a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.btn-secondary:hover {
  background: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

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

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

.feature-item i {
  color: #ff6b35;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.feature-item span {
  font-size: 14px;
  font-weight: 500;
}

.hero-image {
  position: relative;
  animation: slideInRight 0.8s ease-out;
}

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

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

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  animation: pulse 2s infinite;
}

.hero-badge i {
  font-size: 16px;
}

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

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

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .hero-section {
    padding: 60px 20px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    margin-bottom: 40px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 40px 15px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    padding: 16px 24px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-item {
    justify-content: center;
    padding: 14px 20px;
  }
  
  .hero-badge {
    top: 15px;
    right: 15px;
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 30px 10px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .btn {
    font-size: 14px;
    padding: 14px 20px;
  }
  
  .feature-item {
    padding: 12px 16px;
  }
  
  .feature-item span {
    font-size: 13px;
  }
}

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

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

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

.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, #ff6b35, #f7931e);
  -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.75rem;
  color: #b8b8b8;
  margin-top: 2px;
  text-align: center;
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-item {
  position: relative;
}

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

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

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

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

.header-cta {
  display: flex;
  align-items: center;
}

.cta-btn {
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  min-width: auto;
  white-space: nowrap;
}

.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;
  position: relative;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-line:nth-child(1) {
  margin-bottom: 4px;
}

.hamburger-line:nth-child(2) {
  margin-bottom: 4px;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

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

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

.mobile-logo .logo-text {
  font-size: 1.5rem;
}

.mobile-logo .logo-subtitle {
  font-size: 0.7rem;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  color: #ff6b35;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.mobile-nav {
  padding: 20px 0;
}

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

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

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

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

.mobile-nav-link:hover {
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  padding-left: 32px;
}

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

.mobile-cta {
  margin-top: 20px;
}

.mobile-cta .mobile-nav-link {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  font-weight: 600;
  border-radius: 8px;
  margin: 0 20px;
}

.mobile-cta .mobile-nav-link:hover {
  background: linear-gradient(135deg, #e55a2b, #e8821a);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  padding-left: 24px;
}

.mobile-cta .mobile-nav-link i {
  color: #ffffff;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 20px;
  }
  
  .nav-list {
    gap: 24px;
  }
  
  .nav-link {
    font-size: 0.95rem;
  }
  
  .cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-container {
    height: 70px;
    padding: 0 15px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .logo-subtitle {
    font-size: 0.7rem;
  }
  
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 65px;
    padding: 0 10px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-subtitle {
    font-size: 0.65rem;
  }
  
  .mobile-menu {
    width: 260px;
  }
  
  .mobile-menu-header {
    padding: 16px;
  }
  
  .mobile-nav-link {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  
  .mobile-nav-link:hover {
    padding-left: 28px;
  }
  
  .mobile-cta .mobile-nav-link {
    margin: 0 16px;
  }

  .mobile-cta .mobile-nav-link:hover {
    padding-left: 20px;
  }
}

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

.about-platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

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

.about-text {
  animation: fadeInUp 0.8s ease-out;
}

.about-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.about-description p:last-child {
  margin-bottom: 0;
}

.about-description strong {
  color: #ff6b35;
  font-weight: 600;
}

.about-description a {
  color: #f7931e;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.about-description a:hover {
  color: #ff6b35;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.highlight-item i {
  color: #ff6b35;
  font-size: 20px;
  width: 24px;
  text-align: center;
}

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

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

.about-cta {
  display: flex;
  gap: 20px;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image-wrapper:hover .about-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: #ffffff;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.about-image-wrapper:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 16px;
}

.overlay-content h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.overlay-content p {
  font-size: 1rem;
  opacity: 0.9;
}

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

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

.stat-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.stat-item i {
  color: #ff6b35;
  font-size: 24px;
  width: 32px;
  text-align: center;
}

.stat-content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.stat-content span {
  font-size: 0.9rem;
  color: #b8b8b8;
}

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .about-platform-section {
    padding: 80px 20px;
  }
  
  .about-content {
    gap: 60px;
  }
  
  .about-title {
    font-size: 2.4rem;
  }
  
  .about-description p {
    font-size: 1rem;
  }
  
  .about-highlights {
    padding: 24px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-platform-section {
    padding: 60px 15px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 24px;
  }
  
  .about-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .about-highlights {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .highlight-item {
    padding: 10px 0;
  }
  
  .highlight-item i {
    font-size: 18px;
    width: 20px;
  }
  
  .highlight-item span {
    font-size: 0.9rem;
  }
  
  .about-cta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .about-cta .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-item {
    padding: 20px;
  }
  
  .stat-item i {
    font-size: 20px;
    width: 28px;
  }
  
  .stat-content h4 {
    font-size: 1.5rem;
  }
  
  .overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }
  
  .overlay-content h3 {
    font-size: 1.5rem;
  }
  
  .overlay-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-platform-section {
    padding: 40px 10px;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .about-description p {
    font-size: 0.9rem;
  }
  
  .about-highlights {
    padding: 16px;
  }
  
  .highlight-item span {
    font-size: 0.85rem;
  }
  
  .stat-item {
    padding: 16px;
    gap: 12px;
  }
  
  .stat-content h4 {
    font-size: 1.3rem;
  }
  
  .stat-content span {
    font-size: 0.8rem;
  }
}

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

.login-guide-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 30% 60%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
                    radial-gradient(circle at 70% 30%, rgba(247, 147, 30, 0.06) 0%, transparent 50%);
  z-index: 1;
}

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

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

.login-header {
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease-out;
}

.login-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-subtitle {
  font-size: 1.15rem;
  color: #b8b8b8;
  line-height: 1.6;
}

.login-subtitle strong {
  color: #ff6b35;
  font-weight: 600;
}

.login-steps {
  margin-bottom: 50px;
}

.step-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  animation: fadeInLeft 0.8s ease-out;
}

.step-item:nth-child(2) {
  animation-delay: 0.1s;
}

.step-item:nth-child(3) {
  animation-delay: 0.2s;
}

.step-item:nth-child(4) {
  animation-delay: 0.3s;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.step-icon i {
  color: #ffffff;
  font-size: 24px;
}

.step-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

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

.step-content strong {
  color: #ff6b35;
  font-weight: 600;
}

.login-link {
  color: #f7931e;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.login-link:hover {
  color: #ff6b35;
}

.login-features {
  margin-bottom: 50px;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.feature-card:nth-child(2) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.3s;
}

.feature-card:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature-icon i {
  color: #ffffff;
  font-size: 20px;
}

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

.feature-card p {
  font-size: 0.95rem;
  color: #b8b8b8;
  line-height: 1.6;
}

.feature-card strong {
  color: #ff6b35;
  font-weight: 600;
}

.login-info {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  padding: 30px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.info-text p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 30px;
}

.info-text strong {
  color: #ff6b35;
  font-weight: 600;
}

.login-cta {
  display: flex;
  gap: 20px;
}

.login-visual {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fadeInRight 0.8s ease-out;
}

.visual-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.login-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.visual-wrapper:hover .login-img {
  transform: scale(1.05);
}

.visual-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
}

.overlay-badge {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  animation: pulse 2s infinite;
}

.overlay-badge i {
  font-size: 16px;
}

.browser-recommendation {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(66, 133, 244, 0.3);
  border-radius: 16px;
  padding: 24px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

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

.recommend-header i {
  color: #4285f4;
  font-size: 24px;
}

.recommend-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

.browser-recommendation > p {
  font-size: 0.95rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.recommend-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-item i {
  color: #4caf50;
  font-size: 14px;
  width: 16px;
}

.benefit-item span {
  font-size: 0.9rem;
  color: #e0e0e0;
}

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

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .login-guide-section {
    padding: 80px 20px;
  }
  
  .login-content {
    gap: 60px;
  }
  
  .login-title {
    font-size: 2.2rem;
  }
  
  .login-subtitle {
    font-size: 1.05rem;
  }
  
  .step-item {
    gap: 20px;
    margin-bottom: 35px;
  }
  
  .step-icon {
    width: 55px;
    height: 55px;
  }
  
  .step-icon i {
    font-size: 22px;
  }
  
  .feature-grid {
    gap: 20px;
  }
  
  .feature-card {
    padding: 20px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .login-guide-section {
    padding: 60px 15px;
  }
  
  .login-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .login-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .login-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  
  .login-subtitle {
    font-size: 1rem;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    margin-bottom: 30px;
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }
  
  .step-icon i {
    font-size: 20px;
  }
  
  .step-content h3 {
    font-size: 1.2rem;
  }
  
  .step-content p {
    font-size: 0.95rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-card {
    padding: 18px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 14px;
  }
  
  .feature-icon i {
    font-size: 18px;
  }
  
  .feature-card h4 {
    font-size: 1.1rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
  
  .login-info {
    padding: 24px;
  }
  
  .info-text {
    margin-bottom: 24px;
  }
  
  .login-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .login-cta .btn {
    width: 100%;
  }
  
  .browser-recommendation {
    padding: 20px;
  }
  
  .recommend-header i {
    font-size: 22px;
  }
  
  .recommend-header h3 {
    font-size: 1.2rem;
  }
  
  .overlay-badge {
    top: 15px;
    right: 15px;
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .login-guide-section {
    padding: 40px 10px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .step-item {
    margin-bottom: 25px;
  }
  
  .step-content h3 {
    font-size: 1.1rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .feature-card {
    padding: 16px;
  }
  
  .feature-card p {
    font-size: 0.85rem;
  }
  
  .login-info {
    padding: 20px;
  }
  
  .info-text p {
    font-size: 0.9rem;
  }
  
  .browser-recommendation {
    padding: 18px;
  }
  
  .browser-recommendation > p {
    font-size: 0.9rem;
  }
  
  .benefit-item span {
    font-size: 0.85rem;
  }
}

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

.credit-management-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 60% 40%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 40% 70%, rgba(247, 147, 30, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

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

.credit-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.credit-subtitle {
  font-size: 1.2rem;
  color: #b8b8b8;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.credit-subtitle strong {
  color: #ff6b35;
  font-weight: 600;
}

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

.credit-info {
  animation: fadeInLeft 0.8s ease-out;
}

.info-card {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon i {
  color: #ffffff;
  font-size: 20px;
}

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

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

.card-content strong {
  color: #ff6b35;
  font-weight: 600;
}

.transaction-process {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.process-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}

.process-item {
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.deposit {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(56, 142, 60, 0.1));
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.withdraw {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(25, 118, 210, 0.1));
  border: 1px solid rgba(33, 150, 243, 0.3);
}

.process-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.process-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deposit .process-icon {
  background: linear-gradient(135deg, #4caf50, #388e3c);
}

.withdraw .process-icon {
  background: linear-gradient(135deg, #2196f3, #1976d2);
}

.process-icon i {
  color: #ffffff;
  font-size: 24px;
}

.process-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.process-item p {
  font-size: 0.95rem;
  color: #b8b8b8;
  line-height: 1.6;
}

.process-item strong {
  color: #ff6b35;
  font-weight: 600;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-item i {
  color: #ff6b35;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

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

.feature-item strong {
  color: #ff6b35;
  font-weight: 600;
}

.money-management {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.management-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.money-management > p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 24px;
}

.money-management strong {
  color: #ff6b35;
  font-weight: 600;
}

.management-tips {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
}

.tip-number {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.tip-content h5 {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.5;
}

.tip-content strong {
  color: #ff6b35;
}

.credit-visual {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fadeInRight 0.8s ease-out;
}

.visual-main {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.credit-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.visual-main:hover .credit-img {
  transform: scale(1.05);
}

.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.visual-main:hover .img-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: #ffffff;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.visual-main:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 16px;
}

.overlay-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
}

.vip-features {
  padding: 24px;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 16px;
}

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

.vip-header i {
  color: #ffd700;
  font-size: 24px;
}

.vip-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

.vip-content p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 20px;
}

.vip-content strong {
  color: #ffd700;
  font-weight: 600;
}

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

.vip-benefits .benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vip-benefits .benefit-item i {
  color: #ffd700;
  font-size: 14px;
  width: 16px;
}

.vip-benefits .benefit-item span {
  font-size: 0.95rem;
  color: #e0e0e0;
}

.smart-tools {
  padding: 24px;
  background: rgba(33, 150, 243, 0.05);
  border: 1px solid rgba(33, 150, 243, 0.3);
  border-radius: 16px;
}

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

.tools-header i {
  color: #2196f3;
  font-size: 24px;
}

.tools-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

.smart-tools > p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 16px;
}

.smart-tools strong {
  color: #2196f3;
  font-weight: 600;
}

.tools-conclusion p {
  font-size: 0.95rem;
  color: #b8b8b8;
  line-height: 1.6;
  font-style: italic;
}

.tools-conclusion strong {
  color: #ff6b35;
  font-weight: 600;
}

.credit-cta {
  display: flex;
  gap: 20px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .credit-management-section {
    padding: 80px 20px;
  }
  
  .credit-content {
    gap: 60px;
  }
  
  .credit-title {
    font-size: 2.4rem;
  }
  
  .credit-subtitle {
    font-size: 1.1rem;
  }
  
  .process-grid {
    gap: 20px;
  }
  
  .transaction-process,
  .money-management {
    padding: 24px;
  }
  
  .vip-features,
  .smart-tools {
    padding: 20px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .credit-management-section {
    padding: 60px 15px;
  }
  
  .credit-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .credit-title {
    font-size: 2rem;
  }
  
  .credit-subtitle {
    font-size: 1rem;
  }
  
  .info-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }
  
  .card-icon {
    margin: 0 auto;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .process-item {
    padding: 18px;
  }
  
  .process-icon {
    width: 50px;
    height: 50px;
  }
  
  .process-icon i {
    font-size: 20px;
  }
  
  .management-tips {
    gap: 12px;
  }
  
  .tip-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 16px;
  }
  
  .tip-number {
    margin: 0 auto;
  }
  
  .credit-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .credit-cta .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .credit-management-section {
    padding: 40px 10px;
  }
  
  .credit-title {
    font-size: 1.8rem;
  }
  
  .credit-subtitle {
    font-size: 0.95rem;
  }
  
  .transaction-process,
  .money-management {
    padding: 20px;
  }
  
  .process-title,
  .management-title {
    font-size: 1.3rem;
  }
  
  .process-item {
    padding: 16px;
  }
  
  .process-item h4 {
    font-size: 1.1rem;
  }
  
  .process-item p {
    font-size: 0.9rem;
  }
  
  .tip-content h5 {
    font-size: 0.95rem;
  }
  
  .vip-features,
  .smart-tools {
    padding: 18px;
  }
  
  .vip-header h3,
  .tools-header h3 {
    font-size: 1.2rem;
  }
  
  .vip-content p,
  .smart-tools > p {
    font-size: 0.95rem;
  }
}

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

.free-credit-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

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

.credit-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd700, #ff6b35, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.credit-subtitle {
  font-size: 1.2rem;
  color: #b8b8b8;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

.credit-subtitle strong {
  color: #ffd700;
  font-weight: 600;
}

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

.promotion-main {
  animation: fadeInLeft 0.8s ease-out;
}

.main-offer {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.main-offer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  animation: shimmer 3s linear infinite;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffd700, #ffb300);
  color: #000000;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.offer-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.currency {
  font-size: 2rem;
  color: #ffd700;
  font-weight: 700;
}

.amount {
  font-size: 5rem;
  color: #ffffff;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.text {
  font-size: 2rem;
  color: #ff6b35;
  font-weight: 700;
}

.offer-desc {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.offer-desc strong {
  color: #ffd700;
  font-weight: 600;
}

.offer-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
  text-align: left;
  position: relative;
  z-index: 2;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

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

.step-text h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

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

.step-text strong {
  color: #ffd700;
  font-weight: 600;
}

.credit-link,
.register-link {
  color: #ff6b35;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.credit-link:hover,
.register-link:hover {
  color: #ffd700;
}

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

.btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
  min-width: 250px;
}

.additional-promotions {
  margin-bottom: 40px;
}

.promo-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  text-align: center;
}

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

.promo-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promo-card:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.promo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.promo-icon i {
  color: #ffffff;
  font-size: 20px;
}

.promo-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.promo-value {
  font-size: 2rem;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 12px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.promo-content p {
  font-size: 0.9rem;
  color: #b8b8b8;
  line-height: 1.6;
}

.promo-content strong {
  color: #ff6b35;
  font-weight: 600;
}

.cashback-feature {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 30px;
}

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

.cashback-header i {
  color: #4caf50;
  font-size: 24px;
}

.cashback-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

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

.cashback-content strong {
  color: #4caf50;
  font-weight: 600;
}

.vip-benefits {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 16px;
  padding: 24px;
}

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

.vip-header i {
  color: #ffd700;
  font-size: 24px;
}

.vip-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

.vip-content p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 20px;
}

.vip-content strong {
  color: #ffd700;
  font-weight: 600;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-item i {
  color: #ffd700;
  font-size: 16px;
  width: 20px;
}

.benefit-item span {
  font-size: 0.95rem;
  color: #e0e0e0;
}

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

.promotion-visual {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fadeInRight 0.8s ease-out;
}

.visual-main {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.promo-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.visual-main:hover .promo-img {
  transform: scale(1.05);
}

.img-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ff4444, #cc0000);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  animation: pulse 2s infinite;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.stat-icon i {
  color: #ffffff;
  font-size: 18px;
}

.stat-info h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.stat-info span {
  font-size: 0.8rem;
  color: #b8b8b8;
}

.promotion-highlights {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  padding: 24px;
}

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

.highlight-header i {
  color: #ff6b35;
  font-size: 24px;
}

.highlight-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

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

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.highlight-item i {
  color: #4caf50;
  font-size: 14px;
  width: 16px;
}

.highlight-item span {
  font-size: 0.9rem;
  color: #e0e0e0;
}

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

/* Animations */
@keyframes shimmer {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .free-credit-section {
    padding: 80px 20px;
  }
  
  .credit-content {
    gap: 60px;
  }
  
  .credit-title {
    font-size: 2.4rem;
  }
  
  .credit-subtitle {
    font-size: 1.1rem;
  }
  
  .main-offer {
    padding: 32px;
  }
  
  .amount {
    font-size: 4rem;
  }
  
  .currency,
  .text {
    font-size: 1.6rem;
  }
  
  .promo-grid {
    gap: 16px;
  }
  
  .promo-card {
    padding: 18px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .free-credit-section {
    padding: 60px 15px;
  }
  
  .credit-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .credit-title {
    font-size: 2rem;
  }
  
  .credit-subtitle {
    font-size: 1rem;
  }
  
  .main-offer {
    padding: 28px;
  }
  
  .amount {
    font-size: 3.5rem;
  }
  
  .currency,
  .text {
    font-size: 1.4rem;
  }
  
  .offer-steps {
    gap: 20px;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .step-number {
    margin: 0 auto;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .promo-card {
    padding: 20px;
  }
  
  .promo-value {
    font-size: 1.6rem;
  }
  
  .quick-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .btn-large {
    width: 100%;
    padding: 16px 32px;
    font-size: 1rem;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .free-credit-section {
    padding: 40px 10px;
  }
  
  .credit-title {
    font-size: 1.8rem;
  }
  
  .credit-subtitle {
    font-size: 0.95rem;
  }
  
  .main-offer {
    padding: 24px;
  }
  
  .amount {
    font-size: 3rem;
  }
  
  .currency,
  .text {
    font-size: 1.2rem;
  }
  
  .offer-desc {
    font-size: 0.9rem;
  }
  
  .step-text h4 {
    font-size: 1.1rem;
  }
  
  .step-text p {
    font-size: 0.9rem;
  }
  
  .promo-card {
    padding: 18px;
  }
  
  .promo-content h4 {
    font-size: 1rem;
  }
  
  .promo-content p {
    font-size: 0.85rem;
  }
  
  .cashback-feature,
  .vip-benefits,
  .promotion-highlights {
    padding: 20px;
  }
  
  .stat-card {
    padding: 16px;
  }
  
  .stat-info h4 {
    font-size: 1.2rem;
  }
  
  .stat-info span {
    font-size: 0.75rem;
  }
}

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

.baccarat-strategy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(247, 147, 30, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 30% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

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

.strategy-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.strategy-subtitle {
  font-size: 1.2rem;
  color: #b8b8b8;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

.strategy-subtitle strong {
  color: #ff6b35;
  font-weight: 600;
}

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

.strategy-main {
  animation: fadeInLeft 0.8s ease-out;
}

.intro-section {
  margin-bottom: 40px;
}

.intro-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.intro-card:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon i {
  color: #ffffff;
  font-size: 20px;
}

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

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

.card-content strong {
  color: #ff6b35;
  font-weight: 600;
}

.techniques-section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

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

.technique-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.technique-card:nth-child(2) {
  animation-delay: 0.1s;
}

.technique-card:nth-child(3) {
  animation-delay: 0.2s;
}

.technique-card:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.technique-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.technique-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

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

.technique-content strong {
  color: #ff6b35;
  font-weight: 600;
}

.practice-section {
  margin-bottom: 40px;
  padding: 24px;
  background: rgba(33, 150, 243, 0.1);
  border: 1px solid rgba(33, 150, 243, 0.3);
  border-radius: 16px;
}

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

.practice-header i {
  color: #2196f3;
  font-size: 24px;
}

.practice-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

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

.practice-content strong {
  color: #2196f3;
  font-weight: 600;
}

.advanced-techniques {
  margin-bottom: 40px;
}

.advanced-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(156, 39, 176, 0.1);
  border: 1px solid rgba(156, 39, 176, 0.3);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.advanced-card:hover {
  background: rgba(156, 39, 176, 0.15);
  border-color: rgba(156, 39, 176, 0.5);
  transform: translateY(-2px);
}

.advanced-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #9c27b0, #7b1fa2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advanced-icon i {
  color: #ffffff;
  font-size: 20px;
}

.advanced-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

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

.advanced-content strong {
  color: #9c27b0;
  font-weight: 600;
}

.other-games {
  margin-bottom: 40px;
}

.games-intro {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 24px;
}

.games-intro strong {
  color: #ff6b35;
  font-weight: 600;
}

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

.game-item {
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.game-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.game-item i {
  color: #ff6b35;
  font-size: 24px;
  margin-bottom: 8px;
}

.game-item h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.game-item p {
  font-size: 0.9rem;
  color: #b8b8b8;
}

.warning-section {
  margin-bottom: 40px;
  padding: 24px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 16px;
}

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

.warning-header i {
  color: #ffc107;
  font-size: 24px;
}

.warning-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

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

.warning-content strong {
  color: #ffc107;
  font-weight: 600;
}

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

.strategy-visual {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fadeInRight 0.8s ease-out;
}

.visual-main {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.strategy-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.visual-main:hover .strategy-img {
  transform: scale(1.05);
}

.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.visual-main:hover .img-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: #ffffff;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.visual-main:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 16px;
}

.overlay-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.overlay-content p {
  font-size: 1rem;
}

.tips-card {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 16px;
  padding: 24px;
}

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

.tips-header i {
  color: #4caf50;
  font-size: 24px;
}

.tips-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tip-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tip-item i {
  color: #4caf50;
  font-size: 16px;
  width: 20px;
}

.tip-item span {
  font-size: 0.95rem;
  color: #e0e0e0;
}

.stats-showcase {
  background: rgba(33, 150, 243, 0.1);
  border: 1px solid rgba(33, 150, 243, 0.3);
  border-radius: 16px;
  padding: 24px;
}

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

.stats-header i {
  color: #2196f3;
  font-size: 24px;
}

.stats-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

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

.stat-item {
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: #2196f3;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: #b8b8b8;
  line-height: 1.3;
}

.trial-promotion {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.trial-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.trial-content p {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-outline {
  background: transparent;
  color: #ff6b35;
  border: 2px solid #ff6b35;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #ff6b35;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .baccarat-strategy-section {
    padding: 80px 20px;
  }
  
  .strategy-content {
    gap: 60px;
  }
  
  .strategy-title {
    font-size: 2.4rem;
  }
  
  .strategy-subtitle {
    font-size: 1.1rem;
  }
  
  .games-grid {
    gap: 12px;
  }
  
  .game-item {
    padding: 14px;
  }
  
  .stats-grid {
    gap: 12px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .baccarat-strategy-section {
    padding: 60px 15px;
  }
  
  .strategy-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .strategy-title {
    font-size: 2rem;
  }
  
  .strategy-subtitle {
    font-size: 1rem;
  }
  
  .intro-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }
  
  .card-icon {
    margin: 0 auto;
  }
  
  .technique-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }
  
  .technique-number {
    margin: 0 auto;
  }
  
  .advanced-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }
  
  .advanced-icon {
    margin: 0 auto;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .game-item {
    padding: 16px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .strategy-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .strategy-cta .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .baccarat-strategy-section {
    padding: 40px 10px;
  }
  
  .strategy-title {
    font-size: 1.8rem;
  }
  
  .strategy-subtitle {
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .technique-card,
  .intro-card,
  .advanced-card {
    padding: 18px;
  }
  
  .technique-content h4,
  .card-content h3,
  .advanced-content h4 {
    font-size: 1.1rem;
  }
  
  .technique-content p,
  .card-content p,
  .advanced-content p {
    font-size: 0.95rem;
  }
  
  .practice-section,
  .warning-section,
  .tips-card,
  .stats-showcase,
  .trial-promotion {
    padding: 20px;
  }
  
  .practice-header h3,
  .warning-header h3,
  .tips-header h3,
  .stats-header h3 {
    font-size: 1.2rem;
  }
  
  .stat-value {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

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

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
  z-index: 1;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 60px 20px 40px;
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-section {
  animation: fadeInUp 0.8s ease-out;
}

.footer-section:nth-child(2) {
  animation-delay: 0.1s;
}

.footer-section:nth-child(3) {
  animation-delay: 0.2s;
}

.footer-section:nth-child(4) {
  animation-delay: 0.3s;
}

.footer-brand .footer-logo {
  margin-bottom: 16px;
}

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

.footer-brand .logo-subtitle {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  color: #b8b8b8;
  margin-top: 4px;
  display: block;
}

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

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

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #b8b8b8;
}

.feature-badge i {
  color: #ff6b35;
  width: 16px;
  font-size: 14px;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

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

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

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

.footer-link:hover {
  color: #ff6b35;
  padding-left: 8px;
}

.footer-link i {
  width: 16px;
  font-size: 14px;
  color: #ff6b35;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

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

.contact-item i {
  color: #ff6b35;
  width: 18px;
  font-size: 16px;
}

.footer-btn {
  width: 100%;
  padding: 12px 20px;
  font-size: 0.95rem;
  justify-content: center;
}

.footer-bottom {
  padding: 30px 20px;
}

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

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

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

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-link {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #ff6b35;
}

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

.cert-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #4caf50;
}

.cert-item i {
  font-size: 14px;
}

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

.footer-disclaimer p {
  font-size: 0.85rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 50px 20px 30px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-features {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .footer-certifications {
    justify-content: center;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 15px 30px;
  }
  
  .footer-brand {
    text-align: center;
    margin-bottom: 0;
  }
  
  .footer-brand .logo-text {
    font-size: 1.8rem;
  }
  
  .footer-brand .logo-subtitle {
    font-size: 0.85rem;
  }
  
  .footer-desc {
    text-align: center;
    font-size: 0.95rem;
  }
  
  .footer-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .footer-title {
    text-align: center;
    font-size: 1.2rem;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-menu {
    align-items: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .footer-btn {
    max-width: 250px;
    margin: 0 auto;
  }
  
  .footer-bottom {
    padding: 25px 15px;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-certifications {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 30px 10px 25px;
  }
  
  .footer-brand .logo-text {
    font-size: 1.6rem;
  }
  
  .footer-desc {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-link,
  .contact-item {
    font-size: 0.9rem;
  }
  
  .footer-btn {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    padding: 20px 10px;
  }
  
  .copyright {
    font-size: 0.85rem;
  }
  
  .legal-link {
    font-size: 0.8rem;
  }
  
  .footer-disclaimer {
    padding: 16px;
    margin-top: 16px;
  }
  
  .footer-disclaimer p {
    font-size: 0.8rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 999;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
}

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

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

.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: 18px;
  margin-bottom: 4px;
  transition: transform 0.3s ease;
}

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

.btn-text {
  font-size: 0.8rem;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Button Specific Styles */
.login-btn {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

.login-btn:hover {
  background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

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

.register-btn {
  background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
}

.register-btn:hover {
  background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

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

.credit-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  position: relative;
}

.credit-btn::after {
  content: 'HOT';
  position: absolute;
  top: 4px;
  right: 4px;
  background: #ff4444;
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 4px;
  border-radius: 6px;
  animation: pulse 2s infinite;
}

.credit-btn:hover {
  background: linear-gradient(135deg, #e55a2b 0%, #e8821a 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.credit-btn i {
  color: #ffffff;
}

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.8rem;
    min-height: 60px;
  }
  
  .sticky-btn i {
    font-size: 16px;
  }
  
  .btn-text {
    font-size: 0.75rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.75rem;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 15px;
    margin-bottom: 3px;
  }
  
  .btn-text {
    font-size: 0.7rem;
    line-height: 1.1;
  }
  
  .credit-btn::after {
    font-size: 0.55rem;
    padding: 1px 3px;
    top: 3px;
    right: 3px;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 6px 2px;
    font-size: 0.7rem;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 14px;
    margin-bottom: 2px;
  }
  
  .btn-text {
    font-size: 0.65rem;
    line-height: 1;
  }
  
  .credit-btn::after {
    font-size: 0.5rem;
    padding: 1px 2px;
    top: 2px;
    right: 2px;
  }
}

/* Ensure sticky buttons don't interfere with other elements */
body {
  padding-bottom: 65px;
}

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

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

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

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

.login-page-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

.login-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.login-logo {
  text-align: center;
  margin-bottom: 30px;
}

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

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

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

.login-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.error-message {
  display: none;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  color: #f44336;
  font-size: 0.9rem;
  align-items: center;
  gap: 8px;
}

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

.error-message i {
  font-size: 16px;
  flex-shrink: 0;
}

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

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

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

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6b35;
  font-size: 16px;
  z-index: 2;
}

.form-input {
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0 50px 0 50px;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

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

.form-input:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-input.error {
  border-color: #f44336;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

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

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

.field-error {
  font-size: 0.8rem;
  color: #f44336;
  margin-top: 4px;
  display: none;
}

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

.login-btn {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.login-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #e55a2b, #e8821a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.loading-spinner {
  display: none;
}

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

.login-btn.loading .loading-spinner {
  display: block;
  position: absolute;
}

.login-footer {
  text-align: center;
  margin-bottom: 20px;
}

.register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 45px;
  background: transparent;
  border: 2px solid #ff6b35;
  border-radius: 12px;
  color: #ff6b35;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.register-btn:hover {
  background: #ff6b35;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.additional-links {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.forgot-link:hover {
  color: #ff6b35;
}

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .login-wrapper {
    padding: 35px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .login-page-section {
    padding: 15px;
    min-height: 100vh;
  }
  
  .login-container {
    max-width: 100%;
  }
  
  .login-wrapper {
    padding: 30px 25px;
    margin: 0;
    border-radius: 20px;
  }
  
  .logo-image {
    width: 65px;
    height: 65px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    height: 48px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  .login-btn,
  .register-btn {
    height: 48px;
  }
}

@media (max-width: 480px) {
  .login-page-section {
    padding: 10px;
  }
  
  .login-wrapper {
    padding: 25px 20px;
    border-radius: 16px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-label {
    font-size: 0.9rem;
  }
  
  .form-input {
    height: 46px;
    padding: 0 45px 0 45px;
  }
  
  .input-icon {
    left: 14px;
    font-size: 15px;
  }
  
  .password-toggle {
    right: 14px;
  }
  
  .login-btn,
  .register-btn {
    height: 46px;
    font-size: 0.95rem;
  }
  
  .error-message {
    font-size: 0.85rem;
    padding: 10px 12px;
  }
}

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

.register-page-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

.register-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.register-logo {
  text-align: center;
  margin-bottom: 30px;
}

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

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

.register-header {
  text-align: center;
  margin-bottom: 30px;
}

.register-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.success-message {
  display: none;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  color: #4caf50;
  font-size: 0.9rem;
  align-items: center;
  gap: 8px;
}

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

.error-message {
  display: none;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  color: #f44336;
  font-size: 0.9rem;
  align-items: center;
  gap: 8px;
}

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

.success-message i,
.error-message i {
  font-size: 16px;
  flex-shrink: 0;
}

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

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

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

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6b35;
  font-size: 16px;
  z-index: 2;
}

.form-input {
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0 20px 0 50px;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

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

.form-input:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-input.error {
  border-color: #f44336;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

.form-input.success {
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.field-error {
  font-size: 0.8rem;
  color: #f44336;
  margin-top: 4px;
  display: none;
}

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

.field-help {
  font-size: 0.8rem;
  color: #b8b8b8;
  margin-top: 4px;
}

.register-btn {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.register-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #e55a2b, #e8821a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.loading-spinner {
  display: none;
}

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

.register-btn.loading .loading-spinner {
  display: block;
  position: absolute;
}

.register-footer {
  text-align: center;
  margin-bottom: 20px;
}

.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 45px;
  background: transparent;
  border: 2px solid #ff6b35;
  border-radius: 12px;
  color: #ff6b35;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: #ff6b35;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.additional-links {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

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

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

.security-info {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #4caf50;
  flex: 1;
  text-align: center;
}

.security-item i {
  font-size: 14px;
}

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .register-wrapper {
    padding: 35px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .register-page-section {
    padding: 15px;
    min-height: 100vh;
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-wrapper {
    padding: 30px 25px;
    margin: 0;
    border-radius: 20px;
  }
  
  .logo-image {
    width: 65px;
    height: 65px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    height: 48px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  .register-btn,
  .login-btn {
    height: 48px;
  }
  
  .security-info {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .register-page-section {
    padding: 10px;
  }
  
  .register-wrapper {
    padding: 25px 20px;
    border-radius: 16px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-label {
    font-size: 0.9rem;
  }
  
  .form-input {
    height: 46px;
    padding: 0 16px 0 45px;
  }
  
  .input-icon {
    left: 14px;
    font-size: 15px;
  }
  
  .register-btn,
  .login-btn {
    height: 46px;
    font-size: 0.95rem;
  }
  
  .error-message,
  .success-message {
    font-size: 0.85rem;
    padding: 10px 12px;
  }
  
  .field-help {
    font-size: 0.75rem;
  }
  
  .security-item {
    font-size: 0.75rem;
  }
}

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

.hero-promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

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

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

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

.hero-cta {
  margin-bottom: 20px;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  min-width: 280px;
}

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

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

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

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
  z-index: 1;
}

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

.promo-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease-out;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.promo-badge i {
  font-size: 14px;
}

.promo-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.promo-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.promo-highlight {
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.promo-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  animation: shimmer 3s linear infinite;
}

.highlight-amount {
  position: relative;
  z-index: 2;
}

.currency,
.amount {
  font-size: 4rem;
  font-weight: 900;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.percent {
  font-size: 3rem;
  font-weight: 900;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.text {
  display: block;
  font-size: 1.2rem;
  color: #ff6b35;
  font-weight: 600;
  margin-top: 8px;
}

.promo-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
}

.feature-item i {
  color: #4caf50;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

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

.promo-cta {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 40px;
}

.promo-cta .btn {
  min-width: 250px;
}

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

@keyframes shimmer {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Specific promotion colors */
#new-member-promo .promo-badge {
  background: linear-gradient(135deg, #ffd700, #ffb300);
  color: #000000;
}

#first-deposit-promo .promo-badge {
  background: linear-gradient(135deg, #2196f3, #1976d2);
}

#referral-promo .promo-badge {
  background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

#cashback-promo .promo-badge {
  background: linear-gradient(135deg, #4caf50, #388e3c);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .hero-promotion-section {
    padding: 100px 20px 60px;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
  }
  
  .promotion-section {
    padding: 60px 20px;
  }
  
  .promo-content {
    gap: 40px;
  }
  
  .promo-title {
    font-size: 2rem;
  }
  
  .currency,
  .amount {
    font-size: 3.2rem;
  }
  
  .percent {
    font-size: 2.4rem;
  }
  
  .btn-large {
    min-width: 240px;
    font-size: 1.1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-promotion-section {
    padding: 90px 15px 50px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 50px 15px;
  }
  
  .promo-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .promo-title {
    font-size: 1.6rem;
  }
  
  .promo-highlight {
    padding: 30px;
    order: -1;
  }
  
  .currency,
  .amount {
    font-size: 2.8rem;
  }
  
  .percent {
    font-size: 2.2rem;
  }
  
  .text {
    font-size: 1.1rem;
  }
  
  .feature-item {
    text-align: left;
  }
  
  .feature-item span {
    font-size: 1rem;
  }
  
  .btn-large {
    width: 100%;
    max-width: 320px;
    min-width: auto;
  }
  
  .promo-cta .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-promotion-section {
    padding: 80px 10px 40px;
  }
  
  .hero-title {
    font-size: 1.9rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .promotion-section {
    padding: 40px 10px;
  }
  
  .promo-header {
    margin-bottom: 40px;
  }
  
  .promo-title {
    font-size: 1.4rem;
  }
  
  .promo-highlight {
    padding: 24px;
  }
  
  .currency,
  .amount {
    font-size: 2.4rem;
  }
  
  .percent {
    font-size: 1.8rem;
  }
  
  .text {
    font-size: 1rem;
  }
  
  .feature-item {
    padding: 10px 0;
  }
  
  .feature-item span {
    font-size: 0.95rem;
  }
  
  .btn-large {
    font-size: 1rem;
    padding: 16px 32px;
  }
  
  .promo-cta {
    margin-top: 30px;
  }
}