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

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

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

a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffed4e;
}

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

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

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

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 0;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin-bottom: 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

.hero-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b8b8b8;
  font-size: 1rem;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text {
    gap: 20px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 15px;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .hero-features {
    justify-content: center;
    gap: 20px;
  }
  
  .feature-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 10px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 24px;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #1a1d35 0%, #0a0c1a 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}

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

/* Logo Styles */
.header-logo {
  display: flex;
  align-items: center;
}

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

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

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

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

/* Desktop Navigation */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 40px;
}

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

.nav-item {
  position: relative;
}

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

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

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

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

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

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

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

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #ffd700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffed4e;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: #ffd700;
  margin: 2px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
}

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

.mobile-menu {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1d35 0%, #0a0c1a 100%);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

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

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

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

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

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

.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #ffd700;
  border-radius: 8px;
  color: #ffd700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #ffd700;
  color: #0a0c1a;
}

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

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

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.mobile-nav-item:last-child {
  border-bottom: none;
  margin-top: 20px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.mobile-nav-link:hover {
  color: #ffd700;
  padding-left: 15px;
}

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

.mobile-nav-link i {
  width: 20px;
  text-align: center;
  color: #ffd700;
}

/* Mobile CTA Button */
.mobile-cta-item {
  padding: 20px 0;
}

.btn-mobile-cta {
  background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
  color: #0a0c1a;
  padding: 16px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  width: 100%;
  position: relative;
  overflow: hidden;
}

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

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

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

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

@media (max-width: 768px) {
  .header-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-container {
    padding: 15px 20px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-link i {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 12px 15px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .logo-link i {
    font-size: 1.6rem;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-logo-text {
    font-size: 1.4rem;
  }
  
  .mobile-logo i {
    font-size: 1.6rem;
  }
  
  .mobile-nav {
    padding: 15px;
  }
  
  .mobile-nav-link {
    font-size: 1.1rem;
    padding: 18px 0;
  }
  
  .btn-mobile-cta {
    padding: 14px 20px;
    font-size: 1rem;
  }
}

/* About Section */
.about-section {
  background: linear-gradient(180deg, #0a0c1a 0%, #1a1d35 50%, #0a0c1a 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffd700" opacity="0.1"/></svg>') repeat;
  background-size: 50px 50px;
  animation: float 20s infinite linear;
}

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

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

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

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

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0;
}

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

.about-description p {
  font-size: 1.1rem;
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 0;
}

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

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

.about-description a:hover {
  color: #ffed4e;
}

.lottery-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 20px;
}

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

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

.lottery-item i {
  color: #ffd700;
  font-size: 1.8rem;
  min-width: 40px;
}

.lottery-info h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.lottery-info p {
  color: #b8b8b8;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.4;
}

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

.about-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.about-img:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow: 0 30px 80px rgba(255, 215, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .about-title {
    font-size: 2.2rem;
  }
  
  .lottery-types {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 15px;
  }
  
  .about-title {
    font-size: 1.9rem;
  }
  
  .about-description p {
    font-size: 1rem;
  }
  
  .lottery-item {
    padding: 16px;
    gap: 12px;
  }
  
  .lottery-item i {
    font-size: 1.5rem;
    min-width: 35px;
  }
  
  .lottery-info h4 {
    font-size: 1rem;
  }
  
  .lottery-info p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 10px;
  }
  
  .about-content {
    gap: 30px;
  }
  
  .about-title {
    font-size: 1.6rem;
  }
  
  .about-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .lottery-item {
    padding: 14px;
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }
  
  .lottery-item i {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}

/* Guide Section */
.guide-section {
  background: linear-gradient(135deg, #1a1d35 0%, #0f1123 50%, #1a1d35 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.guide-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

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

.guide-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.guide-description p {
  font-size: 1.1rem;
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 0;
}

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

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

.guide-description a:hover {
  color: #ffed4e;
}

.cta-section {
  background: rgba(255, 215, 0, 0.05);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
}

.cta-title {
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 10px;
  font-weight: 700;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: #b8b8b8;
  margin-bottom: 25px;
  line-height: 1.5;
}

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

.guide-visual {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(26, 29, 53, 0.5);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.step-item:hover {
  background: rgba(26, 29, 53, 0.8);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(10px);
}

.step-item.active {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0c1a;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  min-width: 60px;
}

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

.step-content p {
  color: #b8b8b8;
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.5;
}

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

.guide-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;
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.guide-img:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .guide-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .guide-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .guide-section {
    padding: 60px 15px;
  }
  
  .guide-header {
    margin-bottom: 40px;
  }
  
  .guide-title {
    font-size: 2rem;
  }
  
  .guide-description p {
    font-size: 1rem;
  }
  
  .cta-section {
    padding: 25px 20px;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-subtitle {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .step-item {
    padding: 16px;
    gap: 15px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 1.3rem;
  }
  
  .step-content h4 {
    font-size: 1.1rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .guide-section {
    padding: 40px 10px;
  }
  
  .guide-title {
    font-size: 1.7rem;
  }
  
  .guide-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .step-item {
    padding: 14px;
    gap: 12px;
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin-bottom: 10px;
  }
  
  .cta-section {
    padding: 20px 15px;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

/* Understanding Section */
.understanding-section {
  background: linear-gradient(180deg, #0a0c1a 0%, #1a1d35 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.understanding-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.understanding-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.understanding-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0;
}

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

.understanding-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.understanding-description p {
  font-size: 1.1rem;
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 0;
}

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

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

.understanding-description a:hover {
  color: #ffed4e;
}

.betting-rates {
  background: rgba(26, 29, 53, 0.6);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

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

.rate-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(5px);
}

.rate-item i {
  color: #ffd700;
  font-size: 1.5rem;
  min-width: 30px;
}

.rate-info h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.rate-info p {
  color: #b8b8b8;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.4;
}

.understanding-visual {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.security-features {
  background: rgba(15, 17, 35, 0.8);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

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

.security-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: scale(1.02);
}

.security-item i {
  color: #ffd700;
  font-size: 1.5rem;
  min-width: 35px;
}

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

.security-content p {
  color: #b8b8b8;
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.4;
}

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

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

.understanding-img:hover {
  transform: scale(1.05) rotate(2deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .understanding-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .understanding-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .understanding-section {
    padding: 60px 15px;
  }
  
  .understanding-header {
    margin-bottom: 40px;
  }
  
  .understanding-title {
    font-size: 2rem;
  }
  
  .understanding-description p {
    font-size: 1rem;
  }
  
  .betting-rates,
  .security-features {
    padding: 25px 20px;
  }
  
  .rates-title,
  .features-title {
    font-size: 1.5rem;
  }
  
  .rate-item,
  .security-item {
    padding: 12px;
    gap: 12px;
  }
  
  .rate-item i,
  .security-item i {
    font-size: 1.3rem;
    min-width: 28px;
  }
  
  .rate-info h4,
  .security-content h4 {
    font-size: 1rem;
  }
  
  .rate-info p,
  .security-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .understanding-section {
    padding: 40px 10px;
  }
  
  .understanding-title {
    font-size: 1.7rem;
  }
  
  .understanding-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .betting-rates,
  .security-features {
    padding: 20px 15px;
  }
  
  .rates-title,
  .features-title {
    font-size: 1.3rem;
  }
  
  .rate-item,
  .security-item {
    padding: 10px;
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }
  
  .rate-item i,
  .security-item i {
    margin-bottom: 5px;
  }
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, #0a0c1a 0%, #1a1d35 50%, #0f1123 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

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

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

.reviews-title {
  font-size: 2.7rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.reviews-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.reviews-description p {
  font-size: 1.1rem;
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 0;
}

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

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

.reviews-description a:hover {
  color: #ffed4e;
}

.review-stats {
  background: rgba(26, 29, 53, 0.6);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

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

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

.stat-item i {
  color: #ffd700;
  font-size: 1.8rem;
  min-width: 35px;
}

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

.stat-info p {
  color: #b8b8b8;
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.4;
}

.reviews-visual {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonials {
  background: rgba(15, 17, 35, 0.8);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card {
  background: rgba(255, 215, 0, 0.05);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

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

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial-header i {
  color: #ffd700;
  font-size: 2rem;
}

.user-info h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 2px;
  font-weight: 600;
}

.user-info p {
  color: #b8b8b8;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.testimonial-text {
  color: #b8b8b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}

.testimonial-rating {
  display: flex;
  gap: 3px;
}

.testimonial-rating i {
  color: #ffd700;
  font-size: 0.9rem;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .reviews-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .reviews-title {
    font-size: 2.4rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 15px;
  }
  
  .reviews-header {
    margin-bottom: 40px;
  }
  
  .reviews-title {
    font-size: 2rem;
  }
  
  .reviews-description p {
    font-size: 1rem;
  }
  
  .review-stats,
  .testimonials {
    padding: 25px 20px;
  }
  
  .stats-title,
  .testimonials-title {
    font-size: 1.5rem;
  }
  
  .stat-item {
    padding: 12px;
    gap: 12px;
  }
  
  .stat-item i {
    font-size: 1.5rem;
    min-width: 30px;
  }
  
  .stat-info h4 {
    font-size: 1.1rem;
  }
  
  .testimonial-card {
    padding: 16px;
  }
  
  .testimonial-header i {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .reviews-section {
    padding: 40px 10px;
  }
  
  .reviews-title {
    font-size: 1.7rem;
  }
  
  .reviews-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .review-stats,
  .testimonials {
    padding: 20px 15px;
  }
  
  .stats-title,
  .testimonials-title {
    font-size: 1.3rem;
  }
  
  .stat-item {
    padding: 10px;
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }
  
  .stat-item i {
    margin-bottom: 5px;
  }
  
  .testimonial-card {
    padding: 14px;
  }
  
  .testimonial-header {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .testimonial-text {
    font-size: 0.9rem;
    text-align: center;
  }
  
  .testimonial-rating {
    justify-content: center;
  }
}

/* Reliability Section */
.reliability-section {
  background: linear-gradient(180deg, #1a1d35 0%, #0a0c1a 50%, #1a1d35 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.reliability-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}

.reliability-section::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite reverse;
}

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

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

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

.reliability-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0;
}

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

.reliability-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.reliability-description p {
  font-size: 1.1rem;
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 0;
}

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

.reliability-tips {
  background: rgba(26, 29, 53, 0.6);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

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

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

.tip-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
  color: #0a0c1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  min-width: 40px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.tip-content p {
  color: #b8b8b8;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.reliability-visual {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.trust-indicators {
  background: rgba(15, 17, 35, 0.8);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.indicator-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

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

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

.indicator-item i {
  color: #ffd700;
  font-size: 1.5rem;
  min-width: 30px;
}

.indicator-content h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.indicator-content p {
  color: #b8b8b8;
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.4;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .reliability-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .reliability-title {
    font-size: 2.3rem;
  }
  
  .indicator-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .reliability-section {
    padding: 60px 15px;
  }
  
  .reliability-header {
    margin-bottom: 40px;
  }
  
  .reliability-title {
    font-size: 2rem;
  }
  
  .reliability-description p {
    font-size: 1rem;
  }
  
  .reliability-tips,
  .trust-indicators {
    padding: 25px 20px;
  }
  
  .tips-title,
  .indicators-title {
    font-size: 1.5rem;
  }
  
  .tip-item {
    padding: 12px;
    gap: 15px;
  }
  
  .tip-number {
    width: 35px;
    height: 35px;
    min-width: 35px;
    font-size: 1rem;
  }
  
  .tip-content h4 {
    font-size: 1rem;
  }
  
  .tip-content p {
    font-size: 0.9rem;
  }
  
  .indicator-grid {
    grid-template-columns: 1fr;
  }
  
  .indicator-item {
    padding: 12px;
    gap: 12px;
  }
  
  .indicator-item i {
    font-size: 1.3rem;
    min-width: 25px;
  }
  
  .indicator-content h4 {
    font-size: 0.95rem;
  }
  
  .indicator-content p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .reliability-section {
    padding: 40px 10px;
  }
  
  .reliability-title {
    font-size: 1.7rem;
  }
  
  .reliability-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .reliability-tips,
  .trust-indicators {
    padding: 20px 15px;
  }
  
  .tips-title,
  .indicators-title {
    font-size: 1.3rem;
  }
  
  .tip-item {
    padding: 10px;
    gap: 12px;
    flex-direction: column;
    text-align: center;
  }
  
  .tip-number {
    margin-bottom: 10px;
  }
  
  .indicator-item {
    padding: 10px;
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }
  
  .indicator-item i {
    margin-bottom: 5px;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #0a0c1a 0%, #1a1d35 50%, #0a0c1a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

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

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 60px 20px 40px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

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

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

.footer-description {
  color: #b8b8b8;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 0;
}

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

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

.contact-item i {
  color: #ffd700;
  font-size: 1.1rem;
  width: 16px;
}

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

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

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

.footer-link {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

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

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

.footer-link:hover::before {
  width: 10px;
}

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

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

.security-badge:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(5px);
}

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

.security-badge span {
  color: #b8b8b8;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Footer CTA */
.footer-cta-section {
  margin-top: 20px;
}

.btn-footer-cta {
  background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
  color: #0a0c1a;
  padding: 14px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
}

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

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

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

/* Footer Bottom */
.footer-bottom {
  padding: 25px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

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

.footer-copyright p,
.footer-disclaimer p {
  color: #b8b8b8;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.footer-copyright p {
  font-weight: 500;
}

.footer-disclaimer p {
  color: #999999;
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 35px;
    padding: 50px 20px 35px;
  }
  
  .footer-services {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px 15px 30px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }
  
  .footer-logo i {
    font-size: 2rem;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .security-badges {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .security-badge {
    flex: 1;
    min-width: 120px;
    padding: 10px 12px;
  }
  
  .security-badge span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 10px 25px;
  }
  
  .footer-brand {
    text-align: center;
    margin-bottom: 15px;
  }
  
  .footer-contact-info {
    align-items: center;
  }
  
  .footer-logo i {
    font-size: 1.8rem;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .footer-menu {
    align-items: center;
    text-align: center;
  }
  
  .footer-description {
    font-size: 0.9rem;
    text-align: center;
  }
  
  .security-badges {
    flex-direction: column;
  }
  
  .security-badge {
    justify-content: center;
  }
  
  .btn-footer-cta {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .footer-copyright p,
  .footer-disclaimer p {
    font-size: 0.8rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #1a1d35 0%, #0a0c1a 100%);
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  padding: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
  min-height: 65px;
}

.sticky-btn:last-child {
  border-right: none;
}

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

.sticky-btn:hover::before,
.sticky-btn:active::before {
  top: 0;
}

.sticky-btn i {
  font-size: 1.4rem;
  margin-bottom: 4px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.sticky-btn-text {
  font-size: 0.8rem;
  line-height: 1.2;
  text-align: center;
  position: relative;
  z-index: 2;
  font-family: 'Sarabun', sans-serif;
}

/* Individual Button Styles */
.sticky-btn-login {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, transparent 100%);
}

.sticky-btn-login i {
  color: #3498db;
}

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

.sticky-btn-register {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, transparent 100%);
}

.sticky-btn-register i {
  color: #2ecc71;
}

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

.sticky-btn-credit {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 183, 0, 0.1) 100%);
  border-left: 1px solid rgba(255, 215, 0, 0.3);
  border-right: 1px solid rgba(255, 215, 0, 0.3);
}

.sticky-btn-credit i {
  color: #ffd700;
}

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

.sticky-btn-credit::before {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.3) 100%);
}

/* Pulse Animation for Credit Button */
.sticky-btn-credit::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-effect 2s infinite;
  pointer-events: none;
}

@keyframes pulse-effect {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  70% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.85rem;
    min-height: 60px;
  }
  
  .sticky-btn i {
    font-size: 1.3rem;
    margin-bottom: 3px;
  }
  
  .sticky-btn-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .sticky-buttons {
    border-top-width: 1px;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.8rem;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn-text {
    font-size: 0.7rem;
    line-height: 1.1;
  }
}

@media (max-width: 360px) {
  .sticky-btn {
    padding: 6px 3px;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .sticky-btn-text {
    font-size: 0.65rem;
  }
}

/* Ensure Content Doesn't Get Hidden Behind Sticky Buttons */
body {
  padding-bottom: 65px;
}

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

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

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

/* Login Section */
.login-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0c1a 0%, #1a1d35 50%, #0a0c1a 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;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.login-form-wrapper {
  background: rgba(26, 29, 53, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.login-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
}

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

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

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

/* Form Container */
.login-form-container {
  text-align: center;
}

.login-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-subtitle {
  color: #b8b8b8;
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Error Message */
.error-message {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  animation: slideDown 0.3s ease;
}

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

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

/* Form Styles */
.login-form {
  text-align: left;
}

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

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

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

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(15, 17, 35, 0.8);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

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

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

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

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

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

.password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #b8b8b8;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

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

/* Input Error */
.input-error {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Buttons */
.btn {
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Prompt', sans-serif;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

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

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

.btn-login {
  background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
  color: #0a0c1a;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  margin-bottom: 20px;
}

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

.btn-login:disabled {
  background: #666666;
  color: #cccccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-login:disabled::before {
  display: none;
}

.btn-loading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn-register {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  margin-bottom: 20px;
}

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

/* Form Divider */
.form-divider {
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.divider-text {
  background: rgba(26, 29, 53, 0.9);
  color: #b8b8b8;
  padding: 0 15px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-50%);
}

/* Login Footer */
.login-footer {
  text-align: center;
  margin-top: 20px;
}

.forgot-password-link {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 15px;
  }
  
  .login-form-wrapper {
    padding: 30px 25px;
    max-width: 400px;
  }
  
  .login-title {
    font-size: 1.7rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 15px 10px;
  }
  
  .login-form-wrapper {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-input {
    padding: 11px 12px;
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .form-label {
    font-size: 0.95rem;
  }
}

/* Register Section */
.register-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0c1a 0%, #1a1d35 50%, #0a0c1a 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;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.register-form-wrapper {
  background: rgba(26, 29, 53, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.register-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
}

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

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

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

/* Form Container */
.register-form-container {
  text-align: center;
}

.register-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.register-subtitle {
  color: #b8b8b8;
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

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

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

.success-message {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
}

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

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

/* Form Styles */
.register-form {
  text-align: left;
}

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

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

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

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(15, 17, 35, 0.8);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

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

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

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

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

/* Input Error and Help */
.input-error {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.input-help {
  color: #b8b8b8;
  font-size: 0.8rem;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.8;
}

.input-help i {
  color: #ffd700;
  font-size: 0.9rem;
}

/* Buttons */
.btn {
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Prompt', sans-serif;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

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

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

.btn-register {
  background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
  color: #0a0c1a;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  margin-bottom: 20px;
}

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

.btn-register:disabled {
  background: #666666;
  color: #cccccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-register:disabled::before {
  display: none;
}

.btn-loading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn-login-link {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  margin-bottom: 20px;
}

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

/* Form Divider */
.form-divider {
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.divider-text {
  background: rgba(26, 29, 53, 0.9);
  color: #b8b8b8;
  padding: 0 15px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-50%);
}

/* Register Footer */
.register-footer {
  text-align: center;
  margin-top: 20px;
}

.terms-notice {
  color: #b8b8b8;
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
  padding: 15px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.terms-notice i {
  color: #ffd700;
  font-size: 1rem;
  margin-top: 2px;
  min-width: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 15px;
  }
  
  .register-form-wrapper {
    padding: 30px 25px;
    max-width: 400px;
  }
  
  .register-title {
    font-size: 1.7rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .terms-notice {
    font-size: 0.8rem;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 15px 10px;
  }
  
  .register-form-wrapper {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-input {
    padding: 11px 12px;
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .form-label {
    font-size: 0.95rem;
  }
  
  .terms-notice {
    font-size: 0.75rem;
    padding: 10px;
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  
  .terms-notice i {
    margin-top: 0;
  }
}

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

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

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

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 900px;
}

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

.btn-hero-cta {
  background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
  color: #0a0c1a;
  padding: 20px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
  }
}

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

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

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

/* Promotion Sections */
.promotion-section {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.promotion-section:nth-child(even) {
  background: linear-gradient(180deg, #0a0c1a 0%, #1a1d35 100%);
}

.promotion-section:nth-child(odd) {
  background: linear-gradient(180deg, #1a1d35 0%, #0a0c1a 100%);
}

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.promotion-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promotion-content {
  background: rgba(26, 29, 53, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.promotion-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
}

.promotion-description {
  margin-bottom: 30px;
}

.promotion-description p {
  font-size: 1.2rem;
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
}

.promotion-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

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

.feature-item i {
  color: #ffd700;
  font-size: 1.3rem;
  min-width: 20px;
}

.promotion-cta {
  text-align: center;
  margin-top: 30px;
}

.btn-promotion {
  background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
  color: #0a0c1a;
  padding: 16px 32px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-promotion::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;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .promotion-title {
    font-size: 2.2rem;
  }
  
  .promotion-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .btn-hero-cta {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 60px 15px;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
  
  .promotion-content {
    padding: 30px 25px;
  }
  
  .promotion-description p {
    font-size: 1.1rem;
  }
  
  .feature-item {
    padding: 16px;
    gap: 12px;
  }
  
  .feature-item i {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 10px;
  }
  
  .hero-title {
    font-size: 1.7rem;
  }
  
  .btn-hero-cta {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 50px 10px;
  }
  
  .promotion-title {
    font-size: 1.7rem;
  }
  
  .promotion-content {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .promotion-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .feature-item {
    padding: 14px;
    gap: 10px;
    font-size: 0.95rem;
  }
  
  .feature-item i {
    font-size: 1.1rem;
    min-width: 18px;
  }
  
  .btn-promotion {
    padding: 14px 24px;
    font-size: 1rem;
  }
}