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

body {
  font-family: 'Sarabun', sans-serif;
  background-color: #0a0a0a;
  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;
}

/* Base Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700, #ffb000);
  color: #000;
  border-color: #ffd700;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffed4e, #ffc700);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffd700" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  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: 40px;
  align-items: center;
  min-height: 500px;
}

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

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffd700, #ffb000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 32px;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 60px 16px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-content {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 16px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 16px;
  }
}

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

/* Header Styles */
.main-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.header-logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffb000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  cursor: pointer;
}

.header-nav {
  display: flex;
  align-items: center;
}

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

.nav-menu li {
  margin: 0;
}

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

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

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

.nav-menu a:hover:before {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, #ffd700, #ffb000) !important;
  color: #000 !important;
  border: 2px solid #ffd700 !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
}

.cta-button:hover {
  background: linear-gradient(135deg, #ffed4e, #ffc700) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3) !important;
}

.cta-button:before {
  display: none !important;
}

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
}

.mobile-menu {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  width: 100%;
  max-width: 400px;
  height: 100%;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  border-right: 2px solid rgba(255, 215, 0, 0.2);
}

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

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

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

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

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

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

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

.mobile-nav-menu li {
  margin: 0;
}

.mobile-nav-menu a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 16px 20px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav-menu a:hover {
  background: rgba(255, 215, 0, 0.1);
  border-left-color: #ffd700;
  color: #ffd700;
}

.mobile-cta-button {
  background: linear-gradient(135deg, #ffd700, #ffb000) !important;
  color: #000 !important;
  border: 2px solid #ffd700 !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  margin: 20px !important;
  text-align: center !important;
  border-left: 2px solid #ffd700 !important;
}

.mobile-cta-button:hover {
  background: linear-gradient(135deg, #ffed4e, #ffc700) !important;
  border-left-color: #ffd700 !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 14px 16px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .nav-menu {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-container {
    padding: 12px 16px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 12px 12px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-menu {
    max-width: 100%;
  }
  
  .mobile-menu-header {
    padding: 16px;
  }
  
  .mobile-logo {
    font-size: 1.3rem;
  }
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 80px 20px;
  position: relative;
}

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

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

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

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

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

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

.features-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.features-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffd700, #ffb000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

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

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

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

.features-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-left: 3px solid #ffd700;
  padding-left: 16px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 215, 0, 0.05);
  border-radius: 8px;
  padding-left: 20px;
}

.highlight-item i {
  color: #ffd700;
  font-size: 1.2rem;
  margin-top: 2px;
  min-width: 20px;
}

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

.highlight-item span strong {
  color: #ffd700;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-section {
    padding: 60px 16px;
  }
  
  .features-content {
    gap: 40px;
  }
  
  .features-title {
    font-size: 2.1rem;
  }
  
  .features-description p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 50px 16px;
  }
  
  .features-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  
  .features-title {
    font-size: 1.9rem;
    text-align: center;
  }
  
  .features-description p {
    font-size: 1rem;
  }
  
  .features-image {
    order: -1;
  }
  
  .highlight-item {
    padding: 10px 0;
    padding-left: 14px;
  }
  
  .highlight-item span {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 40px 12px;
  }
  
  .features-content {
    gap: 32px;
  }
  
  .features-title {
    font-size: 1.7rem;
  }
  
  .features-description p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .highlight-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    padding-left: 12px;
  }
  
  .highlight-item i {
    font-size: 1.1rem;
    min-width: 18px;
  }
  
  .highlight-item span {
    font-size: 0.9rem;
  }
}

/* Technology Section */
.technology-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

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

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

.technology-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.technology-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffd700, #ffb000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.technology-description {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

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

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

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

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

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

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

.technology-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 400px;
}

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

.tech-feature:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-4px);
}

.tech-feature i {
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 4px;
}

.tech-feature span {
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 600;
  line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .technology-section {
    padding: 60px 16px;
  }
  
  .technology-content {
    gap: 40px;
  }
  
  .technology-title {
    font-size: 2.1rem;
  }
  
  .technology-description p {
    font-size: 1.05rem;
  }
  
  .technology-features {
    gap: 12px;
  }
  
  .tech-feature {
    padding: 16px 12px;
  }
}

@media (max-width: 768px) {
  .technology-section {
    padding: 50px 16px;
  }
  
  .technology-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .technology-title {
    font-size: 1.9rem;
    text-align: center;
  }
  
  .technology-description p {
    font-size: 1rem;
  }
  
  .technology-image {
    order: -1;
  }
  
  .technology-features {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .tech-feature {
    padding: 14px 10px;
  }
  
  .tech-feature i {
    font-size: 1.6rem;
  }
  
  .tech-feature span {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .technology-section {
    padding: 40px 12px;
  }
  
  .technology-content {
    gap: 32px;
  }
  
  .technology-title {
    font-size: 1.7rem;
  }
  
  .technology-description p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .technology-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .tech-feature {
    flex-direction: row;
    text-align: left;
    padding: 12px 16px;
    gap: 12px;
  }
  
  .tech-feature i {
    font-size: 1.4rem;
    margin-bottom: 0;
  }
  
  .tech-feature span {
    font-size: 0.9rem;
    flex: 1;
  }
}

/* Casino Section */
.casino-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

.casino-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.casino-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffd700, #ffb000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

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

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

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

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255, 215, 0, 0.03);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.bonus-item:hover {
  transform: translateX(8px);
}

.bonus-item i {
  color: #ffd700;
  font-size: 1.2rem;
  margin-top: 2px;
  min-width: 20px;
}

.bonus-item span {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.5;
}

.bonus-item span strong {
  color: #ffd700;
  font-weight: 700;
}

.casino-additional {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

.casino-additional p {
  font-size: 1.05rem;
  color: #d0d0d0;
  line-height: 1.6;
  text-align: justify;
}

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

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

.casino-additional a:hover {
  color: #ffed4e;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .casino-section {
    padding: 60px 16px;
  }
  
  .casino-content {
    gap: 40px;
  }
  
  .casino-title {
    font-size: 2.1rem;
  }
  
  .casino-description p {
    font-size: 1.05rem;
  }
  
  .casino-additional p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .casino-section {
    padding: 50px 16px;
  }
  
  .casino-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  
  .casino-title {
    font-size: 1.9rem;
    text-align: center;
  }
  
  .casino-description p {
    font-size: 1rem;
  }
  
  .casino-image {
    order: -1;
  }
  
  .bonus-list {
    padding: 20px;
  }
  
  .bonus-item {
    padding: 6px 0;
  }
  
  .bonus-item span {
    font-size: 0.95rem;
  }
  
  .casino-additional p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .casino-section {
    padding: 40px 12px;
  }
  
  .casino-content {
    gap: 32px;
  }
  
  .casino-title {
    font-size: 1.7rem;
  }
  
  .casino-description p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .bonus-list {
    padding: 16px;
    gap: 12px;
  }
  
  .bonus-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    padding: 4px 0;
  }
  
  .bonus-item i {
    font-size: 1.1rem;
    min-width: 18px;
  }
  
  .bonus-item span {
    font-size: 0.9rem;
  }
  
  .casino-additional p {
    font-size: 0.9rem;
  }
}

/* Betting Section */
.betting-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

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

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

.betting-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.betting-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffd700, #ffb000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

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

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

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

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

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

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

.betting-details {
  margin-bottom: 50px;
}

.betting-info {
  background: rgba(255, 215, 0, 0.03);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.betting-info p {
  font-size: 1.05rem;
  color: #d0d0d0;
  line-height: 1.6;
  text-align: justify;
}

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

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

.betting-info a:hover {
  color: #ffed4e;
}

.game-types {
  margin-top: 40px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.game-card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 15px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.game-card:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

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

.game-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 12px;
  font-family: 'Prompt', sans-serif;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .betting-section {
    padding: 60px 16px;
  }
  
  .betting-content {
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .betting-title {
    font-size: 2.1rem;
  }
  
  .betting-description p {
    font-size: 1.05rem;
  }
  
  .betting-info {
    padding: 24px;
  }
  
  .game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .betting-section {
    padding: 50px 16px;
  }
  
  .betting-content {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 35px;
  }
  
  .betting-title {
    font-size: 1.9rem;
    text-align: center;
  }
  
  .betting-description p {
    font-size: 1rem;
  }
  
  .betting-image {
    order: -1;
  }
  
  .betting-info {
    padding: 20px;
  }
  
  .betting-info p {
    font-size: 1rem;
  }
  
  .game-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }
  
  .game-card {
    padding: 20px;
  }
  
  .game-card i {
    font-size: 2.2rem;
  }
  
  .game-card h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .betting-section {
    padding: 40px 12px;
  }
  
  .betting-content {
    gap: 28px;
    margin-bottom: 30px;
  }
  
  .betting-title {
    font-size: 1.7rem;
  }
  
  .betting-description p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .betting-info {
    padding: 16px;
  }
  
  .betting-info p {
    font-size: 0.95rem;
  }
  
  .game-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .game-card {
    padding: 18px;
  }
  
  .game-card i {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .game-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .game-card p {
    font-size: 0.9rem;
  }
}

/* Financial Section */
.financial-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.financial-img:hover {
  transform: scale(1.03) rotate(2deg);
}

.financial-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.financial-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffd700, #ffb000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

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

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

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

.financial-highlights {
  margin-bottom: 50px;
}

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

.highlight-card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.highlight-card:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.highlight-card i {
  font-size: 2rem;
  color: #ffd700;
  min-width: 40px;
  text-align: center;
}

.highlight-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #cccccc;
  line-height: 1.4;
  font-family: 'Sarabun', sans-serif;
}

.highlight-card h4 strong {
  color: #ffd700;
  font-weight: 700;
}

.financial-additional {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.additional-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.additional-content p {
  font-size: 1.05rem;
  color: #d0d0d0;
  line-height: 1.6;
  text-align: justify;
}

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

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

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

.cta-section {
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-section h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffd700;
  font-family: 'Prompt', sans-serif;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .financial-section {
    padding: 60px 16px;
  }
  
  .financial-content {
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .financial-title {
    font-size: 2.1rem;
  }
  
  .financial-description p {
    font-size: 1.05rem;
  }
  
  .highlight-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
  }
  
  .financial-additional {
    gap: 40px;
  }
  
  .cta-section {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .financial-section {
    padding: 50px 16px;
  }
  
  .financial-content {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 35px;
  }
  
  .financial-title {
    font-size: 1.9rem;
    text-align: center;
  }
  
  .financial-description p {
    font-size: 1rem;
  }
  
  .financial-image {
    order: -1;
  }
  
  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .highlight-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .highlight-card i {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .financial-additional {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .additional-content p {
    font-size: 1rem;
  }
  
  .cta-section {
    padding: 24px;
  }
  
  .cta-section h3 {
    font-size: 1.4rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .financial-section {
    padding: 40px 12px;
  }
  
  .financial-content {
    gap: 28px;
    margin-bottom: 30px;
  }
  
  .financial-title {
    font-size: 1.7rem;
  }
  
  .financial-description p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .highlight-grid {
    gap: 12px;
  }
  
  .highlight-card {
    padding: 16px;
  }
  
  .highlight-card i {
    font-size: 1.6rem;
  }
  
  .highlight-card h4 {
    font-size: 1rem;
  }
  
  .financial-additional {
    gap: 28px;
  }
  
  .additional-content p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .cta-section {
    padding: 20px;
  }
  
  .cta-section h3 {
    font-size: 1.3rem;
  }
  
  .cta-buttons .btn {
    font-size: 15px;
    padding: 10px 20px;
  }
}

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

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

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

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

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

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffb000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

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

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd700;
  margin: 0 0 16px 0;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ffd700;
}

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

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  transition: all 0.3s ease;
  border-radius: 4px;
}

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

.footer-links a i {
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding: 24px 0 16px;
  margin-bottom: 16px;
}

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

.footer-copyright {
  margin: 0;
}

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

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
}

.footer-legal a:hover {
  color: #ffd700;
}

.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffd700;
  transition: width 0.3s ease;
}

.footer-legal a:hover::after {
  width: 100%;
}

.footer-disclaimer {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.footer-disclaimer p {
  color: #ffd700;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-footer {
    padding: 50px 16px 16px;
  }
  
  .footer-content {
    gap: 32px;
    margin-bottom: 32px;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 40px 16px 16px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-section:first-child {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .footer-legal {
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 32px 12px 12px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
    text-align: center;
  }
  
  .footer-section:first-child {
    grid-column: auto;
    margin-bottom: 0;
  }
  
  .footer-logo-text {
    font-size: 1.4rem;
  }
  
  .footer-title {
    font-size: 1rem;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links a {
    justify-content: center;
    font-size: 0.9rem;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .contact-item {
    justify-content: center;
    font-size: 0.9rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-legal a {
    font-size: 0.85rem;
  }
  
  .footer-disclaimer p {
    font-size: 0.8rem;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 8px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  min-height: 60px;
  margin: 0 4px;
}

.sticky-btn i {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.sticky-btn span {
  font-size: 0.8rem;
  line-height: 1.2;
}

.sticky-btn-login {
  background: rgba(64, 64, 64, 0.8);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sticky-btn-login:hover {
  background: rgba(80, 80, 80, 0.9);
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

.sticky-btn-register {
  background: rgba(0, 100, 200, 0.8);
  color: #ffffff;
  border: 1px solid rgba(0, 150, 255, 0.3);
}

.sticky-btn-register:hover {
  background: rgba(0, 120, 220, 0.9);
  color: #ffffff;
  border-color: rgba(0, 150, 255, 0.5);
  transform: translateY(-2px);
}

.sticky-btn-credit {
  background: linear-gradient(135deg, #ffd700, #ffb000);
  color: #000000;
  border: 1px solid #ffd700;
  font-weight: 700;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 10px 12px;
  }
  
  .sticky-btn {
    padding: 8px 6px;
    margin: 0 2px;
    min-height: 55px;
    font-size: 0.8rem;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .sticky-buttons {
    padding: 8px 8px;
  }
  
  .sticky-btn {
    padding: 6px 4px;
    margin: 0 1px;
    min-height: 50px;
    font-size: 0.75rem;
    border-radius: 6px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
    line-height: 1.1;
  }
}

@media (max-width: 360px) {
  .sticky-buttons {
    padding: 6px 4px;
  }
  
  .sticky-btn {
    padding: 4px 2px;
    margin: 0;
    min-height: 45px;
    font-size: 0.7rem;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
  }
  
  .sticky-btn span {
    font-size: 0.65rem;
  }
}

/* Adjust main content padding to account for sticky buttons */
body {
  padding-bottom: 80px;
}

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

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

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

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

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

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

.login-card {
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.login-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 215, 0, 0.3);
}

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

.logo-container {
  margin-bottom: 16px;
}

.login-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

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

.login-subtitle {
  color: #cccccc;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 24px;
  display: none;
  align-items: center;
  gap: 10px;
  color: #ff6b6b;
  font-size: 0.9rem;
}

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

.error-message i {
  font-size: 1rem;
  color: #ff6b6b;
}

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

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

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

.form-label i {
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.form-input.error {
  border-color: #ff6b6b;
  background: rgba(220, 53, 69, 0.05);
}

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

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

.password-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #cccccc;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.3s ease;
}

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

.field-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

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

.login-btn {
  background: linear-gradient(135deg, #ffd700, #ffb000);
  color: #000000;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
}

.login-btn:hover {
  background: linear-gradient(135deg, #ffed4e, #ffc700);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

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

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

.btn-loader {
  display: none;
}

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

.login-btn.loading .btn-loader {
  display: block;
  position: absolute;
}

.form-divider {
  position: relative;
  text-align: center;
  margin: 16px 0;
}

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

.form-divider span {
  background: rgba(26, 26, 26, 0.9);
  color: #888888;
  padding: 0 16px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.register-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 24px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.register-btn:hover {
  border-color: #ffd700;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.05);
}

.login-footer {
  margin-top: 24px;
}

.security-info {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  color: #888888;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.4;
}

.security-info i {
  color: #28a745;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 16px 12px;
  }
  
  .login-container {
    max-width: 380px;
  }
  
  .login-card {
    padding: 32px 24px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 12px 8px;
  }
  
  .login-container {
    max-width: 100%;
  }
  
  .login-card {
    padding: 24px 20px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.85rem;
  }
  
  .login-logo {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 10px 14px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

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

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

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

.register-card {
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.register-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 215, 0, 0.3);
}

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

.logo-container {
  margin-bottom: 16px;
}

.register-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

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

.register-subtitle {
  color: #cccccc;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

.error-message, .success-message {
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 24px;
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #ff6b6b;
}

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

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

.error-message i {
  color: #ff6b6b;
}

.success-message i {
  color: #28a745;
}

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

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

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

.form-label i {
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px 16px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.form-input.error {
  border-color: #ff6b6b;
  background: rgba(220, 53, 69, 0.05);
}

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

.field-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

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

.register-btn {
  background: linear-gradient(135deg, #ffd700, #ffb000);
  color: #000000;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
}

.register-btn:hover {
  background: linear-gradient(135deg, #ffed4e, #ffc700);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

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

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

.btn-loader {
  display: none;
}

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

.register-btn.loading .btn-loader {
  display: block;
  position: absolute;
}

.form-divider {
  position: relative;
  text-align: center;
  margin: 16px 0;
}

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

.form-divider span {
  background: rgba(26, 26, 26, 0.9);
  color: #888888;
  padding: 0 16px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.login-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 24px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.login-btn:hover {
  border-color: #ffd700;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.05);
}

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

.terms-info, .security-info {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #888888;
  font-size: 0.8rem;
  text-align: left;
  line-height: 1.4;
}

.terms-info i {
  color: #ffd700;
  font-size: 0.9rem;
  margin-top: 1px;
  min-width: 14px;
}

.security-info i {
  color: #28a745;
  font-size: 0.9rem;
  margin-top: 1px;
  min-width: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 16px 12px;
  }
  
  .register-container {
    max-width: 380px;
  }
  
  .register-card {
    padding: 32px 24px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 12px 8px;
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-card {
    padding: 24px 20px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.85rem;
  }
  
  .register-logo {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .terms-info, .security-info {
    font-size: 0.75rem;
    text-align: center;
    justify-content: center;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 30%, 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: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffd700, #ffb000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin: 0;
  max-width: 1000px;
}

.hero-cta-btn {
  background: linear-gradient(135deg, #ffd700, #ffb000);
  color: #000000;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  padding: 18px 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.hero-cta-btn:hover {
  background: linear-gradient(135deg, #ffed4e, #ffc700);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

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

/* Promotion Sections */
.promotion-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

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

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

.promotion-section:nth-child(even)::before {
  background: radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
}

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

.promotion-card {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.promotion-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.promotion-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.promotion-header i {
  font-size: 2.5rem;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

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

.promotion-features {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.promotion-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
  padding: 12px 0;
  border-left: 3px solid transparent;
  padding-left: 16px;
  transition: all 0.3s ease;
  border-radius: 0 8px 8px 0;
}

.promotion-features li:hover {
  background: rgba(255, 215, 0, 0.05);
  border-left-color: #ffd700;
}

.promotion-features li i {
  color: #28a745;
  font-size: 1.2rem;
  margin-top: 2px;
  min-width: 20px;
}

.promotion-cta-btn {
  background: linear-gradient(135deg, #ffd700, #ffb000);
  color: #000000;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  padding: 16px 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
  position: relative;
  z-index: 2;
}

.promotion-cta-btn:hover {
  background: linear-gradient(135deg, #ffed4e, #ffc700);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 100px 16px 60px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-cta-btn {
    font-size: 1.2rem;
    padding: 16px 30px;
  }
  
  .promotion-section {
    padding: 50px 16px;
  }
  
  .promotion-card {
    padding: 32px;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-features li {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 16px 50px;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-content {
    gap: 32px;
  }
  
  .hero-cta-btn {
    font-size: 1.1rem;
    padding: 14px 26px;
  }
  
  .promotion-section {
    padding: 40px 16px;
  }
  
  .promotion-card {
    padding: 24px;
  }
  
  .promotion-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .promotion-header i {
    font-size: 2.2rem;
    padding: 12px;
  }
  
  .promotion-title {
    font-size: 1.6rem;
    text-align: center;
  }
  
  .promotion-features li {
    font-size: 1rem;
    padding: 10px 0;
    padding-left: 12px;
  }
  
  .promotion-cta-btn {
    font-size: 1.1rem;
    padding: 14px 28px;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 12px 40px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-content {
    gap: 28px;
  }
  
  .hero-cta-btn {
    font-size: 1rem;
    padding: 12px 22px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .promotion-section {
    padding: 32px 12px;
  }
  
  .promotion-card {
    padding: 20px;
  }
  
  .promotion-header i {
    font-size: 2rem;
    padding: 10px;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .promotion-features li {
    font-size: 0.95rem;
    padding: 8px 0;
    padding-left: 10px;
  }
  
  .promotion-features li i {
    font-size: 1.1rem;
  }
  
  .promotion-cta-btn {
    font-size: 1rem;
    padding: 12px 24px;
    max-width: 100%;
  }
  
  .promotion-cta-btn i {
    font-size: 1.2rem;
  }
}