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

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

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

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

a:hover {
  color: #ffed4e;
  text-decoration: underline;
}

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

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

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

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

.hero-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-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: #e0e0e0;
  font-weight: 400;
}

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

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

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

.feature-item i {
  color: #ffd700;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.feature-item span {
  font-weight: 500;
  font-size: 1rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  min-width: 160px;
  justify-content: center;
}

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

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

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

.btn-secondary:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.2);
  text-decoration: none;
}

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

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

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

.image-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
}

.overlay-badge {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  animation: bounce 2s infinite;
}

.overlay-badge i {
  font-size: 1.2rem;
}

/* 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 bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    padding: 0 40px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 0 20px;
  }
  
  .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;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .feature-item {
    padding: 12px 16px;
    justify-content: center;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 1rem;
    min-width: 140px;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .feature-item {
    padding: 10px 14px;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.header-logo .logo-link {
  text-decoration: none;
}

.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;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

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

.header-nav {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

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

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

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

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

.header-cta {
  display: flex;
}

.btn-cta {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}

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

.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: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
  right: 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.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.mobile-menu-close:hover {
  color: #ffed4e;
  transform: rotate(90deg);
}

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

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

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

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

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

.mobile-nav-link:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  text-decoration: none;
  padding-left: 30px;
}

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

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

.btn-mobile-cta {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  text-decoration: none;
  width: 100%;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 40px;
  }
  
  .nav-list {
    gap: 1.5rem;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
    height: 60px;
  }
  
  body {
    padding-top: 60px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .header-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .hamburger-line {
    width: 22px;
    height: 2px;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-logo {
    font-size: 1.2rem;
  }
  
  .mobile-nav-link {
    padding: 14px 15px;
    font-size: 0.95rem;
  }
  
  .mobile-cta-item {
    padding: 15px;
  }
  
  .btn-mobile-cta {
    padding: 14px 20px;
    font-size: 0.9rem;
  }
}

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

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

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

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

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

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

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

.platform-stats {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
}

.stat-item {
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  backdrop-filter: blur(10px);
}

.stat-item i {
  color: #ffd700;
  font-size: 1.5rem;
  width: 32px;
  text-align: center;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

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

.stat-label {
  font-size: 0.9rem;
  color: #e0e0e0;
  font-weight: 400;
}

.platform-text {
  animation: fadeInRight 1s ease-out;
}

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

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

.platform-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.highlight-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 215, 0, 0.08);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.highlight-item i {
  color: #ffd700;
  font-size: 1.4rem;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 4px;
}

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

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

.platform-conclusion {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
  line-height: 1.7;
  background: rgba(255, 215, 0, 0.05);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #ffd700;
}

.platform-experience {
  font-size: 1.1rem;
  color: #d0d0d0;
  margin-bottom: 40px;
  line-height: 1.7;
}

.btn-platform {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  text-decoration: none;
}

.btn-platform:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  color: #000;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .platform-container {
    padding: 0 40px;
  }
  
  .platform-content {
    gap: 60px;
  }
  
  .platform-title {
    font-size: 2.4rem;
  }
  
  .platform-description {
    font-size: 1.1rem;
  }
  
  .platform-highlights {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 80px 0;
  }
  
  .platform-container {
    padding: 0 20px;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .platform-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  
  .platform-description {
    font-size: 1.1rem;
    margin-bottom: 35px;
  }
  
  .platform-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
  }
  
  .highlight-item {
    padding: 20px;
    text-align: left;
  }
  
  .platform-stats {
    position: static;
    margin-top: 20px;
    justify-content: center;
  }
  
  .stat-item {
    padding: 12px 16px;
  }
  
  .stat-number {
    font-size: 1.1rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .platform-conclusion {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .platform-experience {
    margin-bottom: 35px;
  }
}

@media (max-width: 480px) {
  .platform-container {
    padding: 0 15px;
  }
  
  .platform-title {
    font-size: 1.9rem;
  }
  
  .platform-description {
    font-size: 1rem;
  }
  
  .platform-stats {
    flex-direction: column;
    gap: 10px;
  }
  
  .highlight-item {
    padding: 16px;
  }
  
  .highlight-item i {
    font-size: 1.2rem;
    width: 28px;
  }
  
  .highlight-content h4 {
    font-size: 1rem;
  }
  
  .highlight-content p {
    font-size: 0.9rem;
  }
  
  .platform-conclusion {
    font-size: 1rem;
    padding: 16px;
  }
  
  .platform-experience {
    font-size: 1rem;
  }
  
  .btn-platform {
    padding: 16px 32px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

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

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

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

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

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

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

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

.payment-methods {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 215, 0, 0.06);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.payment-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-title::before {
  content: "💰";
  font-size: 1.2rem;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

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

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

.payment-item i {
  color: #ffd700;
  font-size: 1.3rem;
  width: 24px;
  text-align: center;
}

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

.deposit-flexibility {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.7;
  background: rgba(255, 215, 0, 0.05);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #ffd700;
}

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

.security-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.security-title::before {
  content: "🔒";
  font-size: 1.2rem;
}

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

.security-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 215, 0, 0.06);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  transition: all 0.3s ease;
}

.security-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.security-item i {
  color: #ffd700;
  font-size: 1.4rem;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 4px;
}

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

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

.deposit-conclusion {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
  line-height: 1.7;
}

.deposit-performance {
  font-size: 1.1rem;
  color: #d0d0d0;
  margin-bottom: 40px;
  line-height: 1.7;
}

.btn-deposit {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  text-decoration: none;
}

.btn-deposit:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  color: #000;
  text-decoration: none;
}

/* Deposit Image */
.deposit-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

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

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

.deposit-features {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-badge {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 16px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  animation: pulse 2s infinite;
  min-width: 120px;
}

.feature-badge i {
  font-size: 1.3rem;
  color: #000;
}

.badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-title {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  line-height: 1;
}

.badge-subtitle {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.8;
  line-height: 1;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .deposit-container {
    padding: 0 40px;
  }
  
  .deposit-content {
    gap: 60px;
  }
  
  .deposit-title {
    font-size: 2.4rem;
  }
  
  .deposit-description {
    font-size: 1.1rem;
  }
  
  .security-grid {
    gap: 15px;
  }
  
  .payment-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 768px) {
  .deposit-section {
    padding: 80px 0;
  }
  
  .deposit-container {
    padding: 0 20px;
  }
  
  .deposit-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .deposit-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  
  .deposit-description {
    font-size: 1.1rem;
    margin-bottom: 35px;
  }
  
  .payment-methods {
    margin-bottom: 35px;
    padding: 25px;
    text-align: left;
  }
  
  .payment-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .security-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .security-item {
    padding: 20px;
    text-align: left;
  }
  
  .deposit-flexibility {
    padding: 20px;
    margin-bottom: 35px;
  }
  
  .deposit-features {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
  }
  
  .feature-badge {
    padding: 12px 16px;
    min-width: 100px;
  }
  
  .feature-badge i {
    font-size: 1.1rem;
  }
  
  .badge-title {
    font-size: 1rem;
  }
  
  .badge-subtitle {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .deposit-container {
    padding: 0 15px;
  }
  
  .deposit-title {
    font-size: 1.9rem;
  }
  
  .deposit-description {
    font-size: 1rem;
  }
  
  .payment-methods {
    padding: 20px;
  }
  
  .payment-item {
    padding: 12px 16px;
  }
  
  .payment-item span {
    font-size: 0.9rem;
  }
  
  .security-item {
    padding: 16px;
  }
  
  .security-item i {
    font-size: 1.2rem;
    width: 28px;
  }
  
  .security-content h4 {
    font-size: 1rem;
  }
  
  .security-content p {
    font-size: 0.9rem;
  }
  
  .deposit-flexibility {
    font-size: 1rem;
    padding: 16px;
  }
  
  .deposit-conclusion {
    font-size: 1rem;
  }
  
  .deposit-performance {
    font-size: 1rem;
  }
  
  .btn-deposit {
    padding: 16px 32px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .deposit-features {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .feature-badge {
    min-width: 90px;
    padding: 10px 14px;
  }
}

/* Strategy Section */
.strategy-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
}

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

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

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

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

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

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

.strategy-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
}

.overlay-card {
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  font-weight: 500;
}

.overlay-card i {
  color: #ffd700;
  font-size: 1.1rem;
}

.strategy-text {
  animation: fadeInRight 1s ease-out;
}

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

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

.betting-techniques {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 215, 0, 0.06);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.techniques-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.techniques-title::before {
  content: "🎯";
  font-size: 1.2rem;
}

.technique-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.technique-item i {
  color: #ffd700;
  font-size: 2rem;
  width: 48px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 8px;
}

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

.technique-content p {
  font-size: 1.1rem;
  color: #d0d0d0;
  line-height: 1.7;
}

.card-patterns {
  margin-bottom: 40px;
}

.patterns-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.patterns-title::before {
  content: "🃏";
  font-size: 1.2rem;
}

.patterns-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
  line-height: 1.7;
}

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

.pattern-card {
  padding: 24px;
  background: rgba(255, 215, 0, 0.08);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.pattern-card:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

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

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

.pattern-card p {
  font-size: 1rem;
  color: #c0c0c0;
  line-height: 1.5;
}

.strategy-steps {
  margin-bottom: 40px;
}

.steps-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.steps-title::before {
  content: "📋";
  font-size: 1.2rem;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.06);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  transition: all 0.3s ease;
}

.steps-list li:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.25);
  transform: translateX(5px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

.strategy-discipline {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.7;
  background: rgba(255, 215, 0, 0.05);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #ffd700;
}

.btn-strategy {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  text-decoration: none;
}

.btn-strategy:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  color: #000;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .strategy-container {
    padding: 0 40px;
  }
  
  .strategy-content {
    gap: 60px;
  }
  
  .strategy-title {
    font-size: 2.4rem;
  }
  
  .strategy-description {
    font-size: 1.1rem;
  }
  
  .pattern-types {
    gap: 15px;
  }
  
  .technique-item {
    gap: 16px;
  }
  
  .technique-item i {
    font-size: 1.8rem;
    width: 42px;
  }
}

@media (max-width: 768px) {
  .strategy-section {
    padding: 80px 0;
  }
  
  .strategy-container {
    padding: 0 20px;
  }
  
  .strategy-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .strategy-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  
  .strategy-description {
    font-size: 1.1rem;
    margin-bottom: 35px;
  }
  
  .betting-techniques {
    margin-bottom: 35px;
    padding: 25px;
    text-align: left;
  }
  
  .technique-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .technique-item i {
    margin-top: 0;
  }
  
  .pattern-types {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .pattern-card {
    padding: 20px;
  }
  
  .steps-list li {
    padding: 16px;
  }
  
  .step-number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .strategy-overlay {
    position: static;
    margin-top: 20px;
    justify-content: center;
  }
  
  .overlay-card {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .strategy-container {
    padding: 0 15px;
  }
  
  .strategy-title {
    font-size: 1.9rem;
  }
  
  .strategy-description {
    font-size: 1rem;
  }
  
  .betting-techniques {
    padding: 20px;
  }
  
  .technique-content h4 {
    font-size: 1.1rem;
  }
  
  .technique-content p {
    font-size: 1rem;
  }
  
  .patterns-description {
    font-size: 1rem;
  }
  
  .pattern-card i {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .pattern-card h4 {
    font-size: 1.1rem;
  }
  
  .pattern-card p {
    font-size: 0.9rem;
  }
  
  .steps-list li {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 16px;
  }
  
  .step-number {
    align-self: center;
  }
  
  .step-content {
    text-align: left;
  }
  
  .step-content strong {
    font-size: 1rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .strategy-discipline {
    font-size: 1rem;
    padding: 16px;
  }
  
  .btn-strategy {
    padding: 16px 32px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .strategy-overlay {
    flex-direction: column;
    gap: 10px;
  }
}

/* Mobile Section */
.mobile-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  position: relative;
}

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

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

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

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

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

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

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

.features-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-title::before {
  content: "📱";
  font-size: 1.2rem;
}

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

.feature-card {
  padding: 24px;
  background: rgba(255, 215, 0, 0.08);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

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

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

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

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

.sexy-baccarat {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 215, 0, 0.06);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.sexy-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sexy-title::before {
  content: "🎮";
  font-size: 1.2rem;
}

.sexy-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
  line-height: 1.7;
}

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

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

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

.sexy-item i {
  color: #ffd700;
  font-size: 1.4rem;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 4px;
}

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

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

.app-design {
  margin-bottom: 40px;
}

.design-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.design-title::before {
  content: "🎨";
  font-size: 1.2rem;
}

.design-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.7;
}

.all-rooms {
  margin-bottom: 40px;
}

.rooms-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rooms-title::before {
  content: "🏛️";
  font-size: 1.2rem;
}

.rooms-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
  line-height: 1.7;
}

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

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

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

.provider-item i {
  color: #ffd700;
  font-size: 1.3rem;
  width: 24px;
  text-align: center;
}

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

.btn-mobile {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  text-decoration: none;
}

.btn-mobile:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  color: #000;
  text-decoration: none;
}

/* Mobile Image */
.mobile-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

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

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

.mobile-mockup {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 180px;
}

.phone-frame {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border-radius: 25px;
  padding: 20px 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.phone-screen {
  background: #000;
  border-radius: 20px;
  padding: 15px;
  color: #fff;
  font-size: 0.8rem;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.7rem;
}

.signal::before {
  content: "📶";
}

.time {
  font-weight: 600;
}

.battery::before {
  content: "🔋";
}

.app-interface {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.interface-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  font-size: 0.7rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .mobile-container {
    padding: 0 40px;
  }
  
  .mobile-content {
    gap: 60px;
  }
  
  .mobile-title {
    font-size: 2.4rem;
  }
  
  .mobile-description {
    font-size: 1.1rem;
  }
  
  .features-grid {
    gap: 15px;
  }
  
  .sexy-features {
    gap: 15px;
  }
  
  .game-providers {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 768px) {
  .mobile-section {
    padding: 80px 0;
  }
  
  .mobile-container {
    padding: 0 20px;
  }
  
  .mobile-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .mobile-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  
  .mobile-description {
    font-size: 1.1rem;
    margin-bottom: 35px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .sexy-baccarat {
    margin-bottom: 35px;
    padding: 25px;
    text-align: left;
  }
  
  .sexy-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .sexy-item {
    padding: 16px;
  }
  
  .game-providers {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .mobile-mockup {
    position: static;
    width: 200px;
    margin: 20px auto 0;
  }
}

@media (max-width: 480px) {
  .mobile-container {
    padding: 0 15px;
  }
  
  .mobile-title {
    font-size: 1.9rem;
  }
  
  .mobile-description {
    font-size: 1rem;
  }
  
  .sexy-baccarat {
    padding: 20px;
  }
  
  .sexy-description {
    font-size: 1rem;
  }
  
  .design-description {
    font-size: 1rem;
  }
  
  .rooms-description {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 16px;
  }
  
  .feature-card i {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  
  .feature-card h4 {
    font-size: 1rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
  
  .sexy-item {
    padding: 14px;
  }
  
  .sexy-item i {
    font-size: 1.2rem;
    width: 28px;
  }
  
  .sexy-content h4 {
    font-size: 1rem;
  }
  
  .sexy-content p {
    font-size: 0.9rem;
  }
  
  .provider-item {
    padding: 12px 16px;
  }
  
  .provider-item span {
    font-size: 0.9rem;
  }
  
  .btn-mobile {
    padding: 16px 32px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .mobile-mockup {
    width: 160px;
  }
  
  .phone-frame {
    padding: 15px 12px;
  }
}

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

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

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

.new-platform-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.new-platform-image {
  position: relative;
  animation: fadeInLeft 1s ease-out;
}

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

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

.platform-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-new,
.badge-trusted {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 10px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  animation: bounce 2s infinite;
}

.badge-trusted {
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  animation-delay: 0.5s;
}

.badge-new i,
.badge-trusted i {
  font-size: 1rem;
  color: #000;
}

.new-platform-text {
  animation: fadeInRight 1s ease-out;
}

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

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

.registration-process {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 215, 0, 0.06);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.registration-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.registration-title::before {
  content: "📝";
  font-size: 1.2rem;
}

.registration-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.7;
}

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

.special-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.special-title::before {
  content: "✨";
  font-size: 1.2rem;
}

.special-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
  line-height: 1.7;
}

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

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

.special-item:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.special-item i {
  color: #ffd700;
  font-size: 1.4rem;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 4px;
}

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

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

.fast-registration {
  margin-bottom: 40px;
}

.fast-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fast-title::before {
  content: "⚡";
  font-size: 1.2rem;
}

.fast-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.7;
}

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

.commitment-card {
  padding: 24px;
  background: rgba(255, 215, 0, 0.08);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.commitment-card:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

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

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

.commitment-card p {
  font-size: 1rem;
  color: #c0c0c0;
  line-height: 1.5;
}

.platform-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-new {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  text-decoration: none;
  min-width: 180px;
  justify-content: center;
}

.btn-primary-new:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  color: #000;
  text-decoration: none;
}

.btn-secondary-new {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  padding: 16px 38px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 180px;
  justify-content: center;
}

.btn-secondary-new:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .new-platform-container {
    padding: 0 40px;
  }
  
  .new-platform-content {
    gap: 60px;
  }
  
  .new-platform-title {
    font-size: 2.4rem;
  }
  
  .new-platform-description {
    font-size: 1.1rem;
  }
  
  .platform-commitment {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .new-platform-section {
    padding: 80px 0;
  }
  
  .new-platform-container {
    padding: 0 20px;
  }
  
  .new-platform-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .new-platform-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  
  .new-platform-description {
    font-size: 1.1rem;
    margin-bottom: 35px;
  }
  
  .registration-process {
    margin-bottom: 35px;
    padding: 25px;
    text-align: left;
  }
  
  .special-items {
    gap: 12px;
  }
  
  .special-item {
    padding: 16px;
  }
  
  .platform-commitment {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 35px;
  }
  
  .commitment-card {
    padding: 20px;
  }
  
  .platform-actions {
    justify-content: center;
    gap: 15px;
  }
  
  .platform-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
  }
  
  .badge-new,
  .badge-trusted {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .new-platform-container {
    padding: 0 15px;
  }
  
  .new-platform-title {
    font-size: 1.9rem;
  }
  
  .new-platform-description {
    font-size: 1rem;
  }
  
  .registration-process {
    padding: 20px;
  }
  
  .registration-description {
    font-size: 1rem;
  }
  
  .special-description {
    font-size: 1rem;
  }
  
  .fast-description {
    font-size: 1rem;
  }
  
  .special-item {
    padding: 14px;
  }
  
  .special-item i {
    font-size: 1.2rem;
    width: 28px;
  }
  
  .special-content h4 {
    font-size: 1rem;
  }
  
  .special-content p {
    font-size: 0.9rem;
  }
  
  .commitment-card {
    padding: 16px;
  }
  
  .commitment-card i {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .commitment-card h4 {
    font-size: 1.1rem;
  }
  
  .commitment-card p {
    font-size: 0.9rem;
  }
  
  .platform-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary-new,
  .btn-secondary-new {
    width: 100%;
    max-width: 280px;
    padding: 16px 32px;
    font-size: 1rem;
  }
  
  .platform-badges {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

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

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

.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: 50px;
}

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

/* Footer About Section */
.footer-about {
  max-width: 400px;
}

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

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

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #c0c0c0;
  margin-bottom: 25px;
}

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

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

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

/* Footer Links */
.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 20px;
  position: relative;
}

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

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

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

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

.footer-link:hover {
  color: #ffd700;
  text-decoration: none;
  padding-left: 8px;
}

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

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

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

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

.feature-highlight i {
  color: #ffd700;
  font-size: 2rem;
  width: 48px;
  text-align: center;
  flex-shrink: 0;
}

.highlight-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

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

/* Footer Bottom */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.footer-disclaimer {
  font-size: 0.8rem !important;
  color: #808080 !important;
  line-height: 1.4;
}

.footer-payment {
  text-align: right;
}

.payment-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 12px;
}

.payment-methods {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #c0c0c0;
  padding: 6px 12px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.payment-item:hover {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
}

.payment-item i {
  color: #ffd700;
  font-size: 1rem;
}

/* Footer CTA */
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.cta-content {
  flex: 1;
}

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

.cta-description {
  font-size: 1rem;
  color: #e0e0e0;
  margin: 0;
  line-height: 1.5;
}

.btn-footer-cta {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  text-decoration: none;
  flex-shrink: 0;
}

.btn-footer-cta:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
  color: #000;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-about {
    grid-column: 1 / -1;
    max-width: none;
    margin-bottom: 20px;
  }
  
  .footer-features {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 20px;
  }
  
  .footer-container {
    padding: 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .footer-about {
    text-align: center;
    margin-bottom: 0;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-features {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .feature-highlight {
    padding: 16px;
  }
  
  .feature-highlight i {
    font-size: 1.8rem;
    width: 40px;
  }
  
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
  
  .footer-payment {
    text-align: center;
  }
  
  .payment-methods {
    justify-content: center;
    gap: 10px;
  }
  
  .footer-cta {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 25px;
  }
  
  .cta-title {
    font-size: 1.3rem;
  }
  
  .cta-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-logo-text {
    font-size: 1.4rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  .feature-highlight {
    padding: 14px;
    gap: 12px;
  }
  
  .feature-highlight i {
    font-size: 1.6rem;
    width: 36px;
  }
  
  .highlight-content h5 {
    font-size: 1rem;
  }
  
  .highlight-content p {
    font-size: 0.85rem;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
  
  .footer-disclaimer {
    font-size: 0.75rem !important;
  }
  
  .payment-item {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
  
  .footer-cta {
    padding: 20px;
  }
  
  .cta-title {
    font-size: 1.2rem;
  }
  
  .cta-description {
    font-size: 0.9rem;
  }
  
  .btn-footer-cta {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
}

/* 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);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding: 8px;
  gap: 4px;
}

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

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

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

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

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

.btn-text {
  font-size: 0.75rem;
  line-height: 1.2;
  text-align: center;
  transition: all 0.3s ease;
}

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

/* Individual Button Styles */
.sticky-login {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
}

.sticky-login:hover {
  background: linear-gradient(135deg, #357abd 0%, #4a90e2 100%);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
  text-decoration: none;
}

.sticky-register {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(46, 204, 113, 0.3);
}

.sticky-register:hover {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
  text-decoration: none;
}

.sticky-free-credit {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000000;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
  animation: pulse-gold 2s infinite;
}

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

@keyframes pulse-gold {
  0% {
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
  }
  100% {
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
  }
}

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

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

@media (max-width: 480px) {
  .sticky-buttons {
    padding: 5px;
    gap: 2px;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.75rem;
    min-height: 50px;
    border-radius: 6px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .btn-text {
    font-size: 0.65rem;
  }
  
  body {
    padding-bottom: 65px;
  }
}

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

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

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

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

.login-form-wrapper {
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.2);
  animation: slideInUp 0.6s ease-out;
}

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

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

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

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

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

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

/* Error Container */
.error-container {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.error-container.show {
  opacity: 1;
  transform: translateY(0);
}

.error-message {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.error-message::before {
  content: '⚠️';
  font-size: 1rem;
}

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

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

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

.form-label i {
  color: #ffd700;
  width: 16px;
  text-align: center;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

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

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

.form-input:invalid {
  border-color: #e74c3c;
}

.password-wrapper {
  position: relative;
}

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

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

.input-error {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.input-error.show {
  opacity: 1;
}

/* Login Button */
.login-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

.login-btn:disabled {
  background: #666;
  cursor: not-allowed;
  transform: none;
}

.loading-spinner {
  position: absolute;
  display: none;
}

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

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

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

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

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

/* Register Button */
.register-btn {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

/* Login Features */
.login-features {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

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

.feature-item span {
  color: #c0c0c0;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 15px;
  }
  
  .login-container {
    max-width: 100%;
  }
  
  .login-form-wrapper {
    padding: 30px 25px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 10px;
  }
  
  .login-form-wrapper {
    padding: 25px 20px;
    border-radius: 16px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .login-subtitle {
    font-size: 0.85rem;
  }
  
  .logo-img {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 14px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .login-features {
    flex-direction: column;
    gap: 12px;
  }
  
  .feature-item {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }
}

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

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

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

.register-form-wrapper {
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.2);
  animation: slideInUp 0.6s ease-out;
}

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

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

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

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

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

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

/* Error and Success Containers */
.error-container,
.success-container {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.error-container.show,
.success-container.show {
  opacity: 1;
  transform: translateY(0);
}

.error-message {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.error-message::before {
  content: '⚠️';
  font-size: 1rem;
}

.success-message {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.success-message::before {
  content: '✅';
  font-size: 1rem;
}

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

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

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

.form-label i {
  color: #ffd700;
  width: 16px;
  text-align: center;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

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

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

.form-input:invalid {
  border-color: #e74c3c;
}

.input-error {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.input-error.show {
  opacity: 1;
}

.phone-format-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #a0a0a0;
  margin-top: 4px;
}

.phone-format-hint i {
  color: #ffd700;
  font-size: 0.75rem;
}

/* Terms Container */
.terms-container {
  margin: 10px 0;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

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

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

.terms-checkbox input[type="checkbox"]:checked + .checkmark {
  background: #ffd700;
  border-color: #ffd700;
}

.checkmark::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 5px;
  width: 6px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark::after {
  opacity: 1;
}

.terms-text {
  color: #c0c0c0;
}

.terms-link,
.privacy-link {
  color: #ffd700;
  text-decoration: none;
  margin: 0 4px;
}

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

/* Register Button */
.register-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

.register-btn:disabled {
  background: #666;
  cursor: not-allowed;
  transform: none;
}

.loading-spinner {
  position: absolute;
  display: none;
}

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

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

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

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

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

/* Login Button */
.login-btn {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* Register Features */
.register-features {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

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

.feature-item span {
  color: #c0c0c0;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 15px;
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-form-wrapper {
    padding: 30px 25px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 10px;
  }
  
  .register-form-wrapper {
    padding: 25px 20px;
    border-radius: 16px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .register-subtitle {
    font-size: 0.85rem;
  }
  
  .logo-img {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 14px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .register-features {
    flex-direction: column;
    gap: 12px;
  }
  
  .feature-item {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }
  
  .terms-text {
    font-size: 0.85rem;
  }
  
  .phone-format-hint {
    font-size: 0.75rem;
  }
}

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

.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 60%);
  z-index: 1;
}

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

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

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

.hero-description {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn-hero {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 20px 50px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  text-decoration: none;
  animation: pulse 2s infinite;
}

.btn-hero:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
  color: #000;
  text-decoration: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
  }
  100% {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  }
}

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

/* Promotion Sections */
.promotion-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
}

.promotion-section.promotion-alternate {
  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(ellipse at 70% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

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

.promotion-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 50px 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 215, 0, 0.3);
}

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

.promotion-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.promotion-icon i {
  font-size: 2.5rem;
  color: #000;
}

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

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

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

.promotion-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.08);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  text-align: left;
}

.promotion-list li:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(10px);
}

.promotion-list li i {
  color: #ffd700;
  font-size: 1.3rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.promotion-list li span {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.5;
  font-weight: 500;
}

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

.btn-promotion:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(255, 215, 0, 0.5);
  color: #000;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container,
  .promotion-container {
    padding: 0 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
  
  .promotion-card {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .hero-container,
  .promotion-container {
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 35px;
  }
  
  .btn-hero {
    padding: 16px 40px;
    font-size: 1.1rem;
  }
  
  .promotion-card {
    padding: 35px 25px;
    border-radius: 20px;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .promotion-icon i {
    font-size: 2.2rem;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-header {
    margin-bottom: 35px;
  }
  
  .promotion-list {
    gap: 15px;
    margin-bottom: 35px;
  }
  
  .promotion-list li {
    padding: 16px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .promotion-list li:hover {
    transform: translateY(-3px);
  }
  
  .btn-promotion {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-container,
  .promotion-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .btn-hero {
    padding: 14px 32px;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
  }
  
  .promotion-card {
    padding: 30px 20px;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 2rem;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .promotion-list li {
    padding: 14px;
  }
  
  .promotion-list li span {
    font-size: 1rem;
  }
  
  .btn-promotion {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }
}