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

html {
  scroll-behavior: smooth;
}

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 {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}

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

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

.btn-secondary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

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

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

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

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

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

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-container {
    padding: 0 30px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-features {
    gap: 20px;
  }
  
  .feature-item {
    font-size: 0.9rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-container {
    padding: 0 20px;
  }
  
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
  
  .hero-features {
    justify-content: center;
    gap: 15px;
  }
  
  .feature-item {
    font-size: 0.85rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .feature-item {
    font-size: 0.8rem;
  }
}

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

.main-header.scrolled {
  background: rgba(26, 26, 46, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1280px;
  width: 100%;
  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;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s ease;
}

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

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

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

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

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

.hamburger-line:not(:last-child) {
  margin-bottom: 4px;
}

.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;
  transform: scaleX(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;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

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

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

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

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

.mobile-menu-close:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: scale(1.1);
}

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

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

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

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

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

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 30px;
  }
  
  .nav-menu {
    gap: 20px;
  }
  
  .nav-link {
    font-size: 0.95rem;
  }
  
  .cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .cta-btn {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    width: 280px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-logo {
    font-size: 1.2rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

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

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

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.95rem;
  color: #b8b8b8;
  line-height: 1.6;
}

.feature-desc strong {
  color: #ffd700;
}

.about-conclusion {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  font-style: italic;
  padding: 20px;
  background: rgba(255, 215, 0, 0.1);
  border-left: 4px solid #ffd700;
  border-radius: 0 10px 10px 0;
}

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

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: scale(1.02);
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 215, 0, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: #fff;
}

.overlay-content i {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 15px;
}

.overlay-content h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.overlay-content p {
  font-size: 1rem;
  color: #e0e0e0;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .about-container {
    padding: 0 30px;
  }
  
  .about-content {
    gap: 60px;
  }
  
  .about-title {
    font-size: 2.2rem;
  }
  
  .about-description p {
    font-size: 1rem;
  }
  
  .about-features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }
  
  .about-container {
    padding: 0 20px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .about-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-icon i {
    font-size: 1.3rem;
  }
  
  .feature-title {
    font-size: 1.1rem;
  }
  
  .feature-desc {
    font-size: 0.9rem;
  }
  
  .about-conclusion {
    font-size: 1rem;
    padding: 15px;
  }
  
  .overlay-content i {
    font-size: 2.5rem;
  }
  
  .overlay-content h4 {
    font-size: 1.3rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-container {
    padding: 0 15px;
  }
  
  .about-title {
    font-size: 1.6rem;
  }
  
  .about-description p {
    font-size: 0.9rem;
  }
  
  .about-features {
    gap: 10px;
  }
  
  .feature-card {
    padding: 15px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-icon i {
    font-size: 1.2rem;
  }
  
  .feature-title {
    font-size: 1rem;
  }
  
  .feature-desc {
    font-size: 0.85rem;
  }
  
  .about-conclusion {
    font-size: 0.9rem;
    padding: 12px;
  }
}

/* Lucky Number Section */
.lucky-number-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

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

.lucky-number-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

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

.lucky-number-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.lucky-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.lucky-number-image:hover .lucky-img {
  transform: scale(1.05);
}

.number-display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(255, 237, 78, 0.95) 100%);
  border-radius: 20px;
  padding: 20px 30px;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  backdrop-filter: blur(10px);
}

.lucky-digits {
  font-size: 4rem;
  font-weight: 700;
  color: #000;
  font-family: 'Prompt', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.lucky-meanings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

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

.meaning-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
}

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

.digit {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  font-family: 'Prompt', sans-serif;
}

.meaning-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.meaning-text p {
  font-size: 0.9rem;
  color: #b8b8b8;
  line-height: 1.4;
  margin: 0;
}

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

.lucky-cta .btn {
  font-size: 1.1rem;
  padding: 18px 35px;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .lucky-number-container {
    padding: 0 30px;
  }
  
  .lucky-number-content {
    gap: 60px;
  }
  
  .lucky-title {
    font-size: 2rem;
  }
  
  .lucky-description p {
    font-size: 1rem;
  }
  
  .lucky-digits {
    font-size: 3.5rem;
  }
  
  .number-display {
    padding: 15px 25px;
  }
  
  .lucky-meanings {
    gap: 15px;
  }
  
  .meaning-item {
    padding: 15px;
  }
  
  .digit-circle {
    width: 45px;
    height: 45px;
  }
  
  .digit {
    font-size: 1.3rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .lucky-number-section {
    padding: 80px 0;
  }
  
  .lucky-number-container {
    padding: 0 20px;
  }
  
  .lucky-number-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .lucky-title {
    font-size: 1.8rem;
  }
  
  .lucky-description p {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
  }
  
  .lucky-digits {
    font-size: 3rem;
  }
  
  .number-display {
    padding: 12px 20px;
  }
  
  .lucky-meanings {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .meaning-item {
    padding: 12px;
  }
  
  .digit-circle {
    width: 40px;
    height: 40px;
  }
  
  .digit {
    font-size: 1.2rem;
  }
  
  .meaning-text h3 {
    font-size: 1rem;
  }
  
  .meaning-text p {
    font-size: 0.85rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .lucky-number-section {
    padding: 60px 0;
  }
  
  .lucky-number-container {
    padding: 0 15px;
  }
  
  .lucky-number-content {
    gap: 30px;
  }
  
  .lucky-title {
    font-size: 1.6rem;
  }
  
  .lucky-description p {
    font-size: 0.9rem;
  }
  
  .lucky-digits {
    font-size: 2.5rem;
  }
  
  .number-display {
    padding: 10px 15px;
  }
  
  .meaning-item {
    padding: 10px;
    gap: 10px;
  }
  
  .digit-circle {
    width: 35px;
    height: 35px;
  }
  
  .digit {
    font-size: 1.1rem;
  }
  
  .meaning-text h3 {
    font-size: 0.95rem;
  }
  
  .meaning-text p {
    font-size: 0.8rem;
  }
  
  .lucky-cta .btn {
    font-size: 1rem;
    padding: 15px 30px;
    width: 100%;
    max-width: 300px;
  }
}

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

.mobile-support-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.mobile-support-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

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

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

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

.mobile-description a {
  color: #667eea;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.mobile-description a:hover {
  color: #ffd700;
}

.mobile-features {
  margin-bottom: 30px;
}

.mobile-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border-left: 3px solid #ffd700;
  transition: all 0.3s ease;
}

.mobile-feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.mobile-feature-item:last-child {
  margin-bottom: 0;
}

.feature-number {
  width: 30px;
  height: 30px;
  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: 0.9rem;
  flex-shrink: 0;
}

.mobile-feature-item p {
  margin: 0;
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.mobile-additional {
  margin-bottom: 40px;
  padding: 25px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
}

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

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

.mobile-additional strong {
  color: #ffd700;
  font-weight: 600;
}

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

.mobile-cta .btn {
  font-size: 1rem;
  padding: 15px 30px;
}

.mobile-support-visual {
  position: relative;
}

.mobile-devices {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

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

.device-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
}

.device-screen {
  width: 100%;
  height: 120px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  border: 3px solid #333;
}

.device-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffd700;
}

.device-info i {
  font-size: 1.5rem;
}

.dealer-highlight {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 25px;
}

.dealer-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.dealer-avatar i {
  font-size: 2rem;
  color: #000;
}

.dealer-details h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.dealer-details p {
  font-size: 1rem;
  color: #b8b8b8;
  margin-bottom: 10px;
}

.dealer-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dealer-features span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  padding: 4px 8px;
  border-radius: 12px;
}

.dealer-features span i {
  font-size: 0.8rem;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .mobile-support-container {
    padding: 0 30px;
  }
  
  .mobile-support-content {
    gap: 60px;
  }
  
  .mobile-title {
    font-size: 2.1rem;
  }
  
  .mobile-description p {
    font-size: 1rem;
  }
  
  .device-showcase {
    gap: 15px;
  }
  
  .device-item {
    padding: 15px;
  }
  
  .dealer-highlight {
    padding: 20px;
  }
  
  .dealer-card {
    gap: 15px;
  }
  
  .dealer-avatar {
    width: 50px;
    height: 50px;
  }
  
  .dealer-avatar i {
    font-size: 1.5rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .mobile-support-section {
    padding: 80px 0;
  }
  
  .mobile-support-container {
    padding: 0 20px;
  }
  
  .mobile-support-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mobile-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .mobile-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .mobile-feature-item {
    padding: 12px;
  }
  
  .mobile-additional {
    padding: 20px;
  }
  
  .mobile-cta {
    justify-content: center;
  }
  
  .device-showcase {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .device-screen {
    height: 100px;
  }
  
  .dealer-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .dealer-features {
    justify-content: center;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .mobile-support-section {
    padding: 60px 0;
  }
  
  .mobile-support-container {
    padding: 0 15px;
  }
  
  .mobile-title {
    font-size: 1.6rem;
  }
  
  .mobile-description p {
    font-size: 0.9rem;
  }
  
  .mobile-feature-item {
    padding: 10px;
    gap: 10px;
  }
  
  .feature-number {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }
  
  .mobile-feature-item p {
    font-size: 0.9rem;
  }
  
  .mobile-additional {
    padding: 15px;
  }
  
  .mobile-additional p {
    font-size: 0.9rem;
  }
  
  .mobile-cta {
    flex-direction: column;
  }
  
  .mobile-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .device-screen {
    height: 80px;
  }
  
  .device-info {
    font-size: 0.9rem;
  }
  
  .dealer-details h4 {
    font-size: 1.1rem;
  }
  
  .dealer-features span {
    font-size: 0.8rem;
  }
}

/* Gameplay Guide Section */
.gameplay-guide-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #16213e 0%, #0f3460 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

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

.gameplay-guide-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

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

.guide-header {
  text-align: center;
  margin-bottom: 50px;
}

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

.guide-intro {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto;
}

.guide-intro strong {
  color: #ffd700;
  font-weight: 600;
}

.gameplay-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 2px;
}

.betting-grid {
  display: grid;
  gap: 20px;
}

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

.betting-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
}

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

.betting-icon.banker {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.betting-icon.tie {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.betting-icon i {
  font-size: 1.8rem;
  color: #000;
}

.betting-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.payout {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 10px;
}

.description {
  font-size: 0.95rem;
  color: #b8b8b8;
  line-height: 1.4;
  margin: 0;
}

.card-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.value-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.card-display {
  width: 60px;
  height: 80px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  font-family: 'Prompt', sans-serif;
}

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

.value-example {
  grid-column: 1 / -1;
  text-align: center;
  padding: 20px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  margin-top: 10px;
}

.value-example h4 {
  font-size: 1.2rem;
  color: #ffd700;
  margin-bottom: 5px;
}

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

.value-example strong {
  color: #ffd700;
  font-weight: 700;
}

.gameplay-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.beginner-section,
.professional-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
}

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

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

.section-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.gameplay-sections p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.gameplay-sections strong {
  color: #ffd700;
  font-weight: 600;
}

.gameplay-sections a {
  color: #667eea;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.gameplay-sections a:hover {
  color: #ffd700;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.pro-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pro-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.pro-feature i {
  font-size: 1.5rem;
  color: #ffd700;
  width: 30px;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 0.9rem;
  color: #b8b8b8;
  margin: 0;
}

.money-management {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
}

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

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

.management-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

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

.money-management strong {
  color: #ffd700;
  font-weight: 600;
}

.management-tips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tip-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.tip-card h4 {
  font-size: 1.1rem;
  color: #ffd700;
  margin-bottom: 10px;
}

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

.conclusion-text {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
  border-left: 4px solid #ffd700;
}

.conclusion-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin: 0;
  font-style: italic;
}

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

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

.guide-cta .btn {
  font-size: 1.1rem;
  padding: 18px 35px;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .gameplay-guide-container {
    padding: 0 30px;
  }
  
  .guide-title {
    font-size: 2.2rem;
  }
  
  .guide-intro {
    font-size: 1.1rem;
  }
  
  .gameplay-main {
    gap: 40px;
  }
  
  .gameplay-sections {
    gap: 30px;
  }
  
  .card-value-grid {
    gap: 15px;
  }
  
  .management-tips {
    gap: 15px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .gameplay-guide-section {
    padding: 80px 0;
  }
  
  .gameplay-guide-container {
    padding: 0 20px;
  }
  
  .guide-title {
    font-size: 1.8rem;
  }
  
  .guide-intro {
    font-size: 1rem;
  }
  
  .gameplay-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .gameplay-sections {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .beginner-section,
  .professional-section {
    padding: 25px;
  }
  
  .card-value-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .management-tips {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .money-management {
    padding: 25px;
  }
  
  .conclusion-text {
    padding: 20px;
  }
  
  .guide-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .guide-cta .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .gameplay-guide-section {
    padding: 60px 0;
  }
  
  .gameplay-guide-container {
    padding: 0 15px;
  }
  
  .guide-title {
    font-size: 1.6rem;
  }
  
  .guide-intro {
    font-size: 0.95rem;
  }
  
  .section-subtitle {
    font-size: 1.5rem;
  }
  
  .betting-card {
    padding: 20px;
  }
  
  .betting-icon {
    width: 50px;
    height: 50px;
  }
  
  .betting-icon i {
    font-size: 1.5rem;
  }
  
  .betting-card h4 {
    font-size: 1.1rem;
  }
  
  .value-item {
    padding: 15px;
  }
  
  .card-display {
    width: 50px;
    height: 65px;
  }
  
  .card-label {
    font-size: 1rem;
  }
  
  .beginner-section,
  .professional-section {
    padding: 20px;
  }
  
  .money-management {
    padding: 20px;
  }
  
  .management-header i {
    font-size: 1.5rem;
  }
  
  .management-header h3 {
    font-size: 1.5rem;
  }
  
  .conclusion-text {
    padding: 15px;
  }
  
  .guide-cta .btn {
    font-size: 1rem;
    padding: 15px 30px;
  }
}

/* VIP Services Section */
.vip-services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

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

.vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.vip-badge i {
  font-size: 1.3rem;
}

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

.vip-intro {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #e0e0e0;
  max-width: 1000px;
  margin: 0 auto;
}

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

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

.section-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 2px;
}

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

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.4);
}

.benefit-item:last-child {
  margin-bottom: 0;
}

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

.benefit-icon i {
  font-size: 1.8rem;
  color: #000;
}

.benefit-text h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.benefit-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0;
}

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

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

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
}

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

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

.card-header h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b8b8b8;
  margin: 0;
}

.feature-card strong {
  color: #ffd700;
  font-weight: 600;
}

.vip-privileges {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
}

.privileges-header {
  margin-bottom: 30px;
}

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

.privilege-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 3px solid #ffd700;
}

.privilege-item i {
  font-size: 1.3rem;
  color: #ffd700;
  width: 20px;
  flex-shrink: 0;
}

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

.vip-tiers {
  margin-bottom: 60px;
}

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

.tiers-header p {
  font-size: 1.1rem;
  color: #b8b8b8;
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.6;
}

.tier-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.tier-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  border-radius: 15px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.tier-card.bronze:hover {
  border-color: #cd7f32;
}

.tier-card.silver:hover {
  border-color: #c0c0c0;
}

.tier-card.gold:hover {
  border-color: #ffd700;
}

.tier-card.platinum:hover {
  border-color: #e5e4e2;
}

.tier-card.diamond:hover {
  border-color: #b9f2ff;
}

.tier-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.bronze .tier-icon {
  background: linear-gradient(135deg, #cd7f32, #deb887);
  color: #fff;
}

.silver .tier-icon {
  background: linear-gradient(135deg, #c0c0c0, #e5e5e5);
  color: #333;
}

.gold .tier-icon {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
}

.platinum .tier-icon {
  background: linear-gradient(135deg, #e5e4e2, #ffffff);
  color: #333;
}

.diamond .tier-icon {
  background: linear-gradient(135deg, #b9f2ff, #87ceeb);
  color: #000;
}

.tier-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.tier-card p {
  font-size: 0.9rem;
  color: #b8b8b8;
  margin: 0;
}

.tier-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  text-align: center;
  font-style: italic;
}

.tier-description a {
  color: #667eea;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.tier-description a:hover {
  color: #ffd700;
}

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

.vip-games {
  margin-bottom: 60px;
}

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

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

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

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

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

.game-item span {
  font-size: 0.95rem;
  color: #e0e0e0;
  text-align: center;
  font-weight: 500;
}

.vip-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 50px;
}

.vip-cta h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.vip-cta p {
  font-size: 1.2rem;
  color: #b8b8b8;
  margin-bottom: 30px;
}

.btn-vip {
  font-size: 1.3rem;
  padding: 20px 40px;
  border-radius: 50px;
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
}

.btn-vip:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.5);
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .vip-services-container {
    padding: 0 30px;
  }
  
  .vip-title {
    font-size: 2.2rem;
  }
  
  .vip-intro {
    font-size: 1.1rem;
  }
  
  .vip-main-content {
    gap: 40px;
  }
  
  .vip-feature-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .privileges-list {
    gap: 15px;
  }
  
  .tier-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .vip-services-section {
    padding: 80px 0;
  }
  
  .vip-services-container {
    padding: 0 20px;
  }
  
  .vip-title {
    font-size: 1.8rem;
  }
  
  .vip-intro {
    font-size: 1rem;
  }
  
  .vip-main-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .benefit-icon {
    margin: 0 auto;
  }
  
  .vip-feature-grid {
    grid-template-columns: 1fr;
  }
  
  .privileges-list {
    grid-template-columns: 1fr;
  }
  
  .vip-privileges {
    padding: 25px;
  }
  
  .tier-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .vip-cta {
    padding: 30px 20px;
  }
  
  .vip-cta h3 {
    font-size: 1.6rem;
  }
  
  .vip-cta p {
    font-size: 1.1rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .vip-services-section {
    padding: 60px 0;
  }
  
  .vip-services-container {
    padding: 0 15px;
  }
  
  .vip-title {
    font-size: 1.6rem;
  }
  
  .vip-intro {
    font-size: 0.95rem;
  }
  
  .section-subtitle {
    font-size: 1.5rem;
  }
  
  .benefit-item {
    padding: 15px;
  }
  
  .benefit-icon {
    width: 50px;
    height: 50px;
  }
  
  .benefit-icon i {
    font-size: 1.5rem;
  }
  
  .benefit-text h4 {
    font-size: 1.2rem;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .vip-privileges {
    padding: 20px;
  }
  
  .tier-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .tier-card {
    padding: 20px 15px;
  }
  
  .tier-icon {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  
  .game-item {
    padding: 20px 10px;
  }
  
  .game-item i {
    font-size: 1.5rem;
  }
  
  .vip-cta {
    padding: 25px 15px;
  }
  
  .vip-cta h3 {
    font-size: 1.4rem;
  }
  
  .btn-vip {
    font-size: 1.1rem;
    padding: 15px 30px;
    width: 100%;
    max-width: 300px;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(180deg, #0f3460 0%, #1a1a2e 50%, #0a0a0a 100%);
  color: #ffffff;
  padding: 60px 0 0;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

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

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

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

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

.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;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  display: block;
}

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

.footer-social {
  display: flex;
  gap: 15px;
}

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

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

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

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

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

.footer-menu li {
  margin-bottom: 10px;
}

.footer-link {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 2px 0;
}

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

.contact-info {
  margin-bottom: 25px;
}

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

.contact-item i {
  color: #ffd700;
  font-size: 1rem;
  width: 18px;
  flex-shrink: 0;
}

.footer-btn {
  padding: 12px 24px;
  font-size: 0.95rem;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

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

.footer-legal {
  justify-self: start;
}

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

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

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

.separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.footer-copyright {
  text-align: center;
  justify-self: center;
}

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

.footer-security {
  justify-self: end;
}

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

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .footer-bottom-content {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }
  
  .footer-legal,
  .footer-copyright,
  .footer-security {
    justify-self: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .security-badges {
    justify-content: center;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .main-footer {
    padding: 50px 0 0;
    margin-top: 60px;
  }
  
  .footer-container {
    padding: 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-description {
    max-width: none;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-title {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-menu {
    text-align: center;
  }
  
  .contact-info {
    text-align: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .footer-cta {
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 8px;
  }
  
  .separator {
    display: none;
  }
  
  .security-badges {
    flex-direction: column;
    gap: 8px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .main-footer {
    padding: 40px 0 0;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    gap: 20px;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  .footer-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
  
  .legal-link {
    font-size: 0.8rem;
  }
  
  .security-item {
    font-size: 0.75rem;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 60px;
}

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

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

.btn-text {
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Individual Button Styling */
.login-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-btn:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

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

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

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

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

.credit-btn {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.credit-btn:hover {
  background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}

.credit-btn:hover i {
  transform: scale(1.1);
  animation: pulse 1.5s infinite;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .sticky-buttons {
    min-height: 65px;
  }
  
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.8rem;
    min-height: 65px;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
  }
  
  .btn-text {
    font-size: 0.75rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .sticky-buttons {
    min-height: 70px;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.75rem;
    min-height: 70px;
    gap: 3px;
  }
  
  .sticky-btn i {
    font-size: 1.4rem;
  }
  
  .btn-text {
    font-size: 0.7rem;
    line-height: 1.1;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .sticky-buttons {
    min-height: 75px;
  }
  
  .sticky-btn {
    padding: 6px 2px;
    font-size: 0.7rem;
    min-height: 75px;
    gap: 2px;
  }
  
  .sticky-btn i {
    font-size: 1.5rem;
  }
  
  .btn-text {
    font-size: 0.65rem;
    line-height: 1;
  }
}

/* Extra Small Mobile Styles */
@media (max-width: 360px) {
  .btn-text {
    font-size: 0.6rem;
  }
  
  .sticky-btn i {
    font-size: 1.3rem;
  }
}

/* Prevent body content from being hidden behind sticky buttons */
body {
  padding-bottom: 80px; /* Adjust based on sticky button height */
}

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

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

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

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

.login-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.login-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

.error-message {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.5);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
  color: #ff6b6b;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  display: none;
  animation: slideDown 0.3s ease;
}

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

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

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

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

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

.form-input {
  width: 100%;
  padding: 15px 45px 15px 45px;
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
  font-family: 'Sarabun', sans-serif;
}

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

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

.form-input:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.05);
}

.form-input:valid:not(:placeholder-shown) {
  border-color: #28a745;
  background: rgba(40, 167, 69, 0.05);
}

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

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

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

.field-error {
  font-size: 0.85rem;
  color: #ff6b6b;
  margin-top: 5px;
  display: none;
  animation: slideDown 0.3s ease;
}

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

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

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

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

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

.btn-loading {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.login-submit-btn.loading .btn-text,
.login-submit-btn.loading > i {
  opacity: 0;
}

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

.login-footer {
  text-align: center;
}

.register-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.register-link:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.additional-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.forgot-link,
.help-link {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.forgot-link:hover,
.help-link:hover {
  color: #ffd700;
}

.separator {
  color: #666;
  font-size: 0.8rem;
}

.login-features {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .login-container {
    padding: 0 30px;
  }
  
  .login-card {
    padding: 35px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 2rem;
  }
  
  .login-features {
    gap: 25px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 0;
    min-height: 100vh;
  }
  
  .login-container {
    padding: 0 20px;
    gap: 25px;
  }
  
  .login-card {
    padding: 25px;
    max-width: 100%;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 12px 40px 12px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 1rem;
  }
  
  .password-toggle {
    right: 12px;
  }
  
  .login-submit-btn {
    padding: 12px;
    font-size: 1rem;
  }
  
  .register-link {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
  
  .login-features {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .additional-links {
    flex-direction: column;
    gap: 8px;
  }
  
  .separator {
    display: none;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .login-container {
    padding: 0 15px;
    gap: 20px;
  }
  
  .login-card {
    padding: 20px;
  }
  
  .logo-image {
    width: 50px;
    height: 50px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 10px 35px 10px 35px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 10px;
    font-size: 0.9rem;
  }
  
  .password-toggle {
    right: 10px;
  }
  
  .login-submit-btn {
    font-size: 0.95rem;
  }
  
  .register-link {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  .feature-item {
    font-size: 0.8rem;
  }
}

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

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

.register-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.register-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

.success-message {
  background: rgba(40, 167, 69, 0.2);
  border: 1px solid rgba(40, 167, 69, 0.5);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
  color: #4caf50;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  display: none;
  animation: slideDown 0.3s ease;
}

.success-message.show {
  display: block;
}

.error-message {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.5);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
  color: #ff6b6b;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  display: none;
  animation: slideDown 0.3s ease;
}

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

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

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

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

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

.form-input {
  width: 100%;
  padding: 15px 45px 15px 45px;
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
  font-family: 'Sarabun', sans-serif;
}

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

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

.form-input:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.05);
}

.form-input:valid:not(:placeholder-shown) {
  border-color: #28a745;
  background: rgba(40, 167, 69, 0.05);
}

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

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

.field-error {
  font-size: 0.85rem;
  color: #ff6b6b;
  margin-top: 5px;
  display: none;
  animation: slideDown 0.3s ease;
}

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

.register-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  margin-bottom: 15px;
}

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

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

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

.btn-loading {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.register-submit-btn.loading .btn-text,
.register-submit-btn.loading > i {
  opacity: 0;
}

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

.register-footer {
  text-align: center;
}

.login-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  color: #fff;
  background: transparent;
  border: 2px solid #667eea;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.login-link:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.additional-info {
  margin-top: 20px;
}

.info-text {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 15px;
  font-weight: 500;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b8b8b8;
  font-size: 0.9rem;
  justify-content: center;
}

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

.register-features {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .register-container {
    padding: 0 30px;
  }
  
  .register-card {
    padding: 35px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 2rem;
  }
  
  .register-features {
    gap: 25px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 0;
    min-height: 100vh;
  }
  
  .register-container {
    padding: 0 20px;
    gap: 25px;
  }
  
  .register-card {
    padding: 25px;
    max-width: 100%;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 12px 40px 12px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 1rem;
  }
  
  .register-submit-btn {
    padding: 12px;
    font-size: 1rem;
  }
  
  .login-link {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
  
  .register-features {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .benefits {
    align-items: center;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .register-container {
    padding: 0 15px;
    gap: 20px;
  }
  
  .register-card {
    padding: 20px;
  }
  
  .logo-image {
    width: 50px;
    height: 50px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 10px 35px 10px 35px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 10px;
    font-size: 0.9rem;
  }
  
  .register-submit-btn {
    font-size: 0.95rem;
  }
  
  .login-link {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  .feature-item {
    font-size: 0.8rem;
  }
  
  .benefit-item {
    font-size: 0.8rem;
  }
}

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

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

.hero-content {
  margin: 0 auto;
}

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

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

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

.hero-btn {
  font-size: 1.3rem;
  padding: 18px 40px;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.5);
}

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

.promotion-section:nth-child(even) {
  background: linear-gradient(180deg, #16213e 0%, #0f3460 100%);
}

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

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

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

.promotion-card.highlight {
  border: 2px solid #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

.promotion-card.vip {
  border-color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

.promotion-card.referral {
  border-color: #f093fb;
  background: rgba(240, 147, 251, 0.1);
}

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

.promotion-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.promotion-badge.bonus {
  background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
  color: #fff;
}

.promotion-badge.vip {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.promotion-badge.referral {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #fff;
}

.promotion-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.promotion-body {
  margin-bottom: 30px;
}

.promotion-amount {
  text-align: center;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.currency {
  font-size: 2rem;
  color: #ffd700;
  font-weight: 700;
  vertical-align: top;
}

.amount {
  font-size: 4rem;
  font-weight: 700;
  color: #ffd700;
  margin: 0 10px;
}

.percentage {
  font-size: 4rem;
  font-weight: 700;
  color: #4caf50;
  margin: 0 10px;
}

.label {
  display: block;
  font-size: 1.2rem;
  color: #b8b8b8;
  margin-top: 5px;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.feature-item:last-child {
  margin-bottom: 0;
}

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

.feature-item i.fa-info-circle {
  color: #2196f3;
}

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

.promotion-btn {
  font-size: 1.2rem;
  padding: 15px 35px;
  border-radius: 12px;
  min-width: 250px;
}

/* Summary Section */
.summary-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

.summary-text {
  margin-bottom: 40px;
}

.summary-text p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0;
  font-style: italic;
}

.summary-cta {
  margin-bottom: 40px;
}

.summary-btn {
  font-size: 1.4rem;
  padding: 20px 45px;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
}

.summary-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.5);
}

.summary-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.summary-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #b8b8b8;
  font-size: 0.95rem;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-container,
  .promotion-container,
  .summary-container {
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-card {
    padding: 35px;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
  
  .amount,
  .percentage {
    font-size: 3.5rem;
  }
  
  .currency {
    font-size: 1.8rem;
  }
  
  .summary-features {
    gap: 30px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 50px;
  }
  
  .hero-container,
  .promotion-container,
  .summary-container {
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-btn {
    font-size: 1.1rem;
    padding: 15px 30px;
  }
  
  .promotion-section {
    padding: 40px 0;
  }
  
  .promotion-card {
    padding: 25px;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .amount,
  .percentage {
    font-size: 3rem;
  }
  
  .currency {
    font-size: 1.5rem;
  }
  
  .feature-item {
    font-size: 1rem;
  }
  
  .promotion-btn {
    font-size: 1rem;
    padding: 12px 25px;
    min-width: 200px;
  }
  
  .summary-section {
    padding: 60px 0;
  }
  
  .summary-text p {
    font-size: 1.1rem;
  }
  
  .summary-btn {
    font-size: 1.2rem;
    padding: 15px 35px;
  }
  
  .summary-features {
    gap: 25px;
  }
  
  .summary-feature {
    font-size: 0.9rem;
  }
  
  .summary-feature i {
    font-size: 1.8rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .hero-container,
  .promotion-container,
  .summary-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 30px 0;
  }
  
  .promotion-card {
    padding: 20px;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .promotion-amount {
    padding: 20px;
  }
  
  .amount,
  .percentage {
    font-size: 2.5rem;
  }
  
  .currency {
    font-size: 1.3rem;
  }
  
  .label {
    font-size: 1rem;
  }
  
  .feature-item {
    font-size: 0.95rem;
  }
  
  .promotion-btn {
    font-size: 0.95rem;
    padding: 10px 20px;
    min-width: 180px;
  }
  
  .summary-section {
    padding: 50px 0;
  }
  
  .summary-text p {
    font-size: 1rem;
  }
  
  .summary-btn {
    font-size: 1.1rem;
    padding: 12px 30px;
  }
  
  .summary-features {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .summary-feature {
    font-size: 0.85rem;
  }
  
  .summary-feature i {
    font-size: 1.6rem;
  }
}