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

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

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

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

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

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000000;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

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

.btn-secondary:hover {
  background: #ffd700;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

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

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

.feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

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

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

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out;
}

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

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

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

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

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .hero-container {
    padding: 0 30px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-container {
    padding: 0 20px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 24px;
  }
  
  .feature-item {
    padding: 12px;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
}

/* Header Styles */
.main-header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

.nav-link:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

.nav-link.active {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.15);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: #ffd700;
  border-radius: 2px;
}

/* Header CTA Button */
.header-cta {
  display: flex;
  align-items: center;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000000;
  text-decoration: none;
  border-radius: 10px;
  font-family: 'Sarabun', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

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

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

.mobile-menu-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  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 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 40px;
}

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

.mobile-menu-close {
  background: none;
  border: none;
  color: #ffd700;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 215, 0, 0.1);
}

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

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

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

.mobile-nav-link:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

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

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000000;
  text-decoration: none;
  border-radius: 12px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

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

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

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

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
    height: 55px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-menu-content {
    padding: 15px;
  }
  
  .mobile-menu-header {
    margin-bottom: 30px;
  }
  
  .mobile-nav-list {
    gap: 25px;
  }
  
  .mobile-nav-link {
    font-size: 1.1rem;
    padding: 12px 16px;
  }
  
  .mobile-cta-btn {
    font-size: 1.1rem;
    padding: 15px 18px;
  }
}

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

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

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

/* Platform Section */
.platform-section {
  padding: 100px 0;
  background: #0f0f23;
  position: relative;
  overflow: hidden;
}

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

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

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

.platform-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 30px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

.platform-highlights {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}

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

.highlights-list {
  list-style: none;
  padding: 0;
}

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.highlights-list li:last-child {
  margin-bottom: 0;
}

.highlights-list i {
  color: #ffd700;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.highlights-list strong {
  color: #ffd700;
  font-weight: 700;
}

.platform-conclusion {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
}

.platform-conclusion strong {
  color: #ffd700;
  font-weight: 700;
}

.inline-link {
  color: #ffd700;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.inline-link:hover {
  color: #ffed4e;
  text-decoration: none;
}

.platform-image {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

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

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

.platform-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 400px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

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

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

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .platform-container {
    padding: 0 30px;
  }
  
  .platform-content {
    gap: 60px;
  }
  
  .platform-title {
    font-size: 2.4rem;
  }
  
  .platform-description p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 80px 0;
  }
  
  .platform-container {
    padding: 0 20px;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .platform-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .platform-description p {
    font-size: 1rem;
  }
  
  .platform-highlights {
    padding: 25px;
  }
  
  .highlights-title {
    font-size: 1.3rem;
  }
  
  .highlights-list li {
    font-size: 1rem;
  }
  
  .platform-conclusion {
    font-size: 1rem;
  }
  
  .stat-item {
    padding: 16px 12px;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .platform-section {
    padding: 60px 0;
  }
  
  .platform-container {
    padding: 0 15px;
  }
  
  .platform-content {
    gap: 40px;
  }
  
  .platform-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .platform-description {
    margin-bottom: 30px;
  }
  
  .platform-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .platform-highlights {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .highlights-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
  
  .highlights-list li {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }
  
  .platform-conclusion {
    font-size: 0.95rem;
  }
  
  .platform-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stat-item {
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}

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

.deposit-withdraw-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at bottom left, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

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

.section-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin: 0 auto;
}

.deposit-withdraw-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: center;
}

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

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

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

.content-description strong {
  color: #ffd700;
  font-weight: 700;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
}

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

.feature-icon i {
  font-size: 1.4rem;
  color: #000000;
}

.feature-info h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
  line-height: 1.3;
}

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

.transaction-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.transaction-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

.transaction-img:hover {
  transform: scale(1.05) rotate(1deg);
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  width: 100%;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 12px 20px;
  transition: all 0.3s ease;
}

.security-badge:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

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

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

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .deposit-withdraw-container {
    padding: 0 30px;
  }
  
  .section-title {
    font-size: 2.3rem;
  }
  
  .deposit-withdraw-content {
    gap: 60px;
  }
  
  .content-description p {
    font-size: 1.05rem;
  }
  
  .transaction-features {
    gap: 20px;
  }
  
  .feature-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .deposit-withdraw-section {
    padding: 80px 0;
  }
  
  .deposit-withdraw-container {
    padding: 0 20px;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .deposit-withdraw-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .content-description {
    margin-bottom: 40px;
  }
  
  .content-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .transaction-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 20px;
    gap: 15px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-icon i {
    font-size: 1.2rem;
  }
  
  .feature-info h3 {
    font-size: 1.1rem;
  }
  
  .feature-info p {
    font-size: 0.9rem;
  }
  
  .security-badges {
    gap: 12px;
  }
  
  .security-badge {
    padding: 10px 16px;
  }
  
  .security-badge span {
    font-size: 0.85rem;
  }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .deposit-withdraw-section {
    padding: 60px 0;
  }
  
  .deposit-withdraw-container {
    padding: 0 15px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .deposit-withdraw-content {
    gap: 40px;
  }
  
  .content-description {
    margin-bottom: 35px;
  }
  
  .content-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .transaction-features {
    gap: 15px;
  }
  
  .feature-card {
    padding: 18px;
    gap: 12px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-icon i {
    font-size: 1.1rem;
  }
  
  .feature-info h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .feature-info p {
    font-size: 0.85rem;
  }
  
  .security-badges {
    gap: 10px;
  }
  
  .security-badge {
    padding: 8px 14px;
  }
  
  .security-badge i {
    font-size: 0.9rem;
  }
  
  .security-badge span {
    font-size: 0.8rem;
  }
}

/* Profit Calculator Section */
.calculator-section {
  padding: 100px 0;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

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

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

.calculator-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

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

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

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

.content-description strong {
  color: #ffd700;
  font-weight: 700;
}

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

.examples-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 30px;
}

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

.example-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.example-card:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.15);
}

.example-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.example-icon i {
  font-size: 1.6rem;
  color: #000000;
}

.example-info h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.bet-amount {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin-bottom: 8px;
}

.win-amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
}

.rate {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
}

.calculator-note {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 25px;
}

.calculator-note p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0;
}

.calculator-note strong {
  color: #ffd700;
  font-weight: 700;
}

.calculator-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.calculator-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

.calculator-img:hover {
  transform: scale(1.05) rotate(-1deg);
}

.calculation-display {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.calc-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.calc-item:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateX(5px);
}

.calc-item.highlight {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.calc-formula {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #b0b0b0;
  margin-bottom: 8px;
}

.calc-result {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
}

.calc-type {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .calculator-container {
    padding: 0 30px;
  }
  
  .section-title {
    font-size: 2.3rem;
  }
  
  .calculator-content {
    gap: 60px;
  }
  
  .content-description p {
    font-size: 1.05rem;
  }
  
  .example-cards {
    gap: 15px;
  }
  
  .example-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .calculator-section {
    padding: 80px 0;
  }
  
  .calculator-container {
    padding: 0 20px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .calculator-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .content-description {
    margin-bottom: 40px;
  }
  
  .content-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .examples-title {
    font-size: 1.3rem;
  }
  
  .example-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .example-card {
    padding: 20px;
  }
  
  .example-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .example-icon i {
    font-size: 1.3rem;
  }
  
  .example-info h4 {
    font-size: 1rem;
  }
  
  .win-amount {
    font-size: 1.2rem;
  }
  
  .calculator-note {
    padding: 20px;
  }
  
  .calculator-note p {
    font-size: 1rem;
  }
  
  .calculation-display {
    gap: 12px;
  }
  
  .calc-item {
    padding: 15px;
  }
  
  .calc-formula {
    font-size: 1rem;
  }
  
  .calc-result {
    font-size: 1.2rem;
  }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .calculator-section {
    padding: 60px 0;
  }
  
  .calculator-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .calculator-content {
    gap: 40px;
  }
  
  .content-description {
    margin-bottom: 35px;
  }
  
  .content-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .profit-examples {
    margin-bottom: 35px;
  }
  
  .examples-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }
  
  .example-cards {
    gap: 12px;
  }
  
  .example-card {
    padding: 18px;
  }
  
  .example-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
  }
  
  .example-icon i {
    font-size: 1.2rem;
  }
  
  .example-info h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  
  .bet-amount {
    font-size: 0.9rem;
  }
  
  .win-amount {
    font-size: 1.1rem;
  }
  
  .rate {
    font-size: 0.85rem;
  }
  
  .calculator-note {
    padding: 18px;
  }
  
  .calculator-note p {
    font-size: 0.95rem;
  }
  
  .calculation-display {
    gap: 10px;
  }
  
  .calc-item {
    padding: 12px;
  }
  
  .calc-formula {
    font-size: 0.9rem;
  }
  
  .calc-result {
    font-size: 1.1rem;
  }
  
  .calc-type {
    font-size: 0.8rem;
  }
}

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

.registration-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top left, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.registration-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: center;
}

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

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

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

.content-description strong {
  color: #ffd700;
  font-weight: 700;
}

.inline-link {
  color: #ffd700;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.inline-link:hover {
  color: #ffed4e;
  text-decoration: none;
}

.registration-steps {
  margin-bottom: 40px;
}

.steps-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 30px;
}

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

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

.step-card:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
}

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

.step-info h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
}

.step-info p {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.5;
  margin: 0;
}

.additional-info {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 30px;
}

.additional-info p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 20px;
}

.additional-info p:last-child {
  margin-bottom: 0;
}

.additional-info strong {
  color: #ffd700;
  font-weight: 700;
}

.registration-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.registration-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

.registration-img:hover {
  transform: scale(1.05) rotate(1deg);
}

.registration-cta {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  width: 100%;
  max-width: 400px;
}

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

.cta-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000000;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

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

.btn-secondary:hover {
  background: #ffd700;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .registration-container {
    padding: 0 30px;
  }
  
  .section-title {
    font-size: 2.3rem;
  }
  
  .registration-content {
    gap: 60px;
  }
  
  .content-description p {
    font-size: 1.05rem;
  }
  
  .step-card {
    padding: 20px;
    gap: 20px;
  }
  
  .additional-info {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .registration-section {
    padding: 80px 0;
  }
  
  .registration-container {
    padding: 0 20px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .registration-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .content-description {
    margin-bottom: 40px;
  }
  
  .content-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .steps-title {
    font-size: 1.3rem;
  }
  
  .step-cards {
    gap: 15px;
  }
  
  .step-card {
    padding: 20px;
    gap: 18px;
  }
  
  .step-card:hover {
    transform: translateY(-3px);
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .step-info h4 {
    font-size: 1.1rem;
  }
  
  .step-info p {
    font-size: 0.95rem;
  }
  
  .additional-info {
    padding: 25px;
  }
  
  .additional-info p {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  
  .registration-cta {
    padding: 30px;
  }
  
  .cta-title {
    font-size: 1.3rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .registration-section {
    padding: 60px 0;
  }
  
  .registration-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .registration-content {
    gap: 40px;
  }
  
  .content-description {
    margin-bottom: 35px;
  }
  
  .content-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .registration-steps {
    margin-bottom: 35px;
  }
  
  .steps-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }
  
  .step-cards {
    gap: 12px;
  }
  
  .step-card {
    padding: 18px;
    gap: 15px;
    flex-direction: column;
    text-align: center;
  }
  
  .step-card:hover {
    transform: translateY(-3px);
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .step-info h4 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .step-info p {
    font-size: 0.9rem;
  }
  
  .additional-info {
    padding: 20px;
  }
  
  .additional-info p {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
  
  .registration-cta {
    padding: 25px;
  }
  
  .cta-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .cta-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .cta-buttons {
    gap: 12px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

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

.lottery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at bottom right, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

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

.lottery-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.content-description {
  text-align: left;
}

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

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

.content-description strong {
  color: #ffd700;
  font-weight: 700;
}

.lottery-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.lottery-category {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}

.category-header i {
  color: #ffd700;
  font-size: 1.8rem;
}

.category-header h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin: 0;
}

.lottery-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lottery-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.lottery-item:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.lottery-item i {
  color: #ffd700;
  font-size: 1.3rem;
  width: 25px;
  text-align: center;
  flex-shrink: 0;
}

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

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

.lottery-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.lottery-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

.lottery-img:hover {
  transform: scale(1.05) rotate(-1deg);
}

.lottery-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 450px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

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

.stat-icon i {
  font-size: 1.3rem;
  color: #000000;
}

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

.stat-label {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin: 0;
}

.community-section {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 50px;
}

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

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

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

.community-description strong {
  color: #ffd700;
  font-weight: 700;
}

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

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

.feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(255, 215, 0, 0.15);
}

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

.feature-text h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.4;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .lottery-container {
    padding: 0 30px;
  }
  
  .section-title {
    font-size: 2.3rem;
  }
  
  .lottery-content {
    gap: 50px;
  }
  
  .lottery-types-grid {
    gap: 60px;
  }
  
  .lottery-category {
    padding: 35px;
  }
  
  .community-section {
    padding: 40px;
  }
  
  .community-features {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .lottery-section {
    padding: 80px 0;
  }
  
  .lottery-container {
    padding: 0 20px;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .lottery-content {
    gap: 40px;
  }
  
  .content-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .lottery-types-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .lottery-category {
    padding: 30px;
  }
  
  .category-header {
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .lottery-item {
    padding: 18px;
    gap: 15px;
  }
  
  .lottery-item:hover {
    transform: translateY(-3px);
  }
  
  .item-info h4 {
    font-size: 1rem;
  }
  
  .item-info p {
    font-size: 0.9rem;
  }
  
  .lottery-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stat-card {
    padding: 20px;
    gap: 15px;
  }
  
  .stat-number {
    font-size: 1.4rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  .community-section {
    padding: 35px;
  }
  
  .community-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .community-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-item {
    padding: 20px;
    gap: 15px;
  }
  
  .feature-text h4 {
    font-size: 1rem;
  }
  
  .feature-text p {
    font-size: 0.9rem;
  }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .lottery-section {
    padding: 60px 0;
  }
  
  .lottery-container {
    padding: 0 15px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .lottery-content {
    gap: 35px;
  }
  
  .content-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .lottery-types-grid {
    gap: 35px;
  }
  
  .lottery-category {
    padding: 25px;
  }
  
  .category-header {
    margin-bottom: 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .category-header i {
    font-size: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.2rem;
  }
  
  .lottery-list {
    gap: 15px;
  }
  
  .lottery-item {
    padding: 15px;
    gap: 12px;
  }
  
  .lottery-item:hover {
    transform: translateY(-2px);
  }
  
  .lottery-item i {
    font-size: 1.1rem;
    width: 20px;
  }
  
  .item-info h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
  }
  
  .item-info p {
    font-size: 0.85rem;
  }
  
  .lottery-visual {
    gap: 25px;
  }
  
  .lottery-stats {
    gap: 12px;
  }
  
  .stat-card {
    padding: 18px;
    gap: 12px;
  }
  
  .stat-icon {
    width: 40px;
    height: 40px;
  }
  
  .stat-icon i {
    font-size: 1.1rem;
  }
  
  .stat-number {
    font-size: 1.3rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .community-section {
    padding: 25px;
  }
  
  .community-description {
    margin-bottom: 30px;
  }
  
  .community-description p {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
  
  .community-features {
    gap: 15px;
  }
  
  .feature-item {
    padding: 18px;
    gap: 12px;
  }
  
  .feature-item i {
    font-size: 1.3rem;
    width: 25px;
  }
  
  .feature-text h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
  }
  
  .feature-text p {
    font-size: 0.85rem;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

.contact-item i {
  color: #ffd700;
  width: 16px;
  text-align: center;
}

/* Footer Sections */
.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

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

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

.footer-links a:hover {
  color: #ffd700;
  transform: translateX(5px);
}

/* Footer Features */
.feature-badges {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.feature-badge:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.feature-badge i {
  color: #ffd700;
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

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

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

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

.footer-disclaimer p {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 30px;
  }
  
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }
  
  .footer-features {
    grid-column: 1 / -1;
  }
  
  .feature-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 50px 0 20px;
  }
  
  .footer-container {
    padding: 0 20px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 40px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
    text-align: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-features {
    grid-column: 1 / -1;
  }
  
  .feature-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .footer-title {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .footer-links a:hover {
    transform: translateY(-2px);
  }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .main-footer {
    padding: 40px 0 15px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-brand {
    margin-bottom: 10px;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-logo-subtitle {
    font-size: 0.7rem;
  }
  
  .footer-description {
    font-size: 0.85rem;
  }
  
  .contact-item {
    font-size: 0.85rem;
    justify-content: center;
  }
  
  .footer-title {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .feature-badges {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .feature-badge {
    justify-content: center;
    padding: 10px 14px;
  }
  
  .feature-badge span {
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    padding-top: 25px;
    gap: 12px;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
  
  .footer-disclaimer p {
    font-size: 0.8rem;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

/* Button Variants */
.sticky-btn-login {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  color: #ffffff;
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #357abd 0%, #2968a3 100%);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.sticky-btn-register {
  background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
  color: #ffffff;
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #1e7e34 0%, #155724 100%);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.sticky-btn-bonus {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000000;
  position: relative;
  animation: pulse-glow 2s infinite;
}

.sticky-btn-bonus:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
  transform: translateY(-1px);
}

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

/* Animations */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    border-top-width: 1px;
  }
  
  .sticky-btn {
    padding: 10px 6px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
  }
  
  .sticky-btn-bonus::after {
    font-size: 0.5rem;
    right: 6px;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
  }
  
  .sticky-btn-bonus::after {
    top: -3px;
    right: 4px;
  }
}

/* Ensure main content doesn't overlap with sticky buttons */
body {
  padding-bottom: 60px;
}

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

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

/* LOGIN PAGE STYLES */

/* 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: 40px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -50%;
  }
  100% {
    left: 50%;
  }
}

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255, 215, 0, 0.3);
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

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

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

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

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

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

.input-icon {
  position: absolute;
  left: 15px;
  color: #ffd700;
  font-size: 1rem;
  z-index: 3;
}

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

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  transform: translateY(-1px);
}

.form-input:invalid:not(:placeholder-shown) {
  border-color: #ff4757;
}

.form-input:valid:not(:placeholder-shown) {
  border-color: #2ed573;
}

.toggle-password {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: #b0b0b0;
  cursor: pointer;
  font-size: 1rem;
  padding: 5px;
  transition: color 0.3s ease;
  z-index: 3;
}

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

/* Error Messages */
.error-message {
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.3);
  border-radius: 8px;
  padding: 12px 15px;
  color: #ff4757;
  font-size: 0.9rem;
  display: none;
  align-items: center;
  gap: 10px;
}

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

.error-message::before {
  content: '⚠️';
  font-size: 1rem;
}

.field-error {
  color: #ff4757;
  font-size: 0.85rem;
  min-height: 18px;
  padding-left: 5px;
}

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

.login-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border: none;
  border-radius: 12px;
  color: #000000;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.login-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.login-btn:active:not(:disabled) {
  transform: translateY(0);
}

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

.btn-text {
  transition: opacity 0.3s ease;
}

.btn-loader {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.login-btn.loading .btn-loader {
  opacity: 1;
}

.register-btn {
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  border: 2px solid #ffd700;
  border-radius: 12px;
  color: #ffffff;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.register-btn:hover {
  background: #ffd700;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

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

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #b0b0b0;
  text-align: center;
}

.security-info i {
  color: #2ed573;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 0;
    min-height: calc(100vh - 55px);
  }
  
  .login-container {
    padding: 0 15px;
  }
  
  .login-card {
    padding: 30px 25px;
    border-radius: 15px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 14px 14px 14px 42px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 15px 20px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 13px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 15px 0;
    min-height: calc(100vh - 50px);
  }
  
  .login-container {
    padding: 0 10px;
  }
  
  .login-card {
    padding: 25px 20px;
    border-radius: 12px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .login-form {
    gap: 20px;
  }
  
  .form-input {
    padding: 12px 12px 12px 38px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 0.9rem;
  }
  
  .toggle-password {
    right: 12px;
    font-size: 0.9rem;
  }
  
  .login-btn {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
  
  .security-info {
    font-size: 0.8rem;
  }
}

/* REGISTER PAGE STYLES */

/* 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: 40px 0;
  position: relative;
  overflow: hidden;
}

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

.register-section::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -20%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

.register-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -50%;
  }
  100% {
    left: 50%;
  }
}

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

.logo-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid rgba(255, 215, 0, 0.4);
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.logo-image:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

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

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}

.register-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.register-subtitle {
  font-size: 1.05rem;
  color: #b0b0b0;
  margin: 0;
  font-weight: 500;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label {
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

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

.input-icon {
  position: absolute;
  left: 18px;
  color: #ffd700;
  font-size: 1.1rem;
  z-index: 3;
}

.form-input {
  width: 100%;
  padding: 18px 18px 18px 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.05rem;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.25);
  transform: translateY(-2px);
}

.form-input:invalid:not(:placeholder-shown) {
  border-color: #ff4757;
  background: rgba(255, 71, 87, 0.1);
}

.form-input:valid:not(:placeholder-shown) {
  border-color: #2ed573;
  background: rgba(46, 213, 115, 0.1);
}

/* Error and Success Messages */
.error-message {
  background: rgba(255, 71, 87, 0.15);
  border: 1px solid rgba(255, 71, 87, 0.4);
  border-radius: 10px;
  padding: 15px 18px;
  color: #ff4757;
  font-size: 0.95rem;
  display: none;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

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

.error-message::before {
  content: '⚠️';
  font-size: 1.1rem;
}

.success-message {
  background: rgba(46, 213, 115, 0.15);
  border: 1px solid rgba(46, 213, 115, 0.4);
  border-radius: 10px;
  padding: 15px 18px;
  color: #2ed573;
  font-size: 0.95rem;
  display: none;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

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

.success-message::before {
  content: '✅';
  font-size: 1.1rem;
}

.field-error {
  color: #ff4757;
  font-size: 0.9rem;
  min-height: 20px;
  padding-left: 8px;
  font-weight: 500;
}

.field-help {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888;
  font-size: 0.85rem;
  padding-left: 8px;
}

.field-help i {
  color: #ffd700;
  font-size: 0.8rem;
}

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

.register-btn {
  width: 100%;
  padding: 18px 28px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border: none;
  border-radius: 12px;
  color: #000000;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.register-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.register-btn:active:not(:disabled) {
  transform: translateY(-1px);
}

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

.btn-text {
  transition: opacity 0.3s ease;
}

.btn-loader {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.register-btn.loading .btn-loader {
  opacity: 1;
}

.login-btn {
  width: 100%;
  padding: 16px 28px;
  background: transparent;
  border: 2px solid #ffd700;
  border-radius: 12px;
  color: #ffffff;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.login-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffed4e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

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

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #b0b0b0;
  text-align: center;
  margin-bottom: 25px;
}

.security-info i {
  color: #2ed573;
  font-size: 1rem;
}

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

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.benefit-item i {
  color: #ffd700;
  font-size: 1.2rem;
}

.benefit-item span {
  color: #e0e0e0;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 25px 0;
    min-height: calc(100vh - 55px);
  }
  
  .register-container {
    padding: 0 15px;
  }
  
  .register-card {
    padding: 35px 30px;
    border-radius: 15px;
  }
  
  .logo-image {
    width: 80px;
    height: 80px;
  }
  
  .register-title {
    font-size: 2rem;
  }
  
  .register-subtitle {
    font-size: 1rem;
  }
  
  .form-input {
    padding: 16px 16px 16px 46px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 16px 24px;
    font-size: 1.1rem;
  }
  
  .login-btn {
    padding: 15px 24px;
    font-size: 1rem;
  }
  
  .benefits-info {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 20px 0;
    min-height: calc(100vh - 50px);
  }
  
  .register-container {
    padding: 0 12px;
  }
  
  .register-card {
    padding: 30px 25px;
    border-radius: 12px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .register-form {
    gap: 25px;
  }
  
  .form-input {
    padding: 15px 15px 15px 44px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 15px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 15px 22px;
    font-size: 1.05rem;
  }
  
  .login-btn {
    padding: 14px 22px;
    font-size: 0.95rem;
  }
  
  .security-info {
    font-size: 0.85rem;
  }
  
  .benefit-item {
    padding: 12px 8px;
  }
  
  .benefit-item i {
    font-size: 1.1rem;
  }
  
  .benefit-item span {
    font-size: 0.75rem;
  }
}

/* PROMOTION PAGE STYLES */

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

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

.hero-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

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

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

.hero-content {
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1.2;
  margin-bottom: 40px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
  }
  to {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.6);
  }
}

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

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

.highlight-item:hover {
  background: rgba(255, 215, 0, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.highlight-item i {
  color: #ffd700;
  font-size: 1.3rem;
}

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

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000000;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

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

.hero-cta-btn:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
  animation: none;
}

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

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

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

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

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

.promotion-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promotion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.5);
}

.promotion-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.promotion-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.promotion-icon i {
  font-size: 1.8rem;
  color: #000000;
}

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

.promotion-content {
  margin-bottom: 35px;
}

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

.promotion-features li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.6;
  padding: 12px 0;
}

.promotion-features li i {
  color: #ffd700;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.promotion-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  gap: 25px;
}

.promotion-amount {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.amount-label {
  font-size: 0.9rem;
  color: #b0b0b0;
  font-weight: 500;
}

.amount-value {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.promotion-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000000;
  text-decoration: none;
  border-radius: 12px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.promotion-cta-btn:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-container {
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-highlights {
    gap: 30px;
  }
  
  .highlight-item {
    padding: 12px 20px;
  }
  
  .highlight-item span {
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-container {
    padding: 0 30px;
  }
  
  .promotion-card {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 50px;
  }
  
  .hero-container {
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 2.4rem;
    margin-bottom: 35px;
  }
  
  .hero-highlights {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .highlight-item {
    padding: 10px 18px;
  }
  
  .highlight-item span {
    font-size: 0.95rem;
  }
  
  .hero-cta-btn {
    padding: 18px 35px;
    font-size: 1.3rem;
  }
  
  .promotion-section {
    padding: 40px 0;
  }
  
  .promotion-container {
    padding: 0 20px;
  }
  
  .promotion-card {
    padding: 30px;
  }
  
  .promotion-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.5rem;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .promotion-features li {
    font-size: 1rem;
    gap: 12px;
  }
  
  .promotion-footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .amount-value {
    font-size: 1.8rem;
  }
  
  .promotion-cta-btn {
    width: 100%;
    padding: 15px 28px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .hero-highlights {
    margin-bottom: 35px;
  }
  
  .highlight-item {
    padding: 8px 15px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .highlight-item i {
    font-size: 1.1rem;
  }
  
  .highlight-item span {
    font-size: 0.9rem;
    white-space: normal;
  }
  
  .hero-cta-btn {
    padding: 16px 28px;
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 35px 0;
  }
  
  .promotion-container {
    padding: 0 15px;
  }
  
  .promotion-card {
    padding: 25px;
  }
  
  .promotion-header {
    margin-bottom: 25px;
    gap: 12px;
  }
  
  .promotion-icon {
    width: 55px;
    height: 55px;
  }
  
  .promotion-icon i {
    font-size: 1.3rem;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .promotion-content {
    margin-bottom: 30px;
  }
  
  .promotion-features {
    gap: 15px;
  }
  
  .promotion-features li {
    font-size: 0.95rem;
    gap: 10px;
    padding: 8px 0;
  }
  
  .promotion-features li i {
    font-size: 1rem;
  }
  
  .promotion-footer {
    gap: 18px;
  }
  
  .amount-value {
    font-size: 1.6rem;
  }
  
  .promotion-cta-btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
}