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

body {
  font-family: 'Sarabun', sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  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: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

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

/* Hero Text */
.hero-text {
  max-width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #f39c12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(231, 76, 60, 0.6);
}

/* Hero Features */
.hero-features {
  display: flex;
  gap: 30px;
}

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

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

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

.feature-item span {
  font-weight: 600;
  font-size: 0.9rem;
}

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

.hero-main-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

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

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

.floating-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  animation: float 3s ease-in-out infinite;
}

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

.floating-card i {
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-features {
    gap: 20px;
  }
  
  .feature-item {
    padding: 10px 16px;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .feature-item {
    flex: 0 1 auto;
  }
  
  .hero-image {
    order: -1;
  }
  
  .image-overlay {
    top: 10px;
    right: 10px;
  }
  
  .floating-card {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .hero-features {
    gap: 10px;
  }
  
  .feature-item {
    padding: 8px 12px;
  }
  
  .feature-item span {
    font-size: 0.8rem;
  }
  
  .floating-card {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  
  .image-overlay {
    position: static;
    margin-top: 15px;
    display: flex;
    justify-content: center;
  }
}

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

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

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

/* Logo Styles */
.header-logo {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #f39c12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.logo-subtitle {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.75rem;
  color: #d0d0d0;
  font-weight: 500;
  margin-left: 2px;
  line-height: 1;
}

/* Navigation Styles */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

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

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

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

.nav-link i {
  font-size: 0.9rem;
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffd700;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

.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(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  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(-100%);
  transition: transform 0.3s ease;
}

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

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
  flex: 1;
}

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

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 500;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  border-left-color: #ffd700;
  transform: translateX(5px);
}

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

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

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  text-align: center;
}

.mobile-cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.mobile-cta-button i {
  font-size: 1.2rem;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 15px;
  }
  
  .nav-menu {
    gap: 25px;
  }
  
  .nav-link {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .header-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-container {
    height: 70px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-subtitle {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 12px;
    height: 65px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .logo-subtitle {
    font-size: 0.65rem;
  }
  
  .mobile-menu-content {
    padding: 15px;
  }
  
  .mobile-nav-link {
    padding: 16px 18px;
    font-size: 1rem;
  }
  
  .mobile-cta-button {
    padding: 18px;
    font-size: 1rem;
  }
}

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

.platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(231, 76, 60, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

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

/* Platform Text */
.platform-text {
  max-width: 100%;
}

.platform-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #f39c12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.platform-description p {
  font-size: 1.1rem;
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

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

/* Platform Highlights */
.platform-highlights {
  margin-bottom: 40px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-left: 4px solid #ffd700;
  transition: all 0.3s ease;
}

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

.highlight-item:last-child {
  margin-bottom: 0;
}

.highlight-item i {
  color: #ffd700;
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

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

/* Platform CTA */
.platform-cta {
  margin-top: 40px;
}

/* Platform Image */
.platform-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.platform-main-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.platform-main-image:hover {
  transform: scale(1.02) rotateY(5deg);
}

/* Platform Features */
.platform-features {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(243, 156, 18, 0.9) 100%);
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
  animation: bounce 2s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  white-space: nowrap;
}

.feature-badge:nth-child(1) { --delay: 0s; }
.feature-badge:nth-child(2) { --delay: 0.5s; }
.feature-badge:nth-child(3) { --delay: 1s; }

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

.feature-badge i {
  font-size: 1.2rem;
}

.badge-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-number {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.8;
  line-height: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .platform-content {
    gap: 60px;
  }
  
  .platform-title {
    font-size: 2.4rem;
  }
  
  .platform-description p {
    font-size: 1.05rem;
  }
  
  .platform-features {
    right: -10px;
    gap: 15px;
  }
  
  .feature-badge {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 80px 0;
  }
  
  .platform-container {
    padding: 0 15px;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  
  .platform-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .platform-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .platform-image {
    order: -1;
  }
  
  .platform-features {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .feature-badge {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
  
  .badge-number {
    font-size: 0.9rem;
  }
  
  .badge-text {
    font-size: 0.75rem;
  }
  
  .highlight-item {
    padding: 15px;
  }
  
  .highlight-item span {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .platform-section {
    padding: 60px 0;
  }
  
  .platform-title {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
  
  .platform-description {
    margin-bottom: 30px;
  }
  
  .platform-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .platform-highlights {
    margin-bottom: 30px;
  }
  
  .highlight-item {
    padding: 12px;
    margin-bottom: 15px;
  }
  
  .highlight-item i {
    font-size: 1.1rem;
  }
  
  .highlight-item span {
    font-size: 0.9rem;
  }
  
  .platform-features {
    gap: 10px;
  }
  
  .feature-badge {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  .badge-number {
    font-size: 0.8rem;
  }
  
  .badge-text {
    font-size: 0.7rem;
  }
}

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

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

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

.login-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

/* Login Text */
.login-text {
  max-width: 100%;
}

.login-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #f39c12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.login-description p {
  font-size: 1.05rem;
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

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

.login-description a {
  color: #ffd700;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.login-description a:hover {
  color: #ffed4a;
}

/* Login Steps */
.login-steps {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #ffd700;
}

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

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 4px solid #ffd700;
}

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

.step-item:last-child {
  margin-bottom: 0;
}

.step-number {
  position: relative;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.step-number i {
  position: absolute;
  font-size: 1.2rem;
  color: #000;
  opacity: 0.7;
}

.step-number span {
  font-size: 1.5rem;
  font-weight: 800;
  color: #000;
  z-index: 1;
}

.step-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffd700;
}

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

/* Login CTA */
.login-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-outline {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  box-shadow: none;
}

.btn-outline:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

/* Login Image Section */
.login-image-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-main-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.login-main-image:hover {
  transform: scale(1.02) rotateX(2deg);
}

/* Security Features */
.security-features {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px 25px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.security-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffd700;
  font-size: 0.9rem;
  font-weight: 600;
}

.security-item i {
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .login-content {
    gap: 60px;
  }
  
  .login-title {
    font-size: 2.2rem;
  }
  
  .login-description p {
    font-size: 1rem;
  }
  
  .login-steps {
    padding: 30px;
  }
  
  .steps-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .login-section {
    padding: 80px 0;
  }
  
  .login-container {
    padding: 0 15px;
  }
  
  .login-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .login-title {
    font-size: 1.9rem;
    text-align: center;
  }
  
  .login-description p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .login-steps {
    padding: 25px;
  }
  
  .steps-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
  
  .step-item {
    padding: 15px;
    gap: 15px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
  }
  
  .step-number i {
    font-size: 1rem;
  }
  
  .step-number span {
    font-size: 1.3rem;
  }
  
  .step-content h4 {
    font-size: 1.1rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .login-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .login-cta .btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .security-features {
    position: static;
    transform: none;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 60px 0;
  }
  
  .login-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .login-description p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .login-steps {
    padding: 20px;
  }
  
  .steps-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }
  
  .step-item {
    padding: 12px;
    margin-bottom: 20px;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
  }
  
  .step-number i {
    font-size: 0.9rem;
  }
  
  .step-number span {
    font-size: 1.2rem;
  }
  
  .step-content h4 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .step-content p {
    font-size: 0.85rem;
  }
  
  .security-features {
    padding: 12px 20px;
    gap: 12px;
  }
  
  .security-item {
    font-size: 0.8rem;
  }
  
  .security-item i {
    font-size: 0.9rem;
  }
}

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

.casino-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

/* Casino Header */
.casino-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.casino-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #f39c12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.casino-subtitle {
  font-size: 1.1rem;
  color: #d0d0d0;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

/* Casino Content */
.casino-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.casino-description p {
  font-size: 1.05rem;
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

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

.casino-description a {
  color: #ffd700;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.casino-description a:hover {
  color: #ffed4a;
}

/* Casino Image */
.casino-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.casino-main-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.casino-main-image:hover {
  transform: scale(1.03) rotateY(-5deg);
}

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

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

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

.live-indicator i {
  font-size: 0.7rem;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

/* Games Showcase */
.games-showcase {
  position: relative;
  z-index: 2;
}

.games-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #ffd700;
}

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

.game-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.game-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

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

.game-icon i {
  font-size: 1.5rem;
  color: #000;
}

.game-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 5px;
}

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

/* Games CTA */
.games-cta {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .casino-content {
    gap: 40px;
  }
  
  .casino-title {
    font-size: 2.4rem;
  }
  
  .casino-subtitle {
    font-size: 1.05rem;
  }
  
  .casino-description p {
    font-size: 1rem;
  }
  
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .casino-section {
    padding: 80px 0;
  }
  
  .casino-container {
    padding: 0 15px;
  }
  
  .casino-header {
    margin-bottom: 40px;
  }
  
  .casino-title {
    font-size: 2rem;
  }
  
  .casino-subtitle {
    font-size: 1rem;
    text-align: left;
  }
  
  .casino-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .casino-image {
    order: -1;
  }
  
  .casino-description p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .games-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .game-card {
    padding: 20px;
    gap: 15px;
  }
  
  .game-icon {
    width: 50px;
    height: 50px;
  }
  
  .game-icon i {
    font-size: 1.3rem;
  }
  
  .game-info h4 {
    font-size: 1.1rem;
  }
  
  .game-info p {
    font-size: 0.9rem;
  }
  
  .live-indicator {
    top: 10px;
    right: 10px;
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .casino-section {
    padding: 60px 0;
  }
  
  .casino-title {
    font-size: 1.7rem;
    margin-bottom: 15px;
  }
  
  .casino-subtitle {
    font-size: 0.95rem;
  }
  
  .casino-description p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .games-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  
  .game-card {
    padding: 15px;
    gap: 12px;
  }
  
  .game-icon {
    width: 45px;
    height: 45px;
  }
  
  .game-icon i {
    font-size: 1.2rem;
  }
  
  .game-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
  }
  
  .game-info p {
    font-size: 0.85rem;
  }
  
  .live-indicator {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .live-indicator i {
    font-size: 0.6rem;
  }
}

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

.wallet-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 30% 80%, rgba(34, 139, 34, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

/* Wallet Header */
.wallet-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.wallet-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #f39c12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.wallet-subtitle {
  font-size: 1.2rem;
  color: #d0d0d0;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Wallet Content */
.wallet-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.wallet-description p {
  font-size: 1.05rem;
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

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

/* Wallet Image */
.wallet-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wallet-main-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.wallet-main-image:hover {
  transform: scale(1.02) rotateZ(-2deg);
}

.transfer-speed {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #fff;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
  animation: speedPulse 3s ease-in-out infinite;
}

@keyframes speedPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(40, 167, 69, 0.6); }
}

.transfer-speed i {
  font-size: 1.3rem;
  animation: lightning 2s linear infinite;
}

@keyframes lightning {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.5; }
}

/* Banking Features */
.banking-features {
  position: relative;
  z-index: 2;
}

.features-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #ffd700;
}

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

.feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

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

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  border-color: #ffd700;
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

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

.feature-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, #ffd700, #f39c12, #ffd700);
  border-radius: 50%;
  z-index: -1;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.feature-icon i {
  font-size: 1.8rem;
  color: #000;
  z-index: 1;
}

.feature-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 1rem;
  color: #d0d0d0;
  line-height: 1.5;
  margin: 0;
}

/* Banking CTA */
.banking-cta {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .wallet-content {
    gap: 40px;
  }
  
  .wallet-title {
    font-size: 2.2rem;
  }
  
  .wallet-subtitle {
    font-size: 1.1rem;
  }
  
  .wallet-description p {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .wallet-section {
    padding: 80px 0;
  }
  
  .wallet-container {
    padding: 0 15px;
  }
  
  .wallet-header {
    margin-bottom: 40px;
  }
  
  .wallet-title {
    font-size: 1.9rem;
  }
  
  .wallet-subtitle {
    font-size: 1.05rem;
  }
  
  .wallet-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .wallet-image {
    order: -1;
  }
  
  .wallet-description p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .transfer-speed {
    top: 10px;
    left: 10px;
    padding: 12px 20px;
    font-size: 1.1rem;
  }
  
  .transfer-speed i {
    font-size: 1.1rem;
  }
  
  .features-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .feature-card {
    padding: 20px;
    gap: 15px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
  
  .feature-content h4 {
    font-size: 1.2rem;
  }
  
  .feature-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .wallet-section {
    padding: 60px 0;
  }
  
  .wallet-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  
  .wallet-subtitle {
    font-size: 1rem;
  }
  
  .wallet-description p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .transfer-speed {
    padding: 10px 16px;
    font-size: 1rem;
  }
  
  .transfer-speed i {
    font-size: 1rem;
  }
  
  .features-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  
  .feature-card {
    padding: 15px;
    gap: 12px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.3rem;
  }
  
  .feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
}

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

.promotions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

/* Promotions Header */
.promotions-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.promotions-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 30%, #4ecdc4 70%, #45b7d1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.promotions-subtitle {
  font-size: 1.2rem;
  color: #d0d0d0;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Promotions Content */
.promotions-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.promotions-description p {
  font-size: 1.05rem;
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

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

.promotions-description a {
  color: #ffd700;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.promotions-description a:hover {
  color: #ffed4a;
}

/* Promotions Image */
.promotions-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promotions-main-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.promotions-main-image:hover {
  transform: scale(1.03) rotateX(5deg);
}

.free-credit-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 25px;
  background: linear-gradient(135deg, #ff6b6b 0%, #e74c3c 100%);
  border-radius: 50px;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
  animation: giftBounce 3s ease-in-out infinite;
}

@keyframes giftBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(0deg); }
  10% { transform: translateY(-5px) rotate(-2deg); }
  30% { transform: translateY(-3px) rotate(1deg); }
  45% { transform: translateY(-7px) rotate(-1deg); }
  60% { transform: translateY(-2px) rotate(0.5deg); }
}

.free-credit-badge i {
  font-size: 1.4rem;
}

.badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.badge-amount {
  font-size: 1.8rem;
  font-weight: 900;
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.9;
}

/* Promotions Showcase */
.promotions-showcase {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  padding: 50px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 50%, #4ecdc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promotions-list {
  margin-bottom: 50px;
}

.promo-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-left: 5px solid;
  border-image: linear-gradient(135deg, #ffd700 0%, #ff6b6b 50%, #4ecdc4 100%) 1;
  transition: all 0.3s ease;
}

.promo-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.promo-item:last-child {
  margin-bottom: 0;
}

.promo-item i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 50%, #4ecdc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 2px;
  flex-shrink: 0;
}

.promo-item span {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.6;
  font-weight: 500;
}

/* Promotions CTA */
.promotions-cta {
  text-align: center;
}

/* Enhanced Button for Promotions */
.promotions-section .btn-primary {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd700 50%, #4ecdc4 100%);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  font-size: 1.2rem;
  padding: 18px 40px;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.promotions-section .btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .promotions-content {
    gap: 40px;
  }
  
  .promotions-title {
    font-size: 2.2rem;
  }
  
  .promotions-subtitle {
    font-size: 1.1rem;
  }
  
  .promotions-description p {
    font-size: 1rem;
  }
  
  .promotions-showcase {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .promotions-section {
    padding: 80px 0;
  }
  
  .promotions-container {
    padding: 0 15px;
  }
  
  .promotions-header {
    margin-bottom: 40px;
  }
  
  .promotions-title {
    font-size: 1.9rem;
  }
  
  .promotions-subtitle {
    font-size: 1.05rem;
  }
  
  .promotions-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .promotions-image {
    order: -1;
  }
  
  .promotions-description p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .free-credit-badge {
    top: -10px;
    right: -10px;
    padding: 15px 20px;
  }
  
  .badge-amount {
    font-size: 1.5rem;
  }
  
  .badge-text {
    font-size: 0.8rem;
  }
  
  .promotions-showcase {
    padding: 30px;
  }
  
  .showcase-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .promo-item {
    padding: 20px;
    gap: 15px;
  }
  
  .promo-item i {
    font-size: 1.3rem;
  }
  
  .promo-item span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .promotions-section {
    padding: 60px 0;
  }
  
  .promotions-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  
  .promotions-subtitle {
    font-size: 1rem;
  }
  
  .promotions-description p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .free-credit-badge {
    padding: 12px 16px;
    gap: 8px;
  }
  
  .free-credit-badge i {
    font-size: 1.2rem;
  }
  
  .badge-amount {
    font-size: 1.3rem;
  }
  
  .badge-text {
    font-size: 0.75rem;
  }
  
  .promotions-showcase {
    padding: 20px;
  }
  
  .showcase-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  
  .promo-item {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .promo-item i {
    font-size: 1.2rem;
  }
  
  .promo-item span {
    font-size: 0.95rem;
  }
  
  .promotions-section .btn-primary {
    font-size: 1.1rem;
    padding: 16px 35px;
  }
}

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

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(231, 76, 60, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

/* Footer Content */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 80px 0 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Footer Brand */
.footer-brand {
  max-width: 100%;
}

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

.footer-logo-text {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #f39c12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.footer-logo-subtitle {
  display: block;
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  color: #d0d0d0;
  font-weight: 500;
  margin-top: 5px;
}

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

/* Footer Contact */
.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;
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

/* Footer Sections */
.footer-section-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 5px;
}

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

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

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

.footer-link i {
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
  color: #999;
  transition: color 0.3s ease;
}

.footer-link:hover i {
  color: #ffd700;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

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

.payment-item i {
  color: #ffd700;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

/* Security Badges */
.security-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  font-size: 0.8rem;
  color: #e0e0e0;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

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

/* Footer Bottom */
.footer-bottom {
  padding: 30px 0;
}

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

.footer-copyright {
  flex: 1;
}

.footer-copyright p {
  margin: 0 0 8px 0;
  font-size: 0.85rem;
  color: #b0b0b0;
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  color: #999 !important;
  line-height: 1.4;
}

/* Footer CTA */
.footer-cta {
  flex-shrink: 0;
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.footer-cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
    padding: 60px 0 40px;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .footer-payment {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 50px 0 30px;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .footer-payment {
    grid-column: span 2;
  }
  
  .footer-logo-text {
    font-size: 1.7rem;
  }
  
  .footer-logo-subtitle {
    font-size: 0.8rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-section-title {
    font-size: 1.1rem;
  }
  
  .payment-methods {
    flex-direction: column;
  }
  
  .security-badges {
    flex-direction: column;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0 25px;
  }
  
  .footer-brand,
  .footer-links,
  .footer-games,
  .footer-legal,
  .footer-payment {
    grid-column: span 1;
  }
  
  .footer-logo-text {
    font-size: 1.5rem;
  }
  
  .footer-logo-subtitle {
    font-size: 0.75rem;
  }
  
  .footer-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .footer-section-title {
    font-size: 1rem;
  }
  
  .footer-link {
    font-size: 0.85rem;
  }
  
  .contact-item,
  .payment-item {
    font-size: 0.85rem;
  }
  
  .security-badge {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
  
  .footer-copyright p {
    font-size: 0.8rem;
  }
  
  .footer-disclaimer {
    font-size: 0.7rem !important;
  }
  
  .footer-cta-button {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

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

.sticky-button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  min-height: 60px;
}

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

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

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

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

.sticky-button span {
  font-size: 0.75rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

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

.sticky-button-login:hover {
  background: linear-gradient(135deg, #5ba0f2 0%, #4a90e2 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
  color: #ffffff;
}

/* Register Button */
.sticky-button-register {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.sticky-button-register:hover {
  background: linear-gradient(135deg, #34ce57 0%, #28a745 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
  color: #ffffff;
}

/* Credit Button */
.sticky-button-credit {
  background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  animation: creditPulse 3s ease-in-out infinite;
}

@keyframes creditPulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  }
  50% { 
    transform: scale(1.02); 
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  }
}

.sticky-button-credit:hover {
  background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
  color: #000000;
  animation: none;
}

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

@media (max-width: 480px) {
  .sticky-bottom-buttons {
    padding: 8px 6px;
    gap: 4px;
  }
  
  .sticky-button {
    padding: 8px 4px;
    font-size: 0.7rem;
    min-height: 50px;
    border-radius: 10px;
  }
  
  .sticky-button i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .sticky-button span {
    font-size: 0.65rem;
  }
}

@media (max-width: 360px) {
  .sticky-button span {
    font-size: 0.6rem;
  }
  
  .sticky-button i {
    font-size: 0.9rem;
  }
  
  .sticky-button {
    min-height: 45px;
  }
}

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

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

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

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

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

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

.login-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

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

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

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

/* Login Form Container */
.login-form-container {
  width: 100%;
}

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #f39c12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Messages */
.error-message,
.success-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.error-message {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #ff6b6b;
}

.success-message {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
}

.error-message i,
.success-message i {
  font-size: 1rem;
}

/* Form Styles */
.login-form {
  width: 100%;
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #e0e0e0;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.form-label i {
  color: #ffd700;
  font-size: 0.9rem;
}

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

.form-input:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-input::placeholder {
  color: #999;
  font-size: 0.95rem;
}

.form-input.error {
  border-color: #ff6b6b;
  background: rgba(231, 76, 60, 0.1);
}

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

/* Password Input Wrapper */
.password-input-wrapper {
  position: relative;
}

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

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

.password-toggle:focus {
  outline: none;
  color: #ffd700;
}

/* Field Errors */
.field-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}

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

/* Login Button */
.login-button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
  color: #000;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.login-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.login-button:hover::before {
  left: 100%;
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.login-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.login-button.loading .button-text {
  display: none;
}

.login-button.loading .loading-spinner {
  display: inline-flex;
}

.loading-spinner {
  align-items: center;
  gap: 8px;
}

/* Register Link */
.register-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: transparent;
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid #ffd700;
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

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

/* Login Footer */
.login-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-page-section {
    padding: 20px 15px;
  }
  
  .login-container {
    max-width: 100%;
  }
  
  .login-wrapper {
    padding: 30px 20px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .login-wrapper {
    padding: 25px 15px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .login-subtitle {
    font-size: 0.85rem;
    margin-bottom: 25px;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .login-button {
    padding: 14px;
    font-size: 0.95rem;
  }
  
  .register-link {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
}

/* Focus visible for accessibility */
.form-input:focus-visible,
.login-button:focus-visible,
.register-link:focus-visible,
.password-toggle:focus-visible {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

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

.register-page-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(40, 167, 69, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.register-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

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

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

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

/* Register Form Container */
.register-form-container {
  width: 100%;
}

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #f39c12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.register-subtitle {
  text-align: center;
  color: #b0b0b0;
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Messages */
.error-message,
.success-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.error-message {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #ff6b6b;
}

.success-message {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
}

.error-message i,
.success-message i {
  font-size: 1rem;
}

/* Form Styles */
.register-form {
  width: 100%;
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #e0e0e0;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.form-label i {
  color: #ffd700;
  font-size: 0.9rem;
}

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

.form-input:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-input::placeholder {
  color: #999;
  font-size: 0.95rem;
}

.form-input.error {
  border-color: #ff6b6b;
  background: rgba(231, 76, 60, 0.1);
}

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

/* Field Errors and Help */
.field-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}

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

.field-help {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #999;
  font-size: 0.8rem;
  margin-top: 6px;
}

.field-help i {
  font-size: 0.7rem;
}

/* Register Button */
.register-button {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
  color: #000;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.register-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.register-button:hover::before {
  left: 100%;
}

.register-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.register-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.register-button.loading .button-text {
  display: none;
}

.register-button.loading .loading-spinner {
  display: inline-flex;
}

.loading-spinner {
  align-items: center;
  gap: 8px;
}

/* Login Link */
.login-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  background: transparent;
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #ffd700;
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.login-link:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Register Footer */
.register-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #e0e0e0;
  font-size: 0.85rem;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

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

/* Disclaimer */
.register-disclaimer {
  font-size: 0.75rem;
  color: #999;
  line-height: 1.5;
  margin: 0;
}

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

.terms-link:hover,
.privacy-link:hover {
  color: #ffed4a;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-page-section {
    padding: 20px 15px;
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-wrapper {
    padding: 30px 20px;
  }
  
  .register-title {
    font-size: 1.7rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .benefits-list {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .register-wrapper {
    padding: 25px 15px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .register-subtitle {
    font-size: 0.85rem;
    margin-bottom: 25px;
  }
  
  .form-input {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  
  .register-button {
    padding: 16px;
    font-size: 1rem;
  }
  
  .login-link {
    padding: 14px;
    font-size: 0.95rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .benefit-item {
    font-size: 0.8rem;
  }
}

/* Focus visible for accessibility */
.form-input:focus-visible,
.register-button:focus-visible,
.login-link:focus-visible {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

/* General Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

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

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

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
  color: #000;
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.2rem;
}

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

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

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

.hero-content {
  margin: 0 auto;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #f39c12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-cta {
  margin-top: 40px;
}

/* Promotion Sections */
.promotion-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
  position: relative;
}

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

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

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

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

.promotion-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #f39c12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.promotion-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Promotion Lists */
.promotion-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promotion-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid #ffd700;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.promotion-item span {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.6;
  font-weight: 500;
}

/* Promotion CTA */
.promotion-cta {
  text-align: center;
  margin-top: 40px;
}

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

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

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

.summary-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
}

.summary-text {
  font-size: 1.2rem;
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: justify;
  text-align-last: center;
}

.summary-cta {
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
  
  .promotion-item span {
    font-size: 1.05rem;
  }
  
  .summary-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0;
  }
  
  .hero-container,
  .promotion-container,
  .summary-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-header {
    margin-bottom: 40px;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-list {
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .promotion-item {
    padding: 15px;
    gap: 12px;
  }
  
  .promotion-item span {
    font-size: 1rem;
  }
  
  .summary-section {
    padding: 80px 0;
  }
  
  .summary-content {
    padding: 40px 25px;
  }
  
  .summary-text {
    font-size: 1.05rem;
    text-align: left;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 1.9rem;
    line-height: 1.3;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .promotion-item {
    padding: 12px;
    gap: 10px;
  }
  
  .promotion-item i {
    font-size: 1.1rem;
  }
  
  .promotion-item span {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .summary-section {
    padding: 60px 0;
  }
  
  .summary-content {
    padding: 30px 20px;
  }
  
  .summary-text {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .btn-large {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* Animation for promotional elements */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.promotion-item {
  animation: slideInUp 0.6s ease-out;
}

.promotion-item:nth-child(1) { animation-delay: 0.1s; }
.promotion-item:nth-child(2) { animation-delay: 0.2s; }
.promotion-item:nth-child(3) { animation-delay: 0.3s; }
.promotion-item:nth-child(4) { animation-delay: 0.4s; }
.promotion-item:nth-child(5) { animation-delay: 0.5s; }

/* Special effects for buttons */
.btn-primary {
  position: relative;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  pointer-events: none;
}

.btn-primary:hover::after {
  width: 120%;
  height: 120%;
}