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

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

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

/* Button Base Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 16px;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #333333 0%, #555555 100%);
  color: #ffffff;
  border: 2px solid #ff6b35;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 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(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 142, 53, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.hero-text {
  z-index: 2;
}

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

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

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: #ffffff;
}

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

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

.hero-image {
  position: relative;
  z-index: 1;
}

.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-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-features {
    align-items: center;
  }
  
  .feature-item {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  .hero-features {
    margin-bottom: 32px;
  }
  
  .feature-item {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .payout-badge {
    position: static;
    margin: 20px auto 0;
    display: inline-flex;
  }
  
  .hero-overlay {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .payout-badge {
    padding: 10px 16px;
    font-size: 1rem;
  }
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  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;
}

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

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

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

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

/* Main Navigation */
.main-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

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

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

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

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

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

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #ffffff;
}

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

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

.mobile-menu-toggle:hover .hamburger-line {
  background: #ff6b35;
}

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

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

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

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

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

.mobile-menu-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateY(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-menu-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

/* Mobile Navigation */
.mobile-navigation {
  flex: 1;
  padding: 20px;
  display: flex;
  align-items: center;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-item {
  width: 100%;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

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

.mobile-nav-link i {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
  color: #ff6b35;
}

/* Mobile CTA Button */
.mobile-cta-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

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

.mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #ffffff !important;
}

.mobile-cta-btn i {
  color: #ffffff !important;
}

/* Responsive Design */
@media (max-width: 992px) {
  .header-content {
    height: 65px;
  }
  
  .nav-menu {
    gap: 24px;
  }
  
  .nav-link {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .btn-cta {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

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

@media (max-width: 480px) {
  .header-content {
    height: 55px;
  }
  
  .logo-text {
    font-size: 1rem;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-navigation {
    padding: 15px;
  }
  
  .mobile-nav-link {
    padding: 14px 16px;
    font-size: 1rem;
  }
  
  .mobile-cta-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
}

/* Add body padding to prevent content from hiding under fixed header */
body {
  padding-top: 70px;
}

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

@media (max-width: 480px) {
  body {
    padding-top: 55px;
  }
}

/* Lottery Platform Section */
.lottery-platform-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

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

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

.platform-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.text-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0;
}

.text-block strong {
  color: #ff6b35;
  font-weight: 700;
}

.text-block a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.text-block a:hover {
  border-bottom-color: #ff6b35;
}

.platform-image {
  position: relative;
}

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

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

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

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e35 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

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

.feature-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.feature-description {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.platform-footer {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.platform-footer p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0;
  max-width: 900px;
  margin: 0 auto;
}

.platform-footer strong {
  color: #ff6b35;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .lottery-platform-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .lottery-platform-section {
    padding: 50px 0;
  }
  
  .lottery-platform-container {
    padding: 0 15px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .platform-content {
    margin-bottom: 50px;
  }
  
  .text-block {
    padding: 20px;
  }
  
  .text-block p {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .feature-card {
    padding: 24px 20px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 1.7rem;
  }
  
  .feature-title {
    font-size: 1.2rem;
  }
  
  .feature-description {
    font-size: 0.95rem;
  }
  
  .platform-footer {
    padding: 24px 20px;
  }
  
  .platform-footer p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
  }
  
  .text-block {
    padding: 16px;
  }
  
  .text-block p {
    font-size: 0.95rem;
  }
  
  .feature-card {
    padding: 20px 16px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
  
  .feature-title {
    font-size: 1.1rem;
  }
  
  .feature-description {
    font-size: 0.9rem;
  }
  
  .platform-footer {
    padding: 20px 16px;
  }
  
  .platform-footer p {
    font-size: 0.95rem;
  }
}

/* Auto Deposit Withdraw Section */
.auto-deposit-withdraw-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.auto-deposit-withdraw-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 120, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.auto-system-image {
  position: relative;
}

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

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

.auto-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #0078ff 0%, #00a8ff 100%);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 120, 255, 0.3);
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 4px 15px rgba(0, 120, 255, 0.3); }
  to { box-shadow: 0 6px 25px rgba(0, 120, 255, 0.5); }
}

.auto-system-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 12px;
  padding: 28px;
  backdrop-filter: blur(10px);
  position: relative;
}

.text-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #ff6b35 0%, #0078ff 100%);
  border-radius: 2px 0 0 2px;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e8e8e8;
  margin: 0;
}

.text-content strong {
  color: #ff6b35;
  font-weight: 700;
}

.text-content a {
  color: #0078ff;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.text-content a:hover {
  border-bottom-color: #0078ff;
  color: #00a8ff;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.feature-highlight {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(0, 120, 255, 0.2);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.feature-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 120, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-highlight:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 120, 255, 0.4);
  box-shadow: 0 15px 35px rgba(0, 120, 255, 0.2);
}

.feature-highlight:hover::before {
  opacity: 1;
}

.feature-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0078ff 0%, #00a8ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.feature-icon-large i {
  font-size: 2.2rem;
  color: #ffffff;
}

.feature-highlight-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.feature-highlight-desc {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.additional-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.content-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  padding: 28px;
  backdrop-filter: blur(10px);
}

.content-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0;
}

.content-block strong {
  color: #ff6b35;
  font-weight: 700;
}

.content-block a {
  color: #0078ff;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.content-block a:hover {
  border-bottom-color: #0078ff;
  color: #00a8ff;
}

.security-features {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(15px);
}

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

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

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

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

.security-item i {
  font-size: 1.5rem;
  color: #ff6b35;
  width: 30px;
  text-align: center;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .auto-deposit-withdraw-section {
    padding: 60px 0;
  }
  
  .auto-system-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .features-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .additional-content {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 50px;
  }
  
  .security-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .auto-deposit-withdraw-section {
    padding: 50px 0;
  }
  
  .auto-deposit-withdraw-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .auto-system-content {
    margin-bottom: 40px;
  }
  
  .text-content {
    padding: 24px 20px;
  }
  
  .text-content p {
    font-size: 1rem;
  }
  
  .auto-badge {
    position: static;
    display: inline-flex;
    margin: 20px auto 0;
  }
  
  .feature-highlight {
    padding: 32px 20px;
  }
  
  .feature-icon-large {
    width: 70px;
    height: 70px;
  }
  
  .feature-icon-large i {
    font-size: 2rem;
  }
  
  .feature-highlight-title {
    font-size: 1.3rem;
  }
  
  .feature-highlight-desc {
    font-size: 1rem;
  }
  
  .features-row {
    margin-bottom: 40px;
  }
  
  .content-block {
    padding: 24px 20px;
  }
  
  .content-block p {
    font-size: 1rem;
  }
  
  .security-features {
    padding: 32px 24px;
  }
  
  .security-title {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
  
  .security-item {
    padding: 16px;
  }
  
  .security-item i {
    font-size: 1.3rem;
  }
  
  .security-item span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  
  .text-content {
    padding: 20px 16px;
  }
  
  .text-content p {
    font-size: 0.95rem;
  }
  
  .feature-highlight {
    padding: 24px 16px;
  }
  
  .feature-icon-large {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon-large i {
    font-size: 1.8rem;
  }
  
  .feature-highlight-title {
    font-size: 1.2rem;
  }
  
  .feature-highlight-desc {
    font-size: 0.95rem;
  }
  
  .content-block {
    padding: 20px 16px;
  }
  
  .content-block p {
    font-size: 0.95rem;
  }
  
  .security-features {
    padding: 24px 16px;
  }
  
  .security-title {
    font-size: 1.2rem;
  }
  
  .security-item {
    padding: 12px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .security-item:hover {
    transform: none;
  }
  
  .security-item span {
    font-size: 0.95rem;
  }
}

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

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

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

.lottery-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.intro-image {
  position: relative;
}

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

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

.intro-text {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(15px);
  position: relative;
}

.intro-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35 0%, #0078ff 100%);
  border-radius: 2px 2px 0 0;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e8e8e8;
  margin: 0;
}

.intro-text strong {
  color: #ff6b35;
  font-weight: 700;
}

.lottery-types-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.lottery-description {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.description-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 120, 255, 0.15);
  border-radius: 12px;
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.description-block:hover {
  border-color: rgba(0, 120, 255, 0.3);
  transform: translateY(-2px);
}

.description-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0;
}

.description-block strong {
  color: #0078ff;
  font-weight: 700;
}

.lottery-schedule {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(15px);
}

.schedule-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}

.schedule-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35 0%, #0078ff 100%);
  border-radius: 2px;
}

.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.schedule-item i {
  font-size: 1.4rem;
  color: #ff6b35;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.schedule-item h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
  min-width: 100px;
}

.schedule-item p {
  font-size: 0.95rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.4;
}

.management-info {
  margin-top: 60px;
}

.info-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(0, 120, 255, 0.2);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(15px);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e8e8e8;
  margin: 0;
}

.info-content strong {
  color: #0078ff;
  font-weight: 700;
}

.info-content a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.info-content a:hover {
  border-bottom-color: #ff6b35;
  color: #ff8e35;
}

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

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

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.3);
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .comprehensive-lottery-section {
    padding: 60px 0;
  }
  
  .lottery-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    margin-bottom: 50px;
  }
  
  .lottery-types-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .info-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .info-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .comprehensive-lottery-section {
    padding: 50px 0;
  }
  
  .comprehensive-lottery-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .intro-text {
    padding: 24px 20px;
  }
  
  .intro-text p {
    font-size: 1rem;
  }
  
  .description-block {
    padding: 24px 20px;
  }
  
  .description-block p {
    font-size: 1rem;
  }
  
  .lottery-schedule {
    padding: 24px 20px;
  }
  
  .schedule-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .schedule-item {
    padding: 16px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .schedule-item:hover {
    transform: translateY(-4px);
  }
  
  .schedule-item h4 {
    min-width: auto;
  }
  
  .info-card {
    padding: 32px 24px;
  }
  
  .info-content p {
    font-size: 1rem;
  }
  
  .info-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  
  .intro-text {
    padding: 20px 16px;
  }
  
  .intro-text p {
    font-size: 0.95rem;
  }
  
  .description-block {
    padding: 20px 16px;
  }
  
  .description-block p {
    font-size: 0.95rem;
  }
  
  .lottery-schedule {
    padding: 20px 16px;
  }
  
  .schedule-title {
    font-size: 1.2rem;
  }
  
  .schedule-item {
    padding: 14px;
  }
  
  .schedule-item h4 {
    font-size: 1rem;
  }
  
  .schedule-item p {
    font-size: 0.9rem;
  }
  
  .info-card {
    padding: 24px 16px;
  }
  
  .info-content p {
    font-size: 0.95rem;
  }
  
  .stat-item {
    padding: 16px;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
}

/* Referral System Section */
.referral-system-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.referral-system-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 200, 83, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(0, 120, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

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

.referral-intro {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.intro-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(15px);
  position: relative;
}

.intro-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35 0%, #00c853 100%);
  border-radius: 2px 2px 0 0;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e8e8e8;
  margin: 0;
}

.intro-content strong {
  color: #ff6b35;
  font-weight: 700;
}

.commission-highlight {
  display: flex;
  justify-content: center;
  align-items: center;
}

.commission-badge {
  background: linear-gradient(135deg, #00c853 0%, #4caf50 100%);
  color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 200, 83, 0.3);
  animation: bounce 2s infinite;
  position: relative;
}

.commission-badge i {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.commission-rate {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.commission-label {
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-top: 8px;
}

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

.referral-features {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.feature-image {
  position: relative;
}

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

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

.feature-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 200, 83, 0.15);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(15px);
}

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

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

.feature-description strong {
  color: #00c853;
  font-weight: 700;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 200, 83, 0.4);
}

.benefit-item i {
  font-size: 1.3rem;
  color: #00c853;
  flex-shrink: 0;
}

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

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

.promotion-text {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 120, 255, 0.15);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

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

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

.promotion-description strong {
  color: #0078ff;
  font-weight: 700;
}

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

.dashboard-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(0, 120, 255, 0.1);
  border: 1px solid rgba(0, 120, 255, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.dashboard-item:hover {
  transform: translateX(8px);
  border-color: rgba(0, 120, 255, 0.4);
}

.dashboard-item i {
  font-size: 1.5rem;
  color: #0078ff;
  flex-shrink: 0;
}

.dashboard-info h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}

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

.marketing-tools {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(15px);
}

.tools-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 24px;
}

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

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

.tool-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.3);
}

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

.tool-card h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

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

.tools-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0;
  text-align: center;
}

.tools-description strong {
  color: #ff6b35;
  font-weight: 700;
}

.tools-description a {
  color: #0078ff;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.tools-description a:hover {
  border-bottom-color: #0078ff;
  color: #00a8ff;
}

.community-benefits {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(0, 200, 83, 0.2);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(15px);
}

.community-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}

.community-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #00c853 0%, #4caf50 100%);
  border-radius: 2px;
}

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

.benefit-detail p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e8e8e8;
  margin: 0;
}

.benefit-detail strong {
  color: #00c853;
  font-weight: 700;
}

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

.community-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.community-feature:hover {
  transform: translateX(10px);
  border-color: rgba(0, 200, 83, 0.4);
  background: rgba(0, 200, 83, 0.15);
}

.community-feature i {
  font-size: 1.5rem;
  color: #00c853;
  flex-shrink: 0;
  width: 30px;
  text-align: center;
}

.community-feature h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .referral-system-section {
    padding: 60px 0;
  }
  
  .referral-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .referral-features {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .promotion-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .benefits-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .benefit-item {
    justify-content: center;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .referral-system-section {
    padding: 50px 0;
  }
  
  .referral-system-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .intro-content {
    padding: 24px 20px;
  }
  
  .intro-content p {
    font-size: 1rem;
  }
  
  .commission-badge {
    padding: 24px;
  }
  
  .commission-rate {
    font-size: 2.5rem;
  }
  
  .feature-content {
    padding: 24px 20px;
  }
  
  .feature-title {
    font-size: 1.5rem;
  }
  
  .feature-description p {
    font-size: 1rem;
  }
  
  .feature-benefits {
    grid-template-columns: 1fr;
  }
  
  .promotion-text {
    padding: 24px 20px;
  }
  
  .promotion-title {
    font-size: 1.3rem;
  }
  
  .promotion-description p {
    font-size: 1rem;
  }
  
  .marketing-tools {
    padding: 24px 20px;
  }
  
  .tools-title {
    font-size: 1.3rem;
  }
  
  .community-benefits {
    padding: 32px 24px;
  }
  
  .community-title {
    font-size: 1.5rem;
  }
  
  .benefit-detail p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  
  .intro-content {
    padding: 20px 16px;
  }
  
  .intro-content p {
    font-size: 0.95rem;
  }
  
  .commission-badge {
    padding: 20px;
  }
  
  .commission-rate {
    font-size: 2.2rem;
  }
  
  .commission-label {
    font-size: 1rem;
  }
  
  .feature-content {
    padding: 20px 16px;
  }
  
  .feature-title {
    font-size: 1.3rem;
  }
  
  .feature-description p {
    font-size: 0.95rem;
  }
  
  .benefit-item {
    padding: 12px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .benefit-item span {
    font-size: 0.9rem;
  }
  
  .promotion-text {
    padding: 20px 16px;
  }
  
  .promotion-title {
    font-size: 1.2rem;
  }
  
  .promotion-description p {
    font-size: 0.95rem;
  }
  
  .dashboard-item {
    padding: 12px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .dashboard-item:hover {
    transform: translateY(-3px);
  }
  
  .marketing-tools {
    padding: 20px 16px;
  }
  
  .tools-title {
    font-size: 1.2rem;
  }
  
  .tool-card {
    padding: 16px 12px;
  }
  
  .tool-card i {
    font-size: 1.7rem;
  }
  
  .tool-card h4 {
    font-size: 1rem;
  }
  
  .tool-card p {
    font-size: 0.85rem;
  }
  
  .tools-description p {
    font-size: 0.95rem;
  }
  
  .community-benefits {
    padding: 24px 16px;
  }
  
  .community-title {
    font-size: 1.3rem;
  }
  
  .benefit-detail p {
    font-size: 0.95rem;
  }
  
  .community-feature {
    padding: 16px 12px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .community-feature:hover {
    transform: translateY(-3px);
  }
  
  .community-feature h4 {
    font-size: 1rem;
  }
  
  .community-feature p {
    font-size: 0.9rem;
  }
}

/* Safe Website Selection Section */
.safe-website-selection-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 20%, #16213e 60%, #1a1a2e 80%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.safe-website-selection-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(0, 120, 255, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(139, 69, 19, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.safe-website-selection-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.selection-intro {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.intro-image {
  position: relative;
}

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

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

.safety-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
  animation: safetyGlow 2s infinite alternate;
}

@keyframes safetyGlow {
  from { box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3); }
  to { box-shadow: 0 6px 25px rgba(139, 69, 19, 0.5); }
}

.intro-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(15px);
  position: relative;
}

.intro-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #8b4513 0%, #ff6b35 50%, #0078ff 100%);
  border-radius: 2px 2px 0 0;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e8e8e8;
  margin: 0 0 24px 0;
}

.intro-content strong {
  color: #ff6b35;
  font-weight: 700;
}

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

.key-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(139, 69, 19, 0.1);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.key-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 69, 19, 0.4);
  background: rgba(139, 69, 19, 0.15);
}

.key-feature i {
  font-size: 1.3rem;
  color: #d2691e;
  flex-shrink: 0;
}

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

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

.verification-text {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 120, 255, 0.15);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

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

.verification-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0078ff 0%, #00a8ff 100%);
  border-radius: 2px;
}

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

.verification-description strong {
  color: #0078ff;
  font-weight: 700;
}

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

.casino-feature {
  text-align: center;
  padding: 20px 16px;
  background: rgba(0, 120, 255, 0.1);
  border: 1px solid rgba(0, 120, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.casino-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 120, 255, 0.4);
}

.casino-feature i {
  font-size: 2rem;
  color: #0078ff;
  margin-bottom: 12px;
}

.casino-feature h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

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

.verification-checklist {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(15px);
}

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

.checklist-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e8e8e8;
  margin: 0;
}

.checklist-content strong {
  color: #ff6b35;
  font-weight: 700;
}

.evaluation-steps {
  margin-bottom: 60px;
}

.steps-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.steps-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #8b4513 0%, #ff6b35 50%, #0078ff 100%);
  border-radius: 2px;
}

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

.step-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-item:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 69, 19, 0.4);
}

.step-item:hover::before {
  opacity: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.step-content {
  position: relative;
  z-index: 1;
}

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

.step-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  margin: 0 0 16px 0;
}

.step-content i {
  font-size: 1.5rem;
  color: #d2691e;
  position: absolute;
  bottom: 16px;
  right: 16px;
}

.selection-guidelines {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: start;
}

.guidelines-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 120, 255, 0.15);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(15px);
}

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

.guidelines-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e8e8e8;
  margin: 0 0 24px 0;
}

.warning-box {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.warning-icon {
  flex-shrink: 0;
}

.warning-icon i {
  font-size: 1.8rem;
  color: #ffc107;
}

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

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

.transparency-features {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(15px);
}

.transparency-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 24px;
}

.transparency-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.transparency-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(139, 69, 19, 0.1);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.transparency-item:hover {
  transform: translateX(8px);
  border-color: rgba(139, 69, 19, 0.4);
  background: rgba(139, 69, 19, 0.15);
}

.transparency-item i {
  font-size: 1.3rem;
  color: #d2691e;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .safe-website-selection-section {
    padding: 60px 0;
  }
  
  .selection-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .verification-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .selection-guidelines {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .key-features {
    grid-template-columns: 1fr;
  }
  
  .casino-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .safe-website-selection-section {
    padding: 50px 0;
  }
  
  .safe-website-selection-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .intro-content {
    padding: 24px 20px;
  }
  
  .intro-content p {
    font-size: 1rem;
  }
  
  .safety-badge {
    position: static;
    display: inline-flex;
    margin: 20px auto 0;
  }
  
  .verification-text {
    padding: 24px 20px;
  }
  
  .verification-title {
    font-size: 1.4rem;
  }
  
  .verification-description p {
    font-size: 1rem;
  }
  
  .verification-checklist {
    padding: 24px 20px;
  }
  
  .checklist-title {
    font-size: 1.3rem;
  }
  
  .checklist-content p {
    font-size: 1rem;
  }
  
  .steps-title {
    font-size: 1.6rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .step-item {
    padding: 20px;
  }
  
  .step-content h4 {
    font-size: 1.1rem;
  }
  
  .step-content p {
    font-size: 0.95rem;
  }
  
  .guidelines-content {
    padding: 24px 20px;
  }
  
  .guidelines-title {
    font-size: 1.3rem;
  }
  
  .guidelines-text p {
    font-size: 1rem;
  }
  
  .transparency-features {
    padding: 24px 20px;
  }
  
  .transparency-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  
  .intro-content {
    padding: 20px 16px;
  }
  
  .intro-content p {
    font-size: 0.95rem;
  }
  
  .key-feature {
    padding: 12px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .key-feature span {
    font-size: 0.9rem;
  }
  
  .verification-text {
    padding: 20px 16px;
  }
  
  .verification-title {
    font-size: 1.3rem;
  }
  
  .verification-description p {
    font-size: 0.95rem;
  }
  
  .casino-feature {
    padding: 16px 12px;
  }
  
  .casino-feature i {
    font-size: 1.7rem;
  }
  
  .casino-feature h4 {
    font-size: 1rem;
  }
  
  .casino-feature p {
    font-size: 0.85rem;
  }
  
  .verification-checklist {
    padding: 20px 16px;
  }
  
  .checklist-title {
    font-size: 1.2rem;
  }
  
  .checklist-content p {
    font-size: 0.95rem;
  }
  
  .steps-title {
    font-size: 1.4rem;
  }
  
  .step-item {
    padding: 16px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .step-content h4 {
    font-size: 1rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .step-content i {
    font-size: 1.3rem;
    bottom: 12px;
    right: 12px;
  }
  
  .guidelines-content {
    padding: 20px 16px;
  }
  
  .guidelines-title {
    font-size: 1.2rem;
  }
  
  .guidelines-text p {
    font-size: 0.95rem;
  }
  
  .warning-box {
    padding: 16px;
    gap: 12px;
  }
  
  .warning-icon i {
    font-size: 1.5rem;
  }
  
  .warning-content h4 {
    font-size: 1.1rem;
  }
  
  .warning-content p {
    font-size: 0.9rem;
  }
  
  .transparency-features {
    padding: 20px 16px;
  }
  
  .transparency-title {
    font-size: 1.1rem;
  }
  
  .transparency-item {
    padding: 12px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .transparency-item:hover {
    transform: translateY(-3px);
  }
  
  .transparency-item span {
    font-size: 0.95rem;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  color: #ffffff;
  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(circle at 20% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(0, 120, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

/* Footer About Section */
.footer-logo {
  margin-bottom: 16px;
}

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

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

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

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

.contact-item i {
  color: #ff6b35;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

/* Footer Titles */
.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  position: relative;
  padding-bottom: 8px;
}

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

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

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 4px 0;
  display: block;
  position: relative;
}

.footer-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #ff6b35;
  transition: width 0.3s ease;
}

.footer-menu a:hover {
  color: #ff6b35;
  transform: translateX(4px);
}

.footer-menu a:hover::before {
  width: 100%;
}

/* Footer Features */
.footer-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.feature-highlight:hover {
  background: rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateX(4px);
}

.feature-highlight i {
  color: #ff6b35;
  font-size: 1rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

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

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

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

.footer-copyright {
  text-align: left;
}

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

.footer-disclaimer {
  text-align: center;
}

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

.disclaimer-text i {
  color: #ffc107;
  flex-shrink: 0;
}

.footer-badges {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: 6px;
  font-size: 0.8rem;
  color: #00c853;
  font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 50px 0 30px;
  }
  
  .footer-about {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .footer-bottom-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .footer-badges {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 40px 0 24px;
  }
  
  .footer-features {
    grid-column: 1 / -1;
  }
  
  .footer-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .footer-logo-text {
    font-size: 1.2rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    padding: 24px 0;
  }
  
  .disclaimer-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 0 20px;
  }
  
  .footer-features-list {
    grid-template-columns: 1fr;
  }
  
  .feature-highlight {
    justify-content: center;
  }
  
  .footer-logo-text {
    font-size: 1.1rem;
  }
  
  .footer-title {
    font-size: 1rem;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-description {
    font-size: 0.85rem;
    text-align: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .footer-copyright p {
    font-size: 0.8rem;
  }
  
  .disclaimer-text {
    font-size: 0.75rem;
    flex-direction: column;
    gap: 4px;
  }
  
  .footer-badges {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .security-badge {
    font-size: 0.75rem;
  }
}

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

.sticky-buttons-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sticky-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  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.5s ease;
}

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

.sticky-btn i {
  font-size: 1.4rem;
  margin-bottom: 2px;
}

.sticky-btn span {
  font-size: 0.85rem;
  line-height: 1.2;
  white-space: nowrap;
}

/* Login Button */
.sticky-btn-login {
  background: linear-gradient(135deg, #0078ff 0%, #00a8ff 100%);
  color: #ffffff;
  border: 1px solid rgba(0, 120, 255, 0.3);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #0056cc 0%, #0078ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 120, 255, 0.3);
  color: #ffffff;
}

/* Register Button */
.sticky-btn-register {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e35 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #ffffff;
}

/* Credit Button */
.sticky-btn-credit {
  background: linear-gradient(135deg, #00c853 0%, #4caf50 100%);
  color: #ffffff;
  border: 1px solid rgba(0, 200, 83, 0.3);
  animation: pulse 2s infinite;
}

.sticky-btn-credit:hover {
  background: linear-gradient(135deg, #00a046 0%, #00c853 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
  color: #ffffff;
  animation: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
  }
  50% {
    box-shadow: 0 6px 25px rgba(0, 200, 83, 0.5);
  }
  100% {
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
  }
}

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

@media (max-width: 480px) {
  .sticky-buttons {
    padding: 8px 0;
  }
  
  .sticky-buttons-container {
    padding: 0 12px;
    gap: 8px;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    min-height: 50px;
    font-size: 0.8rem;
    border-radius: 10px;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
    line-height: 1.1;
  }
}

@media (max-width: 360px) {
  .sticky-btn {
    padding: 6px 2px;
    min-height: 45px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
  }
}

/* Add bottom padding to body to prevent content from hiding under sticky buttons */
body {
  padding-bottom: 84px;
}

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

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

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

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

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

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

.login-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35 0%, #0078ff 100%);
  border-radius: 20px 20px 0 0;
}

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

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

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

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

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

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

/* Error Message */
.error-message {
  display: none;
  background: rgba(255, 69, 58, 0.1);
  border: 1px solid rgba(255, 69, 58, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
  color: #ff453a;
  font-size: 0.9rem;
  align-items: center;
  gap: 10px;
}

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

.error-message i {
  flex-shrink: 0;
}

/* Login Form */
.login-form {
  margin-bottom: 24px;
}

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

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

.form-label i {
  color: #ff6b35;
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

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

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

.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.2);
}

.form-input.error {
  border-color: #ff453a;
  box-shadow: 0 0 0 3px rgba(255, 69, 58, 0.2);
}

.form-input.success {
  border-color: #00c853;
  box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.2);
}

/* Password Input Container */
.password-input-container {
  position: relative;
}

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

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

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

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

/* Login Button */
.login-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e35 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.login-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px 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;
}

/* Register Button */
.register-btn {
  width: 100%;
  padding: 14px 24px;
  background: rgba(0, 120, 255, 0.1);
  color: #0078ff;
  border: 1px solid rgba(0, 120, 255, 0.3);
  border-radius: 12px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.register-btn:hover {
  background: rgba(0, 120, 255, 0.15);
  border-color: rgba(0, 120, 255, 0.5);
  transform: translateY(-2px);
  color: #0078ff;
}

/* Login Features */
.login-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

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

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

.feature-item span {
  font-size: 0.8rem;
  color: #cccccc;
  font-weight: 600;
  line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    min-height: calc(100vh - 60px);
    padding: 20px 15px;
  }
  
  .login-card {
    padding: 32px 24px;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 12px 14px;
  }
  
  .login-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .login-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .feature-item {
    flex-direction: row;
    justify-content: center;
    padding: 10px 12px;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .login-card {
    padding: 24px 20px;
  }
  
  .login-logo {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 11px 12px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 11px 18px;
    font-size: 0.9rem;
  }
  
  .feature-item {
    padding: 8px 10px;
  }
  
  .feature-item i {
    font-size: 1.1rem;
  }
  
  .feature-item span {
    font-size: 0.8rem;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(0, 200, 83, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.register-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35 0%, #00c853 100%);
  border-radius: 20px 20px 0 0;
}

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

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

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

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

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Messages */
.error-message {
  display: none;
  background: rgba(255, 69, 58, 0.1);
  border: 1px solid rgba(255, 69, 58, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
  color: #ff453a;
  font-size: 0.9rem;
  align-items: center;
  gap: 10px;
}

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

.success-message {
  display: none;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
  color: #00c853;
  font-size: 0.9rem;
  align-items: center;
  gap: 10px;
}

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

.error-message i,
.success-message i {
  flex-shrink: 0;
}

/* Register Form */
.register-form {
  margin-bottom: 24px;
}

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

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

.form-label i {
  color: #ff6b35;
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

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

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

.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.2);
}

.form-input.error {
  border-color: #ff453a;
  box-shadow: 0 0 0 3px rgba(255, 69, 58, 0.2);
}

.form-input.success {
  border-color: #00c853;
  box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.2);
}

/* Field Errors and Hints */
.field-error {
  font-size: 0.85rem;
  color: #ff453a;
  margin-top: 6px;
  display: none;
}

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

.field-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.8rem;
  color: #999999;
}

.field-hint i {
  color: #0078ff;
  flex-shrink: 0;
}

/* Register Button */
.register-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e35 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.register-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px 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;
}

/* Login Button */
.login-btn {
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: #0078ff;
  border: 2px solid #0078ff;
  border-radius: 12px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.login-btn:hover {
  background: rgba(0, 120, 255, 0.1);
  border-color: #00a8ff;
  transform: translateY(-2px);
  color: #00a8ff;
}

/* Register Features */
.register-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(0, 200, 83, 0.1);
  border-color: rgba(0, 200, 83, 0.3);
  transform: translateY(-2px);
}

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

.feature-item span {
  font-size: 0.8rem;
  color: #cccccc;
  font-weight: 600;
  line-height: 1.2;
}

/* Terms Notice */
.terms-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  font-size: 0.85rem;
  color: #ffc107;
  line-height: 1.4;
}

.terms-notice i {
  color: #ffc107;
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-notice a {
  color: #ffc107;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.terms-notice a:hover {
  color: #ffeb3b;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    min-height: calc(100vh - 60px);
    padding: 20px 15px;
  }
  
  .register-card {
    padding: 32px 24px;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 14px 16px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .register-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .feature-item {
    flex-direction: row;
    justify-content: center;
    padding: 10px 12px;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
  
  .terms-notice {
    padding: 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .register-card {
    padding: 24px 20px;
  }
  
  .register-logo {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 11px 18px;
    font-size: 0.9rem;
  }
  
  .feature-item {
    padding: 8px 10px;
  }
  
  .feature-item i {
    font-size: 1.1rem;
  }
  
  .feature-item span {
    font-size: 0.8rem;
  }
  
  .terms-notice {
    padding: 10px;
    font-size: 0.75rem;
  }
  
  .field-hint {
    font-size: 0.75rem;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 70%),
              radial-gradient(circle at 20% 80%, rgba(0, 200, 83, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

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

.hero-content {
  margin: 0 auto;
}

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

.hero-subtitle {
  font-size: 1.4rem;
  color: #cccccc;
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 50px;
  padding: 16px 32px;
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: #ff6b35;
  font-weight: 600;
}

.hero-highlight i {
  font-size: 1.3rem;
  color: #ff6b35;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e35 100%);
  color: #ffffff;
  padding: 20px 40px;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
  color: #ffffff;
  animation: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
  }
  100% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  }
}

/* Promotion Sections */
.promotion-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

.promotion-header {
  text-align: center;
  margin-bottom: 60px;
}

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

/* Promotion Features */
.promotion-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

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

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

.feature-item i {
  font-size: 1.5rem;
  color: #ff6b35;
  flex-shrink: 0;
  width: 30px;
  text-align: center;
}

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

/* Bonus Highlights */
.bonus-highlight {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  text-align: center;
}

.bonus-percentage,
.bonus-max {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 16px;
  padding: 30px 20px;
  backdrop-filter: blur(10px);
}

.percentage-number,
.max-number {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ff6b35;
  display: block;
  line-height: 1;
}

.percentage-label,
.max-label {
  font-size: 1.2rem;
  color: #cccccc;
  font-weight: 600;
  margin-top: 8px;
}

/* Commission Highlight */
.commission-highlight {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  margin-bottom: 40px;
  align-items: center;
}

.commission-rate {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.1) 0%, rgba(0, 200, 83, 0.05) 100%);
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.commission-number {
  font-family: 'Prompt', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #00c853;
  display: block;
  line-height: 1;
}

.commission-label {
  font-size: 1.2rem;
  color: #cccccc;
  font-weight: 600;
  margin-top: 8px;
}

.commission-unlimited {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
}

.commission-unlimited i {
  font-size: 2.5rem;
  color: #0078ff;
}

.commission-unlimited span {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
}

/* Cashback Highlight */
.cashback-highlight {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  margin-bottom: 40px;
  align-items: center;
}

.cashback-rate {
  background: linear-gradient(135deg, rgba(0, 120, 255, 0.1) 0%, rgba(0, 120, 255, 0.05) 100%);
  border: 1px solid rgba(0, 120, 255, 0.3);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.cashback-number {
  font-family: 'Prompt', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #0078ff;
  display: block;
  line-height: 1;
}

.cashback-label {
  font-size: 1.2rem;
  color: #cccccc;
  font-weight: 600;
  margin-top: 8px;
}

.cashback-daily {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
}

.cashback-daily i {
  font-size: 2.5rem;
  color: #ff6b35;
}

.cashback-daily span {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
}

/* Promotion CTA */
.promotion-cta-container {
  text-align: center;
}

.promotion-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e35 100%);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.promotion-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-cta {
    padding: 18px 36px;
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-title {
    font-size: 2.2rem;
  }
  
  .promotion-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .bonus-highlight {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .commission-highlight,
  .cashback-highlight {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 24px;
  }
  
  .hero-highlight {
    padding: 12px 24px;
    font-size: 1rem;
    margin-bottom: 32px;
  }
  
  .hero-cta {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-container {
    padding: 0 15px;
  }
  
  .promotion-header {
    margin-bottom: 40px;
  }
  
  .promotion-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .promotion-features {
    margin-bottom: 40px;
  }
  
  .feature-item {
    padding: 16px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .feature-item i {
    width: auto;
  }
  
  .percentage-number,
  .max-number,
  .commission-number,
  .cashback-number {
    font-size: 2.5rem;
  }
  
  .commission-unlimited,
  .cashback-daily {
    padding: 20px 16px;
  }
  
  .commission-unlimited i,
  .cashback-daily i {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-highlight {
    padding: 10px 20px;
    font-size: 0.95rem;
    flex-direction: column;
    gap: 8px;
  }
  
  .hero-cta {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .promotion-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  
  .feature-item {
    padding: 14px;
  }
  
  .feature-item span {
    font-size: 0.95rem;
  }
  
  .bonus-percentage,
  .bonus-max,
  .commission-rate,
  .cashback-rate {
    padding: 20px 16px;
  }
  
  .percentage-number,
  .max-number,
  .commission-number,
  .cashback-number {
    font-size: 2.2rem;
  }
  
  .percentage-label,
  .max-label,
  .commission-label,
  .cashback-label {
    font-size: 1rem;
  }
  
  .promotion-cta {
    padding: 14px 28px;
    font-size: 1rem;
  }
}