/* 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;
}

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

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

.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="20" cy="20" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

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

.hero-text {
  animation: fadeInLeft 1s ease-out;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e0e0e0;
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.btn-secondary:hover {
  background: #ffd700;
  color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

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

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

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

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

.hero-promotion {
  position: absolute;
  top: -20px;
  right: -20px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

.promotion-badge,
.promotion-reward {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 0.9rem;
}

.promotion-arrow {
  color: #ffffff;
  font-size: 1.2rem;
}

.promotion-badge i,
.promotion-reward i {
  color: #ffd700;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .hero-buttons {
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .feature-item {
    font-size: 0.9rem;
  }
  
  .hero-promotion {
    position: relative;
    top: 20px;
    right: 0;
    margin: 0 auto;
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
    gap: 8px;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .feature-item {
    justify-content: center;
    font-size: 0.85rem;
  }
  
  .hero-promotion {
    padding: 12px;
    gap: 8px;
  }
  
  .promotion-badge,
  .promotion-reward {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 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(15px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.header-logo .logo-link {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

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

.logo-tagline {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ff6b35;
}

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

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

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

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

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

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

.header-cta .btn-cta {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  border: 2px solid transparent;
}

.header-cta .btn-cta:hover {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 22px;
  justify-content: space-between;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

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

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

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

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

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

.mobile-nav-item {
  margin-bottom: 5px;
}

.mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

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

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

.mobile-cta-item {
  margin-top: 20px;
  padding: 0 20px;
}

.mobile-nav-cta {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  text-align: center;
}

.mobile-nav-cta:hover {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-tagline {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .logo-tagline {
    font-size: 0.8rem;
  }
  
  .mobile-menu {
    width: 280px;
  }
  
  .mobile-nav-link {
    font-size: 1rem;
    padding: 12px 15px;
  }
  
  .mobile-nav-cta {
    font-size: 1rem;
    padding: 12px 15px;
  }
  
  .mobile-cta-item {
    padding: 0 15px;
  }
}

/* Ensure body has proper top margin for fixed header */
body {
  margin-top: 70px;
}

@media (max-width: 480px) {
  body {
    margin-top: 60px;
  }
}

/* About Section */
.about-section {
  background: linear-gradient(180deg, #16213e 0%, #1a1a2e 100%);
  padding: 100px 0;
  position: relative;
}

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

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

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

.about-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.3;
}

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

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

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

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

.inline-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.inline-link:hover {
  border-bottom-color: #ff6b35;
  color: #f7931e;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

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

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.feature-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

.about-cta {
  text-align: left;
}

.about-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

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

.about-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  animation: pulse 2s infinite;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    gap: 60px;
  }
  
  .about-title {
    font-size: 2.2rem;
  }
  
  .about-description p {
    font-size: 1rem;
  }
  
  .about-features {
    gap: 15px;
  }
  
  .feature-card {
    padding: 18px;
  }
  
  .feature-content h3 {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .about-description p {
    font-size: 0.95rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .about-cta {
    text-align: center;
  }
  
  .about-badge {
    position: relative;
    top: 20px;
    left: 0;
    margin: 0 auto 20px;
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 0 15px;
  }
  
  .about-section {
    padding: 60px 0;
  }
  
  .about-content {
    gap: 40px;
  }
  
  .about-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .about-description {
    margin-bottom: 30px;
  }
  
  .about-description p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .feature-card {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-icon i {
    font-size: 1.3rem;
  }
  
  .feature-content h3 {
    font-size: 0.9rem;
  }
  
  .about-badge {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* Deposit Withdraw Section */
.deposit-withdraw-section {
  background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.section-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
}

.deposit-withdraw-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

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

.system-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 20px;
}

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

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

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

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-item .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.feature-item .feature-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.feature-item h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

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

.promotion-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.promotion-header {
  margin-bottom: 25px;
}

.promotion-badge {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  padding: 8px 20px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

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

.promotion-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 30px;
}

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

.promotion-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
}

.promo-step {
  flex: 1;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 auto 15px;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.step-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 5px;
}

.step-content p {
  font-size: 0.9rem;
  color: #e0e0e0;
  line-height: 1.4;
}

.promo-arrow {
  color: #ffd700;
  font-size: 1.5rem;
  margin: 0 15px;
}

.additional-promos {
  margin-bottom: 30px;
}

.additional-promos p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.additional-promos p:last-child {
  margin-bottom: 0;
}

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

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

.btn-large {
  padding: 18px 40px;
  font-size: 1.2rem;
  border-radius: 50px;
}

.deposit-image-section {
  text-align: center;
}

.deposit-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .deposit-withdraw-content {
    gap: 60px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .promotion-highlight {
    padding: 20px;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .promo-arrow {
    margin: 0 10px;
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .deposit-withdraw-section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .deposit-withdraw-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .promotion-card {
    padding: 25px;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-highlight {
    flex-direction: column;
    gap: 20px;
  }
  
  .promo-step {
    width: 100%;
  }
  
  .promo-arrow {
    transform: rotate(90deg);
    margin: 0;
  }
}

@media (max-width: 480px) {
  .deposit-withdraw-container {
    padding: 0 15px;
  }
  
  .deposit-withdraw-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .deposit-withdraw-content {
    gap: 40px;
  }
  
  .system-description,
  .additional-promos {
    margin-bottom: 30px;
  }
  
  .system-description p,
  .additional-promos p {
    font-size: 0.95rem;
  }
  
  .feature-item {
    padding: 20px 15px;
  }
  
  .feature-item .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-item .feature-icon i {
    font-size: 1.5rem;
  }
  
  .feature-item h3 {
    font-size: 1rem;
  }
  
  .feature-item p {
    font-size: 0.9rem;
  }
  
  .promotion-card {
    padding: 20px;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .promotion-description {
    font-size: 0.95rem;
  }
  
  .promotion-highlight {
    padding: 20px;
    gap: 15px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .step-content h4 {
    font-size: 1rem;
  }
  
  .step-content p {
    font-size: 0.85rem;
  }
  
  .btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

/* Game Providers Section */
.game-providers-section {
  background: linear-gradient(180deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.game-providers-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.06) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.section-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto;
}

.providers-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.providers-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.providers-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 20px;
}

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

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

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

.provider-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.provider-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(255, 107, 53, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.provider-card.featured {
  border: 2px solid rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.08);
}

.provider-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.provider-card.featured:hover {
  border-color: rgba(255, 215, 0, 0.7);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.provider-logo {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.provider-card.featured .provider-logo {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.provider-logo i {
  font-size: 2rem;
  color: #ffffff;
}

.provider-card.featured .provider-logo i {
  color: #1a1a2e;
}

.provider-name {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.provider-card.featured .provider-name {
  color: #ffd700;
}

.provider-description {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.provider-features {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.feature-tag {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.provider-card.featured .feature-tag {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.3);
}

.provider-card:hover .feature-tag {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.provider-card.featured:hover .feature-tag {
  background: rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.5);
}

.providers-cta {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 20px;
}

.game-image-section {
  text-align: center;
  position: relative;
}

.game-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 215, 0, 0.3);
}

.game-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .providers-content {
    gap: 60px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .providers-description p {
    font-size: 1rem;
  }
  
  .provider-card {
    padding: 25px 20px;
  }
  
  .provider-logo {
    width: 60px;
    height: 60px;
  }
  
  .provider-logo i {
    font-size: 1.8rem;
  }
  
  .provider-name {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .game-providers-section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .providers-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .providers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .providers-cta {
    margin-top: 30px;
  }
  
  .game-badge {
    position: relative;
    top: 20px;
    right: 0;
    margin: 0 auto;
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .game-providers-container {
    padding: 0 15px;
  }
  
  .game-providers-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .providers-content {
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .providers-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .provider-card {
    padding: 20px 18px;
  }
  
  .provider-logo {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }
  
  .provider-logo i {
    font-size: 1.6rem;
  }
  
  .provider-name {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .provider-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .feature-tag {
    padding: 4px 10px;
    font-size: 0.75rem;
  }
  
  .btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  .game-badge {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* Demo Play Section */
.demo-play-section {
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

.demo-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: center;
}

.demo-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 30px;
}

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

.demo-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 20px;
}

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

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

.demo-features {
  margin-bottom: 40px;
}

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

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

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.feature-item .feature-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.feature-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
  line-height: 1.3;
}

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

.demo-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.demo-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.demo-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 215, 0, 0.3);
}

.demo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  backdrop-filter: blur(2px);
}

.demo-badge {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  padding: 10px 18px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  align-self: flex-start;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  animation: pulse 2s infinite;
}

.demo-badge i {
  font-size: 1rem;
}

.demo-benefits {
  display: flex;
  gap: 15px;
  align-self: flex-end;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a2e;
  padding: 8px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .demo-content {
    gap: 60px;
  }
  
  .demo-title {
    font-size: 2.2rem;
  }
  
  .demo-description p {
    font-size: 1rem;
  }
  
  .feature-list {
    gap: 20px;
  }
  
  .feature-item {
    padding: 18px;
  }
  
  .feature-item .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-item .feature-icon i {
    font-size: 1.3rem;
  }
  
  .feature-content h3 {
    font-size: 1rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .demo-play-section {
    padding: 80px 0;
  }
  
  .demo-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .demo-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .feature-list {
    grid-template-columns: 1fr;
  }
  
  .demo-cta {
    justify-content: center;
  }
  
  .demo-overlay {
    padding: 15px;
  }
  
  .demo-benefits {
    gap: 10px;
  }
  
  .benefit-item {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .demo-play-container {
    padding: 0 15px;
  }
  
  .demo-play-section {
    padding: 60px 0;
  }
  
  .demo-content {
    gap: 40px;
  }
  
  .demo-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .demo-description {
    margin-bottom: 30px;
  }
  
  .demo-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .demo-features {
    margin-bottom: 30px;
  }
  
  .feature-list {
    gap: 15px;
  }
  
  .feature-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .feature-item .feature-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
  }
  
  .feature-item .feature-icon i {
    font-size: 1.2rem;
  }
  
  .feature-content h3 {
    font-size: 0.95rem;
  }
  
  .feature-content p {
    font-size: 0.85rem;
  }
  
  .demo-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .demo-overlay {
    padding: 12px;
  }
  
  .demo-badge {
    padding: 8px 15px;
    font-size: 0.8rem;
  }
  
  .demo-benefits {
    flex-direction: column;
    gap: 8px;
  }
  
  .benefit-item {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
}

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

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

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

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

.section-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
}

.live-casino-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.live-casino-image {
  position: relative;
  animation: fadeInLeft 1s ease-out;
}

.live-casino-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 215, 0, 0.3);
}

.live-indicator {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 0, 0, 0.9);
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.casino-features {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.casino-feature {
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a2e;
  padding: 8px 12px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  flex: 1;
  justify-content: center;
}

.casino-feature i {
  font-size: 0.9rem;
  color: #ff6b35;
}

.live-casino-description {
  margin-bottom: 40px;
}

.live-casino-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 20px;
}

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

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

.live-casino-highlights {
  margin-bottom: 40px;
}

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

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

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.highlight-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.highlight-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
  line-height: 1.3;
}

.highlight-content p {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.4;
  margin: 0;
}

.live-casino-cta {
  text-align: left;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .live-casino-content {
    gap: 60px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .live-casino-description p {
    font-size: 1rem;
  }
  
  .highlight-grid {
    gap: 15px;
  }
  
  .highlight-item {
    padding: 18px;
  }
  
  .highlight-icon {
    width: 45px;
    height: 45px;
  }
  
  .highlight-icon i {
    font-size: 1.3rem;
  }
  
  .highlight-content h3 {
    font-size: 1rem;
  }
  
  .highlight-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .live-casino-section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .live-casino-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .highlight-grid {
    grid-template-columns: 1fr;
  }
  
  .live-casino-cta {
    text-align: center;
  }
  
  .casino-features {
    flex-direction: column;
    gap: 8px;
  }
  
  .casino-feature {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  .live-casino-container {
    padding: 0 15px;
  }
  
  .live-casino-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .live-casino-content {
    gap: 40px;
  }
  
  .live-casino-description {
    margin-bottom: 30px;
  }
  
  .live-casino-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .live-casino-highlights {
    margin-bottom: 30px;
  }
  
  .highlight-grid {
    gap: 15px;
  }
  
  .highlight-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .highlight-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
  }
  
  .highlight-icon i {
    font-size: 1.2rem;
  }
  
  .highlight-content h3 {
    font-size: 0.95rem;
  }
  
  .highlight-content p {
    font-size: 0.85rem;
  }
  
  .live-indicator {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .casino-features {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 15px;
    flex-direction: row;
    gap: 8px;
  }
  
  .casino-feature {
    font-size: 0.7rem;
    padding: 5px 8px;
    gap: 4px;
  }
  
  .casino-feature i {
    font-size: 0.8rem;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 100%);
  color: #ffffff;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.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;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

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

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

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

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

.footer-logo-tagline {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ff6b35;
}

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

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

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

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

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

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

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

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

.footer-link::before {
  content: '▶';
  color: #ff6b35;
  font-size: 0.7rem;
  margin-right: 8px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

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

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

.footer-bottom-content {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
}

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

.payment-methods,
.security-badges {
  display: flex;
  gap: 20px;
}

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

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

.footer-disclaimer {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.disclaimer-text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #b0b0b0;
  text-align: center;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
  }
  
  .footer-games {
    display: none;
  }
  
  .footer-bottom-content {
    gap: 20px;
  }
  
  .payment-methods,
  .security-badges {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-games {
    display: block;
  }
  
  .footer-about {
    text-align: left;
  }
  
  .footer-bottom-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .footer-copyright {
    order: 3;
  }
  
  .footer-payment {
    order: 1;
  }
  
  .footer-security {
    order: 2;
  }
  
  .payment-methods,
  .security-badges {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer {
    padding: 30px 0 0;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  .footer-logo-text {
    font-size: 1.5rem;
  }
  
  .footer-logo-tagline {
    font-size: 0.9rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-link {
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .footer-bottom-content {
    gap: 15px;
  }
  
  .payment-methods,
  .security-badges {
    gap: 10px;
  }
  
  .payment-item,
  .security-item {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  
  .footer-copyright p {
    font-size: 0.8rem;
  }
  
  .disclaimer-text {
    font-size: 0.75rem;
  }
  
  .footer-disclaimer {
    padding: 15px 0;
  }
  
  .contact-item {
    font-size: 0.85rem;
    justify-content: flex-start;
  }
}

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

.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: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255, 215, 0, 0.2);
  min-height: 60px;
  position: relative;
  overflow: hidden;
}

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

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

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

.sticky-login {
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.8) 0%, rgba(46, 125, 50, 0.8) 100%);
}

.sticky-register {
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.8) 0%, rgba(25, 118, 210, 0.8) 100%);
}

.sticky-bonus {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(247, 147, 30, 0.9) 100%);
  animation: pulse-glow 2s infinite;
}

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

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

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

.sticky-btn-text {
  font-size: 0.8rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1.2;
}

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

.sticky-login:hover {
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.9) 0%, rgba(46, 125, 50, 0.9) 100%);
  box-shadow: 0 -3px 15px rgba(34, 139, 34, 0.4);
}

.sticky-register:hover {
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.9) 0%, rgba(25, 118, 210, 0.9) 100%);
  box-shadow: 0 -3px 15px rgba(30, 144, 255, 0.4);
}

.sticky-bonus:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 1) 0%, rgba(247, 147, 30, 1) 100%);
  box-shadow: 0 -3px 15px rgba(255, 107, 53, 0.6);
  animation: none;
}

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

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

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

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

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

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

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

/* Login Section */
.login-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 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 30% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.login-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  margin-bottom: 10px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.logo-text {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

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

.logo-domain {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ff6b35;
}

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
}

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

.error-message {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #f44336;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.error-message.show {
  display: flex;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

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

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

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

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

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

.form-input:focus {
  outline: none;
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.form-input.error {
  border-color: #f44336;
  box-shadow: 0 0 20px rgba(244, 67, 54, 0.2);
}

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

.password-toggle {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: #b0b0b0;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 2;
}

.password-toggle:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

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

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

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

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.checkbox-wrapper input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom {
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  border-color: #ffd700;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #1a1a2e;
  font-weight: bold;
  font-size: 12px;
}

.checkbox-label {
  color: #e0e0e0;
  font-size: 0.9rem;
}

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

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

.btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-login {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-login:hover:not(:disabled) {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

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

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

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

.btn-loader {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

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

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

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

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

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

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

.login-features {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #e0e0e0;
  font-size: 0.8rem;
  text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 15px;
  }
  
  .login-form-wrapper {
    padding: 30px 25px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .logo-main {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .login-form-wrapper {
    padding: 25px 20px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .form-input {
    padding: 12px 16px 12px 45px;
  }
  
  .btn {
    padding: 12px;
    font-size: 1rem;
  }
  
  .form-options {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .login-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .feature-item {
    flex-direction: row;
    gap: 8px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .logo-main {
    font-size: 1.4rem;
  }
  
  .logo-domain {
    font-size: 0.9rem;
  }
}

/* Register Section */
.register-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 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 70% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.register-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  margin-bottom: 10px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.logo-text {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

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

.logo-domain {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ff6b35;
}

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
}

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

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

.error-message {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #f44336;
}

.success-message {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
}

.error-message.show,
.success-message.show {
  display: flex;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

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

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

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

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

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

.form-input:focus {
  outline: none;
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.form-input.error {
  border-color: #f44336;
  box-shadow: 0 0 20px rgba(244, 67, 54, 0.2);
}

.form-input.success {
  border-color: #4caf50;
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.2);
}

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

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

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

.field-help {
  color: #b0b0b0;
  font-size: 0.8rem;
  margin-top: 5px;
}

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

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

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.checkbox-wrapper input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom {
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  border-color: #ffd700;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #1a1a2e;
  font-weight: bold;
  font-size: 12px;
}

.checkbox-label {
  color: #e0e0e0;
  font-size: 0.9rem;
  line-height: 1.4;
}

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

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

.btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.btn-register {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-register:hover:not(:disabled) {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

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

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

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

.btn-loader {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

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

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

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

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

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

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

.register-features {
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #e0e0e0;
  font-size: 0.8rem;
  text-align: center;
}

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

.register-note {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
}

.register-note p {
  color: #ffc107;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.register-note i {
  margin-top: 2px;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 15px;
  }
  
  .register-form-wrapper {
    padding: 30px 25px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .logo-main {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .register-form-wrapper {
    padding: 25px 20px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .form-input {
    padding: 12px 16px 12px 45px;
  }
  
  .btn {
    padding: 12px;
    font-size: 1rem;
  }
  
  .register-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .feature-item {
    flex-direction: row;
    gap: 8px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .logo-main {
    font-size: 1.4rem;
  }
  
  .logo-domain {
    font-size: 0.9rem;
  }
  
  .checkbox-label {
    font-size: 0.85rem;
  }
  
  .register-note {
    padding: 12px;
  }
  
  .register-note p {
    font-size: 0.75rem;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  padding: 120px 0 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% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content {
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 50%, #f7931e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.hero-description {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature-badge {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffd700;
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

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

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

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

.btn-hero {
  padding: 20px 50px;
  font-size: 1.3rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  animation: pulse-glow 2s infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6), 0 0 30px rgba(255, 107, 53, 0.4);
  }
}

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

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

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

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

.promotion-section.promotion-alt::before {
  background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

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

.promotion-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.promotion-header {
  margin-bottom: 40px;
}

.promotion-badge {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.promotion-badge.premium {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.promotion-badge.demo {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.promotion-badge.special {
  background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

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

.promotion-features {
  margin-bottom: 40px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

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

.promotion-highlight {
  margin-bottom: 40px;
}

.highlight-box {
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  padding: 30px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.highlight-box.premium {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.highlight-box.demo {
  background: rgba(76, 175, 80, 0.1);
  border-color: rgba(76, 175, 80, 0.3);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.highlight-box.special {
  background: rgba(156, 39, 176, 0.1);
  border-color: rgba(156, 39, 176, 0.3);
  box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-box.premium .highlight-icon {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.highlight-box.demo .highlight-icon {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.highlight-box.special .highlight-icon {
  background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
}

.highlight-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.highlight-box.premium .highlight-icon i {
  color: #1a1a2e;
}

.highlight-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.highlight-content p {
  color: #e0e0e0;
  font-size: 1rem;
  margin: 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
  
  .btn-hero {
    padding: 18px 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .highlight-box {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 25px;
  }
  
  .highlight-icon {
    width: 50px;
    height: 50px;
  }
  
  .highlight-icon i {
    font-size: 1.5rem;
  }
  
  .btn-hero {
    padding: 15px 35px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-container,
  .promotion-container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 80px 0 50px;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .hero-title {
    font-size: 1.9rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .feature-item {
    padding: 12px 15px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
  
  .highlight-box {
    padding: 20px;
  }
  
  .highlight-content h3 {
    font-size: 1.3rem;
  }
  
  .highlight-content p {
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .btn-hero {
    padding: 12px 30px;
    font-size: 1rem;
  }
  
  .feature-badge {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}