/* 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 {
  text-decoration: none;
  color: inherit;
}

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

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

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

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

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

.hero-text {
  padding-right: 20px;
}

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

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

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

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

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

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

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

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

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

.btn-primary {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

.btn-secondary:hover {
  background: #ffd700;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.hero-image {
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text {
    padding-right: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .feature-item {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    font-size: 1rem;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .feature-item {
    padding: 10px;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
}

/* Header Styles */
.site-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

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

.site-brand {
  flex-shrink: 0;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

.brand-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 40px;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 10px 0;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  transition: width 0.3s ease;
}

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

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

.header-cta {
  flex-shrink: 0;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
  white-space: nowrap;
}

.btn-header-cta:hover {
  background: linear-gradient(135deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

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

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

.mobile-menu-toggle:hover {
  background: rgba(255, 215, 0, 0.1);
  border-radius: 6px;
}

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

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

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

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

/* 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: 1002;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  border-left: 2px solid rgba(255, 215, 0, 0.3);
}

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

.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-brand-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.mobile-menu-close i {
  font-size: 1.2rem;
}

.mobile-nav {
  padding: 0;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

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

.mobile-cta-item {
  margin-top: 20px;
  border-bottom: none;
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.mobile-nav-cta:hover {
  background: linear-gradient(135deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.mobile-nav-cta i {
  font-size: 1rem;
  color: #000000;
}

/* Body padding to account for fixed header */
body {
  padding-top: 70px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 30px;
  }
  
  .btn-header-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
  }
  
  .header-content {
    height: 60px;
  }
  
  .brand-text {
    font-size: 1.3rem;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  body {
    padding-top: 60px;
  }
}

@media (max-width: 480px) {
  .header-content {
    height: 55px;
  }
  
  .brand-text {
    font-size: 1.1rem;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-brand-text {
    font-size: 1.1rem;
  }
  
  .mobile-nav-link {
    padding: 15px;
    font-size: 0.95rem;
  }
  
  .mobile-nav-cta {
    margin: 15px;
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  body {
    padding-top: 55px;
  }
}

/* About Section Styles */
.about-section {
  background: linear-gradient(135deg, #141414 0%, #0a0a0a 50%, #141414 100%);
  padding: 80px 0;
  position: relative;
}

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

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

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.about-image {
  position: relative;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.about-text {
  padding-left: 20px;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  line-height: 1.3;
}

.about-description {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: justify;
}

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

.security-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 40px 0;
  padding: 30px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

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

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

.security-item:hover {
  transform: translateX(5px);
}

.security-item i {
  color: #ffd700;
  font-size: 1.3rem;
  margin-top: 2px;
  min-width: 24px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-text {
    padding-left: 0;
  }
  
  .about-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .about-description {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-container {
    padding: 0 15px;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .about-description {
    font-size: 1rem;
  }
  
  .security-features {
    padding: 20px;
    margin: 30px 0;
  }
  
  .security-item {
    gap: 12px;
    padding: 12px 0;
  }
  
  .security-item i {
    font-size: 1.2rem;
  }
  
  .security-item span {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 0;
  }
  
  .about-title {
    font-size: 1.5rem;
  }
  
  .about-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .security-features {
    padding: 15px;
  }
  
  .security-item {
    gap: 10px;
    padding: 10px 0;
  }
  
  .security-item i {
    font-size: 1.1rem;
  }
  
  .security-item span {
    font-size: 0.9rem;
  }
}

/* Auto System Section Styles */
.auto-system-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.auto-system-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.03) 0%, transparent 50%, rgba(255, 215, 0, 0.03) 100%);
  pointer-events: none;
}

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

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

.auto-system-text {
  padding-right: 20px;
}

.auto-system-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  line-height: 1.3;
}

.auto-system-description {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: justify;
}

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

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

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

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

.auto-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.auto-feature-item:hover {
  background: rgba(255, 215, 0, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.auto-feature-item i {
  color: #ffd700;
  font-size: 1.5rem;
  margin-top: 5px;
  min-width: 24px;
}

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

.feature-content p {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.4;
  margin: 0;
}

.auto-system-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auto-system-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.speed-indicator {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 3;
}

.speed-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
  animation: pulse 2s infinite;
}

.speed-circle i {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 5px;
}

.speed-text {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .auto-system-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .auto-system-text {
    padding-right: 0;
    order: 2;
  }
  
  .auto-system-visual {
    order: 1;
  }
  
  .auto-system-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .auto-system-description {
    text-align: left;
  }
  
  .speed-indicator {
    top: -15px;
    right: -15px;
  }
  
  .speed-circle {
    width: 100px;
    height: 100px;
  }
  
  .speed-circle i {
    font-size: 1.5rem;
  }
  
  .speed-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .auto-system-section {
    padding: 60px 0;
  }
  
  .auto-system-container {
    padding: 0 15px;
  }
  
  .auto-system-title {
    font-size: 1.8rem;
  }
  
  .auto-system-description {
    font-size: 1rem;
  }
  
  .auto-features {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 30px 0;
  }
  
  .auto-feature-item {
    padding: 15px;
  }
  
  .auto-feature-item i {
    font-size: 1.3rem;
  }
  
  .feature-content h3 {
    font-size: 1rem;
  }
  
  .feature-content p {
    font-size: 0.85rem;
  }
  
  .speed-indicator {
    top: -10px;
    right: -10px;
  }
  
  .speed-circle {
    width: 80px;
    height: 80px;
  }
  
  .speed-circle i {
    font-size: 1.2rem;
  }
  
  .speed-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .auto-system-section {
    padding: 40px 0;
  }
  
  .auto-system-title {
    font-size: 1.5rem;
  }
  
  .auto-system-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .auto-feature-item {
    padding: 12px;
    gap: 12px;
  }
  
  .auto-feature-item i {
    font-size: 1.2rem;
  }
  
  .feature-content h3 {
    font-size: 0.95rem;
  }
  
  .feature-content p {
    font-size: 0.8rem;
  }
  
  .speed-circle {
    width: 70px;
    height: 70px;
  }
  
  .speed-circle i {
    font-size: 1rem;
  }
  
  .speed-text {
    font-size: 0.7rem;
  }
}

/* Game Providers Section Styles */
.game-providers-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
}

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

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

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

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

.game-providers-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  line-height: 1.3;
}

.game-providers-subtitle {
  font-size: 1.15rem;
  color: #cccccc;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

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

.game-providers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.provider-card {
  background: rgba(255, 215, 0, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
}

.provider-card:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.provider-card.featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.provider-image {
  position: relative;
  overflow: hidden;
}

.provider-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.provider-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.provider-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.provider-description {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
  text-align: justify;
}

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

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

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

.provider-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.feature-tag i {
  font-size: 0.8rem;
}

.provider-list {
  background: rgba(255, 215, 0, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  padding: 30px;
}

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

.provider-items {
  display: grid;
  gap: 20px;
}

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

.provider-item:hover {
  background: rgba(255, 215, 0, 0.12);
  transform: translateX(5px);
}

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

.provider-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.provider-info strong {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.provider-info span {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.4;
}

.game-providers-footer {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 215, 0, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-description {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto;
  text-align: justify;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .game-providers-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .provider-card.featured {
    grid-row: span 1;
  }
  
  .game-providers-title {
    font-size: 2.2rem;
  }
  
  .game-providers-subtitle {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .game-providers-section {
    padding: 60px 0;
  }
  
  .game-providers-container {
    padding: 0 15px;
  }
  
  .game-providers-header {
    margin-bottom: 40px;
  }
  
  .game-providers-title {
    font-size: 1.8rem;
  }
  
  .game-providers-subtitle {
    font-size: 0.95rem;
  }
  
  .provider-content {
    padding: 20px;
  }
  
  .provider-name {
    font-size: 1.3rem;
  }
  
  .provider-description {
    font-size: 0.95rem;
  }
  
  .provider-list {
    padding: 20px;
  }
  
  .provider-item {
    padding: 15px;
    gap: 12px;
  }
  
  .provider-item i {
    font-size: 1.2rem;
  }
  
  .provider-info strong {
    font-size: 0.95rem;
  }
  
  .provider-info span {
    font-size: 0.85rem;
  }
  
  .footer-description {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .game-providers-section {
    padding: 40px 0;
  }
  
  .game-providers-title {
    font-size: 1.5rem;
  }
  
  .game-providers-subtitle {
    font-size: 0.9rem;
  }
  
  .provider-content {
    padding: 15px;
  }
  
  .provider-name {
    font-size: 1.2rem;
  }
  
  .provider-description {
    font-size: 0.9rem;
  }
  
  .provider-list {
    padding: 15px;
  }
  
  .provider-list-title {
    font-size: 1.1rem;
  }
  
  .provider-item {
    padding: 12px;
    gap: 10px;
  }
  
  .provider-item i {
    font-size: 1.1rem;
  }
  
  .provider-info strong {
    font-size: 0.9rem;
  }
  
  .provider-info span {
    font-size: 0.8rem;
  }
  
  .feature-tag {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .game-providers-footer {
    padding: 20px 15px;
  }
}

/* Free Credit Section Styles */
.free-credit-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.free-credit-text {
  padding-right: 20px;
}

.free-credit-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  line-height: 1.3;
}

.free-credit-description {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: justify;
}

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

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

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

.benefit-item:hover {
  background: rgba(255, 215, 0, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.benefit-item i {
  color: #ffd700;
  font-size: 1.5rem;
  margin-top: 5px;
  min-width: 24px;
}

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

.benefit-content p {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.4;
  margin: 0;
}

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

.btn-credit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

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

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

.free-credit-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.free-credit-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.credit-amount-display {
  position: absolute;
  top: -30px;
  right: -30px;
  z-index: 3;
}

.amount-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  animation: bounce 2s infinite;
  position: relative;
}

.amount-card::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
  border-radius: 50%;
  z-index: -1;
  animation: rotate 3s linear infinite;
}

.amount-card i {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 5px;
}

.amount-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  line-height: 1;
}

.currency {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
}

.free-label {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff0000;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  text-transform: uppercase;
}

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

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

.credit-details {
  background: rgba(255, 215, 0, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  padding: 40px;
  position: relative;
  z-index: 2;
}

.credit-detail-text {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.credit-detail-text:last-child {
  margin-bottom: 0;
}

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

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

.credit-detail-text a:hover {
  color: #ffed4e;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .free-credit-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .free-credit-text {
    padding-right: 0;
    order: 2;
  }
  
  .free-credit-visual {
    order: 1;
  }
  
  .free-credit-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .free-credit-description {
    text-align: left;
  }
  
  .credit-amount-display {
    top: -20px;
    right: -20px;
  }
  
  .amount-card {
    width: 120px;
    height: 120px;
  }
  
  .amount-text {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .free-credit-section {
    padding: 60px 0;
  }
  
  .free-credit-container {
    padding: 0 15px;
  }
  
  .free-credit-title {
    font-size: 1.8rem;
  }
  
  .free-credit-description {
    font-size: 1rem;
  }
  
  .credit-benefits {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 30px 0;
  }
  
  .benefit-item {
    padding: 15px;
  }
  
  .benefit-item i {
    font-size: 1.3rem;
  }
  
  .benefit-content h3 {
    font-size: 1rem;
  }
  
  .benefit-content p {
    font-size: 0.85rem;
  }
  
  .btn-credit {
    font-size: 1.1rem;
    padding: 15px 30px;
  }
  
  .credit-amount-display {
    top: -15px;
    right: -15px;
  }
  
  .amount-card {
    width: 100px;
    height: 100px;
  }
  
  .amount-card i {
    font-size: 1.2rem;
  }
  
  .amount-text {
    font-size: 1.1rem;
  }
  
  .currency {
    font-size: 0.8rem;
  }
  
  .credit-details {
    padding: 25px;
  }
  
  .credit-detail-text {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .free-credit-section {
    padding: 40px 0;
  }
  
  .free-credit-title {
    font-size: 1.5rem;
  }
  
  .free-credit-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .benefit-item {
    padding: 12px;
    gap: 12px;
  }
  
  .benefit-item i {
    font-size: 1.2rem;
  }
  
  .benefit-content h3 {
    font-size: 0.95rem;
  }
  
  .benefit-content p {
    font-size: 0.8rem;
  }
  
  .btn-credit {
    font-size: 1rem;
    padding: 12px 25px;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .credit-amount-display {
    top: -10px;
    right: -10px;
  }
  
  .amount-card {
    width: 80px;
    height: 80px;
  }
  
  .amount-card i {
    font-size: 1rem;
  }
  
  .amount-text {
    font-size: 0.9rem;
  }
  
  .currency {
    font-size: 0.7rem;
  }
  
  .free-label {
    font-size: 0.6rem;
    padding: 2px 6px;
  }
  
  .credit-details {
    padding: 20px;
  }
  
  .credit-detail-text {
    font-size: 0.95rem;
  }
}

/* VIP Section Styles */
.vip-section {
  background: linear-gradient(135deg, #141414 0%, #0a0a0a 50%, #141414 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.vip-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  line-height: 1.3;
}

.vip-subtitle {
  font-size: 1.15rem;
  color: #cccccc;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto;
  text-align: justify;
}

.vip-subtitle strong {
  color: #ffd700;
  font-weight: 600;
}

.vip-main-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  margin-bottom: 50px;
  align-items: flex-start;
}

.vip-description {
  background: rgba(255, 215, 0, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  padding: 30px;
  position: relative;
}

.vip-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.vip-text {
  font-size: 1.05rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.vip-text:last-child {
  margin-bottom: 0;
}

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

.vip-privileges {
  background: rgba(255, 215, 0, 0.08);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 30px;
  height: fit-content;
}

.privileges-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.privileges-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
}

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

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

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

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

.privilege-item span {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.5;
}

.vip-membership-info {
  background: rgba(255, 215, 0, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  padding: 40px;
  margin-bottom: 40px;
}

.membership-text {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.membership-text:last-child {
  margin-bottom: 0;
}

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

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

.membership-text a:hover {
  color: #ffed4e;
}

.vip-cta {
  text-align: center;
}

.btn-vip {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 50px;
  background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
  color: #000000;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-vip::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.btn-vip:hover::before {
  opacity: 1;
  left: 100%;
}

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

.btn-vip i {
  font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .vip-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .vip-title {
    font-size: 2.2rem;
  }
  
  .vip-subtitle {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .vip-section {
    padding: 60px 0;
  }
  
  .vip-container {
    padding: 0 15px;
  }
  
  .vip-header {
    margin-bottom: 40px;
  }
  
  .vip-title {
    font-size: 1.8rem;
  }
  
  .vip-subtitle {
    font-size: 0.95rem;
  }
  
  .vip-description {
    padding: 20px;
  }
  
  .vip-img {
    height: 150px;
  }
  
  .vip-text {
    font-size: 1rem;
  }
  
  .vip-privileges {
    padding: 20px;
  }
  
  .privileges-title {
    font-size: 1.3rem;
  }
  
  .privilege-item {
    padding: 12px;
    gap: 12px;
  }
  
  .privilege-item i {
    font-size: 1.1rem;
  }
  
  .privilege-item span {
    font-size: 0.9rem;
  }
  
  .vip-membership-info {
    padding: 25px;
  }
  
  .membership-text {
    font-size: 1rem;
    text-align: left;
  }
  
  .btn-vip {
    font-size: 1.1rem;
    padding: 15px 35px;
  }
}

@media (max-width: 480px) {
  .vip-section {
    padding: 40px 0;
  }
  
  .vip-title {
    font-size: 1.5rem;
  }
  
  .vip-subtitle {
    font-size: 0.9rem;
  }
  
  .vip-description {
    padding: 15px;
  }
  
  .vip-img {
    height: 120px;
  }
  
  .vip-text {
    font-size: 0.95rem;
  }
  
  .vip-privileges {
    padding: 15px;
  }
  
  .privileges-title {
    font-size: 1.1rem;
  }
  
  .privilege-list {
    gap: 15px;
  }
  
  .privilege-item {
    padding: 10px;
    gap: 10px;
  }
  
  .privilege-item i {
    font-size: 1rem;
  }
  
  .privilege-item span {
    font-size: 0.85rem;
  }
  
  .vip-membership-info {
    padding: 20px;
  }
  
  .membership-text {
    font-size: 0.95rem;
  }
  
  .btn-vip {
    font-size: 1rem;
    padding: 12px 25px;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .btn-vip i {
    font-size: 1.2rem;
  }
}

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

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

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding: 60px 0 40px;
}

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

.footer-about {
  grid-column: span 2;
}

.footer-brand-name {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.footer-brand-desc {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

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

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

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

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
}

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

.footer-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

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

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

.footer-link:hover::before {
  opacity: 1;
}

.footer-cta-desc {
  color: #cccccc;
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer-buttons {
  margin-bottom: 20px;
}

.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.btn-footer-cta:hover {
  background: linear-gradient(135deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.btn-footer-cta i {
  font-size: 0.85rem;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.85rem;
}

.feature-item i {
  color: #ffd700;
  font-size: 0.9rem;
  width: 14px;
}

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

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

.footer-copyright {
  color: #cccccc;
  font-size: 0.85rem;
}

.footer-disclaimer {
  flex: 1;
  text-align: right;
}

.disclaimer-text {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #ff6b6b;
  font-size: 0.8rem;
  margin: 0;
}

.disclaimer-text i {
  color: #ff6b6b;
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .footer-about {
    grid-column: span 1;
  }
  
  .footer-cta {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 40px 0 30px;
  }
  
  .footer-about {
    grid-column: span 2;
  }
  
  .footer-cta {
    grid-column: span 2;
  }
  
  .footer-brand-name {
    font-size: 1.3rem;
  }
  
  .footer-brand-desc {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1rem;
  }
  
  .footer-link {
    font-size: 0.85rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-disclaimer {
    text-align: center;
  }
  
  .disclaimer-text {
    justify-content: center;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 0 20px;
  }
  
  .footer-about {
    grid-column: span 1;
  }
  
  .footer-cta {
    grid-column: span 1;
  }
  
  .footer-brand-name {
    font-size: 1.2rem;
  }
  
  .footer-brand-desc {
    font-size: 0.85rem;
  }
  
  .footer-title {
    font-size: 0.95rem;
  }
  
  .footer-link {
    font-size: 0.8rem;
  }
  
  .contact-item {
    font-size: 0.85rem;
  }
  
  .btn-footer-cta {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .feature-item {
    font-size: 0.8rem;
  }
  
  .footer-copyright {
    font-size: 0.8rem;
  }
  
  .disclaimer-text {
    font-size: 0.7rem;
    text-align: center;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
}

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

.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.85rem;
  transition: all 0.3s ease;
  position: relative;
  min-height: 60px;
  gap: 4px;
}

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

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

.btn-text {
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.sticky-login {
  background: linear-gradient(135deg, #4a90e2, #357abd);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-login:hover {
  background: linear-gradient(135deg, #357abd, #2968a3);
  box-shadow: 0 -3px 15px rgba(74, 144, 226, 0.4);
}

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

.sticky-register:hover {
  background: linear-gradient(135deg, #1e7e34, #155724);
  box-shadow: 0 -3px 15px rgba(40, 167, 69, 0.4);
}

.sticky-credit {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  position: relative;
  overflow: hidden;
}

.sticky-credit::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700, #ffed4e);
  z-index: -1;
  animation: shimmer 2s linear infinite;
}

.sticky-credit:hover {
  background: linear-gradient(135deg, #ffed4e, #ffd700);
  box-shadow: 0 -3px 15px rgba(255, 215, 0, 0.6);
}

.sticky-credit .btn-text {
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.sticky-credit i {
  color: #000000;
  animation: bounce 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

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

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

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.75rem;
    min-height: 50px;
    gap: 2px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .btn-text {
    font-size: 0.7rem;
    line-height: 1.1;
  }
}

@media (max-width: 360px) {
  .btn-text {
    font-size: 0.65rem;
  }
  
  .sticky-btn i {
    font-size: 0.95rem;
  }
}

/* Add bottom padding to body to prevent content overlap */
body {
  padding-bottom: 60px;
}

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

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

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

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

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

.login-box {
  background: rgba(26, 26, 26, 0.95);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.login-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
}

.login-logo {
  text-align: center;
  margin-bottom: 40px;
}

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 15px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  padding: 10px;
  background: rgba(255, 215, 0, 0.05);
}

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

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

.error-message {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 8px;
  margin-bottom: 25px;
  color: #ff6b6b;
  font-size: 0.9rem;
}

.error-message.show {
  display: flex;
  animation: slideIn 0.3s ease;
}

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

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

.login-form {
  margin-bottom: 30px;
}

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

.form-label {
  display: block;
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

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

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

.form-input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  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 3px rgba(255, 215, 0, 0.1);
}

.form-input.error {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.05);
}

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

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

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

.field-error {
  display: block;
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 20px;
}

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

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

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

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

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

.btn-login.loading .loading-spinner {
  opacity: 1;
}

.loading-spinner {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.loading-spinner i {
  animation: spin 1s linear infinite;
}

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

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

.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

.login-security {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding-top: 20px;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 80px 15px 70px;
  }
  
  .login-box {
    padding: 30px 25px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.7rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    font-size: 0.95rem;
    padding: 14px 14px 14px 42px;
  }
  
  .btn-login {
    font-size: 1rem;
    padding: 15px;
  }
  
  .btn-register {
    font-size: 0.95rem;
    padding: 11px 25px;
  }
  
  .security-features {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 70px 10px 60px;
  }
  
  .login-container {
    max-width: 100%;
  }
  
  .login-box {
    padding: 25px 20px;
    margin: 10px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .login-subtitle {
    font-size: 0.85rem;
  }
  
  .form-input {
    font-size: 0.9rem;
    padding: 13px 13px 13px 40px;
  }
  
  .input-icon {
    left: 13px;
    font-size: 0.95rem;
  }
  
  .password-toggle {
    right: 13px;
    font-size: 0.95rem;
  }
  
  .btn-login {
    font-size: 0.95rem;
    padding: 14px;
  }
  
  .btn-register {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  
  .security-item {
    font-size: 0.75rem;
  }
}

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

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

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

.register-box {
  background: rgba(26, 26, 26, 0.95);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.register-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
}

.register-logo {
  text-align: center;
  margin-bottom: 40px;
}

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 20px;
  border-radius: 15px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  padding: 10px;
  background: rgba(255, 215, 0, 0.05);
  display: block;
}

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

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

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

.success-message.show {
  display: flex;
  animation: slideIn 0.3s ease;
}

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

.error-message {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 8px;
  margin-bottom: 25px;
  color: #ff6b6b;
  font-size: 0.9rem;
}

.error-message.show {
  display: flex;
  animation: slideIn 0.3s ease;
}

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

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

.register-form {
  margin-bottom: 30px;
}

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

.form-label {
  display: block;
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1rem;
}

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

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

.form-input {
  width: 100%;
  padding: 18px 18px 18px 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.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 3px rgba(255, 215, 0, 0.1);
}

.form-input.error {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.05);
}

.form-input::placeholder {
  color: #888888;
  font-size: 1rem;
}

.field-error {
  display: block;
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 8px;
  min-height: 20px;
}

.btn-register {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

.btn-register.loading .loading-spinner {
  opacity: 1;
}

.loading-spinner {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.loading-spinner i {
  animation: spin 1s linear infinite;
}

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

.register-actions {
  text-align: center;
  margin-bottom: 35px;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background: #ffd700;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.register-benefits {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding-top: 25px;
}

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

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

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

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

.benefit-item i {
  color: #ffd700;
  font-size: 1rem;
  min-width: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 80px 15px 70px;
  }
  
  .register-box {
    padding: 30px 25px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    font-size: 1rem;
    padding: 16px 16px 16px 46px;
  }
  
  .input-icon {
    left: 14px;
    font-size: 1rem;
  }
  
  .btn-register {
    font-size: 1.1rem;
    padding: 16px;
  }
  
  .btn-login {
    font-size: 1rem;
    padding: 12px 30px;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .benefit-item {
    padding: 10px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 70px 10px 60px;
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-box {
    padding: 25px 20px;
    margin: 10px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.85rem;
  }
  
  .form-input {
    font-size: 0.95rem;
    padding: 15px 15px 15px 44px;
  }
  
  .input-icon {
    left: 13px;
    font-size: 0.95rem;
  }
  
  .btn-register {
    font-size: 1rem;
    padding: 15px;
  }
  
  .btn-login {
    font-size: 0.95rem;
    padding: 11px 25px;
  }
  
  .benefits-title {
    font-size: 1rem;
  }
  
  .benefit-item {
    padding: 8px;
    font-size: 0.8rem;
  }
  
  .benefit-item i {
    font-size: 0.9rem;
  }
}

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

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

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

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  color: #ffd700;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-highlight i {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

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

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

.btn-hero-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

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

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

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

/* Promotion Section Styles */
.promotion-section {
  background: linear-gradient(135deg, #141414 0%, #0f0f0f 50%, #141414 100%);
  padding: 80px 0;
  position: relative;
}

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

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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;
  padding: 0 20px;
}

.promotion-card {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

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

.promotion-card.vip-card {
  border: 2px solid rgba(255, 215, 0, 0.5);
  background: rgba(26, 26, 26, 0.9);
}

.promotion-card.vip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

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

.promotion-header i {
  color: #ffd700;
  font-size: 2.5rem;
  margin-top: 5px;
  min-width: 40px;
}

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

.promotion-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

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

.promotion-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.promotion-list li:last-child {
  border-bottom: none;
}

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

.promotion-list span {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
}

.promotion-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  position: relative;
}

.amount-text {
  font-size: 4rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1;
  margin-bottom: 5px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.free-label {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #ff4757, #ff3838);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

.vip-amount {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
  border-color: rgba(255, 215, 0, 0.5);
}

.vip-label {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

.bonus-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffd700;
}

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

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

.promotion-cta {
  text-align: center;
}

.btn-promotion {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

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

.btn-vip {
  background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.btn-vip:hover {
  background: linear-gradient(135deg, #ffed4e, #ffd700, #ffed4e);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-highlight {
    font-size: 1.1rem;
    padding: 15px 30px;
  }
  
  .btn-hero-cta {
    font-size: 1.3rem;
    padding: 20px 40px;
  }
  
  .promotion-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .promotion-amount {
    min-width: auto;
    align-self: center;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-highlight {
    font-size: 1rem;
    padding: 12px 25px;
    gap: 10px;
  }
  
  .btn-hero-cta {
    font-size: 1.1rem;
    padding: 18px 30px;
    gap: 10px;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-container {
    padding: 0 15px;
  }
  
  .promotion-card {
    padding: 25px;
  }
  
  .promotion-header {
    gap: 15px;
  }
  
  .promotion-header i {
    font-size: 2rem;
    min-width: 32px;
  }
  
  .promotion-title {
    font-size: 1.5rem;
  }
  
  .promotion-list span {
    font-size: 1rem;
  }
  
  .amount-text {
    font-size: 3rem;
  }
  
  .currency {
    font-size: 1.2rem;
  }
  
  .btn-promotion {
    font-size: 1rem;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-highlight {
    font-size: 0.9rem;
    padding: 10px 20px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .btn-hero-cta {
    font-size: 1rem;
    padding: 15px 25px;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .promotion-section {
    padding: 40px 0;
  }
  
  .promotion-card {
    padding: 20px;
  }
  
  .promotion-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .promotion-header i {
    font-size: 2.5rem;
    margin: 0;
  }
  
  .promotion-title {
    font-size: 1.3rem;
  }
  
  .promotion-list {
    gap: 15px;
  }
  
  .promotion-list li {
    padding: 12px 0;
  }
  
  .promotion-list span {
    font-size: 0.95rem;
  }
  
  .promotion-amount {
    padding: 20px;
    min-width: auto;
  }
  
  .amount-text {
    font-size: 2.5rem;
  }
  
  .currency {
    font-size: 1rem;
  }
  
  .weekly-text {
    font-size: 1.4rem;
  }
  
  .btn-promotion {
    font-size: 0.9rem;
    padding: 12px 20px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}