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

body {
  font-family: 'Sarabun', sans-serif;
  background-color: #0a0a0a;
  color: #e0e0e0;
  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;
}

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

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

/* Button Styles */
.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;
  text-align: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn i {
  font-size: 14px;
}

.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%, #e08419 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

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

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

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

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

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

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

.hero-img {
  width: 100%;
  max-width: 500px;
  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);
}

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    min-height: auto;
  }
  
  .hero-text {
    padding-right: 0;
    order: 2;
  }
  
  .hero-image {
    order: 1;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 15px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    padding: 14px 20px;
    justify-content: center;
  }
}

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

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

.header-logo {
  flex-shrink: 0;
}

.logo-link {
  text-decoration: none;
  display: inline-block;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

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

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

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

.nav-item {
  position: relative;
}

.nav-link {
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #e0e0e0;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

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

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

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

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-family: 'Sarabun', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  gap: 4px;
  transition: all 0.3s ease;
}

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

.hamburger-line {
  width: 20px;
  height: 2px;
  background: #ff6b35;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.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 Styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  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: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-left: 1px solid rgba(255, 107, 53, 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, 255, 255, 0.1);
}

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

.mobile-menu-close {
  width: 36px;
  height: 36px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 6px;
  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);
  transform: scale(1.1);
}

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

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

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  color: #e0e0e0;
  text-decoration: none;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

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

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

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

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .header-nav {
    display: none;
  }
  
  .header-cta-btn {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  body {
    padding-top: 60px;
  }
  
  .mobile-menu {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 12px;
    height: 55px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-menu-toggle {
    width: 35px;
    height: 35px;
  }
  
  .hamburger-line {
    width: 18px;
  }
  
  body {
    padding-top: 55px;
  }
  
  .mobile-menu {
    width: 260px;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-logo {
    font-size: 1.3rem;
  }
  
  .mobile-nav-link {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .mobile-cta-item {
    padding: 0 15px;
    margin-top: 15px;
  }
  
  .mobile-cta-btn {
    padding: 12px;
    font-size: 0.95rem;
  }
}

/* Review Section Styles */
.review-section {
  background: #1a1a1a;
  padding: 80px 0;
  position: relative;
}

.review-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(247, 147, 30, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

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

.review-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.review-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.3;
}

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

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

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

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

.review-features {
  margin-bottom: 30px;
}

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

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

.feature-item:hover {
  padding-left: 10px;
  color: #ff6b35;
}

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

.feature-item span {
  font-size: 1rem;
  color: #e0e0e0;
  transition: color 0.3s ease;
}

.feature-item:hover span {
  color: #ff6b35;
}

.review-conclusion {
  font-size: 1.1rem;
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 40px;
  padding: 25px;
  background: rgba(255, 107, 53, 0.1);
  border-left: 4px solid #ff6b35;
  border-radius: 8px;
}

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

.review-action {
  display: flex;
  justify-content: flex-start;
}

.review-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 100px;
}

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

.review-img:hover {
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .review-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .review-title {
    font-size: 2.2rem;
  }
  
  .review-description p {
    font-size: 1rem;
  }
  
  .review-image {
    position: static;
  }
}

@media (max-width: 768px) {
  .review-section {
    padding: 60px 0;
  }
  
  .review-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .review-text {
    order: 2;
  }
  
  .review-image {
    order: 1;
    justify-content: center;
  }
  
  .review-title {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
  }
  
  .review-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .feature-item {
    padding: 12px 0;
  }
  
  .feature-item span {
    font-size: 0.95rem;
  }
  
  .review-conclusion {
    font-size: 1rem;
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .review-action {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .review-section {
    padding: 40px 0;
  }
  
  .review-container {
    padding: 0 15px;
  }
  
  .review-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .review-description p {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  .feature-item {
    padding: 10px 0;
    gap: 12px;
  }
  
  .feature-item i {
    font-size: 1.1rem;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
  
  .review-conclusion {
    font-size: 0.95rem;
    padding: 18px;
    margin-bottom: 25px;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

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

.login-guide-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at bottom right, rgba(247, 147, 30, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

.login-guide-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.login-guide-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 100px;
}

.login-guide-img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  border: 2px solid rgba(255, 107, 53, 0.2);
}

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

.login-guide-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.3;
}

.login-guide-description {
  margin-bottom: 40px;
}

.login-guide-description p {
  font-size: 1.1rem;
  color: #d0d0d0;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

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

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

.inline-link:hover {
  color: #f7931e;
}

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

.techniques-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 25px;
  text-align: center;
}

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

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

.technique-card:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.technique-card i {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 15px;
  display: block;
}

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

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

.technique-card p strong {
  color: #ff6b35;
}

.transaction-info {
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 107, 53, 0.08);
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
}

.transaction-text {
  font-size: 1.05rem;
  color: #d0d0d0;
  line-height: 1.7;
  margin: 0;
}

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

.professional-tips {
  margin-bottom: 40px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tips-text {
  font-size: 1.05rem;
  color: #c8c8c8;
  line-height: 1.7;
  margin: 0;
}

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

.login-action {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .login-guide-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .login-guide-title {
    font-size: 2.2rem;
  }
  
  .login-guide-description p {
    font-size: 1rem;
  }
  
  .techniques-subtitle {
    font-size: 1.6rem;
  }
  
  .login-guide-image {
    position: static;
  }
}

@media (max-width: 768px) {
  .login-guide-section {
    padding: 60px 0;
  }
  
  .login-guide-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .login-guide-text {
    order: 2;
  }
  
  .login-guide-image {
    order: 1;
    justify-content: center;
  }
  
  .login-guide-title {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
  }
  
  .login-guide-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .techniques-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .techniques-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .technique-card {
    padding: 20px;
  }
  
  .technique-card i {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .technique-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .technique-card p {
    font-size: 0.9rem;
  }
  
  .transaction-info,
  .professional-tips {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .transaction-text,
  .tips-text {
    font-size: 0.95rem;
  }
  
  .login-action {
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .login-guide-section {
    padding: 40px 0;
  }
  
  .login-guide-container {
    padding: 0 15px;
  }
  
  .login-guide-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .login-guide-description p {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  .techniques-subtitle {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }
  
  .technique-card {
    padding: 18px;
  }
  
  .technique-card i {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .technique-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .technique-card p {
    font-size: 0.85rem;
  }
  
  .transaction-info,
  .professional-tips {
    padding: 18px;
    margin-bottom: 20px;
  }
  
  .transaction-text,
  .tips-text {
    font-size: 0.9rem;
  }
  
  .login-action {
    flex-direction: column;
    gap: 12px;
  }
  
  .login-action .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Lottery Expert Section Styles */
.lottery-expert-section {
  background: #0f0f0f;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.lottery-expert-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(60deg, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.lottery-expert-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
}

.lottery-expert-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.3;
}

.lottery-expert-description {
  margin-bottom: 40px;
}

.lottery-expert-description p {
  font-size: 1.1rem;
  color: #d0d0d0;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

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

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

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

.lottery-feature-card:hover {
  background: rgba(255, 107, 53, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.lottery-feature-card i {
  font-size: 2.2rem;
  color: #ff6b35;
  margin-bottom: 12px;
  display: block;
}

.lottery-feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.lottery-feature-card p {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.5;
  margin: 0;
}

.lottery-convenience {
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
}

.convenience-text {
  font-size: 1.05rem;
  color: #d0d0d0;
  line-height: 1.7;
  margin: 0;
}

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

.lottery-technology {
  margin-bottom: 35px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.technology-text {
  font-size: 1.05rem;
  color: #c8c8c8;
  line-height: 1.7;
  margin: 0;
}

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

.lottery-timing {
  margin-bottom: 30px;
}

.timing-info {
  display: grid;
  gap: 20px;
}

.timing-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 107, 53, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.timing-item i {
  color: #ff6b35;
  font-size: 1.5rem;
  margin-top: 2px;
  min-width: 24px;
}

.timing-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.timing-content p {
  font-size: 0.95rem;
  color: #d0d0d0;
  line-height: 1.6;
  margin: 0;
}

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

.lottery-notification {
  margin-bottom: 35px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.05) 100%);
  border-radius: 10px;
  text-align: center;
}

.notification-text {
  font-size: 1.05rem;
  color: #e0e0e0;
  font-weight: 500;
  margin: 0;
}

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

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

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

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

.highlight-item:hover {
  padding-left: 8px;
  color: #ff6b35;
}

.highlight-item i {
  color: #ff6b35;
  font-size: 1.1rem;
  min-width: 18px;
}

.highlight-item span {
  font-size: 1rem;
  color: #d0d0d0;
  transition: color 0.3s ease;
}

.highlight-item:hover span {
  color: #ff6b35;
}

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

.lottery-action {
  display: flex;
  justify-content: flex-start;
}

.lottery-expert-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 100px;
}

.lottery-expert-img {
  width: 100%;
  max-width: 380px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 2px solid rgba(255, 107, 53, 0.2);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .lottery-expert-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .lottery-expert-title {
    font-size: 2.2rem;
  }
  
  .lottery-expert-description p {
    font-size: 1rem;
  }
  
  .lottery-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .lottery-expert-image {
    position: static;
  }
}

@media (max-width: 768px) {
  .lottery-expert-section {
    padding: 60px 0;
  }
  
  .lottery-expert-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .lottery-expert-text {
    order: 2;
  }
  
  .lottery-expert-image {
    order: 1;
    justify-content: center;
  }
  
  .lottery-expert-title {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
  }
  
  .lottery-expert-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .lottery-features {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .lottery-feature-card {
    padding: 20px;
  }
  
  .lottery-feature-card i {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .lottery-feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .lottery-feature-card p {
    font-size: 0.9rem;
  }
  
  .lottery-convenience,
  .lottery-technology {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .convenience-text,
  .technology-text {
    font-size: 0.95rem;
  }
  
  .timing-item {
    padding: 18px;
  }
  
  .timing-content h4 {
    font-size: 1rem;
  }
  
  .timing-content p {
    font-size: 0.9rem;
  }
  
  .lottery-notification {
    padding: 18px;
    margin-bottom: 30px;
  }
  
  .notification-text {
    font-size: 0.95rem;
  }
  
  .highlight-item {
    padding: 10px 0;
  }
  
  .highlight-item span {
    font-size: 0.95rem;
  }
  
  .lottery-action {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .lottery-expert-section {
    padding: 40px 0;
  }
  
  .lottery-expert-container {
    padding: 0 15px;
  }
  
  .lottery-expert-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .lottery-expert-description p {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  .lottery-feature-card {
    padding: 18px;
  }
  
  .lottery-feature-card i {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .lottery-feature-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .lottery-feature-card p {
    font-size: 0.85rem;
  }
  
  .lottery-convenience,
  .lottery-technology {
    padding: 18px;
    margin-bottom: 20px;
  }
  
  .convenience-text,
  .technology-text {
    font-size: 0.9rem;
  }
  
  .timing-item {
    padding: 16px;
    gap: 12px;
  }
  
  .timing-item i {
    font-size: 1.3rem;
  }
  
  .timing-content h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  
  .timing-content p {
    font-size: 0.85rem;
  }
  
  .lottery-notification {
    padding: 16px;
    margin-bottom: 25px;
  }
  
  .notification-text {
    font-size: 0.9rem;
  }
  
  .highlight-item {
    padding: 8px 0;
    gap: 10px;
  }
  
  .highlight-item i {
    font-size: 1rem;
  }
  
  .highlight-item span {
    font-size: 0.9rem;
  }
  
  .lottery-action .btn {
    width: 100%;
    justify-content: center;
  }
}

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

.security-analysis-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center left, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.security-analysis-content {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.security-analysis-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 100px;
}

.security-analysis-img {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  border: 2px solid rgba(255, 107, 53, 0.3);
}

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

.security-analysis-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.3;
}

.security-analysis-description {
  margin-bottom: 40px;
}

.security-analysis-description p {
  font-size: 1.1rem;
  color: #d0d0d0;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

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

.security-features {
  margin-bottom: 35px;
}

.security-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 25px;
  text-align: center;
}

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

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

.security-feature-item:hover {
  background: rgba(255, 107, 53, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
}

.security-feature-item i {
  font-size: 2rem;
  color: #ff6b35;
  margin-bottom: 12px;
  display: block;
}

.security-feature-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.security-feature-item p {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.5;
  margin: 0;
}

.reliability-info {
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 107, 53, 0.06);
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
}

.reliability-text {
  font-size: 1.05rem;
  color: #d0d0d0;
  line-height: 1.7;
  margin: 0;
}

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

.safety-assurance {
  margin-bottom: 35px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.safety-text {
  font-size: 1.05rem;
  color: #c8c8c8;
  line-height: 1.7;
  margin: 0;
}

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

.pros-cons {
  margin-bottom: 35px;
}

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

.pros-section,
.cons-section {
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pros-section {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.3);
}

.cons-section {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.3);
}

.pros-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cons-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ef4444;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pros-list,
.cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-list li,
.cons-list li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  color: #d0d0d0;
  line-height: 1.5;
}

.pros-list li:before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.cons-list li:before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: bold;
}

.backlink-info {
  margin-bottom: 35px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.03) 100%);
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.backlink-text {
  font-size: 1rem;
  color: #d0d0d0;
  line-height: 1.7;
  margin: 0;
}

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

.backlink-anchor {
  color: #ff6b35;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.backlink-anchor:hover {
  color: #f7931e;
}

.security-action {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .security-analysis-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .security-analysis-title {
    font-size: 2.2rem;
  }
  
  .security-analysis-description p {
    font-size: 1rem;
  }
  
  .security-subtitle {
    font-size: 1.6rem;
  }
  
  .security-feature-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .security-analysis-image {
    position: static;
  }
  
  .pros-cons-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .security-analysis-section {
    padding: 60px 0;
  }
  
  .security-analysis-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .security-analysis-text {
    order: 2;
  }
  
  .security-analysis-image {
    order: 1;
    justify-content: center;
  }
  
  .security-analysis-title {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
  }
  
  .security-analysis-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .security-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .security-feature-item {
    padding: 18px;
  }
  
  .security-feature-item i {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .security-feature-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .security-feature-item p {
    font-size: 0.85rem;
  }
  
  .reliability-info,
  .safety-assurance {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .reliability-text,
  .safety-text {
    font-size: 0.95rem;
  }
  
  .pros-section,
  .cons-section {
    padding: 20px;
  }
  
  .pros-title,
  .cons-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .pros-list li,
  .cons-list li {
    font-size: 0.9rem;
    padding: 6px 0;
  }
  
  .backlink-info {
    padding: 18px;
    margin-bottom: 30px;
  }
  
  .backlink-text {
    font-size: 0.95rem;
  }
  
  .security-action {
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .security-analysis-section {
    padding: 40px 0;
  }
  
  .security-analysis-container {
    padding: 0 15px;
  }
  
  .security-analysis-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .security-analysis-description p {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  .security-subtitle {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }
  
  .security-feature-item {
    padding: 16px;
  }
  
  .security-feature-item i {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  
  .security-feature-item h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  
  .security-feature-item p {
    font-size: 0.8rem;
  }
  
  .reliability-info,
  .safety-assurance {
    padding: 18px;
    margin-bottom: 20px;
  }
  
  .reliability-text,
  .safety-text {
    font-size: 0.9rem;
  }
  
  .pros-section,
  .cons-section {
    padding: 18px;
  }
  
  .pros-title,
  .cons-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .pros-list li,
  .cons-list li {
    font-size: 0.85rem;
    padding: 5px 0;
  }
  
  .backlink-info {
    padding: 16px;
    margin-bottom: 25px;
  }
  
  .backlink-text {
    font-size: 0.9rem;
  }
  
  .security-action {
    flex-direction: column;
    gap: 12px;
  }
  
  .security-action .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Profit Strategies Section Styles */
.profit-strategies-section {
  background: #0a0a0a;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.profit-strategies-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(247, 147, 30, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

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

.profit-strategies-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.profit-strategies-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.3;
}

.profit-strategies-description {
  margin-bottom: 40px;
}

.profit-strategies-description p {
  font-size: 1.1rem;
  color: #d0d0d0;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

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

.capital-allocation {
  margin-bottom: 40px;
}

.allocation-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 25px;
}

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

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

.allocation-card:hover {
  background: rgba(255, 107, 53, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.allocation-percent {
  font-size: 3rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 10px;
  display: block;
}

.allocation-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.allocation-card p {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0;
}

.allocation-note {
  font-size: 1rem;
  color: #c8c8c8;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  padding: 20px;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 8px;
}

.allocation-note strong {
  color: #ff6b35;
  font-weight: 600;
}

.martingale-technique {
  margin-bottom: 40px;
}

.technique-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 20px;
}

.technique-info {
  padding: 25px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.technique-info p {
  font-size: 1.05rem;
  color: #d0d0d0;
  line-height: 1.7;
  margin: 0;
}

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

.registration-info {
  margin-bottom: 35px;
}

.registration-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 25px;
}

.registration-details {
  display: grid;
  gap: 20px;
}

.registration-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.registration-item i {
  color: #ff6b35;
  font-size: 1.5rem;
  margin-top: 2px;
  min-width: 24px;
}

.registration-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.registration-content p {
  font-size: 0.95rem;
  color: #d0d0d0;
  line-height: 1.6;
  margin: 0;
}

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

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

.inline-link:hover {
  color: #f7931e;
}

.activities-promotions {
  margin-bottom: 35px;
}

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

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

.activity-card:hover {
  background: rgba(255, 107, 53, 0.08);
  transform: translateY(-3px);
}

.activity-card i {
  font-size: 2rem;
  color: #ff6b35;
  margin-bottom: 12px;
  display: block;
}

.activity-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.activity-card p {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.5;
  margin: 0;
}

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

.analysis-techniques {
  margin-bottom: 35px;
}

.analysis-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 25px;
}

.techniques-list {
  display: grid;
  gap: 12px;
}

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

.technique-item:hover {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateX(5px);
}

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

.technique-item span {
  font-size: 1rem;
  color: #d0d0d0;
  transition: color 0.3s ease;
}

.technique-item:hover span {
  color: #ff6b35;
}

.vip-services {
  margin-bottom: 40px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(247, 147, 30, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.vip-text {
  font-size: 1.05rem;
  color: #d0d0d0;
  line-height: 1.7;
  margin: 0;
}

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

.profit-action {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.profit-strategies-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 100px;
}

.profit-strategies-img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  border: 2px solid rgba(255, 107, 53, 0.3);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .profit-strategies-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .profit-strategies-title {
    font-size: 2.2rem;
  }
  
  .profit-strategies-description p {
    font-size: 1rem;
  }
  
  .allocation-subtitle,
  .technique-subtitle,
  .registration-subtitle,
  .analysis-subtitle {
    font-size: 1.6rem;
  }
  
  .allocation-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .profit-strategies-image {
    position: static;
  }
}

@media (max-width: 768px) {
  .profit-strategies-section {
    padding: 60px 0;
  }
  
  .profit-strategies-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .profit-strategies-text {
    order: 2;
  }
  
  .profit-strategies-image {
    order: 1;
    justify-content: center;
  }
  
  .profit-strategies-title {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
  }
  
  .profit-strategies-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .allocation-subtitle,
  .technique-subtitle,
  .registration-subtitle,
  .analysis-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .allocation-card {
    padding: 20px;
  }
  
  .allocation-percent {
    font-size: 2.5rem;
    margin-bottom: 8px;
  }
  
  .allocation-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .allocation-card p {
    font-size: 0.9rem;
  }
  
  .allocation-note {
    font-size: 0.95rem;
    padding: 18px;
  }
  
  .technique-info {
    padding: 20px;
  }
  
  .technique-info p {
    font-size: 0.95rem;
  }
  
  .registration-item {
    padding: 18px;
  }
  
  .registration-content h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  
  .registration-content p {
    font-size: 0.9rem;
  }
  
  .activity-card {
    padding: 18px;
  }
  
  .activity-card i {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .activity-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .activity-card p {
    font-size: 0.85rem;
  }
  
  .technique-item {
    padding: 12px 18px;
  }
  
  .technique-item i {
    font-size: 1.1rem;
  }
  
  .technique-item span {
    font-size: 0.95rem;
  }
  
  .vip-services {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .vip-text {
    font-size: 0.95rem;
  }
  
  .profit-action {
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .profit-strategies-section {
    padding: 40px 0;
  }
  
  .profit-strategies-container {
    padding: 0 15px;
  }
  
  .profit-strategies-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .profit-strategies-description p {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  .allocation-subtitle,
  .technique-subtitle,
  .registration-subtitle,
  .analysis-subtitle {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }
  
  .allocation-card {
    padding: 18px;
  }
  
  .allocation-percent {
    font-size: 2.2rem;
    margin-bottom: 6px;
  }
  
  .allocation-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .allocation-card p {
    font-size: 0.85rem;
  }
  
  .allocation-note {
    font-size: 0.9rem;
    padding: 16px;
  }
  
  .technique-info {
    padding: 18px;
  }
  
  .technique-info p {
    font-size: 0.9rem;
  }
  
  .registration-item {
    padding: 16px;
    gap: 12px;
  }
  
  .registration-item i {
    font-size: 1.3rem;
  }
  
  .registration-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  
  .registration-content p {
    font-size: 0.85rem;
  }
  
  .activity-card {
    padding: 16px;
  }
  
  .activity-card i {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  
  .activity-card h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
  }
  
  .activity-card p {
    font-size: 0.8rem;
  }
  
  .technique-item {
    padding: 10px 16px;
    gap: 10px;
  }
  
  .technique-item i {
    font-size: 1rem;
  }
  
  .technique-item span {
    font-size: 0.9rem;
  }
  
  .vip-services {
    padding: 18px;
    margin-bottom: 25px;
  }
  
  .vip-text {
    font-size: 0.9rem;
  }
  
  .profit-action {
    flex-direction: column;
    gap: 12px;
  }
  
  .profit-action .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 60px 0 40px;
}

.footer-brand {
  max-width: 400px;
}

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

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

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

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

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

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  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 0%, #f7931e 100%);
}

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

.footer-link {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
}

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

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

.social-link i {
  font-size: 1rem;
  min-width: 16px;
}

.footer-download {
  margin-top: 20px;
}

.download-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-btn:hover {
  color: #ff6b35;
  border-color: rgba(255, 107, 53, 0.3);
  background: rgba(255, 107, 53, 0.05);
}

.download-btn i {
  font-size: 1.1rem;
  min-width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
}

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

.footer-copyright {
  font-size: 0.9rem;
  color: #a0a0a0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.footer-copyright i {
  color: #ff6b35;
  font-size: 0.8rem;
}

.footer-security {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.security-item i {
  color: #22c55e;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 0 35px;
  }
  
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .footer-brand {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    gap: 35px;
    padding: 40px 0 30px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .footer-logo-text {
    font-size: 2rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-security {
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: 30px;
    padding: 35px 0 25px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .footer-link,
  .social-link {
    font-size: 0.9rem;
  }
  
  .download-title {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .download-btn {
    font-size: 0.9rem;
    padding: 5px 10px;
  }
  
  .footer-bottom {
    padding: 18px 0;
  }
  
  .footer-copyright {
    font-size: 0.85rem;
    text-align: center;
  }
  
  .security-item {
    font-size: 0.8rem;
  }
  
  .footer-security {
    gap: 12px;
  }
}

/* Sticky Bottom Buttons */
.sticky-bottom-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  padding: 8px;
  gap: 4px;
}

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

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

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

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

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

.sticky-btn-text {
  font-size: 0.8rem;
  line-height: 1.2;
  text-align: center;
}

.sticky-btn-login {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #ffffff;
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.sticky-btn-register {
  background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
  color: #ffffff;
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #047857 0%, #0f766e 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

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

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

.sticky-btn-credit::after {
  content: '🎁';
  position: absolute;
  top: -5px;
  right: 5px;
  font-size: 1rem;
  animation: bounce 2s infinite;
}

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

/* Add bottom padding to body to account for sticky buttons */
body {
  padding-bottom: 76px;
}

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

@media (max-width: 480px) {
  .sticky-bottom-buttons {
    padding: 5px;
    gap: 2px;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    min-height: 50px;
    border-radius: 6px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn-text {
    font-size: 0.7rem;
  }
  
  .sticky-btn-credit::after {
    font-size: 0.9rem;
    top: -3px;
    right: 3px;
  }
  
  body {
    padding-bottom: 60px;
  }
}

@media (max-width: 360px) {
  .sticky-btn {
    padding: 6px 2px;
    min-height: 45px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
  }
  
  .sticky-btn-text {
    font-size: 0.65rem;
  }
  
  body {
    padding-bottom: 55px;
  }
}

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.login-container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.login-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 107, 53, 0.3);
}

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

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

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

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

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

.login-subtitle {
  font-size: 1rem;
  color: #b0b0b0;
  margin-bottom: 30px;
  line-height: 1.5;
}

.error-message {
  display: none;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  text-align: left;
}

.error-message.show {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideDown 0.3s ease;
}

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

.error-text {
  color: #ef4444;
  font-size: 0.9rem;
  font-weight: 500;
}

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

.login-form {
  text-align: left;
}

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

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

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

.input-icon {
  position: absolute;
  left: 16px;
  color: #ff6b35;
  font-size: 1rem;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 14px 16px 14px 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
}

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

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

.form-input:valid {
  border-color: rgba(34, 197, 94, 0.5);
}

.form-input:invalid:not(:placeholder-shown) {
  border-color: rgba(239, 68, 68, 0.5);
}

.password-toggle {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  z-index: 2;
  transition: color 0.3s ease;
}

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

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #d0d0d0;
}

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

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

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
  background: #ff6b35;
  border-color: #ff6b35;
}

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

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

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

.login-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Sarabun', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.login-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #e55a2b 0%, #e08419 100%);
  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;
}

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

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

.login-btn.loading .btn-loader {
  display: block;
}

.login-divider {
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.divider-text {
  background: rgba(255, 255, 255, 0.05);
  padding: 0 15px;
  color: #888;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
}

.register-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  color: #ff6b35;
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 0;
    min-height: calc(100vh - 60px);
  }
  
  .login-container {
    padding: 0 15px;
  }
  
  .login-card {
    padding: 30px 25px;
    border-radius: 16px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .form-input {
    padding: 12px 14px 12px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 14px;
    font-size: 0.95rem;
  }
  
  .password-toggle {
    right: 14px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 14px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px;
    font-size: 0.95rem;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .login-card {
    padding: 25px 20px;
    margin: 0 10px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .form-group {
    margin-bottom: 18px;
  }
  
  .form-input {
    padding: 11px 12px 11px 38px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 0.9rem;
  }
  
  .password-toggle {
    right: 12px;
    font-size: 0.9rem;
  }
  
  .checkbox-text {
    font-size: 0.85rem;
  }
  
  .forgot-password {
    font-size: 0.85rem;
  }
  
  .login-btn {
    padding: 13px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 11px;
    font-size: 0.9rem;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.register-container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.register-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.register-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 107, 53, 0.3);
}

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

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

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

.register-content {
  text-align: center;
}

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

.register-subtitle {
  font-size: 1rem;
  color: #b0b0b0;
  margin-bottom: 30px;
  line-height: 1.5;
}

.error-message {
  display: none;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  text-align: left;
}

.error-message.show {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideDown 0.3s ease;
}

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

.error-text {
  color: #ef4444;
  font-size: 0.9rem;
  font-weight: 500;
}

.success-message {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  text-align: left;
}

.success-message.show {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideDown 0.3s ease;
}

.success-message i {
  color: #22c55e;
  font-size: 1rem;
}

.success-text {
  color: #22c55e;
  font-size: 0.9rem;
  font-weight: 500;
}

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

.register-form {
  text-align: left;
}

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

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

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: #ff6b35;
  font-size: 1rem;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 16px 16px 16px 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
}

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

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

.form-input:valid {
  border-color: rgba(34, 197, 94, 0.5);
}

.form-input:invalid:not(:placeholder-shown) {
  border-color: rgba(239, 68, 68, 0.5);
}

.input-help {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #888;
}

.input-help i {
  font-size: 0.75rem;
}

.terms-wrapper {
  margin-bottom: 25px;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #d0d0d0;
  line-height: 1.4;
}

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

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

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
  background: #ff6b35;
  border-color: #ff6b35;
}

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

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

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

.register-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Sarabun', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.register-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #e55a2b 0%, #e08419 100%);
  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;
}

.btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

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

.register-btn.loading .btn-loader {
  display: block;
}

.register-divider {
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.register-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.divider-text {
  background: rgba(255, 255, 255, 0.05);
  padding: 0 15px;
  color: #888;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 10px;
  color: #ff6b35;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.login-btn:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: #ff6b35;
  transform: translateY(-1px);
}

.register-features {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: #a0a0a0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 0;
    min-height: calc(100vh - 60px);
  }
  
  .register-container {
    padding: 0 15px;
  }
  
  .register-card {
    padding: 30px 25px;
    border-radius: 16px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .form-input {
    padding: 14px 14px 14px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 14px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 14px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 12px;
    font-size: 0.95rem;
  }
  
  .checkbox-text {
    font-size: 0.85rem;
  }
  
  .register-features {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .register-card {
    padding: 25px 20px;
    margin: 0 10px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-input {
    padding: 12px 12px 12px 38px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 0.9rem;
  }
  
  .input-help {
    font-size: 0.75rem;
  }
  
  .checkbox-text {
    font-size: 0.8rem;
  }
  
  .terms-wrapper {
    margin-bottom: 20px;
  }
  
  .register-btn {
    padding: 13px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 11px;
    font-size: 0.9rem;
  }
  
  .feature-item {
    font-size: 0.75rem;
  }
  
  .feature-item i {
    font-size: 1.1rem;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content {
  margin: 0 auto;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: #d0d0d0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  text-transform: none;
}

.hero-cta-btn:hover {
  background: linear-gradient(135deg, #e55a2b 0%, #e08419 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

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

/* Promotion Section Styles */
.promotion-section {
  padding: 40px 0;
  background: #1a1a1a;
  position: relative;
}

.promotion-section:nth-child(even) {
  background: #0f0f0f;
}

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.02) 0%, transparent 100%);
  pointer-events: none;
}

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

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
  max-width: 900px;
  margin: 0 auto;
}

.promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 107, 53, 0.3);
}

.promotion-header {
  padding: 30px 30px 0;
  position: relative;
}

.promotion-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promotion-badge.bonus {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.promotion-badge.weekly {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.promotion-badge.referral {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

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

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

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

.promotion-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: #d0d0d0;
  line-height: 1.6;
}

.promotion-list li::before {
  content: '\2713';
  color: #ff6b35;
  font-weight: bold;
  font-size: 1.1rem;
  min-width: 16px;
  margin-top: 2px;
}

.promotion-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: 25px 20px;
  min-width: 140px;
  text-align: center;
}

.highlight-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b35;
  line-height: 1;
  margin-bottom: 5px;
  font-family: 'Prompt', sans-serif;
}

.highlight-text {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
}

.promotion-action {
  padding: 0 30px 30px;
}

.promotion-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .promotion-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
  
  .promotion-highlight {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-cta-btn {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 30px 0;
  }
  
  .promotion-container {
    padding: 0 15px;
  }
  
  .promotion-header {
    padding: 25px 25px 0;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .promotion-content {
    padding: 25px;
    gap: 20px;
  }
  
  .promotion-list li {
    font-size: 0.95rem;
  }
  
  .promotion-highlight {
    padding: 20px 15px;
    min-width: 120px;
  }
  
  .highlight-amount {
    font-size: 2.2rem;
  }
  
  .promotion-action {
    padding: 0 25px 25px;
  }
  
  .promotion-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .hero-cta-btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .promotion-header {
    padding: 20px 20px 0;
  }
  
  .promotion-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .promotion-content {
    padding: 20px;
    gap: 18px;
  }
  
  .promotion-list {
    gap: 10px;
  }
  
  .promotion-list li {
    font-size: 0.9rem;
  }
  
  .promotion-highlight {
    padding: 18px 12px;
    min-width: 110px;
  }
  
  .highlight-amount {
    font-size: 2rem;
  }
  
  .highlight-text {
    font-size: 0.85rem;
  }
  
  .promotion-action {
    padding: 0 20px 20px;
  }
  
  .promotion-btn {
    padding: 13px 18px;
    font-size: 0.95rem;
  }
}