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

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

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

p {
  font-family: 'Sarabun', sans-serif;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

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

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 50%, #fff176 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

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

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

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

.hero-btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  color: #ffffff;
}

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

.hero-btn-secondary {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: #ffffff;
}

.hero-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
  background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffd700;
  font-weight: 600;
}

.feature-item i {
  font-size: 1.25rem;
}

.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.4);
  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%, #ffeb3b 100%);
  color: #1a1a2e;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  animation: pulse 2s infinite;
}

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

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-section {
    padding: 60px 20px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.15rem;
  }
  
  .hero-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 15px;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .hero-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    justify-content: center;
  }
  
  .hero-features {
    justify-content: center;
    gap: 20px;
  }
  
  .feature-item {
    font-size: 0.9rem;
  }
  
  .hero-badge {
    top: 15px;
    right: 15px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .hero-section {
    padding: 30px 10px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

/* Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.header-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

.logo-tagline {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.7rem;
  color: #b0b0b0;
  font-weight: 400;
  line-height: 1;
}

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

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

.nav-link {
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #e0e0e0;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  padding: 10px 0;
}

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

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

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

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

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

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

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

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

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 26, 46, 0.95);
  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-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateY(-50px);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateY(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-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.mobile-menu-close:hover {
  color: #ffd700;
}

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

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

.mobile-nav-link {
  display: block;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #e0e0e0;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

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

.mobile-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 30px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-family: 'Sarabun', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  width: 100%;
}

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 15px;
  }
  
  .nav-links {
    gap: 25px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-tagline {
    font-size: 0.65rem;
  }
  
  .header-cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .header-container {
    padding: 0 10px;
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .logo-tagline {
    font-size: 0.6rem;
  }
  
  .header-nav,
  .header-actions {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  body {
    padding-top: 60px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .header-container {
    padding: 0 8px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-nav {
    padding: 30px 15px;
  }
  
  .mobile-nav-links {
    gap: 20px;
  }
  
  .mobile-nav-link {
    font-size: 1.1rem;
    padding: 12px 15px;
  }
  
  .mobile-cta-btn {
    padding: 14px 25px;
    font-size: 1rem;
  }
}

/* Comprehensive Platform Section Styles */
.comprehensive-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.comprehensive-img:hover {
  transform: translateY(-10px);
}

.comprehensive-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  animation: slideInUp 1s ease-out 0.5s both;
}

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

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

.comprehensive-description {
  margin-bottom: 50px;
}

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

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

.comprehensive-highlights {
  margin-bottom: 50px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
}

.highlights-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffd700;
  text-align: center;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

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

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

.highlight-item i {
  font-size: 1.5rem;
  color: #ff6b35;
  margin-top: 5px;
  flex-shrink: 0;
}

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

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

.comprehensive-conclusion {
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: 15px;
  border-left: 4px solid #ffd700;
}

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

.comprehensive-conclusion strong {
  color: #ffd700;
  font-weight: 700;
}

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

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

.comprehensive-btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  color: #ffffff;
}

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

.comprehensive-btn-secondary {
  background: linear-gradient(135deg, #2196f3 0%, #42a5f5 100%);
  color: #ffffff;
}

.comprehensive-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
  background: linear-gradient(135deg, #42a5f5 0%, #2196f3 100%);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .comprehensive-section {
    padding: 80px 20px;
  }
  
  .comprehensive-content {
    gap: 60px;
  }
  
  .comprehensive-title {
    font-size: 2.2rem;
  }
  
  .comprehensive-description p {
    font-size: 1.05rem;
  }
  
  .comprehensive-highlights {
    padding: 30px;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .comprehensive-section {
    padding: 60px 15px;
  }
  
  .comprehensive-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .comprehensive-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
  }
  
  .comprehensive-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .comprehensive-highlights {
    padding: 25px 20px;
    margin-bottom: 40px;
  }
  
  .highlights-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }
  
  .highlight-item {
    padding: 15px;
  }
  
  .highlight-item i {
    font-size: 1.3rem;
  }
  
  .highlight-content h4 {
    font-size: 1rem;
  }
  
  .highlight-content p {
    font-size: 0.9rem;
  }
  
  .comprehensive-conclusion {
    padding: 25px 20px;
    margin-bottom: 30px;
  }
  
  .comprehensive-conclusion p {
    font-size: 1rem;
  }
  
  .comprehensive-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .comprehensive-btn {
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .comprehensive-overlay {
    bottom: 15px;
    left: 15px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .comprehensive-section {
    padding: 40px 10px;
  }
  
  .comprehensive-title {
    font-size: 1.5rem;
  }
  
  .comprehensive-description p {
    font-size: 0.95rem;
  }
  
  .comprehensive-highlights {
    padding: 20px 15px;
  }
  
  .highlights-title {
    font-size: 1.2rem;
  }
  
  .comprehensive-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* Security Analysis Section Styles */
.security-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 30% 80%, rgba(33, 150, 243, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.security-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

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

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

.security-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

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

.security-description p {
  margin-bottom: 25px;
}

.security-description strong {
  color: #4caf50;
  font-weight: 700;
}

.security-description a {
  color: #2196f3;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.security-description a:hover {
  color: #42a5f5;
}

.security-features {
  animation: fadeInRight 1s ease-out;
  position: relative;
}

.security-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

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

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

.security-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  padding: 25px 20px;
  border-radius: 15px;
  border: 1px solid rgba(76, 175, 80, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
}

.security-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(76, 175, 80, 0.4);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.security-card-icon {
  margin-bottom: 15px;
}

.security-card-icon i {
  font-size: 2rem;
  color: #4caf50;
  background: rgba(76, 175, 80, 0.1);
  padding: 15px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.security-card:hover .security-card-icon i {
  background: rgba(76, 175, 80, 0.2);
  transform: scale(1.1);
}

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

.security-card-content p {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.4;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .security-section {
    padding: 80px 20px;
  }
  
  .security-content {
    gap: 60px;
  }
  
  .security-title {
    font-size: 2rem;
  }
  
  .security-description {
    font-size: 1.05rem;
  }
  
  .security-cards {
    gap: 15px;
  }
  
  .security-card {
    padding: 20px 15px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .security-section {
    padding: 60px 15px;
  }
  
  .security-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .security-title {
    font-size: 1.7rem;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .security-description {
    font-size: 1rem;
  }
  
  .security-description p {
    margin-bottom: 20px;
  }
  
  .security-cards {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
  }
  
  .security-card {
    padding: 20px;
  }
  
  .security-card-icon i {
    font-size: 1.7rem;
    padding: 12px;
  }
  
  .security-card-content h4 {
    font-size: 1rem;
  }
  
  .security-card-content p {
    font-size: 0.85rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .security-section {
    padding: 40px 10px;
  }
  
  .security-title {
    font-size: 1.4rem;
  }
  
  .security-description {
    font-size: 0.95rem;
  }
  
  .security-card {
    padding: 15px;
  }
  
  .security-card-icon i {
    font-size: 1.5rem;
    padding: 10px;
  }
  
  .security-card-content h4 {
    font-size: 0.95rem;
  }
  
  .security-card-content p {
    font-size: 0.8rem;
  }
}

/* Additional responsive adjustments for very small screens */
@media (max-width: 360px) {
  .security-cards {
    gap: 12px;
  }
  
  .security-card {
    padding: 12px;
  }
}

/* Lottery Pricing Section Styles */
.lottery-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

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

.lottery-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.lottery-content {
  animation: fadeInUp 1s ease-out;
}

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

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

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

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

.lottery-description {
  margin-bottom: 60px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
}

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

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

.lottery-types {
  margin-bottom: 60px;
}

.lottery-types-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ffd700;
  text-align: center;
}

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

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

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

.lottery-type-card:hover::before {
  left: 100%;
}

.lottery-type-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.lottery-type-icon {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.lottery-type-icon i {
  font-size: 2.5rem;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  padding: 20px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.lottery-type-card:hover .lottery-type-icon i {
  background: rgba(255, 215, 0, 0.2);
  transform: scale(1.1);
}

.lottery-type-content {
  position: relative;
  z-index: 1;
}

.lottery-type-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.lottery-type-content p {
  font-size: 1rem;
  color: #b0b0b0;
  margin-bottom: 15px;
  line-height: 1.5;
}

.lottery-payout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: rgba(255, 107, 53, 0.1);
  padding: 10px 15px;
  border-radius: 25px;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.payout-label {
  font-size: 0.9rem;
  color: #ff6b35;
  font-weight: 600;
}

.payout-amount {
  font-size: 1rem;
  color: #ff6b35;
  font-weight: 700;
}

.lottery-additional-info {
  margin-bottom: 50px;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
  padding: 35px;
  border-radius: 20px;
  border-left: 4px solid #2196f3;
}

.lottery-additional-info p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
}

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

.lottery-additional-info strong {
  color: #2196f3;
  font-weight: 700;
}

.lottery-additional-info a {
  color: #42a5f5;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.lottery-additional-info a:hover {
  color: #64b5f6;
}

.lottery-cta {
  display: flex;
  justify-content: center;
  gap: 25px;
}

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

.lottery-btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
  color: #1a1a2e;
}

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

.lottery-btn-secondary {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  color: #ffffff;
}

.lottery-btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #ff8e53 0%, #ff6b35 100%);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .lottery-section {
    padding: 80px 20px;
  }
  
  .lottery-title {
    font-size: 2.2rem;
  }
  
  .lottery-description {
    padding: 30px;
    margin-bottom: 50px;
  }
  
  .lottery-types-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .lottery-type-card {
    padding: 25px 20px;
  }
  
  .lottery-additional-info {
    padding: 30px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .lottery-section {
    padding: 60px 15px;
  }
  
  .lottery-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .lottery-header {
    margin-bottom: 40px;
  }
  
  .lottery-hero-img {
    max-width: 100%;
  }
  
  .lottery-description {
    padding: 25px 20px;
    margin-bottom: 40px;
  }
  
  .lottery-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .lottery-types-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .lottery-types-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .lottery-type-card {
    padding: 20px;
  }
  
  .lottery-type-icon i {
    font-size: 2rem;
    padding: 15px;
  }
  
  .lottery-type-content h4 {
    font-size: 1.2rem;
  }
  
  .lottery-additional-info {
    padding: 25px 20px;
    margin-bottom: 40px;
  }
  
  .lottery-additional-info p {
    font-size: 1rem;
  }
  
  .lottery-cta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .lottery-btn {
    padding: 15px 30px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .lottery-section {
    padding: 40px 10px;
  }
  
  .lottery-title {
    font-size: 1.5rem;
  }
  
  .lottery-description {
    padding: 20px 15px;
  }
  
  .lottery-description p {
    font-size: 0.95rem;
  }
  
  .lottery-types-title {
    font-size: 1.3rem;
  }
  
  .lottery-type-card {
    padding: 15px;
  }
  
  .lottery-type-icon i {
    font-size: 1.8rem;
    padding: 12px;
  }
  
  .lottery-type-content h4 {
    font-size: 1.1rem;
  }
  
  .lottery-type-content p {
    font-size: 0.9rem;
  }
  
  .payout-label, .payout-amount {
    font-size: 0.85rem;
  }
  
  .lottery-additional-info {
    padding: 20px 15px;
  }
  
  .lottery-additional-info p {
    font-size: 0.95rem;
  }
  
  .lottery-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}

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

.mobile-app-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 30%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 20% 70%, rgba(76, 175, 80, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.mobile-app-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

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

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

.mobile-app-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #2196f3 0%, #42a5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.mobile-app-description {
  margin-bottom: 50px;
}

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

.mobile-app-description strong {
  color: #2196f3;
  font-weight: 700;
}

.mobile-app-features {
  margin-bottom: 50px;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(33, 150, 243, 0.2);
  backdrop-filter: blur(10px);
}

.features-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2196f3;
  text-align: center;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(33, 150, 243, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(33, 150, 243, 0.3);
}

.feature-number {
  background: linear-gradient(135deg, #2196f3 0%, #42a5f5 100%);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

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

.mobile-app-additional {
  margin-bottom: 40px;
}

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

.mobile-app-additional strong {
  color: #2196f3;
  font-weight: 700;
}

.mobile-app-additional a {
  color: #42a5f5;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.mobile-app-additional a:hover {
  color: #64b5f6;
}

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

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

.mobile-app-btn-primary {
  background: linear-gradient(135deg, #2196f3 0%, #42a5f5 100%);
  color: #ffffff;
}

.mobile-app-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
  background: linear-gradient(135deg, #42a5f5 0%, #2196f3 100%);
}

.mobile-app-btn-secondary {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: #ffffff;
}

.mobile-app-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
  background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
}

.mobile-app-visual {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.mobile-app-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

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

.mobile-app-badges {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  flex: 1;
  transition: all 0.3s ease;
}

.app-badge:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.app-badge i {
  font-size: 2rem;
  color: #2196f3;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.badge-subtitle {
  font-size: 0.9rem;
  color: #b0b0b0;
}

.mobile-features-highlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  padding: 15px 20px;
  border-radius: 25px;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.highlight-card i {
  font-size: 1.2rem;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .mobile-app-section {
    padding: 80px 20px;
  }
  
  .mobile-app-content {
    gap: 60px;
  }
  
  .mobile-app-title {
    font-size: 2.1rem;
  }
  
  .mobile-app-features {
    padding: 30px;
  }
  
  .features-list {
    gap: 20px;
  }
  
  .feature-item {
    padding: 20px;
  }
  
  .mobile-app-badges {
    gap: 15px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .mobile-app-section {
    padding: 60px 15px;
  }
  
  .mobile-app-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .mobile-app-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .mobile-app-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .mobile-app-features {
    padding: 25px 20px;
    margin-bottom: 40px;
  }
  
  .features-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
  
  .features-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-item {
    padding: 20px 15px;
  }
  
  .feature-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .feature-content h4 {
    font-size: 1.1rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
  
  .mobile-app-additional p {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  
  .mobile-app-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .mobile-app-btn {
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .mobile-app-badges {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .app-badge {
    padding: 15px;
  }
  
  .app-badge i {
    font-size: 1.7rem;
  }
  
  .mobile-features-highlight {
    gap: 12px;
  }
  
  .highlight-card {
    padding: 12px 18px;
    justify-content: center;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .mobile-app-section {
    padding: 40px 10px;
  }
  
  .mobile-app-title {
    font-size: 1.5rem;
  }
  
  .mobile-app-description p {
    font-size: 0.95rem;
  }
  
  .mobile-app-features {
    padding: 20px 15px;
  }
  
  .features-title {
    font-size: 1.3rem;
  }
  
  .feature-item {
    padding: 15px;
  }
  
  .feature-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .feature-content h4 {
    font-size: 1rem;
  }
  
  .feature-content p {
    font-size: 0.85rem;
  }
  
  .mobile-app-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .app-badge {
    padding: 12px;
  }
  
  .badge-title {
    font-size: 1rem;
  }
  
  .badge-subtitle {
    font-size: 0.8rem;
  }
  
  .highlight-card {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

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

.promotions-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, 107, 53, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(76, 175, 80, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.promotions-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

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

.promotions-visual {
  position: relative;
  animation: fadeInLeft 1s ease-out;
}

.promotions-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  margin-bottom: 25px;
}

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

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

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

.credit-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.credit-card:hover {
  transform: translateX(10px);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(255, 215, 0, 0.5);
}

.credit-card i {
  font-size: 2rem;
  color: #ffd700;
  flex-shrink: 0;
}

.credit-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.credit-amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd700;
}

.credit-desc {
  font-size: 0.9rem;
  color: #b0b0b0;
}

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

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

.promotions-description {
  margin-bottom: 50px;
}

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

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

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

.promotions-description a:hover {
  color: #ff8e53;
}

.promotion-types {
  margin-bottom: 50px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
}

.promotion-types-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffd700;
  text-align: center;
}

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

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

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

.promotion-icon {
  flex-shrink: 0;
}

.promotion-icon i {
  font-size: 1.5rem;
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  padding: 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.promotion-type-item:hover .promotion-icon i {
  background: rgba(255, 107, 53, 0.2);
  transform: scale(1.1);
}

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

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

.promotion-tracking {
  margin-bottom: 40px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(33, 150, 243, 0.05) 100%);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #4caf50;
}

.promotion-tracking p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.promotion-tracking p:last-child {
  margin-bottom: 0;
}

.promotion-tracking strong {
  color: #4caf50;
  font-weight: 700;
}

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

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

.promotion-btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
  color: #1a1a2e;
}

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

.promotion-btn-secondary {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: #ffffff;
}

.promotion-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
  background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .promotions-section {
    padding: 80px 20px;
  }
  
  .promotions-content {
    gap: 60px;
  }
  
  .promotions-title {
    font-size: 2rem;
  }
  
  .promotions-description p {
    font-size: 1.05rem;
  }
  
  .promotion-types {
    padding: 30px;
  }
  
  .promotion-types-list {
    gap: 20px;
  }
  
  .promotion-type-item {
    padding: 18px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .promotions-section {
    padding: 60px 15px;
  }
  
  .promotions-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .promotions-title {
    font-size: 1.7rem;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .promotions-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .promotion-types {
    padding: 25px 20px;
    margin-bottom: 40px;
  }
  
  .promotion-types-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
  
  .promotion-types-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .promotion-type-item {
    padding: 15px;
  }
  
  .promotion-icon i {
    font-size: 1.3rem;
    padding: 10px;
  }
  
  .promotion-content h4 {
    font-size: 1rem;
  }
  
  .promotion-content p {
    font-size: 0.9rem;
  }
  
  .promotion-tracking {
    padding: 25px 20px;
    margin-bottom: 30px;
  }
  
  .promotion-tracking p {
    font-size: 1rem;
  }
  
  .promotion-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .promotion-btn {
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .credit-highlight {
    margin-top: 20px;
    gap: 12px;
  }
  
  .credit-card {
    padding: 15px;
  }
  
  .credit-card i {
    font-size: 1.7rem;
  }
  
  .credit-amount {
    font-size: 1.1rem;
  }
  
  .credit-desc {
    font-size: 0.85rem;
  }
  
  .promotions-badge {
    top: 15px;
    right: 15px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .promotions-section {
    padding: 40px 10px;
  }
  
  .promotions-title {
    font-size: 1.4rem;
  }
  
  .promotions-description p {
    font-size: 0.95rem;
  }
  
  .promotion-types {
    padding: 20px 15px;
  }
  
  .promotion-types-title {
    font-size: 1.3rem;
  }
  
  .promotion-type-item {
    padding: 12px;
  }
  
  .promotion-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .credit-card {
    padding: 12px;
  }
  
  .credit-card i {
    font-size: 1.5rem;
  }
  
  .credit-amount {
    font-size: 1rem;
  }
  
  .credit-desc {
    font-size: 0.8rem;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  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(circle at 30% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

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

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

.footer-logo-tagline {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  color: #b0b0b0;
  font-weight: 400;
}

.footer-brand-desc {
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin: 0;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Sarabun', sans-serif;
  font-size: 0.95rem;
  color: #e0e0e0;
}

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

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

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

.footer-column-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd700;
  margin: 0;
  margin-bottom: 5px;
}

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

.footer-link {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.95rem;
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
  position: relative;
}

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

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

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

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

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

.social-link:hover {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

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

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

.feature-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  font-family: 'Sarabun', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e0e0e0;
}

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

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

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

.footer-copyright p,
.footer-disclaimer p {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  color: #b0b0b0;
  margin: 0;
}

.footer-disclaimer p {
  font-size: 0.85rem;
  text-align: right;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .footer-content {
    gap: 40px;
    padding: 50px 15px 35px;
  }
  
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-brand-desc {
    font-size: 0.95rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 15px 30px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-brand {
    text-align: center;
    gap: 20px;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-brand-desc {
    font-size: 0.9rem;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .footer-disclaimer p {
    text-align: center;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .footer-content {
    padding: 30px 10px 25px;
    gap: 30px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-logo-text {
    font-size: 1.4rem;
  }
  
  .footer-brand-desc {
    font-size: 0.85rem;
  }
  
  .footer-column-title {
    font-size: 1.1rem;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .social-link i {
    font-size: 1rem;
  }
  
  .feature-badge {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
  
  .footer-bottom {
    padding: 20px 10px;
  }
  
  .footer-copyright p,
  .footer-disclaimer p {
    font-size: 0.8rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: rgba(26, 26, 46, 0.95);
  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);
  z-index: 999;
  padding: 0;
  margin: 0;
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

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

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

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

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

.sticky-btn-text {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.sticky-btn-login {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #ffffff;
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  transform: translateY(-2px);
}

.sticky-btn-register {
  background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
  color: #ffffff;
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
  transform: translateY(-2px);
}

.sticky-btn-credit {
  background: linear-gradient(135deg, #ff6b35 0%, #e64a19 100%);
  color: #ffffff;
  position: relative;
}

.sticky-btn-credit::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.sticky-btn-credit:hover {
  background: linear-gradient(135deg, #e64a19 0%, #d84315 100%);
  transform: translateY(-2px);
}

/* Animation for credit button indicator */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Ensure content doesn't get covered by sticky buttons */
body {
  padding-bottom: 70px;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 10px 5px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .sticky-btn-text {
    font-size: 0.7rem;
  }
  
  body {
    padding-bottom: 65px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 8px 3px;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 3px;
  }
  
  .sticky-btn-text {
    font-size: 0.65rem;
    line-height: 1.1;
  }
  
  body {
    padding-bottom: 55px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .sticky-btn {
    padding: 6px 2px;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn-text {
    font-size: 0.6rem;
  }
  
  .sticky-btn-credit::after {
    width: 10px;
    height: 10px;
    top: -1px;
    right: -1px;
  }
  
  body {
    padding-bottom: 50px;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .sticky-btn {
    padding: 5px 1px;
  }
  
  .sticky-btn-text {
    font-size: 0.55rem;
  }
  
  .sticky-btn i {
    font-size: 0.85rem;
  }
}

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

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

.login-container {
  max-width: 1280px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.login-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.8s ease-out;
}

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

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

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

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

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

.login-subtitle {
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  color: #b0b0b0;
  margin-bottom: 35px;
}

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

.error-message {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  display: none;
  animation: shake 0.5s ease-in-out;
}

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

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

.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 8px;
}

.form-label i {
  color: #ffd700;
  font-size: 1.1rem;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

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

.form-input.error {
  border-color: #f44336;
  background: rgba(244, 67, 54, 0.1);
}

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

.password-input-container {
  position: relative;
}

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

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

.field-error {
  display: block;
  color: #f44336;
  font-family: 'Sarabun', sans-serif;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
}

.login-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.login-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

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

.btn-loading {
  display: none;
}

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

.login-btn.loading .btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.register-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.register-link:hover {
  background: linear-gradient(135deg, #ff8e53 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.security-info {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  color: #b0b0b0;
}

.security-item i {
  color: #4caf50;
}

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .login-card {
    padding: 35px;
    max-width: 400px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .logo-img {
    width: 70px;
    height: 70px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .login-section {
    padding: 15px;
  }
  
  .login-card {
    padding: 30px 25px;
    max-width: 100%;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-img {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 14px;
  }
  
  .login-btn {
    padding: 14px;
    font-size: 1rem;
  }
  
  .register-link {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .security-info {
    gap: 20px;
  }
  
  .security-item {
    font-size: 0.85rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .login-section {
    padding: 10px;
  }
  
  .login-card {
    padding: 25px 20px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .logo-img {
    width: 50px;
    height: 50px;
  }
  
  .form-label {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 12px;
    font-size: 0.95rem;
  }
  
  .register-link {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .security-info {
    flex-direction: column;
    gap: 15px;
  }
}

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

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

.register-container {
  max-width: 1280px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.register-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.8s ease-out;
}

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

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

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

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

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.register-subtitle {
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  color: #b0b0b0;
  margin-bottom: 35px;
}

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

.error-message {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  display: none;
  animation: shake 0.5s ease-in-out;
}

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

.error-message.success {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 8px;
}

.form-label i {
  color: #4caf50;
  font-size: 1.1rem;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-input:focus {
  outline: none;
  border-color: #4caf50;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

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

.form-input.error {
  border-color: #f44336;
  background: rgba(244, 67, 54, 0.1);
}

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

.field-error {
  display: block;
  color: #f44336;
  font-family: 'Sarabun', sans-serif;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
}

.register-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.register-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

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

.btn-loading {
  display: none;
}

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

.register-btn.loading .btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  color: #2196f3;
  text-decoration: none;
  border: 2px solid #2196f3;
  border-radius: 12px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.login-link:hover {
  background: linear-gradient(135deg, #2196f3 0%, #42a5f5 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

.security-info {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  color: #b0b0b0;
}

.security-item i {
  color: #4caf50;
}

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .register-card {
    padding: 35px;
    max-width: 400px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .logo-img {
    width: 70px;
    height: 70px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .register-section {
    padding: 15px;
  }
  
  .register-card {
    padding: 30px 25px;
    max-width: 100%;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-img {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 14px;
  }
  
  .register-btn {
    padding: 14px;
    font-size: 1rem;
  }
  
  .login-link {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .security-info {
    gap: 20px;
  }
  
  .security-item {
    font-size: 0.85rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .register-section {
    padding: 10px;
  }
  
  .register-card {
    padding: 25px 20px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .logo-img {
    width: 50px;
    height: 50px;
  }
  
  .form-label {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 12px;
    font-size: 0.95rem;
  }
  
  .login-link {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .security-info {
    flex-direction: column;
    gap: 15px;
  }
}

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

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

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

.hero-content {
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

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

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 15px 25px;
  font-family: 'Sarabun', sans-serif;
  font-weight: 700;
  color: #ffffff;
  transition: all 0.3s ease;
}

.hero-badge:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.hero-badge i {
  font-size: 1.3rem;
  color: #ffd700;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Sarabun', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

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

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

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

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

.promotion-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.05) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.promotion-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

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

.promotion-card:hover::before {
  left: 100%;
}

.promotion-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.promotion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

.promotion-icon:hover {
  transform: scale(1.1) rotate(10deg);
}

.promotion-icon i {
  font-size: 2rem;
  color: #1a1a2e;
}

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

.promotion-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.promotion-highlight {
  text-align: center;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  border-radius: 20px;
  padding: 40px 30px;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.highlight-amount {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.highlight-currency {
  display: block;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.highlight-desc {
  display: block;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
}

.highlight-max {
  display: block;
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 5px;
  opacity: 0.8;
}

.promotion-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 40px;
}

.promotion-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  transition: all 0.3s ease;
}

.promotion-benefits li:hover {
  color: #ffffff;
  padding-left: 10px;
}

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

.promotion-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Sarabun', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.promotion-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.5);
  background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
}

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

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-badges {
    gap: 20px;
  }
  
  .hero-cta-btn {
    padding: 18px 35px;
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 60px 15px;
  }
  
  .promotion-card {
    padding: 40px;
  }
  
  .promotion-content {
    grid-template-columns: 250px 1fr;
    gap: 40px;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
  
  .highlight-amount {
    font-size: 3.5rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 15px 60px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .hero-badge {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero-cta-btn {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 50px 15px;
  }
  
  .promotion-card {
    padding: 30px 25px;
  }
  
  .promotion-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .promotion-title {
    font-size: 1.7rem;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }
  
  .promotion-icon i {
    font-size: 1.7rem;
  }
  
  .promotion-highlight {
    padding: 30px 25px;
    margin-bottom: 20px;
  }
  
  .highlight-amount {
    font-size: 3rem;
  }
  
  .promotion-benefits li {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .promotion-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .hero-section {
    padding: 80px 10px 50px;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-cta-btn {
    padding: 14px 25px;
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 40px 10px;
  }
  
  .promotion-card {
    padding: 25px 20px;
  }
  
  .promotion-title {
    font-size: 1.5rem;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.5rem;
  }
  
  .promotion-highlight {
    padding: 25px 20px;
  }
  
  .highlight-amount {
    font-size: 2.5rem;
  }
  
  .promotion-benefits li {
    font-size: 0.95rem;
  }
  
  .promotion-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}