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

html {
  scroll-behavior: smooth;
}

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

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 160px;
}

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

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

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

.btn-secondary:hover {
  background: #444444;
  border-color: #666666;
  transform: translateY(-2px);
}

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

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

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

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

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 0;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 0;
}

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

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

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

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

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-features {
    align-items: center;
  }
  
  .feature-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-description {
    font-size: 15px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .feature-item {
    font-size: 14px;
  }
  
  .feature-item i {
    font-size: 18px;
  }
}

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

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

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

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

.logo {
  flex-shrink: 0;
}

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

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ff6b35;
  transition: color 0.3s ease;
}

.logo-text:hover {
  color: #ff8e53;
}

.main-nav {
  display: flex;
  flex: 1;
  justify-content: center;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  font-family: 'Sarabun', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff6b35;
  transition: width 0.3s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-cta {
  display: flex;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: #ffffff;
  margin: 3px 0;
  transition: all 0.3s ease;
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 15, 15, 0.98);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  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.1);
}

.mobile-logo {
  font-family: 'Prompt', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ff6b35;
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #ff6b35;
}

.mobile-nav {
  flex: 1;
  padding: 30px 20px;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

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

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

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

.mobile-nav-link i {
  font-size: 18px;
  width: 20px;
}

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

.mobile-cta {
  width: 100%;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-content {
    height: 60px;
  }
  
  .logo-text {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }
  
  .logo-text {
    font-size: 22px;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-nav {
    padding: 20px 15px;
  }
  
  .mobile-cta-item {
    padding: 0 15px;
  }
}

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

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

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

/* Body scroll lock when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Platform Overview Section */
.platform-overview-section {
  padding: 80px 0;
  background: #1a1a1a;
  position: relative;
}

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

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

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

.platform-title {
  font-family: 'Prompt', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 30px;
}

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

.platform-description p {
  font-size: 16px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 20px;
}

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

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

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

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 107, 53, 0.05);
  border-color: rgba(255, 107, 53, 0.2);
  transform: translateY(-2px);
}

.highlight-item i {
  color: #ff6b35;
  font-size: 24px;
  margin-top: 4px;
  flex-shrink: 0;
}

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

.highlight-content p {
  font-size: 14px;
  color: #cccccc;
  margin: 0;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .platform-content {
    gap: 40px;
  }
  
  .platform-title {
    font-size: 32px;
  }
  
  .platform-image {
    position: static;
  }
}

@media (max-width: 768px) {
  .platform-overview-section {
    padding: 60px 0;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .platform-title {
    font-size: 28px;
    text-align: center;
  }
  
  .platform-description p {
    font-size: 15px;
  }
  
  .highlight-item {
    padding: 15px;
  }
  
  .highlight-content h3 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .platform-overview-section {
    padding: 40px 0;
  }
  
  .platform-container {
    padding: 0 15px;
  }
  
  .platform-title {
    font-size: 24px;
  }
  
  .platform-description p {
    font-size: 14px;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .highlight-item i {
    font-size: 20px;
    margin-top: 0;
  }
  
  .highlight-content h3 {
    font-size: 15px;
  }
  
  .highlight-content p {
    font-size: 13px;
  }
}

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

.mobile-app-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.08) 0%, transparent 60%);
  pointer-events: none;
}

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

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

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

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

.app-img:hover {
  transform: scale(1.03) rotate(1deg);
}

.app-title {
  font-family: 'Prompt', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 30px;
}

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

.app-description p {
  font-size: 16px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 20px;
}

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

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

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

.inline-link:hover {
  color: #ff8e53;
  text-decoration: underline;
}

.app-features {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.features-title {
  font-family: 'Prompt', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 20px;
}

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

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

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

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

.feature-item i {
  color: #ff6b35;
  font-size: 16px;
  width: 20px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 15px;
  color: #cccccc;
  transition: color 0.3s ease;
}

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

.app-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .app-content {
    gap: 40px;
  }
  
  .app-title {
    font-size: 32px;
  }
  
  .app-image {
    position: static;
  }
}

@media (max-width: 768px) {
  .mobile-app-section {
    padding: 60px 0;
  }
  
  .app-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .app-title {
    font-size: 28px;
    text-align: center;
  }
  
  .app-description p {
    font-size: 15px;
  }
  
  .app-features {
    padding: 20px;
  }
  
  .features-title {
    font-size: 18px;
    text-align: center;
  }
  
  .app-cta {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .mobile-app-section {
    padding: 40px 0;
  }
  
  .app-container {
    padding: 0 15px;
  }
  
  .app-title {
    font-size: 24px;
  }
  
  .app-description p {
    font-size: 14px;
  }
  
  .app-features {
    padding: 15px;
  }
  
  .features-title {
    font-size: 16px;
  }
  
  .feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
  }
  
  .feature-item i {
    font-size: 14px;
  }
  
  .feature-item span {
    font-size: 14px;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
  }
}

/* Comprehensive Lottery Section */
.comprehensive-lottery-section {
  padding: 80px 0;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

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

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

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

.lottery-title {
  font-family: 'Prompt', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 30px;
}

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

.lottery-description p {
  font-size: 16px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 20px;
}

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

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

.lottery-management {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.management-title {
  font-family: 'Prompt', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 25px;
}

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

.management-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

.management-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ff6b35;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.management-content h4 {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
}

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

.lottery-image {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 100px;
}

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

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

.lottery-stats {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.stat-item:hover {
  background: rgba(255, 107, 53, 0.05);
  border-color: rgba(255, 107, 53, 0.2);
}

.stat-item i {
  color: #ff6b35;
  font-size: 24px;
  width: 30px;
  flex-shrink: 0;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-family: 'Prompt', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.stat-label {
  font-size: 14px;
  color: #cccccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .lottery-content {
    gap: 40px;
  }
  
  .lottery-title {
    font-size: 32px;
  }
  
  .lottery-image {
    position: static;
  }
}

@media (max-width: 768px) {
  .comprehensive-lottery-section {
    padding: 60px 0;
  }
  
  .lottery-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .lottery-title {
    font-size: 28px;
    text-align: center;
  }
  
  .lottery-description p {
    font-size: 15px;
  }
  
  .lottery-management {
    padding: 20px;
  }
  
  .management-title {
    font-size: 18px;
    text-align: center;
  }
  
  .management-item {
    padding: 15px;
  }
  
  .management-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .management-content h4 {
    font-size: 15px;
  }
  
  .lottery-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .stat-item {
    flex: 1;
    min-width: 120px;
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .comprehensive-lottery-section {
    padding: 40px 0;
  }
  
  .lottery-container {
    padding: 0 15px;
  }
  
  .lottery-title {
    font-size: 24px;
  }
  
  .lottery-description p {
    font-size: 14px;
  }
  
  .lottery-management {
    padding: 15px;
  }
  
  .management-title {
    font-size: 16px;
  }
  
  .management-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px 15px;
  }
  
  .management-number {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  
  .management-content h4 {
    font-size: 14px;
  }
  
  .lottery-stats {
    flex-direction: column;
  }
  
  .stat-item {
    flex-direction: row;
    text-align: left;
    gap: 15px;
  }
  
  .stat-number {
    font-size: 20px;
  }
  
  .stat-label {
    font-size: 13px;
  }
}

/* Alternative Platform Section */
.alternative-platform-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2d2d2d 0%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
}

.alternative-platform-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.06) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

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

.alternative-img:hover {
  transform: scale(1.02) rotate(-1deg);
}

.alternative-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

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

.alternative-title {
  font-family: 'Prompt', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 30px;
}

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

.alternative-description p {
  font-size: 16px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 20px;
}

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

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

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

.inline-link:hover {
  color: #ff8e53;
  text-decoration: underline;
}

.alternative-benefits {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.benefits-title {
  font-family: 'Prompt', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 25px;
}

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

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

.benefit-item:hover {
  background: rgba(255, 107, 53, 0.08);
  transform: translateY(-2px);
}

.benefit-item i {
  color: #ff6b35;
  font-size: 24px;
  width: 30px;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 15px;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.alternative-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

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

@media (max-width: 768px) {
  .alternative-platform-section {
    padding: 60px 0;
  }
  
  .alternative-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .alternative-title {
    font-size: 28px;
    text-align: center;
  }
  
  .alternative-description p {
    font-size: 15px;
  }
  
  .alternative-benefits {
    padding: 20px;
  }
  
  .benefits-title {
    font-size: 18px;
    text-align: center;
  }
  
  .benefit-item {
    padding: 15px;
  }
  
  .benefit-content h4 {
    font-size: 14px;
  }
  
  .alternative-cta {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .alternative-platform-section {
    padding: 40px 0;
  }
  
  .alternative-container {
    padding: 0 15px;
  }
  
  .alternative-title {
    font-size: 24px;
  }
  
  .alternative-description p {
    font-size: 14px;
  }
  
  .alternative-benefits {
    padding: 15px;
  }
  
  .benefits-title {
    font-size: 16px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px;
  }
  
  .benefit-item i {
    font-size: 20px;
  }
  
  .benefit-content h4 {
    font-size: 13px;
  }
  
  .alternative-badge {
    position: static;
    margin: 15px auto 0;
    width: fit-content;
  }
  
  .alternative-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Login Security Section */
.login-security-section {
  padding: 80px 0;
  background: #0f0f0f;
  position: relative;
  overflow: hidden;
}

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

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

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

.security-title {
  font-family: 'Prompt', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 30px;
}

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

.security-description p {
  font-size: 16px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 20px;
}

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

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

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

.inline-link:hover {
  color: #ff8e53;
  text-decoration: underline;
}

.security-mistakes {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.mistakes-title {
  font-family: 'Prompt', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 25px;
}

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

.mistake-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

.mistake-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ff6b35;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.mistake-content h4 {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
}

.security-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.security-image {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 100px;
}

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

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

.security-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.security-feature:hover {
  background: rgba(255, 107, 53, 0.05);
  border-color: rgba(255, 107, 53, 0.2);
  transform: translateY(-2px);
}

.security-feature i {
  color: #ff6b35;
  font-size: 24px;
  width: 30px;
  flex-shrink: 0;
}

.feature-text h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 5px 0;
}

.feature-text p {
  font-size: 14px;
  color: #cccccc;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .security-content {
    gap: 40px;
  }
  
  .security-title {
    font-size: 32px;
  }
  
  .security-image {
    position: static;
  }
}

@media (max-width: 768px) {
  .login-security-section {
    padding: 60px 0;
  }
  
  .security-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .security-title {
    font-size: 28px;
    text-align: center;
  }
  
  .security-description p {
    font-size: 15px;
  }
  
  .security-mistakes {
    padding: 20px;
  }
  
  .mistakes-title {
    font-size: 18px;
    text-align: center;
  }
  
  .mistake-item {
    padding: 15px;
  }
  
  .mistake-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .mistake-content h4 {
    font-size: 15px;
  }
  
  .security-cta {
    justify-content: center;
  }
  
  .security-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .security-feature {
    flex: 1;
    min-width: 150px;
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .login-security-section {
    padding: 40px 0;
  }
  
  .security-container {
    padding: 0 15px;
  }
  
  .security-title {
    font-size: 24px;
  }
  
  .security-description p {
    font-size: 14px;
  }
  
  .security-mistakes {
    padding: 15px;
  }
  
  .mistakes-title {
    font-size: 16px;
  }
  
  .mistake-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px 15px;
  }
  
  .mistake-number {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  
  .mistake-content h4 {
    font-size: 14px;
  }
  
  .security-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .security-features {
    flex-direction: column;
  }
  
  .security-feature {
    flex-direction: row;
    text-align: left;
    gap: 15px;
  }
  
  .feature-text h4 {
    font-size: 15px;
  }
  
  .feature-text p {
    font-size: 13px;
  }
}

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

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

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

.footer-content {
  padding: 50px 0 20px;
}

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

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

.footer-logo-section {
  gap: 15px;
}

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

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ff6b35;
}

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

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

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

.contact-item i {
  color: #ff6b35;
  font-size: 16px;
  width: 20px;
  flex-shrink: 0;
}

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

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

.footer-link {
  font-size: 14px;
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 5px 0;
}

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

.security-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.security-item:hover {
  background: rgba(255, 107, 53, 0.08);
}

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

.security-item span {
  font-size: 12px;
  color: #cccccc;
}

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

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

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.legal-link {
  font-size: 14px;
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.copyright {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.copyright p {
  font-size: 13px;
  color: #999999;
  margin: 0;
}

.disclaimer {
  font-size: 11px !important;
  color: #777777 !important;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
  }
  
  .footer-content {
    padding: 40px 0 20px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-logo-section {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .legal-links {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  
  .security-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .security-item {
    flex: 1;
    min-width: 120px;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-content {
    padding: 30px 0 15px;
  }
  
  .footer-logo-text {
    font-size: 28px;
  }
  
  .footer-description {
    font-size: 13px;
  }
  
  .contact-item {
    justify-content: center;
    font-size: 13px;
  }
  
  .footer-title {
    font-size: 16px;
    text-align: center;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .security-badges {
    flex-direction: column;
  }
  
  .security-item {
    justify-content: center;
  }
  
  .legal-links {
    gap: 15px;
  }
  
  .legal-link {
    font-size: 13px;
  }
  
  .copyright p {
    font-size: 12px;
  }
  
  .disclaimer {
    font-size: 10px !important;
  }
}

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

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

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

.sticky-btn span {
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
}

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

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

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

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

.sticky-btn-register {
  background: linear-gradient(135deg, #28a745 0%, #20923a 100%);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

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

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

.sticky-btn-credit:hover {
  background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

@media (max-width: 480px) {
  .sticky-buttons {
    padding: 6px;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    min-height: 50px;
    margin: 0 1px;
  }
  
  .sticky-btn i {
    font-size: 14px;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 9px;
  }
}

/* Add padding to body to prevent content being hidden behind sticky buttons */
body {
  padding-bottom: 80px;
}

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

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

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

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

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

.login-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 400px;
  margin: 0 auto;
}

.login-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.login-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.login-subtitle {
  font-size: 16px;
  color: #cccccc;
  margin: 0;
}

.error-message {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  margin-bottom: 20px;
  color: #ff4757;
}

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

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

.error-text {
  font-size: 14px;
  font-weight: 500;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-label {
  font-weight: 600;
  color: #ffffff;
  font-size: 14px;
  margin: 0;
}

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

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

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

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

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

.form-input.error {
  border-color: #ff4757;
  background: rgba(255, 71, 87, 0.05);
}

.password-toggle {
  position: absolute;
  right: 15px;
  background: transparent;
  border: none;
  color: #cccccc;
  cursor: pointer;
  font-size: 16px;
  transition: color 0.3s ease;
  z-index: 2;
}

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

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

.login-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  border: none;
  padding: 16px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

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

.register-btn {
  background: transparent;
  border: 2px solid #444444;
  padding: 14px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.register-btn:hover {
  background: #444444;
  border-color: #666666;
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}

.login-footer {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.forgot-link {
  color: #ff6b35;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: #ff8e53;
  text-decoration: underline;
}

.security-info {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #cccccc;
}

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

/* Loading State */
.login-btn.loading {
  pointer-events: none;
}

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

.login-btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 15px 0;
  }
  
  .login-container {
    padding: 100px 15px;
  }
  
  .login-wrapper {
    max-width: 350px;
    gap: 25px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-card {
    padding: 30px 25px;
  }
  
  .login-title {
    font-size: 24px;
  }
  
  .login-subtitle {
    font-size: 15px;
  }
  
  .form-input {
    padding: 14px 14px 14px 42px;
    font-size: 16px;
  }
  
  .login-btn, .register-btn {
    padding: 15px;
    font-size: 15px;
  }
  
  .security-info {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .login-wrapper {
    max-width: 100%;
    gap: 20px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-card {
    padding: 25px 20px;
  }
  
  .login-title {
    font-size: 22px;
  }
  
  .login-subtitle {
    font-size: 14px;
  }
  
  .form-input {
    padding: 13px 13px 13px 40px;
    font-size: 15px;
  }
  
  .input-icon {
    left: 12px;
    font-size: 15px;
  }
  
  .password-toggle {
    right: 12px;
    font-size: 15px;
  }
  
  .login-btn, .register-btn {
    padding: 14px;
    font-size: 14px;
  }
  
  .security-info {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .error-message {
    padding: 12px;
  }
  
  .error-text {
    font-size: 13px;
  }
}

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

.register-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 60%);
  pointer-events: none;
}

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

.register-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 420px;
  margin: 0 auto;
}

.register-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.register-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.register-subtitle {
  font-size: 16px;
  color: #cccccc;
  margin: 0;
}

.error-message {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  margin-bottom: 20px;
  color: #ff4757;
}

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

.success-message {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 8px;
  margin-bottom: 20px;
  color: #28a745;
}

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

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

.error-text,
.success-text {
  font-size: 14px;
  font-weight: 500;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.form-label {
  font-weight: 600;
  color: #ffffff;
  font-size: 14px;
  margin: 0;
}

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

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

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

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

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

.form-input.error {
  border-color: #ff4757;
  background: rgba(255, 71, 87, 0.05);
}

.form-input.success {
  border-color: #28a745;
  background: rgba(40, 167, 69, 0.05);
}

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

.register-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  border: none;
  padding: 16px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  position: relative;
}

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

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

.btn-outline {
  background: transparent;
  border: 2px solid #444444;
  padding: 14px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-outline:hover {
  background: #444444;
  border-color: #666666;
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}

.register-footer {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.register-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 14px;
  color: #cccccc;
  padding: 12px;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 8px;
  transition: background 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 107, 53, 0.08);
}

.info-item i {
  color: #ff6b35;
  font-size: 16px;
  flex-shrink: 0;
}

.security-info {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #cccccc;
}

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

/* Loading State */
.register-btn.loading {
  pointer-events: none;
}

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

.register-btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Success State Animation */
.register-btn.success {
  background: linear-gradient(135deg, #28a745 0%, #20923a 100%);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.register-btn.success::after {
  content: '✓';
  position: absolute;
  font-size: 18px;
  color: #ffffff;
  animation: checkmark 0.5s ease;
}

@keyframes checkmark {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 15px 0;
  }
  
  .register-container {
    padding: 100px 15px;
  }
  
  .register-wrapper {
    max-width: 370px;
    gap: 25px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-card {
    padding: 30px 25px;
  }
  
  .register-title {
    font-size: 24px;
  }
  
  .register-subtitle {
    font-size: 15px;
  }
  
  .form-input {
    padding: 15px 14px 15px 42px;
    font-size: 16px;
  }
  
  .register-btn, .btn-outline {
    padding: 15px;
    font-size: 15px;
  }
  
  .security-info {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .register-wrapper {
    max-width: 100%;
    gap: 20px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-card {
    padding: 25px 20px;
  }
  
  .register-title {
    font-size: 22px;
  }
  
  .register-subtitle {
    font-size: 14px;
  }
  
  .form-input {
    padding: 14px 13px 14px 40px;
    font-size: 15px;
  }
  
  .input-icon {
    left: 12px;
    font-size: 15px;
  }
  
  .register-btn, .btn-outline {
    padding: 14px;
    font-size: 14px;
  }
  
  .security-info {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .error-message, .success-message {
    padding: 12px;
  }
  
  .error-text, .success-text {
    font-size: 13px;
  }
  
  .info-item {
    font-size: 13px;
    padding: 10px;
  }
}

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

.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%);
  pointer-events: none;
}

.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: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  justify-content: center;
}

.hero-cta {
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

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

/* Promotion Sections */
.promotion-section {
  padding: 40px 0;
  background: #1a1a1a;
}

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

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

.promotion-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.promotion-card-featured {
  background: rgba(255, 107, 53, 0.05);
  border-color: rgba(255, 107, 53, 0.2);
}

.promotion-card-special {
  background: rgba(40, 167, 69, 0.05);
  border-color: rgba(40, 167, 69, 0.2);
}

.promotion-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.promotion-title {
  font-family: 'Prompt', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  flex: 1;
}

.promotion-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  flex-shrink: 0;
}

.promotion-badge-featured {
  background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.promotion-badge-special {
  background: linear-gradient(135deg, #28a745 0%, #20923a 100%);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.promotion-badge i {
  font-size: 18px;
}

.promotion-content {
  position: relative;
  z-index: 2;
}

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

.promotion-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.promotion-item:hover {
  background: rgba(255, 107, 53, 0.05);
  transform: translateX(5px);
}

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

.promotion-item span {
  font-size: 16px;
  line-height: 1.5;
  color: #cccccc;
}

.promotion-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.promotion-cta .btn {
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.promotion-cta .btn:hover {
  background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
  text-decoration: none;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    padding: 16px 30px;
    font-size: 16px;
  }
  
  .promotion-section {
    padding: 30px 0;
  }
  
  .promotion-card {
    padding: 30px 25px;
  }
  
  .promotion-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .promotion-title {
    font-size: 24px;
  }
  
  .promotion-badge {
    align-self: flex-end;
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .promotion-item {
    padding: 12px;
  }
  
  .promotion-item span {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero-container,
  .promotion-container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 80px 0 50px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    padding: 14px 25px;
    font-size: 15px;
  }
  
  .promotion-card {
    padding: 25px 20px;
  }
  
  .promotion-title {
    font-size: 20px;
  }
  
  .promotion-badge {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  .promotion-badge i {
    font-size: 16px;
  }
  
  .promotion-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 15px;
  }
  
  .promotion-item span {
    font-size: 14px;
  }
  
  .promotion-cta .btn {
    width: 100%;
    max-width: 280px;
    padding: 14px 20px;
    font-size: 15px;
  }
}