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

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

a:hover {
  color: #ffed4e;
}

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

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

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

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

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

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

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

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

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

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

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

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

.hero-description {
  font-size: 1.2rem;
  color: #cccccc;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #ffffff;
}

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

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

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

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

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

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  color: #000000;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .hero-img {
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-features {
    gap: 10px;
  }
  
  .hero-feature {
    font-size: 0.9rem;
  }
  
  .hero-img {
    max-width: 300px;
  }
  
  .hero-badge {
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-img {
    max-width: 280px;
  }
}

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

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

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 30px;
}

.logo-section {
  flex-shrink: 0;
}

.logo-link {
  text-decoration: none;
  color: inherit;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

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

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

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

.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 6px;
  transition: all 0.3s ease;
}

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

.mobile-menu-toggle:hover .hamburger-line {
  background: #ffd700;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-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 {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  width: 300px;
  max-width: 85vw;
}

.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.1);
}

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

.mobile-logo i {
  color: #ffd700;
  font-size: 1.5rem;
}

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

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

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

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

.mobile-nav {
  flex: 1;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

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

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

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

.mobile-cta .btn-cta {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 1.1rem;
}

/* Utility Classes */
.desktop-only {
  display: inline-flex;
}

.mobile-only {
  display: none;
}

/* Body Padding for Fixed Header */
body {
  padding-top: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-content {
    gap: 20px;
  }
  
  .nav-menu {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 16px;
  }
  
  .header-content {
    height: 70px;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .desktop-only {
    display: none;
  }
  
  .mobile-only {
    display: inline-flex;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo i {
    font-size: 1.7rem;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  body {
    padding-top: 70px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 12px;
  }
  
  .header-content {
    height: 60px;
    gap: 15px;
  }
  
  .logo i {
    font-size: 1.5rem;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .mobile-menu {
    width: 280px;
  }
  
  .mobile-nav {
    padding: 20px 15px;
  }
  
  .mobile-nav-link {
    padding: 12px 15px;
    font-size: 1rem;
  }
  
  body {
    padding-top: 60px;
  }
}

@media (max-width: 360px) {
  .logo-text {
    font-size: 1rem;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-logo span {
    font-size: 1.1rem;
  }
}

/* Platform Section Styles */
.platform-section {
  background: #111111;
  padding: 80px 0;
  position: relative;
}

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

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

.platform-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.platform-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.platform-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
}

.platform-description p {
  margin-bottom: 20px;
}

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

.platform-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-item i {
  color: #ffd700;
  font-size: 2rem;
  min-width: 40px;
  text-align: center;
  margin-top: 4px;
}

.feature-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
}

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

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

.platform-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

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

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

.platform-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 400px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.05) 100%);
  border-radius: 12px;
  text-align: left;
}

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

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

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

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.2;
}

.platform-services {
  margin-top: 60px;
}

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

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

.service-card {
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 179, 0, 0.03) 100%);
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

.service-card i {
  color: #ffd700;
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  margin: 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .platform-section {
    padding: 60px 0;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .platform-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .platform-description {
    font-size: 1rem;
  }
  
  .feature-item {
    padding: 20px;
  }
  
  .feature-item i {
    font-size: 1.5rem;
    min-width: 30px;
  }
  
  .feature-content h3 {
    font-size: 1.2rem;
  }
  
  .platform-img {
    max-width: 350px;
  }
  
  .platform-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .services-title {
    font-size: 1.8rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .service-card {
    padding: 25px;
  }
  
  .service-card i {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .platform-container {
    padding: 0 16px;
  }
  
  .platform-title {
    font-size: 1.7rem;
  }
  
  .platform-description {
    font-size: 0.95rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }
  
  .feature-item i {
    margin-top: 0;
  }
  
  .platform-img {
    max-width: 280px;
  }
  
  .stat-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .services-title {
    font-size: 1.6rem;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .service-card i {
    font-size: 2.2rem;
  }
  
  .service-card h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 360px) {
  .platform-title {
    font-size: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .platform-img {
    max-width: 260px;
  }
}

/* Tips Section Styles */
.tips-section {
  background: #0a0a0a;
  padding: 80px 0;
  position: relative;
}

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

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

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

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

.tips-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.tips-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tip-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 179, 0, 0.03) 100%);
  border-radius: 16px;
  border-left: 4px solid #ffd700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-section:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.tip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  border-radius: 50%;
  margin-top: 4px;
}

.tip-icon i {
  font-size: 1.5rem;
  color: #000000;
}

.tip-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 12px;
}

.tip-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #cccccc;
  margin: 0;
}

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

.tips-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.lottery-types,
.betting-features {
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.lottery-types h3,
.betting-features h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

.lottery-list,
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.lottery-item:hover {
  background: rgba(255, 215, 0, 0.1);
}

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

.lottery-info h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.lottery-info span {
  font-size: 0.9rem;
  color: #cccccc;
}

.feature-highlight {
  display: flex;
  gap: 16px;
  align-items: start;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.05) 100%);
  border-radius: 12px;
}

.feature-highlight i {
  color: #ffd700;
  font-size: 1.5rem;
  margin-top: 4px;
}

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

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

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

.tips-cta {
  margin-top: 60px;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.05) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.cta-content p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .tips-content {
    gap: 40px;
  }
  
  .tip-section {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .tips-section {
    padding: 60px 0;
  }
  
  .tips-title {
    font-size: 2rem;
  }
  
  .tips-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .tip-section {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    padding: 20px;
  }
  
  .tip-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }
  
  .tip-icon i {
    font-size: 1.3rem;
  }
  
  .tip-content h3 {
    font-size: 1.2rem;
  }
  
  .lottery-types,
  .betting-features {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .tips-container {
    padding: 0 16px;
  }
  
  .tips-title {
    font-size: 1.7rem;
  }
  
  .tip-section {
    padding: 18px;
  }
  
  .tip-content p {
    font-size: 0.95rem;
  }
  
  .lottery-item {
    padding: 12px;
  }
  
  .lottery-item i {
    font-size: 1rem;
  }
  
  .feature-highlight {
    padding: 16px;
  }
  
  .tips-cta {
    padding: 30px 20px;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .tips-title {
    font-size: 1.5rem;
  }
  
  .lottery-types,
  .betting-features {
    padding: 20px;
  }
  
  .lottery-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .feature-highlight {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* Reviews Section Styles */
.reviews-section {
  background: #111111;
  padding: 80px 0;
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, transparent 40%, rgba(255, 179, 0, 0.02) 100%);
  pointer-events: none;
}

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

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

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

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

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

.review-intro {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.05) 100%);
  border-radius: 16px;
  border-left: 4px solid #ffd700;
}

.intro-text {
  flex: 1;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cccccc;
  margin: 0;
}

.intro-text strong {
  color: #ffd700;
  font-weight: 700;
}

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

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

.pantip-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  border-radius: 12px;
  color: #000000;
  min-width: 120px;
  text-align: center;
}

.pantip-badge i {
  font-size: 2rem;
}

.pantip-badge span {
  font-weight: 700;
  font-size: 0.9rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.experience-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.card-header i {
  color: #ffd700;
  font-size: 1.8rem;
}

.card-header h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.card-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  margin: 0;
}

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

.app-review {
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 179, 0, 0.03) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.app-info {
  display: flex;
  gap: 24px;
  align-items: start;
}

.app-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  border-radius: 50%;
}

.app-icon i {
  color: #000000;
  font-size: 2rem;
}

.app-details h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 12px;
}

.app-details p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  margin: 0;
}

.app-details strong {
  color: #ffd700;
  font-weight: 700;
}

.user-reviews h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.review-item:hover {
  background: rgba(255, 215, 0, 0.1);
}

.review-item i {
  color: #00ff88;
  font-size: 1.2rem;
}

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

.reviews-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.community-highlight {
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

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

.highlight-header i {
  color: #ffd700;
  font-size: 1.5rem;
}

.highlight-header h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.highlight-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  margin: 0;
}

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

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

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

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

.showcase-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.image-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  color: #000000;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.image-caption i {
  font-size: 1rem;
}

.join-community {
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.05) 100%);
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.join-community h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.join-community p {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .reviews-content {
    gap: 40px;
  }
  
  .experience-grid {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 0;
  }
  
  .reviews-title {
    font-size: 2rem;
  }
  
  .reviews-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .review-intro {
    flex-direction: column;
    text-align: center;
  }
  
  .experience-grid {
    grid-template-columns: 1fr;
  }
  
  .app-info {
    gap: 20px;
  }
  
  .app-icon {
    width: 60px;
    height: 60px;
  }
  
  .app-icon i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .reviews-container {
    padding: 0 16px;
  }
  
  .reviews-title {
    font-size: 1.7rem;
  }
  
  .review-intro {
    padding: 20px;
  }
  
  .intro-text p {
    font-size: 1rem;
  }
  
  .experience-card {
    padding: 20px;
  }
  
  .app-review {
    padding: 20px;
  }
  
  .app-info {
    flex-direction: column;
    text-align: center;
  }
  
  .community-highlight {
    padding: 20px;
  }
  
  .join-community {
    padding: 20px;
  }
}

@media (max-width: 360px) {
  .reviews-title {
    font-size: 1.5rem;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .pantip-badge {
    min-width: 100px;
    padding: 15px;
  }
}

/* Winners Section Styles */
.winners-section {
  background: #0a0a0a;
  padding: 80px 0;
  position: relative;
}

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

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

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

.winners-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

.winners-content {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.winners-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.winner-intro {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.05) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.intro-content {
  flex: 1;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cccccc;
  margin: 0;
}

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

.winner-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  border-radius: 12px;
  color: #000000;
  min-width: 120px;
  text-align: center;
}

.winner-badge i {
  font-size: 2.2rem;
}

.winner-badge span {
  font-weight: 700;
  font-size: 0.9rem;
}

.success-story {
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.story-highlight {
  display: flex;
  gap: 24px;
  align-items: start;
}

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

.story-icon i {
  color: #000000;
  font-size: 1.5rem;
}

.story-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 16px;
}

.story-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #cccccc;
  margin: 0;
}

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

.winner-tips h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  text-align: center;
}

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

.tip-card {
  padding: 25px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 179, 0, 0.03) 100%);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.tip-card:hover {
  transform: translateY(-3px);
}

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

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

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

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

.lottery-highlight {
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.05) 100%);
  border-radius: 16px;
  border-left: 4px solid #ffd700;
}

.highlight-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.highlight-header i {
  color: #ffd700;
  font-size: 1.8rem;
}

.highlight-header h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.highlight-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  margin: 0;
}

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

.winners-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.case-studies {
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.case-studies h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  text-align: center;
}

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

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

.case-item:hover {
  background: rgba(255, 215, 0, 0.1);
}

.case-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  color: #000000;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  min-width: 40px;
}

.case-details h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
}

.case-details p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #cccccc;
  margin: 0;
}

.case-details strong {
  color: #ffd700;
  font-weight: 700;
}

.result-checking {
  padding: 25px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 179, 0, 0.03) 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

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

.check-header i {
  color: #ffd700;
  font-size: 1.5rem;
}

.check-header h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.check-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cccccc;
  margin: 0;
}

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

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

.winner-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.winner-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  color: #000000;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.winner-caption i {
  font-size: 1rem;
}

.withdrawal-info {
  padding: 25px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.withdrawal-info h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  text-align: center;
}

.withdrawal-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

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

.withdrawal-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 8px;
}

.feature i {
  color: #00ff88;
  font-size: 1.1rem;
}

.feature span {
  color: #cccccc;
  font-size: 0.9rem;
}

.success-wisdom {
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.05) 100%);
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.success-wisdom h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.success-wisdom p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 24px;
}

.success-wisdom strong {
  color: #ffd700;
  font-weight: 700;
}

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

.success-wisdom a:hover {
  color: #ffed4e;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .winners-content {
    gap: 40px;
  }
  
  .tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .winners-section {
    padding: 60px 0;
  }
  
  .winners-title {
    font-size: 2rem;
  }
  
  .winners-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .winner-intro {
    flex-direction: column;
    text-align: center;
  }
  
  .story-highlight {
    flex-direction: column;
    text-align: center;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .case-item {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .winners-container {
    padding: 0 16px;
  }
  
  .winners-title {
    font-size: 1.7rem;
  }
  
  .winner-intro {
    padding: 20px;
  }
  
  .intro-content p {
    font-size: 1rem;
  }
  
  .success-story {
    padding: 20px;
  }
  
  .tip-card {
    padding: 20px;
  }
  
  .lottery-highlight {
    padding: 20px;
  }
  
  .case-studies {
    padding: 20px;
  }
  
  .case-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .success-wisdom {
    padding: 20px;
  }
}

@media (max-width: 360px) {
  .winners-title {
    font-size: 1.5rem;
  }
  
  .winner-badge {
    min-width: 100px;
    padding: 15px;
  }
  
  .story-icon {
    width: 50px;
    height: 50px;
  }
  
  .case-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Comprehensive Section Styles */
.comprehensive-section {
  background: #111111;
  padding: 80px 0;
  position: relative;
}

.comprehensive-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(25deg, rgba(255, 215, 0, 0.03) 0%, transparent 30%, rgba(255, 179, 0, 0.05) 70%, transparent 100%);
  pointer-events: none;
}

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

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

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

.comprehensive-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 60px;
}

.comprehensive-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.intro-content {
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.05) 100%);
  border-radius: 16px;
  border-left: 4px solid #ffd700;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cccccc;
  margin: 0;
}

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

.lottery-types h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}

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

.lottery-card {
  padding: 25px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lottery-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
}

.lottery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

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

.card-header i {
  color: #ffd700;
  font-size: 1.8rem;
}

.card-header h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.card-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 16px;
}

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

.card-schedule {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 20px;
  width: fit-content;
}

.card-schedule i {
  color: #ffd700;
  font-size: 0.9rem;
}

.card-schedule span {
  color: #ffd700;
  font-size: 0.9rem;
  font-weight: 600;
}

.system-features h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-block {
  display: flex;
  gap: 24px;
  align-items: start;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 179, 0, 0.03) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

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

.feature-icon i {
  color: #000000;
  font-size: 2rem;
}

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

.feature-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  margin: 0;
}

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

.comprehensive-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.vip-benefits {
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

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

.benefits-header i {
  color: #ffd700;
  font-size: 1.8rem;
}

.benefits-header h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.benefits-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

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

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 8px;
}

.benefit-item i {
  color: #ffd700;
  font-size: 1.1rem;
}

.benefit-item span {
  color: #cccccc;
  font-size: 0.95rem;
}

.review-section {
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 179, 0, 0.03) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.review-section h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  text-align: center;
}

.review-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

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

.review-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 12px;
}

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

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
  text-align: center;
  line-height: 1.2;
  margin-top: 4px;
}

.app-download {
  padding: 25px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

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

.app-header i {
  color: #ffd700;
  font-size: 1.5rem;
}

.app-header h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.app-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

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

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.download-btn.ios {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
}

.download-btn.android {
  background: linear-gradient(135deg, #34A853 0%, #137333 100%);
  color: #ffffff;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.trustworthy {
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.05) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.trust-header i {
  color: #ffd700;
  font-size: 1.8rem;
}

.trust-header h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.trust-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

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

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

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

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
}

.badge i {
  color: #00ff88;
  font-size: 1.1rem;
}

.badge span {
  color: #cccccc;
  font-size: 0.95rem;
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.05) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

.cta-content p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 30px;
  line-height: 1.5;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .comprehensive-content {
    gap: 40px;
  }
  
  .lottery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .cta-section {
    gap: 40px;
    padding: 50px 30px;
  }
}

@media (max-width: 768px) {
  .comprehensive-section {
    padding: 60px 0;
  }
  
  .comprehensive-title {
    font-size: 2rem;
  }
  
  .comprehensive-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .lottery-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-block {
    gap: 20px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
  
  .cta-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px;
  }
  
  .cta-content h3 {
    font-size: 1.7rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .comprehensive-container {
    padding: 0 16px;
  }
  
  .comprehensive-title {
    font-size: 1.7rem;
  }
  
  .intro-content {
    padding: 20px;
  }
  
  .lottery-card {
    padding: 20px;
  }
  
  .feature-block {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .vip-benefits,
  .review-section,
  .app-download,
  .trustworthy {
    padding: 20px;
  }
  
  .review-stats {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 360px) {
  .comprehensive-title {
    font-size: 1.5rem;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-img {
    max-width: 280px;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  margin-top: 80px;
  position: relative;
}

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

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 60px 0 40px 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-logo {
  text-decoration: none;
  color: inherit;
}

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

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

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

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

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

.feature-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 20px;
  width: fit-content;
}

.feature-tag i {
  color: #ffd700;
  font-size: 0.9rem;
}

.feature-tag span {
  color: #cccccc;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

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

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

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

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

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

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

.footer-link i {
  color: #ffd700;
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.contact-column {
  gap: 25px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item > i {
  color: #ffd700;
  font-size: 1.1rem;
  margin-top: 2px;
  width: 20px;
  text-align: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 0.85rem;
  color: #999999;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-value {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: #ffd700;
}

.social-links {
  margin-top: 10px;
}

.social-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  color: #ffd700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.social-link:hover {
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.social-link i {
  font-size: 1rem;
}

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

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

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

.legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.legal-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

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

.separator {
  color: #666666;
  font-size: 0.85rem;
}

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

.footer-security {
  display: flex;
  align-items: center;
}

.security-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.security-badge i {
  color: #00ff88;
  font-size: 0.85rem;
}

.security-badge span {
  color: #cccccc;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

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

@media (max-width: 768px) {
  .footer-container {
    padding: 0 16px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 0 30px 0;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .contact-column {
    grid-column: span 2;
  }
  
  .footer-brand .logo-text {
    font-size: 1.4rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .security-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 40px 0 25px 0;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .contact-column {
    grid-column: span 1;
  }
  
  .footer-brand .logo i {
    font-size: 1.8rem;
  }
  
  .footer-brand .logo-text {
    font-size: 1.2rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .feature-tag {
    padding: 6px 12px;
  }
  
  .feature-tag span {
    font-size: 0.85rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  .contact-value {
    font-size: 0.9rem;
  }
  
  .social-icons {
    justify-content: flex-start;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 8px;
  }
  
  .separator {
    display: none;
  }
  
  .security-badges {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 360px) {
  .footer-brand .logo-text {
    font-size: 1.1rem;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
  
  .social-link i {
    font-size: 0.9rem;
  }
}

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

.sticky-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: 60px;
}

.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.4rem;
  transition: transform 0.3s ease;
}

.sticky-btn span {
  font-size: 0.75rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

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

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

.login-btn {
  background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
  color: #ffffff;
}

.login-btn:hover {
  background: linear-gradient(135deg, #2196f3 0%, #1565c0 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.4);
}

.register-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  color: #000000;
}

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

.credit-btn {
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  color: #ffffff;
  position: relative;
}

.credit-btn::after {
  content: '🎁';
  position: absolute;
  top: -2px;
  right: 4px;
  font-size: 0.8rem;
  animation: bounce 2s infinite;
}

.credit-btn:hover {
  background: linear-gradient(135deg, #66bb6a 0%, #388e3c 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

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

/* Add padding to body to account for sticky buttons */
body {
  padding-bottom: 60px;
}

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

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    min-height: 50px;
    gap: 2px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .sticky-btn span {
    font-size: 0.65rem;
    line-height: 1.1;
  }
  
  .credit-btn::after {
    font-size: 0.7rem;
    top: -1px;
    right: 2px;
  }
  
  body {
    padding-bottom: 50px;
  }
}

@media (max-width: 360px) {
  .sticky-btn {
    padding: 6px 2px;
    min-height: 45px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .sticky-btn span {
    font-size: 0.6rem;
  }
  
  .credit-btn::after {
    font-size: 0.65rem;
  }
  
  body {
    padding-bottom: 45px;
  }
}

/* Ensure buttons are above other elements */
@media (max-width: 767px) {
  .main-footer {
    margin-bottom: 0;
  }
}

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

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

.login-container {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.login-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6);
}

.login-header {
  text-align: center;
  padding: 40px 30px 20px 30px;
}

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

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

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

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

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

.login-form-wrapper {
  padding: 0 30px 30px 30px;
}

.error-message {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  border: 1px solid #f44336;
  animation: slideDown 0.3s ease;
}

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

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

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

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

.form-label {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 0;
}

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

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

.form-input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

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

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

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

.password-toggle {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: #cccccc;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: color 0.3s ease;
  z-index: 2;
}

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

.field-error {
  color: #f44336;
  font-size: 0.85rem;
  margin-top: 4px;
  min-height: 0;
  transition: all 0.3s ease;
}

.field-error:not(:empty) {
  min-height: 20px;
}

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

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cccccc;
  font-size: 0.9rem;
  cursor: pointer;
  user-select: none;
}

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

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

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

.remember-me input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000000;
  font-size: 0.8rem;
  font-weight: bold;
}

.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-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  color: #000000;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

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

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

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

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

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

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

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

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

.login-btn.loading span {
  display: none;
}

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

.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(255, 255, 255, 0.02);
  color: #cccccc;
  padding: 0 20px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.register-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 5px;
}

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

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

.security-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999999;
  font-size: 0.85rem;
  text-align: center;
}

.security-note i {
  color: #4caf50;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 0;
    min-height: 100vh;
  }
  
  .login-container {
    padding: 0 16px;
  }
  
  .login-card {
    border-radius: 16px;
  }
  
  .login-header {
    padding: 30px 20px 15px 20px;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .login-form-wrapper {
    padding: 0 20px 20px 20px;
  }
  
  .form-input {
    padding: 14px 14px 14px 44px;
  }
  
  .input-icon {
    left: 14px;
  }
  
  .password-toggle {
    right: 14px;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .login-footer {
    padding: 15px 20px 20px 20px;
  }
  
  .security-note {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 0 12px;
  }
  
  .login-header {
    padding: 25px 15px 10px 15px;
  }
  
  .login-logo {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .login-subtitle {
    font-size: 0.85rem;
  }
  
  .login-form-wrapper {
    padding: 0 15px 15px 15px;
  }
  
  .form-input {
    padding: 12px 12px 12px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 0.9rem;
  }
  
  .password-toggle {
    right: 12px;
  }
  
  .login-btn {
    padding: 14px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .login-footer {
    padding: 12px 15px 15px 15px;
  }
  
  .security-note {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .login-title {
    font-size: 1.3rem;
  }
  
  .login-logo {
    width: 55px;
    height: 55px;
  }
}

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

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

.register-container {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.register-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.register-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6);
}

.register-header {
  text-align: center;
  padding: 40px 30px 20px 30px;
}

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

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

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

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

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

.register-form-wrapper {
  padding: 0 30px 30px 30px;
}

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

.error-message {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  color: #ffffff;
  border: 1px solid #f44336;
}

.success-message {
  background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
  color: #ffffff;
  border: 1px solid #4caf50;
}

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

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

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

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

.form-label {
  font-weight: 600;
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0;
}

.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: 18px 18px 18px 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  outline: none;
}

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

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

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

.field-error {
  color: #f44336;
  font-size: 0.85rem;
  margin-top: 4px;
  min-height: 0;
  transition: all 0.3s ease;
}

.field-error:not(:empty) {
  min-height: 20px;
}

.field-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #999999;
  font-size: 0.85rem;
  margin-top: 4px;
}

.field-hint i {
  color: #ffd700;
  font-size: 0.8rem;
}

.terms-agreement {
  margin: 10px 0;
}

.agreement-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cccccc;
  font-size: 0.9rem;
  cursor: pointer;
  user-select: none;
  line-height: 1.4;
}

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

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

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

.agreement-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000000;
  font-size: 0.8rem;
  font-weight: bold;
}

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

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

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

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

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

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

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

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

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

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

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

.register-btn.loading span {
  display: none;
}

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

.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(255, 255, 255, 0.02);
  color: #cccccc;
  padding: 0 20px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.login-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 5px;
}

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

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

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

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

.feature-item i {
  color: #4caf50;
  font-size: 1rem;
}

.security-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999999;
  font-size: 0.8rem;
  text-align: center;
  justify-content: center;
}

.security-note i {
  color: #4caf50;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 0;
    min-height: 100vh;
  }
  
  .register-container {
    padding: 0 16px;
  }
  
  .register-card {
    border-radius: 16px;
  }
  
  .register-header {
    padding: 30px 20px 15px 20px;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.7rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .register-form-wrapper {
    padding: 0 20px 20px 20px;
  }
  
  .form-input {
    padding: 16px 16px 16px 46px;
    font-size: 1rem;
  }
  
  .input-icon {
    left: 14px;
    font-size: 1rem;
  }
  
  .register-footer {
    padding: 20px 20px 25px 20px;
  }
  
  .features-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .register-container {
    padding: 0 12px;
  }
  
  .register-header {
    padding: 25px 15px 10px 15px;
  }
  
  .register-logo {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .register-subtitle {
    font-size: 0.85rem;
  }
  
  .register-form-wrapper {
    padding: 0 15px 15px 15px;
  }
  
  .form-input {
    padding: 14px 14px 14px 42px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 16px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 14px;
    font-size: 0.95rem;
  }
  
  .register-footer {
    padding: 15px 15px 20px 15px;
  }
  
  .agreement-checkbox {
    font-size: 0.85rem;
  }
  
  .field-hint {
    font-size: 0.8rem;
  }
  
  .security-note {
    font-size: 0.75rem;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 360px) {
  .register-title {
    font-size: 1.4rem;
  }
  
  .register-logo {
    width: 55px;
    height: 55px;
  }
  
  .form-input {
    padding: 12px 12px 12px 40px;
  }
  
  .input-icon {
    left: 10px;
  }
}

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

.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.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content {
  text-align: center;
  margin: 0 auto;
}

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

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-btn {
  padding: 20px 40px;
  font-size: 1.3rem;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  animation: pulse 2s infinite;
}

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

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

.promotion-section:nth-child(even) {
  background: #111111;
}

.promotion-section:nth-child(odd) {
  background: #0a0a0a;
}

.promotion-alternate {
  background: #111111;
}

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

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

.promotion-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  text-align: center;
}

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

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

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

.promotion-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

.promotion-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 179, 0, 0.02) 100%);
  border-radius: 12px;
  border-left: 4px solid #ffd700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
}

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

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

.promotion-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 0, 0.05) 100%);
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promotion-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  animation: rotate 4s linear infinite;
}

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

.highlight-amount {
  font-family: 'Prompt', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.highlight-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.highlight-subtext {
  font-size: 1rem;
  color: #cccccc;
  position: relative;
  z-index: 1;
}

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

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

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

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

.btn-primary:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffc107 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
  color: #000000;
}

.btn-primary i {
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .promotion-content {
    gap: 40px;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px 0;
  }
  
  .hero-container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-container {
    padding: 0 16px;
  }
  
  .promotion-header {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
  }
  
  .promotion-icon i {
    font-size: 2rem;
  }
  
  .promotion-title {
    font-size: 1.7rem;
    text-align: center;
  }
  
  .promotion-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .benefit-item {
    padding: 16px;
  }
  
  .benefit-item span {
    font-size: 1rem;
  }
  
  .promotion-highlight {
    padding: 30px;
    order: -1;
  }
  
  .highlight-amount {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-container {
    padding: 0 12px;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.7rem;
  }
  
  .promotion-title {
    font-size: 1.5rem;
  }
  
  .benefit-item {
    padding: 14px;
    gap: 12px;
  }
  
  .benefit-item i {
    font-size: 1.1rem;
  }
  
  .benefit-item span {
    font-size: 0.95rem;
  }
  
  .promotion-highlight {
    padding: 25px;
  }
  
  .highlight-amount {
    font-size: 2.5rem;
  }
  
  .highlight-text {
    font-size: 1.1rem;
  }
  
  .btn-primary {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .promotion-title {
    font-size: 1.3rem;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .highlight-amount {
    font-size: 2.2rem;
  }
}