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

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

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

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

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

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

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  color: #e0e0e0;
  font-weight: 400;
  line-height: 1.8;
}

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

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

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

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

.feature-item span {
  font-weight: 500;
  color: #ffffff;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  cursor: pointer;
}

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

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

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

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

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

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

.hero-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  animation: pulse 2s infinite;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
}

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

.stat-label {
  font-size: 1rem;
  color: #b0b0b0;
  font-weight: 500;
}

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

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 15px 20px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}

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

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

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffd700;
  transition: all 0.3s ease;
}

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

.logo-link i {
  font-size: 2.2rem;
  color: #ffd700;
}

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

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-item .nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 8px;
}

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

.nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ffd700;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

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

.cta-button {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 6px;
  position: relative;
  z-index: 1001;
}

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

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

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

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

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

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

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

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

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

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffd700;
}

.mobile-logo i {
  font-size: 2rem;
}

.mobile-logo span {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: #ffd700;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

.mobile-nav-item {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-item {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-item:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-item:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-item:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

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

.mobile-nav-link i {
  font-size: 1.3rem;
  width: 24px;
  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 !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 30px;
  background: linear-gradient(45deg, #ffd700, #ffed4e) !important;
  color: #000000 !important;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none !important;
}

.mobile-cta-button:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

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

/* Responsive Design */
@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
  
  .desktop-only {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-container {
    padding: 0 15px;
    height: 60px;
  }
  
  .logo-link i {
    font-size: 1.8rem;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 55px;
  }
  
  .logo-link gap {
    gap: 8px;
  }
  
  .logo-link i {
    font-size: 1.6rem;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .mobile-menu-content {
    padding: 15px;
  }
  
  .mobile-nav-link {
    padding: 16px 18px;
    font-size: 1rem;
  }
  
  .mobile-cta-button {
    padding: 16px 25px;
    font-size: 1.1rem;
  }
}

/* Ensure header doesn't overlap content */
body {
  padding-top: 70px;
}

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

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

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

.about-platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  z-index: 1;
}

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

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

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

.section-title {
  font-size: 2.5rem;
  color: #ffd700;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-description p {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.about-description strong {
  color: #ffd700;
  font-weight: 600;
}

.platform-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

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

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

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

.closing-text {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #ffd700;
}

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
}

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

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

.image-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(45deg, #28a745, #20c997);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 15px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
  animation: float 3s ease-in-out infinite;
}

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

.overlay-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.overlay-content i {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-platform-section {
    padding: 60px 20px;
  }
  
  .about-content {
    gap: 40px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .platform-features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .about-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .closing-text {
    font-size: 1rem;
    text-align: left;
  }
  
  .platform-features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-card i {
    font-size: 2rem;
  }
  
  .about-image {
    margin-top: 20px;
    order: -1;
  }
}

@media (max-width: 480px) {
  .about-platform-section {
    padding: 40px 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .about-description p {
    font-size: 0.95rem;
  }
  
  .closing-text {
    font-size: 0.95rem;
    padding: 20px;
  }
  
  .platform-features {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 18px;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
  
  .image-overlay {
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

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

.login-guide-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at bottom, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
  z-index: 1;
}

.login-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.login-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.login-header .section-title {
  font-size: 2.3rem;
  color: #ffd700;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.login-intro p {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.login-intro strong {
  color: #ffd700;
  font-weight: 600;
}

.login-intro a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.login-intro a:hover {
  color: #ffed4e;
}

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

.method-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.method-card:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

.method-card i {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 20px;
  display: block;
}

.method-card h3 {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
}

.method-card p {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.7;
  text-align: justify;
}

.method-card strong {
  color: #ffd700;
  font-weight: 600;
}

.login-steps {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

.step-number {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

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

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

.step-content strong {
  color: #ffd700;
  font-weight: 600;
}

.password-reset {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.reset-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.reset-text {
  flex: 1;
}

.reset-text h3 {
  font-size: 1.4rem;
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 15px;
}

.reset-text p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  text-align: justify;
}

.reset-text strong {
  color: #ffd700;
  font-weight: 600;
}

.reset-icon {
  font-size: 3rem;
  color: #ffd700;
  opacity: 0.8;
}

.login-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
}

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

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

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(45deg, #28a745, #20c997);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
  }
  50% {
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.5);
  }
}

.image-badge i {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .login-guide-section {
    padding: 60px 20px;
  }
  
  .login-container {
    gap: 40px;
  }
  
  .login-header .section-title {
    font-size: 2rem;
  }
  
  .login-methods {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .steps-container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .login-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .login-header .section-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .login-intro p {
    font-size: 1rem;
    text-align: left;
  }
  
  .login-methods {
    grid-template-columns: 1fr;
  }
  
  .method-card {
    padding: 25px;
  }
  
  .method-card i {
    font-size: 2.5rem;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
  }
  
  .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  
  .reset-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .reset-icon {
    font-size: 2.5rem;
  }
  
  .login-image {
    margin-top: 20px;
    order: -1;
  }
}

@media (max-width: 480px) {
  .login-guide-section {
    padding: 40px 15px;
  }
  
  .login-header .section-title {
    font-size: 1.6rem;
  }
  
  .login-intro p {
    font-size: 0.95rem;
  }
  
  .method-card {
    padding: 20px;
  }
  
  .method-card i {
    font-size: 2.2rem;
  }
  
  .method-card h3 {
    font-size: 1.2rem;
  }
  
  .method-card p {
    font-size: 0.95rem;
  }
  
  .login-steps {
    padding: 25px;
  }
  
  .steps-title {
    font-size: 1.5rem;
  }
  
  .step-item {
    padding: 15px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .step-content h4 {
    font-size: 1rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .password-reset {
    padding: 25px;
  }
  
  .reset-text h3 {
    font-size: 1.2rem;
  }
  
  .reset-text p {
    font-size: 0.95rem;
  }
  
  .image-badge {
    bottom: 15px;
    left: 15px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

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

.comprehensive-platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
  z-index: 1;
}

.comprehensive-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.comprehensive-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.comprehensive-header .section-title {
  font-size: 2.4rem;
  color: #ffd700;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
}

.header-intro p {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.header-intro strong {
  color: #ffd700;
  font-weight: 600;
}

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

.game-category {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.game-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(255, 215, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-category:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.game-category:hover::before {
  opacity: 1;
}

.game-category.special {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.05) 100%);
  border-color: rgba(255, 107, 53, 0.3);
}

.game-category.special:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(247, 147, 30, 0.1) 100%);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

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

.category-header i {
  font-size: 2.5rem;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  padding: 15px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-category.special .category-header i {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
}

.category-header h3 {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 600;
}

.category-content {
  margin-bottom: 25px;
}

.category-content p {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.7;
  text-align: justify;
}

.category-content strong {
  color: #ffd700;
  font-weight: 600;
}

.category-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 12px;
  flex: 1;
  transition: all 0.3s ease;
}

.stat:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: scale(1.05);
}

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

.stat .label {
  font-size: 0.9rem;
  color: #888888;
  font-weight: 500;
}

.comparison-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-content p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.comparison-content a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.comparison-content a:hover {
  color: #ffed4e;
}

.comparison-content strong {
  color: #ffd700;
  font-weight: 600;
}

.action-section {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  color: #000000;
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.action-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.action-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.8;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.action-section .btn {
  background: #000000;
  color: #ffffff;
  border: 2px solid #000000;
}

.action-section .btn:hover {
  background: transparent;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.action-section .btn-secondary {
  background: transparent;
  color: #000000;
  border-color: #000000;
}

.action-section .btn-secondary:hover {
  background: #000000;
  color: #ffffff;
}

.comprehensive-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
}

.comprehensive-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.floating-badges {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.badge {
  position: absolute;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  animation: float-badge 3s ease-in-out infinite;
}

.badge-1 {
  top: 20px;
  right: 20px;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 20px;
  left: 20px;
  background: linear-gradient(45deg, #28a745, #20c997);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  animation-delay: 1.5s;
}

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

.badge i {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .comprehensive-platform-section {
    padding: 60px 20px;
  }
  
  .comprehensive-container {
    gap: 40px;
  }
  
  .comprehensive-header .section-title {
    font-size: 2.1rem;
  }
  
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .comprehensive-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .comprehensive-header .section-title {
    font-size: 1.9rem;
    text-align: center;
  }
  
  .header-intro p {
    font-size: 1rem;
    text-align: left;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .category-header i {
    font-size: 2.2rem;
  }
  
  .category-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .comparison-content p {
    font-size: 1rem;
    text-align: left;
  }
  
  .action-section {
    padding: 30px;
  }
  
  .action-content h3 {
    font-size: 1.6rem;
  }
  
  .action-content p {
    font-size: 1rem;
  }
  
  .comprehensive-image {
    margin-top: 20px;
    order: -1;
  }
}

@media (max-width: 480px) {
  .comprehensive-platform-section {
    padding: 40px 15px;
  }
  
  .comprehensive-header .section-title {
    font-size: 1.7rem;
  }
  
  .header-intro p {
    font-size: 0.95rem;
  }
  
  .game-category {
    padding: 25px;
  }
  
  .category-header i {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    padding: 12px;
  }
  
  .category-header h3 {
    font-size: 1.2rem;
  }
  
  .category-content p {
    font-size: 0.95rem;
  }
  
  .stat .number {
    font-size: 1.3rem;
  }
  
  .stat .label {
    font-size: 0.85rem;
  }
  
  .comparison-section {
    padding: 25px;
  }
  
  .comparison-content p {
    font-size: 0.95rem;
  }
  
  .action-section {
    padding: 25px;
  }
  
  .action-content h3 {
    font-size: 1.4rem;
  }
  
  .action-content p {
    font-size: 0.95rem;
  }
  
  .badge {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .badge-1 {
    top: 15px;
    right: 15px;
  }
  
  .badge-2 {
    bottom: 15px;
    left: 15px;
  }
}

/* Why Choose Cat99 Section */
.why-choose-section {
  width: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.why-choose-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-choose-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-choose-header .section-title {
  font-size: 2.4rem;
  color: #ffd700;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
}

.header-intro p {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.header-intro strong {
  color: #ffd700;
  font-weight: 600;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(255, 215, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.advantage-card:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

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

.advantage-card.primary {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-color: rgba(255, 215, 0, 0.3);
}

.advantage-card.primary:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0.1) 100%);
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
}

.advantage-icon {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.advantage-icon i {
  font-size: 2rem;
  color: #ffd700;
}

.advantage-content {
  flex: 1;
}

.advantage-content h3 {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
}

.advantage-content p {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.7;
  text-align: justify;
}

.advantage-content strong {
  color: #ffd700;
  font-weight: 600;
}

.security-features {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.features-title {
  font-size: 1.8rem;
  color: #ffd700;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

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

.feature-item i {
  font-size: 1.5rem;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  padding: 12px;
  border-radius: 8px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.5;
}

.customer-service {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.05) 100%);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-text h3 {
  font-size: 1.6rem;
  color: #20c997;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-text p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  text-align: justify;
}

.service-text strong {
  color: #20c997;
  font-weight: 600;
}

.service-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.channel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(32, 201, 151, 0.3);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.channel:hover {
  background: rgba(32, 201, 151, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(32, 201, 151, 0.2);
}

.channel i {
  font-size: 2rem;
  color: #20c997;
  margin-bottom: 10px;
  display: block;
}

.channel span {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
}

.payment-reliability {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.05) 100%);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.reliability-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.reliability-text {
  flex: 1;
}

.reliability-text h3 {
  font-size: 1.6rem;
  color: #ff6b35;
  font-weight: 600;
  margin-bottom: 15px;
}

.reliability-text p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  text-align: justify;
}

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

.reliability-badge {
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  min-width: 150px;
}

.reliability-badge i {
  font-size: 3rem;
  color: #ff6b35;
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.badge-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6b35;
}

.badge-subtitle {
  font-size: 0.9rem;
  color: #b0b0b0;
  font-weight: 500;
}

.why-choose-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
}

.why-choose-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.trust-indicators {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.indicator {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  padding: 15px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: float-indicator 4s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.indicator-1 {
  top: 20px;
  left: 20px;
  animation-delay: 0s;
}

.indicator-2 {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  animation-delay: 1.3s;
}

.indicator-3 {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 2.6s;
}

@keyframes float-indicator {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.05);
  }
}

.indicator i {
  font-size: 1.5rem;
  color: #ffd700;
}

.indicator-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.indicator-text .number {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
}

.indicator-text .label {
  font-size: 0.8rem;
  color: #666666;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .why-choose-section {
    padding: 60px 20px;
  }
  
  .why-choose-container {
    gap: 40px;
  }
  
  .why-choose-header .section-title {
    font-size: 2.1rem;
  }
  
  .advantage-card {
    flex-direction: column;
    text-align: center;
  }
  
  .reliability-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .service-channels {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-choose-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-choose-header .section-title {
    font-size: 1.9rem;
    text-align: center;
  }
  
  .header-intro p {
    font-size: 1rem;
    text-align: left;
  }
  
  .advantage-card {
    padding: 25px;
  }
  
  .advantage-icon {
    width: 60px;
    height: 60px;
  }
  
  .advantage-icon i {
    font-size: 1.8rem;
  }
  
  .advantage-content h3 {
    font-size: 1.2rem;
  }
  
  .advantage-content p {
    font-size: 0.95rem;
  }
  
  .security-features {
    padding: 30px;
  }
  
  .features-title {
    font-size: 1.6rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .customer-service {
    padding: 30px;
  }
  
  .service-channels {
    grid-template-columns: 1fr;
  }
  
  .payment-reliability {
    padding: 30px;
  }
  
  .why-choose-image {
    margin-top: 20px;
    order: -1;
  }
}

@media (max-width: 480px) {
  .why-choose-section {
    padding: 40px 15px;
  }
  
  .why-choose-header .section-title {
    font-size: 1.7rem;
  }
  
  .header-intro p {
    font-size: 0.95rem;
  }
  
  .advantage-card {
    padding: 20px;
  }
  
  .advantage-icon {
    width: 50px;
    height: 50px;
  }
  
  .advantage-icon i {
    font-size: 1.5rem;
  }
  
  .advantage-content h3 {
    font-size: 1.1rem;
  }
  
  .advantage-content p {
    font-size: 0.9rem;
  }
  
  .security-features {
    padding: 25px;
  }
  
  .features-title {
    font-size: 1.4rem;
  }
  
  .feature-item {
    padding: 15px;
  }
  
  .feature-item i {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  
  .feature-text h4 {
    font-size: 1rem;
  }
  
  .customer-service {
    padding: 25px;
  }
  
  .service-text h3 {
    font-size: 1.4rem;
  }
  
  .service-text p {
    font-size: 0.95rem;
  }
  
  .channel {
    padding: 15px;
  }
  
  .channel i {
    font-size: 1.5rem;
  }
  
  .channel span {
    font-size: 0.9rem;
  }
  
  .payment-reliability {
    padding: 25px;
  }
  
  .reliability-text h3 {
    font-size: 1.4rem;
  }
  
  .reliability-text p {
    font-size: 0.95rem;
  }
  
  .reliability-badge {
    padding: 20px;
    min-width: 120px;
  }
  
  .reliability-badge i {
    font-size: 2.5rem;
  }
  
  .badge-title {
    font-size: 1.1rem;
  }
  
  .badge-subtitle {
    font-size: 0.8rem;
  }
  
  .indicator {
    padding: 12px 15px;
    gap: 10px;
  }
  
  .indicator i {
    font-size: 1.2rem;
  }
  
  .indicator-text .number {
    font-size: 1rem;
  }
  
  .indicator-text .label {
    font-size: 0.75rem;
  }
  
  .indicator-1 {
    top: 15px;
    left: 15px;
  }
  
  .indicator-2 {
    right: 15px;
  }
  
  .indicator-3 {
    bottom: 15px;
  }
}

/* Cat999 Slots Section */
.cat999-slots-section {
  width: 100%;
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0f0f23 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cat999-slots-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at bottom left, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
  z-index: 1;
}

.slots-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.slots-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.slots-header .section-title {
  font-size: 2.3rem;
  color: #ffd700;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
}

.header-intro p {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: justify;
}

.header-intro strong {
  color: #ffd700;
  font-weight: 600;
}

.featured-games {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.game-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(255, 215, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

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

.game-card.featured {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-color: rgba(255, 215, 0, 0.3);
}

.game-card.featured:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0.1) 100%);
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
}

.game-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
}

.game-header i {
  font-size: 2.2rem;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  padding: 12px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-header h3 {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 600;
  flex: 1;
}

.game-badge {
  background: linear-gradient(45deg, #ff4757, #ff6b7d);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse-badge 2s infinite;
}

.game-badge.jackpot {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
}

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

.game-content {
  margin-bottom: 25px;
}

.game-content p {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.7;
  text-align: justify;
}

.game-content strong {
  color: #ffd700;
  font-weight: 600;
}

.game-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  flex: 1;
  transition: all 0.3s ease;
}

.stat:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: scale(1.05);
}

.stat i {
  font-size: 1.5rem;
  color: #ffd700;
  display: block;
  margin-bottom: 8px;
}

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

.stat .label {
  font-size: 0.9rem;
  color: #888888;
  font-weight: 500;
}

.registration-cta {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(40, 167, 69, 0.3);
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cta-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.cta-text a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}

.cta-text a:hover {
  color: #f8f9fa;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.registration-cta .btn {
  background: #ffffff;
  color: #28a745;
  border: 2px solid #ffffff;
}

.registration-cta .btn:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.registration-cta .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.registration-cta .btn-secondary:hover {
  background: #ffffff;
  color: #28a745;
}

.megaways-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.megaways-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.megaways-text {
  flex: 1;
}

.megaways-text h3 {
  font-size: 1.6rem;
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 15px;
}

.megaways-text p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  text-align: justify;
}

.megaways-stats {
  display: flex;
  justify-content: center;
}

.megaways-stat {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  min-width: 200px;
}

.megaways-stat .number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  font-family: 'Prompt', sans-serif;
}

.megaways-stat .separator {
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0 10px;
}

.megaways-stat .label {
  display: block;
  font-size: 1rem;
  color: #b0b0b0;
  margin-top: 10px;
  font-weight: 500;
}

.slot-features {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.features-title {
  font-size: 1.8rem;
  color: #ffd700;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

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

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

.feature-number {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

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

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

.popular-games {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.games-title {
  font-size: 1.8rem;
  color: #ffd700;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.popular-game {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.popular-game:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
}

.popular-game i {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 15px;
  display: block;
}

.popular-game h4 {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
}

.popular-game p {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.7;
  text-align: justify;
}

.popular-game strong {
  color: #ffd700;
  font-weight: 600;
}

.slots-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
}

.slots-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.game-highlights {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.highlight {
  position: absolute;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  animation: float-highlight 4s ease-in-out infinite;
  font-size: 0.9rem;
}

.highlight-1 {
  top: 20px;
  left: 20px;
  animation-delay: 0s;
  background: linear-gradient(45deg, #ff4757, #ff6b7d);
  box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

.highlight-2 {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  animation-delay: 1.3s;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.highlight-3 {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 2.6s;
  background: linear-gradient(45deg, #28a745, #20c997);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

@keyframes float-highlight {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.05);
  }
}

.highlight i {
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cat999-slots-section {
    padding: 60px 20px;
  }
  
  .slots-container {
    gap: 40px;
  }
  
  .slots-header .section-title {
    font-size: 2rem;
  }
  
  .megaways-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .slots-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .slots-header .section-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .header-intro p {
    font-size: 1rem;
    text-align: left;
  }
  
  .game-card {
    padding: 25px;
  }
  
  .game-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .game-header i {
    font-size: 2rem;
  }
  
  .game-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .registration-cta {
    padding: 30px;
  }
  
  .cta-text h3 {
    font-size: 1.6rem;
  }
  
  .cta-text p {
    font-size: 1rem;
  }
  
  .slot-features {
    padding: 30px;
  }
  
  .features-title {
    font-size: 1.6rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .popular-games {
    padding: 30px;
  }
  
  .games-title {
    font-size: 1.6rem;
  }
  
  .popular-game {
    text-align: center;
  }
  
  .popular-game p {
    text-align: left;
  }
  
  .slots-image {
    margin-top: 20px;
    order: -1;
  }
}

@media (max-width: 480px) {
  .cat999-slots-section {
    padding: 40px 15px;
  }
  
  .slots-header .section-title {
    font-size: 1.6rem;
  }
  
  .header-intro p {
    font-size: 0.95rem;
  }
  
  .game-card {
    padding: 20px;
  }
  
  .game-header i {
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
  }
  
  .game-header h3 {
    font-size: 1.2rem;
  }
  
  .game-content p {
    font-size: 0.95rem;
  }
  
  .stat {
    padding: 12px;
  }
  
  .stat i {
    font-size: 1.3rem;
  }
  
  .stat .value {
    font-size: 1.1rem;
  }
  
  .stat .label {
    font-size: 0.8rem;
  }
  
  .registration-cta {
    padding: 25px;
  }
  
  .cta-text h3 {
    font-size: 1.4rem;
  }
  
  .cta-text p {
    font-size: 0.95rem;
  }
  
  .megaways-section {
    padding: 30px;
  }
  
  .megaways-text h3 {
    font-size: 1.4rem;
  }
  
  .megaways-text p {
    font-size: 0.95rem;
  }
  
  .megaways-stat {
    padding: 20px;
    min-width: 150px;
  }
  
  .megaways-stat .number {
    font-size: 1.3rem;
  }
  
  .megaways-stat .label {
    font-size: 0.9rem;
  }
  
  .slot-features {
    padding: 25px;
  }
  
  .features-title {
    font-size: 1.4rem;
  }
  
  .feature-item {
    padding: 15px;
  }
  
  .feature-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .feature-content h4 {
    font-size: 1rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
  
  .popular-games {
    padding: 25px;
  }
  
  .games-title {
    font-size: 1.4rem;
  }
  
  .popular-game {
    padding: 20px;
  }
  
  .popular-game i {
    font-size: 2.2rem;
  }
  
  .popular-game h4 {
    font-size: 1.2rem;
  }
  
  .popular-game p {
    font-size: 0.95rem;
  }
  
  .highlight {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
  
  .highlight-1 {
    top: 15px;
    left: 15px;
  }
  
  .highlight-2 {
    right: 15px;
  }
  
  .highlight-3 {
    bottom: 15px;
  }
}

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

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

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

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

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

/* Footer Logo and About */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo i {
  font-size: 2rem;
  color: #ffd700;
}

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

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

/* Social Links */
.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
  color: #ffd700;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Footer Titles */
.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 10px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 1px;
}

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

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

.footer-link:hover {
  color: #ffd700;
  padding-left: 10px;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  width: 3px;
  height: 0;
  background: #ffd700;
  transition: height 0.3s ease;
  transform: translateY(-50%);
}

.footer-link:hover::before {
  height: 100%;
}

/* Contact Information */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.contact-item i {
  color: #ffd700;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.contact-item span {
  flex: 1;
}

/* Footer Features */
.footer-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.feature-badge:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
}

.feature-badge i {
  font-size: 2rem;
  color: #ffd700;
  flex-shrink: 0;
}

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

.badge-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.badge-subtitle {
  font-size: 0.85rem;
  color: #b0b0b0;
}

/* Footer Legal */
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

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

.legal-link {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.copyright {
  color: #888888;
  font-size: 0.85rem;
  line-height: 1.6;
}

.copyright p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    padding: 50px 20px 25px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .footer-about {
    grid-column: 1 / -1;
  }
  
  .footer-features {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
  }
  
  .legal-links {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 40px 20px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-about {
    text-align: center;
    grid-column: auto;
  }
  
  .footer-description {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-title {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-features {
    grid-template-columns: 1fr;
    margin-bottom: 25px;
  }
  
  .feature-badge {
    padding: 15px;
    justify-content: center;
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 15px;
  }
  
  .copyright {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 30px 15px 15px;
  }
  
  .footer-content {
    gap: 25px;
    margin-bottom: 25px;
  }
  
  .footer-logo i {
    font-size: 1.7rem;
  }
  
  .footer-logo-text {
    font-size: 1.5rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
  }
  
  .footer-link,
  .contact-item {
    font-size: 0.9rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .feature-badge {
    padding: 12px;
    gap: 12px;
  }
  
  .feature-badge i {
    font-size: 1.7rem;
  }
  
  .badge-title {
    font-size: 0.95rem;
  }
  
  .badge-subtitle {
    font-size: 0.8rem;
  }
  
  .legal-link {
    font-size: 0.85rem;
  }
  
  .copyright {
    font-size: 0.75rem;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 70px;
  gap: 8px;
}

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sticky-btn:hover::before {
  opacity: 1;
}

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

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

.sticky-btn span {
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

/* Individual Button Styles */
.sticky-btn-login {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.sticky-btn-register {
  background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.sticky-btn-bonus::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700, #ffed4e);
  background-size: 400% 400%;
  border-radius: inherit;
  z-index: -1;
  animation: gradient-border 3s ease infinite;
  opacity: 0.7;
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8), 0 0 50px rgba(255, 215, 0, 0.6);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 12px 8px;
    min-height: 65px;
    font-size: 0.85rem;
  }
  
  .sticky-btn i {
    font-size: 1.3rem;
  }
  
  .sticky-btn span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 10px 6px;
    min-height: 60px;
    font-size: 0.8rem;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
    line-height: 1.1;
  }
}

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

/* Ensure content doesn't get hidden behind sticky buttons */
body {
  padding-bottom: 70px;
}

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

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

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

/* Login Section */
.login-section {
  width: 100%;
  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;
  overflow: hidden;
}

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

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

.login-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.login-card:hover {
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
}

/* Logo */
.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

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

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

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

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

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

/* Error Message */
.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 25px;
  display: none;
  align-items: center;
  gap: 10px;
  color: #ff6b6b;
  font-size: 0.9rem;
  animation: shake 0.5s ease-in-out;
}

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

.error-message i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

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

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

.form-label {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.form-input {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.1);
  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: rgba(255, 215, 0, 0.5);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

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

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

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #888888;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}

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

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

.field-error.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #b0b0b0;
  font-size: 0.9rem;
  position: relative;
}

.remember-me input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

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

.remember-me input:checked ~ .checkmark {
  background: #ffd700;
  border-color: #ffd700;
}

.checkmark::after {
  content: '';
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 8px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.remember-me input:checked ~ .checkmark::after {
  display: block;
}

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

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

/* Buttons */
.login-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.login-btn:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

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

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

.btn-spinner {
  display: none;
}

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

.login-btn.loading .btn-spinner {
  display: inline-block;
}

.register-btn {
  width: 100%;
  padding: 15px;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.register-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffd700;
  transform: translateY(-2px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 15px;
  }
  
  .login-card {
    padding: 30px;
    border-radius: 20px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .form-options {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  
  .remember-me {
    justify-content: center;
  }
  
  .forgot-password {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .login-card {
    padding: 25px;
    margin: 0 10px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px 15px;
  }
  
  .login-btn,
  .register-btn {
    padding: 12px;
    font-size: 1rem;
  }
  
  .form-label {
    font-size: 0.9rem;
  }
  
  .remember-me,
  .forgot-password {
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .login-card {
    padding: 20px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .form-input {
    padding: 10px 12px;
  }
  
  .login-btn,
  .register-btn {
    padding: 10px;
    font-size: 0.95rem;
  }
}

/* Register Section */
.register-section {
  width: 100%;
  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;
  overflow: hidden;
}

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

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

.register-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.register-card:hover {
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
}

/* Logo */
.register-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

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

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

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

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

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

/* Error Message */
.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 25px;
  display: none;
  align-items: center;
  gap: 10px;
  color: #ff6b6b;
  font-size: 0.9rem;
  animation: shake 0.5s ease-in-out;
}

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

.error-message.success {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.error-message i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

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

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

.form-label {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.form-input {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.1);
  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: rgba(255, 215, 0, 0.5);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

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

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

.field-error.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

/* Terms Group */
.terms-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: #b0b0b0;
  font-size: 0.9rem;
  line-height: 1.5;
  position: relative;
}

.terms-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

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

.terms-checkbox input:checked ~ .checkmark {
  background: #ffd700;
  border-color: #ffd700;
}

.checkmark::after {
  content: '';
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 8px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.terms-checkbox input:checked ~ .checkmark::after {
  display: block;
}

.terms-text {
  flex: 1;
}

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

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

/* Buttons */
.register-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.register-btn:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.register-btn:active {
  transform: translateY(0);
}

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

.btn-spinner {
  display: none;
}

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

.register-btn.loading .btn-spinner {
  display: inline-block;
}

.login-btn {
  width: 100%;
  padding: 15px;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.login-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffd700;
  transform: translateY(-2px);
}

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

/* Register Benefits */
.register-benefits {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffd700;
  text-align: center;
  margin-bottom: 20px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b0b0b0;
  font-size: 0.9rem;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffffff;
}

.benefit-item i {
  color: #ffd700;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 15px;
  }
  
  .register-card {
    padding: 30px;
    border-radius: 20px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .terms-checkbox {
    font-size: 0.85rem;
  }
  
  .benefits-list {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .register-card {
    padding: 25px;
    margin: 0 10px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px 15px;
  }
  
  .register-btn,
  .login-btn {
    padding: 12px;
    font-size: 1rem;
  }
  
  .form-label {
    font-size: 0.9rem;
  }
  
  .terms-checkbox {
    font-size: 0.8rem;
  }
  
  .benefits-title {
    font-size: 1.1rem;
  }
  
  .benefit-item {
    font-size: 0.85rem;
    padding: 8px;
  }
}

@media (max-width: 360px) {
  .register-card {
    padding: 20px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .form-input {
    padding: 10px 12px;
  }
  
  .register-btn,
  .login-btn {
    padding: 10px;
    font-size: 0.95rem;
  }
  
  .terms-checkbox {
    font-size: 0.75rem;
  }
  
  .benefit-item {
    font-size: 0.8rem;
  }
}

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

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

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

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

.hero-title {
  font-size: 3rem;
  color: #ffd700;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

.hero-cta:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

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

/* Promotion Sections */
.new-member-promotion-section,
.deposit-promotion-section,
.lottery-promotion-section,
.cashback-promotion-section {
  width: 100%;
  padding: 80px 20px;
  position: relative;
}

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

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

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

.cashback-promotion-section {
  background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
}

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

/* Promotion Cards */
.promotion-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.promotion-card.featured {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-color: rgba(255, 215, 0, 0.3);
}

.promotion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

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

.promotion-card.featured:hover {
  box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
}

/* Promotion Header */
.promotion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.promotion-icon {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.promotion-icon i {
  font-size: 2rem;
  color: #ffd700;
}

.promotion-card:hover .promotion-icon {
  transform: rotate(360deg);
  background: rgba(255, 215, 0, 0.2);
}

.promotion-badge {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.promotion-card.featured .promotion-badge {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Promotion Content */
.promotion-title {
  font-size: 2.2rem;
  color: #ffd700;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
}

.promotion-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
}

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

.benefit-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(10px);
}

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

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

/* Promotion Highlight */
.promotion-highlight {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  margin-bottom: 30px;
}

.highlight-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.amount-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.amount-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

.highlight-text {
  font-size: 1.1rem;
  color: #b0b0b0;
  font-weight: 500;
}

/* Promotion CTA */
.promotion-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  padding: 18px 30px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

.promotion-cta:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 80px 20px 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .new-member-promotion-section,
  .deposit-promotion-section,
  .lottery-promotion-section,
  .cashback-promotion-section {
    padding: 60px 20px;
  }
  
  .promotion-card {
    padding: 35px;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  .promotion-card {
    padding: 30px;
  }
  
  .promotion-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.7rem;
  }
  
  .promotion-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .benefit-item {
    padding: 12px 15px;
  }
  
  .benefit-item:hover {
    transform: none;
  }
  
  .amount-number {
    font-size: 2.5rem;
  }
  
  .amount-currency {
    font-size: 1.3rem;
  }
  
  .promotion-cta {
    padding: 15px 25px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 15px 40px;
  }
  
  .hero-title {
    font-size: 1.9rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .new-member-promotion-section,
  .deposit-promotion-section,
  .lottery-promotion-section,
  .cashback-promotion-section {
    padding: 40px 15px;
  }
  
  .promotion-card {
    padding: 25px;
    border-radius: 20px;
  }
  
  .promotion-icon {
    width: 50px;
    height: 50px;
  }
  
  .promotion-icon i {
    font-size: 1.5rem;
  }
  
  .promotion-badge {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .benefit-item {
    padding: 10px 12px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .benefit-item span {
    font-size: 0.95rem;
  }
  
  .promotion-highlight {
    padding: 20px;
  }
  
  .amount-number {
    font-size: 2.2rem;
  }
  
  .amount-currency {
    font-size: 1.2rem;
  }
  
  .highlight-text {
    font-size: 1rem;
  }
  
  .promotion-cta {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .promotion-cta i {
    font-size: 1.1rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.7rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .promotion-card {
    padding: 20px;
  }
  
  .promotion-title {
    font-size: 1.5rem;
  }
  
  .benefit-item span {
    font-size: 0.9rem;
  }
  
  .amount-number {
    font-size: 2rem;
  }
  
  .amount-currency {
    font-size: 1.1rem;
  }
  
  .promotion-cta {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
}