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

body {
  font-family: 'Sarabun', sans-serif;
  background: linear-gradient(135deg, #0f0f23 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;
}

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

/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  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-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.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;
  color: #ffd700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

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

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

.inline-link:hover {
  color: #ffed4e;
}

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

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

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

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

.feature-item span {
  color: #ffffff;
  font-weight: 600;
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 180px;
}

.cta-button.primary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.cta-button.primary:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

.cta-button.secondary:hover {
  background: #ffd700;
  color: #000000;
  transform: translateY(-2px);
}

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

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

.floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  animation: pulse 2s infinite;
}

.floating-badge i {
  color: #000000;
}

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

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

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

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 280px;
  }
  
  .floating-badge {
    top: 15px;
    right: 15px;
    padding: 10px 15px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 10px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  
  .feature-item {
    padding: 12px;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 15, 35, 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(15, 15, 35, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

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

.logo-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

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

.logo-tagline {
  font-size: 0.7rem;
  color: #ffffff;
  margin-top: -5px;
  font-weight: 400;
}

.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 40px;
}

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

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

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

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::before {
  width: 80%;
}

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

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

.mobile-menu-toggle:hover {
  background: rgba(255, 215, 0, 0.1);
}

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

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

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

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

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

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

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

.mobile-menu-overlay.active .mobile-menu {
  right: 0;
}

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

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

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

.mobile-menu-close:hover {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  transform: rotate(90deg);
}

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

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

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

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

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

.mobile-cta-item {
  padding: 20px 25px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-cta-button {
  display: block;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mobile-cta-button:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

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

@media (max-width: 900px) {
  .header-container {
    height: 70px;
    padding: 0 15px;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-tagline {
    font-size: 0.6rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
    padding: 0 15px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-tagline {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 60px;
    padding: 0 10px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .logo-tagline {
    font-size: 0.55rem;
  }
  
  .mobile-menu {
    width: 280px;
  }
  
  .mobile-menu-header {
    padding: 15px 20px;
  }
  
  .mobile-logo {
    font-size: 1.3rem;
  }
  
  .mobile-nav-link {
    font-size: 1rem;
    padding: 16px 20px;
  }
  
  .mobile-cta-item {
    padding: 15px 20px;
  }
  
  .mobile-cta-button {
    font-size: 1rem;
    padding: 14px 18px;
  }
}

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

@media (max-width: 900px) {
  body {
    padding-top: 70px;
  }
}

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

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

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

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

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

.about-text {
  animation: fadeInUp 1s ease-out;
}

.about-title {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

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

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

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

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

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

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

.feature-card:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

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

.feature-card h3 {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.4;
}

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

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

.stats-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
}

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

.stat-label {
  font-size: 0.9rem;
  color: #ffffff;
  margin-top: 5px;
  display: block;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    gap: 60px;
  }
  
  .about-title {
    font-size: 2.2rem;
  }
  
  .about-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 15px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .about-description p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-card i {
    font-size: 2rem;
  }
  
  .feature-card h3 {
    font-size: 0.95rem;
  }
  
  .stats-overlay {
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 15px;
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 10px;
  }
  
  .about-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .about-description {
    margin-bottom: 40px;
  }
  
  .about-description p {
    font-size: 0.9rem;
  }
  
  .feature-card {
    padding: 18px;
  }
  
  .feature-card i {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  
  .feature-card h3 {
    font-size: 0.9rem;
  }
  
  .stats-overlay {
    padding: 12px;
  }
  
  .stat-number {
    font-size: 1.3rem;
  }
}

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

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

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

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

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

.login-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.security-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  background: linear-gradient(45deg, #28a745, #20c997);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.security-badge i {
  color: #ffffff;
  font-size: 1rem;
}

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

.login-title {
  font-size: 2.3rem;
  color: #ffd700;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

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

.login-description p {
  font-size: 1.05rem;
  color: #e0e0e0;
  margin-bottom: 18px;
  line-height: 1.8;
  text-align: justify;
}

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

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

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

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

.security-feature:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.security-feature i {
  color: #ffd700;
  font-size: 1.5rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.feature-info h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.feature-info p {
  color: #b0b0b0;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

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

.additional-info {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.additional-info p {
  font-size: 1rem;
  color: #d0d0d0;
  margin-bottom: 15px;
  line-height: 1.7;
  text-align: justify;
}

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

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

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

@media (max-width: 768px) {
  .login-section {
    padding: 80px 15px;
  }
  
  .login-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .login-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .login-description p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .security-features {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 35px;
  }
  
  .security-feature {
    padding: 16px;
  }
  
  .security-feature i {
    font-size: 1.3rem;
  }
  
  .feature-info h4 {
    font-size: 0.95rem;
  }
  
  .feature-info p {
    font-size: 0.85rem;
  }
  
  .login-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 280px;
  }
  
  .additional-info {
    padding: 25px;
  }
  
  .additional-info p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .security-badge {
    top: 20px;
    left: 20px;
    padding: 10px 15px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 60px 10px;
  }
  
  .login-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .login-description p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .security-feature {
    padding: 14px;
    gap: 12px;
  }
  
  .security-feature i {
    font-size: 1.2rem;
  }
  
  .feature-info h4 {
    font-size: 0.9rem;
  }
  
  .feature-info p {
    font-size: 0.8rem;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .additional-info {
    padding: 20px;
  }
  
  .additional-info p {
    font-size: 0.9rem;
  }
  
  .security-badge {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}

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

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

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

.lottery-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out;
}

.lottery-title {
  font-size: 2.8rem;
  color: #ffd700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

.lottery-subtitle {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

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

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

.lottery-text {
  animation: fadeInLeft 1s ease-out 0.3s both;
}

.lottery-description p {
  font-size: 1.05rem;
  color: #e0e0e0;
  margin-bottom: 18px;
  line-height: 1.8;
  text-align: justify;
}

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

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

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

.features-title {
  color: #ffd700;
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: center;
}

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

.feature-item-detailed {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item-detailed:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

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

.feature-item-detailed span {
  color: #ffffff;
  font-size: 0.95rem;
}

.additional-content {
  margin-top: 30px;
}

.additional-content p {
  font-size: 1rem;
  color: #d0d0d0;
  margin-bottom: 15px;
  line-height: 1.7;
  text-align: justify;
}

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

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

.lottery-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  animation: fadeInRight 1s ease-out 0.3s both;
}

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

.lottery-game-card:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.2);
}

.lottery-game-card.special {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  border: 2px solid rgba(255, 215, 0, 0.4);
}

.lottery-game-card.special:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
}

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

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

.lottery-game-card p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

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

.game-features span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #ffffff;
  background: rgba(255, 215, 0, 0.15);
  padding: 6px 10px;
  border-radius: 15px;
}

.game-features span i {
  font-size: 0.8rem;
  color: #ffd700;
}

.lottery-image-section {
  text-align: center;
  margin: 60px 0;
  animation: fadeInUp 1s ease-out 0.6s both;
}

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

.cta-section {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.cta-button.large {
  padding: 18px 40px;
  font-size: 1.2rem;
  min-width: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .lottery-title {
    font-size: 2.4rem;
  }
  
  .lottery-subtitle {
    font-size: 1.1rem;
  }
  
  .lottery-content {
    gap: 50px;
  }
  
  .lottery-games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .lottery-section {
    padding: 80px 15px;
  }
  
  .lottery-title {
    font-size: 2rem;
  }
  
  .lottery-subtitle {
    font-size: 1rem;
  }
  
  .lottery-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .lottery-games-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .lottery-game-card {
    padding: 20px;
  }
  
  .lottery-game-card i {
    font-size: 2rem;
  }
  
  .lottery-game-card h4 {
    font-size: 1.1rem;
  }
  
  .lottery-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .additional-content p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .analysis-features {
    padding: 20px;
  }
  
  .features-title {
    font-size: 1.2rem;
  }
  
  .cta-section {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button.large {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .lottery-section {
    padding: 60px 10px;
  }
  
  .lottery-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .lottery-subtitle {
    font-size: 0.95rem;
  }
  
  .lottery-header {
    margin-bottom: 50px;
  }
  
  .lottery-game-card {
    padding: 18px;
  }
  
  .lottery-game-card i {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  
  .lottery-game-card h4 {
    font-size: 1rem;
  }
  
  .lottery-game-card p {
    font-size: 0.85rem;
  }
  
  .game-features span {
    font-size: 0.75rem;
    padding: 5px 8px;
  }
  
  .lottery-description p {
    font-size: 0.95rem;
  }
  
  .additional-content p {
    font-size: 0.9rem;
  }
  
  .analysis-features {
    padding: 18px;
  }
  
  .feature-item-detailed {
    padding: 10px;
    gap: 10px;
  }
  
  .feature-item-detailed span {
    font-size: 0.9rem;
  }
  
  .cta-button.large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

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

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

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

.finance-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out;
}

.finance-title {
  font-size: 2.6rem;
  color: #ffd700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

.finance-subtitle {
  font-size: 1.15rem;
  color: #e0e0e0;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.finance-subtitle strong {
  color: #ffd700;
  font-weight: 700;
}

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

.finance-text {
  animation: fadeInLeft 1s ease-out 0.3s both;
}

.finance-description p {
  font-size: 1.05rem;
  color: #e0e0e0;
  margin-bottom: 18px;
  line-height: 1.8;
  text-align: justify;
}

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

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

.finance-benefits {
  margin-top: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.benefits-title {
  color: #ffd700;
  font-size: 1.4rem;
  margin-bottom: 25px;
  text-align: center;
}

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

.benefit-card {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-5px);
}

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

.benefit-card h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

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

.finance-visual {
  animation: fadeInRight 1s ease-out 0.3s both;
}

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

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

.step.active {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.step:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateX(5px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

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

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

.step-connector {
  width: 2px;
  height: 15px;
  background: linear-gradient(to bottom, #ffd700, rgba(255, 215, 0, 0.3));
  margin: 0 auto 15px auto;
  margin-left: 34px;
}

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

.finance-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.speed-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, #28a745, #20c997);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
  animation: pulse 2s infinite;
}

.speed-badge i {
  color: #ffffff;
  font-size: 1.1rem;
}

.additional-content {
  margin-bottom: 60px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

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

.content-block:hover {
  background: rgba(255, 215, 0, 0.05);
  transform: translateY(-3px);
}

.content-block h4 {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.content-block p {
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.cta-finance {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  animation: fadeInUp 1s ease-out 0.9s both;
}

.cta-content h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 700;
}

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

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .finance-title {
    font-size: 2.3rem;
  }
  
  .finance-subtitle {
    font-size: 1.05rem;
  }
  
  .finance-content {
    gap: 50px;
  }
  
  .content-grid {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .finance-section {
    padding: 80px 15px;
  }
  
  .finance-title {
    font-size: 2rem;
  }
  
  .finance-subtitle {
    font-size: 1rem;
  }
  
  .finance-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .benefit-card {
    padding: 18px;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .content-block {
    padding: 20px;
  }
  
  .content-block h4 {
    font-size: 1.1rem;
  }
  
  .content-block p {
    font-size: 0.9rem;
    text-align: left;
  }
  
  .finance-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .cta-finance {
    flex-direction: column;
    gap: 25px;
    text-align: center;
    padding: 30px;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 280px;
  }
  
  .speed-badge {
    bottom: 15px;
    right: 15px;
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .finance-section {
    padding: 60px 10px;
  }
  
  .finance-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .finance-subtitle {
    font-size: 0.95rem;
  }
  
  .finance-header {
    margin-bottom: 50px;
  }
  
  .finance-benefits {
    padding: 25px;
  }
  
  .benefits-title {
    font-size: 1.2rem;
  }
  
  .benefit-card {
    padding: 15px;
  }
  
  .benefit-card i {
    font-size: 1.8rem;
  }
  
  .benefit-card h4 {
    font-size: 0.95rem;
  }
  
  .benefit-card p {
    font-size: 0.85rem;
  }
  
  .step {
    padding: 12px;
    gap: 15px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .step-content h4 {
    font-size: 1rem;
  }
  
  .step-content p {
    font-size: 0.85rem;
  }
  
  .step-connector {
    margin-left: 29px;
  }
  
  .content-block {
    padding: 18px;
  }
  
  .content-block h4 {
    font-size: 1rem;
  }
  
  .content-block p {
    font-size: 0.85rem;
  }
  
  .finance-description p {
    font-size: 0.95rem;
  }
  
  .cta-finance {
    padding: 25px;
  }
  
  .cta-content h3 {
    font-size: 1.3rem;
  }
  
  .cta-content p {
    font-size: 0.95rem;
  }
  
  .speed-badge {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

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

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

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

.trust-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out;
}

.trust-title {
  font-size: 2.4rem;
  color: #ffd700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

.trust-subtitle {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

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

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

.trust-image {
  position: relative;
  animation: fadeInLeft 1s ease-out 0.3s both;
}

.trust-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.verification-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(45deg, #28a745, #20c997);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.verification-badge i {
  color: #ffffff;
  font-size: 1rem;
}

.rng-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.rng-badge i {
  color: #ffffff;
  font-size: 0.9rem;
}

.trust-text {
  animation: fadeInRight 1s ease-out 0.3s both;
}

.trust-description p {
  font-size: 1.05rem;
  color: #e0e0e0;
  margin-bottom: 18px;
  line-height: 1.8;
  text-align: justify;
}

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

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

.verification-features {
  margin-top: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.verification-title {
  color: #ffd700;
  font-size: 1.4rem;
  margin-bottom: 25px;
  text-align: center;
}

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

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

.verification-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.verification-item i {
  color: #ffd700;
  font-size: 1.5rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.verification-content h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

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

.quality-assurance {
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

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

.qa-title {
  color: #ffd700;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.qa-header p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.qa-header strong {
  color: #ffd700;
  font-weight: 700;
}

.qa-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.qa-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

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

.qa-feature i {
  color: #ffd700;
  font-size: 1.8rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.qa-text h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.3;
}

.qa-text p {
  color: #b0b0b0;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.additional-trust-content {
  margin-bottom: 60px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  animation: fadeInUp 1s ease-out 0.9s both;
}

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

.trust-block:hover {
  background: rgba(255, 215, 0, 0.05);
  transform: translateY(-3px);
}

.trust-block h4 {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.trust-block p {
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.trust-block strong {
  color: #ffd700;
  font-weight: 600;
}

.promotion-info {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 50px;
  backdrop-filter: blur(15px);
  animation: fadeInUp 1s ease-out 1.2s both;
}

.promotion-info h4 {
  color: #ffd700;
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

.promotion-info p {
  color: #d0d0d0;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

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

.promotion-info strong {
  color: #ffd700;
  font-weight: 600;
}

.cta-trust {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 25px;
  backdrop-filter: blur(20px);
  animation: fadeInUp 1s ease-out 1.5s both;
}

.cta-trust-content h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.cta-trust-content p {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0;
}

.cta-trust-buttons {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .trust-title {
    font-size: 2.1rem;
  }
  
  .trust-subtitle {
    font-size: 1.05rem;
  }
  
  .trust-content {
    gap: 50px;
  }
  
  .qa-content {
    gap: 30px;
  }
  
  .trust-grid {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .trust-section {
    padding: 80px 15px;
  }
  
  .trust-title {
    font-size: 1.9rem;
  }
  
  .trust-subtitle {
    font-size: 1rem;
  }
  
  .trust-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .verification-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .verification-item {
    padding: 18px;
  }
  
  .qa-title {
    font-size: 1.7rem;
  }
  
  .qa-header p {
    font-size: 1rem;
    text-align: left;
  }
  
  .qa-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .qa-feature {
    padding: 20px;
    gap: 15px;
  }
  
  .qa-feature i {
    font-size: 1.5rem;
  }
  
  .qa-text h4 {
    font-size: 1rem;
  }
  
  .qa-text p {
    font-size: 0.9rem;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .trust-block {
    padding: 20px;
  }
  
  .trust-block h4 {
    font-size: 1.1rem;
  }
  
  .trust-block p {
    font-size: 0.9rem;
    text-align: left;
  }
  
  .trust-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .promotion-info {
    padding: 25px;
  }
  
  .promotion-info h4 {
    font-size: 1.2rem;
  }
  
  .promotion-info p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .cta-trust {
    flex-direction: column;
    gap: 25px;
    text-align: center;
    padding: 30px;
  }
  
  .cta-trust-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-trust-content p {
    font-size: 1rem;
  }
  
  .cta-trust-buttons {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 280px;
  }
  
  .verification-badge {
    top: 15px;
    left: 15px;
    padding: 10px 15px;
    font-size: 0.8rem;
  }
  
  .rng-badge {
    bottom: 15px;
    right: 15px;
    padding: 8px 14px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .trust-section {
    padding: 60px 10px;
  }
  
  .trust-title {
    font-size: 1.7rem;
    margin-bottom: 15px;
  }
  
  .trust-subtitle {
    font-size: 0.95rem;
  }
  
  .trust-header {
    margin-bottom: 50px;
  }
  
  .verification-features {
    padding: 25px;
  }
  
  .verification-title {
    font-size: 1.2rem;
  }
  
  .verification-item {
    padding: 15px;
    gap: 12px;
  }
  
  .verification-item i {
    font-size: 1.3rem;
  }
  
  .verification-content h4 {
    font-size: 0.95rem;
  }
  
  .verification-content p {
    font-size: 0.85rem;
  }
  
  .qa-title {
    font-size: 1.5rem;
  }
  
  .qa-feature {
    padding: 18px;
    gap: 12px;
  }
  
  .qa-feature i {
    font-size: 1.3rem;
  }
  
  .qa-text h4 {
    font-size: 0.95rem;
  }
  
  .qa-text p {
    font-size: 0.85rem;
  }
  
  .trust-block {
    padding: 18px;
  }
  
  .trust-block h4 {
    font-size: 1rem;
  }
  
  .trust-block p {
    font-size: 0.85rem;
  }
  
  .trust-description p {
    font-size: 0.95rem;
  }
  
  .promotion-info {
    padding: 20px;
  }
  
  .promotion-info h4 {
    font-size: 1.1rem;
  }
  
  .promotion-info p {
    font-size: 0.9rem;
  }
  
  .cta-trust {
    padding: 25px;
  }
  
  .cta-trust-content h3 {
    font-size: 1.3rem;
  }
  
  .cta-trust-content p {
    font-size: 0.95rem;
  }
  
  .verification-badge {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  
  .rng-badge {
    padding: 6px 10px;
    font-size: 0.7rem;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 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(ellipse at 50% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.footer-section {
  animation: fadeInUp 0.6s ease-out;
}

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

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

.footer-logo-tagline {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin-top: 5px;
  display: block;
}

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

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

.footer-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 0.9rem;
}

.footer-feature i {
  color: #ffd700;
  font-size: 0.9rem;
  width: 16px;
}

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

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

.footer-link {
  color: #d0d0d0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 5px 0;
  border-left: 2px solid transparent;
  padding-left: 10px;
  margin-left: -10px;
}

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

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #d0d0d0;
  font-size: 0.9rem;
}

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

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

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

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

.payment-methods {
  margin-top: 25px;
}

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

.payment-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d0d0d0;
  font-size: 0.85rem;
}

.payment-icon i {
  color: #ffd700;
  font-size: 1rem;
  width: 18px;
}

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

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

.copyright p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin: 0;
  margin-bottom: 5px;
}

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

.disclaimer {
  font-size: 0.8rem !important;
  color: #888888 !important;
}

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

.certificate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #d0d0d0;
  font-size: 0.8rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 35px;
  }
  
  .footer-content .footer-section:nth-child(3) {
    grid-column: span 1;
  }
  
  .footer-content .footer-section:nth-child(4) {
    grid-column: span 1;
  }
  
  .footer-content .footer-section:nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 50px 0;
  }
  
  .footer-content .footer-section:nth-child(1) {
    grid-column: span 2;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .footer-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .footer-feature {
    flex: 1;
    min-width: 150px;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .footer-menu {
    gap: 10px;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  .contact-item {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  
  .social-links {
    gap: 12px;
    margin-bottom: 15px;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .payment-icons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .payment-icon {
    font-size: 0.8rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .certificates {
    gap: 15px;
  }
  
  .certificate {
    font-size: 0.75rem;
  }
  
  .certificate i {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 10px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 40px 0;
  }
  
  .footer-content .footer-section:nth-child(1) {
    grid-column: span 1;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-logo-tagline {
    font-size: 0.8rem;
  }
  
  .footer-description {
    font-size: 0.85rem;
  }
  
  .footer-features {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-feature {
    font-size: 0.85rem;
  }
  
  .footer-title {
    font-size: 1rem;
  }
  
  .footer-link {
    font-size: 0.85rem;
  }
  
  .contact-item {
    font-size: 0.8rem;
    gap: 10px;
  }
  
  .social-links {
    gap: 10px;
    justify-content: center;
  }
  
  .social-link {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .payment-title {
    font-size: 0.9rem;
  }
  
  .payment-icon {
    font-size: 0.75rem;
  }
  
  .footer-bottom {
    padding: 25px 0;
  }
  
  .copyright p {
    font-size: 0.8rem;
  }
  
  .disclaimer {
    font-size: 0.7rem !important;
  }
  
  .certificates {
    gap: 12px;
  }
  
  .certificate {
    font-size: 0.7rem;
  }
  
  .certificate i {
    font-size: 1.1rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  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;
  padding: 12px 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255, 215, 0, 0.2);
  min-height: 70px;
  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, 215, 0, 0.2), transparent);
  transition: left 0.6s ease;
}

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

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

.sticky-btn span {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.login-btn {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
  border-left: 3px solid #3498db;
}

.login-btn:hover {
  background: rgba(52, 152, 219, 0.2);
  color: #5dade2;
  transform: translateY(-2px);
}

.register-btn {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  border-left: 3px solid #2ecc71;
}

.register-btn:hover {
  background: rgba(46, 204, 113, 0.2);
  color: #58d68d;
  transform: translateY(-2px);
}

.credit-btn {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  border-left: 3px solid #ffd700;
  position: relative;
}

.credit-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 8px;
  width: 6px;
  height: 6px;
  background: #ff4757;
  border-radius: 50%;
  transform: translateY(-50%);
  animation: pulse 2s infinite;
}

.credit-btn:hover {
  background: rgba(255, 215, 0, 0.25);
  color: #ffed4e;
  transform: translateY(-2px);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translateY(-50%) scale(1.2);
  }
}

/* Active state effects */
.sticky-btn:active {
  transform: translateY(1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 10px 6px;
    min-height: 65px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    min-height: 60px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
    line-height: 1.1;
  }
  
  .credit-btn::after {
    width: 5px;
    height: 5px;
    right: 6px;
  }
}

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

/* Ensure content doesn't hide behind sticky buttons */
body {
  padding-bottom: 70px;
}

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

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

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

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

.login-page-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;
}

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

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

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

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

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

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

.login-title {
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 8px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.error-message {
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ff4757;
  font-size: 0.9rem;
  animation: slideInDown 0.3s ease-out;
}

.error-message i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.form-input.error {
  border-color: #ff4757;
  background: rgba(255, 71, 87, 0.05);
}

.form-input.success {
  border-color: #2ecc71;
  background: rgba(46, 204, 113, 0.05);
}

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

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

.field-error {
  color: #ff4757;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

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

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

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

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

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  color: #d0d0d0;
  font-size: 0.9rem;
}

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

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

.login-button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.login-button:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

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

.button-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

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

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

.divider-text {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  color: #888888;
  padding: 0 15px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

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

.register-button:hover {
  background: #ffd700;
  color: #000000;
  transform: translateY(-2px);
}

.additional-links {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.back-home-link,
.help-link {
  flex: 1;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #d0d0d0;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.back-home-link:hover,
.help-link:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  transform: translateY(-2px);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-page-section {
    padding: 15px;
  }
  
  .login-form-wrapper {
    padding: 30px;
    max-width: 100%;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 14px 14px 14px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 0.9rem;
  }
  
  .password-toggle {
    right: 12px;
  }
  
  .login-button {
    padding: 15px;
    font-size: 1rem;
  }
  
  .register-button {
    padding: 13px;
    font-size: 0.95rem;
  }
  
  .additional-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .login-page-section {
    padding: 10px;
  }
  
  .login-form-wrapper {
    padding: 25px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-input {
    padding: 12px 12px 12px 38px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 10px;
    font-size: 0.85rem;
  }
  
  .password-toggle {
    right: 10px;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .login-button {
    padding: 14px;
    font-size: 0.95rem;
  }
  
  .register-button {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .checkbox-text,
  .forgot-link {
    font-size: 0.85rem;
  }
  
  .back-home-link,
  .help-link {
    padding: 8px;
    font-size: 0.85rem;
  }
}

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

.register-page-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;
}

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

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

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

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

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

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

.register-title {
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 8px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.error-message {
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ff4757;
  font-size: 0.9rem;
  animation: slideInDown 0.3s ease-out;
}

.success-message {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2ecc71;
  font-size: 0.9rem;
  animation: slideInDown 0.3s ease-out;
}

.error-message i,
.success-message i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.form-input.error {
  border-color: #ff4757;
  background: rgba(255, 71, 87, 0.05);
}

.form-input.success {
  border-color: #2ecc71;
  background: rgba(46, 204, 113, 0.05);
}

.field-error {
  color: #ff4757;
  font-size: 0.85rem;
  margin-bottom: 5px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.field-help {
  color: #888888;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}

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

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

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

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

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

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

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  color: #d0d0d0;
  font-size: 0.9rem;
  flex: 1;
}

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

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

.register-button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.register-button:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

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

.button-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

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

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

.divider-text {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  color: #888888;
  padding: 0 15px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

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

.login-button:hover {
  background: #ffd700;
  color: #000000;
  transform: translateY(-2px);
}

.additional-links {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.back-home-link,
.help-link {
  flex: 1;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #d0d0d0;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.back-home-link:hover,
.help-link:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  transform: translateY(-2px);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .register-page-section {
    padding: 15px;
  }
  
  .register-form-wrapper {
    padding: 30px;
    max-width: 100%;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 14px 14px 14px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 0.9rem;
  }
  
  .register-button {
    padding: 15px;
    font-size: 1rem;
  }
  
  .login-button {
    padding: 13px;
    font-size: 0.95rem;
  }
  
  .additional-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .register-page-section {
    padding: 10px;
  }
  
  .register-form-wrapper {
    padding: 25px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-input {
    padding: 12px 12px 12px 38px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 10px;
    font-size: 0.85rem;
  }
  
  .register-button {
    padding: 14px;
    font-size: 0.95rem;
  }
  
  .login-button {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .checkbox-text {
    font-size: 0.85rem;
  }
  
  .back-home-link,
  .help-link {
    padding: 8px;
    font-size: 0.85rem;
  }
  
  .field-help {
    font-size: 0.75rem;
  }
}

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

.hero-promotion-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;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  width: 100%;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

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

.highlight-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.highlight-item i {
  font-size: 2.5rem;
  color: #ffd700;
}

.highlight-item span {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
}

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

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

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

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

.promotion-card.featured {
  border: 2px solid rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  position: relative;
}

.promotion-card.featured::before {
  content: 'แนะนำ';
  position: absolute;
  top: -10px;
  right: 30px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  padding: 8px 20px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

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

.promotion-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

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

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

.promotion-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.6;
  padding: 10px 0;
}

.promotion-list li i {
  color: #2ecc71;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

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

.promotion-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
  padding: 15px 30px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  min-width: 150px;
}

.cta-button:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-highlights {
    gap: 30px;
  }
  
  .promotion-card {
    padding: 35px;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .hero-promotion-section {
    padding: 100px 15px 60px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-highlights {
    gap: 20px;
  }
  
  .highlight-item {
    padding: 15px;
  }
  
  .highlight-item i {
    font-size: 2rem;
  }
  
  .highlight-item span {
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 40px 15px;
  }
  
  .promotion-card {
    padding: 25px;
  }
  
  .promotion-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .promotion-icon {
    width: 50px;
    height: 50px;
  }
  
  .promotion-icon i {
    font-size: 1.5rem;
  }
  
  .promotion-title {
    font-size: 1.4rem;
    text-align: center;
  }
  
  .promotion-list li {
    font-size: 1rem;
    gap: 10px;
  }
  
  .promotion-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .promotion-amount {
    font-size: 1.8rem;
  }
  
  .cta-button {
    width: 100%;
    max-width: 250px;
    padding: 14px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-promotion-section {
    padding: 90px 10px 50px;
  }
  
  .hero-title {
    font-size: 1.9rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-highlights {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .highlight-item {
    width: 100%;
    max-width: 250px;
    padding: 12px;
  }
  
  .highlight-item i {
    font-size: 1.8rem;
  }
  
  .highlight-item span {
    font-size: 0.95rem;
  }
  
  .promotion-section {
    padding: 30px 10px;
  }
  
  .promotion-card {
    padding: 20px;
  }
  
  .promotion-card.featured::before {
    right: 15px;
    padding: 6px 15px;
    font-size: 0.75rem;
  }
  
  .promotion-icon {
    width: 45px;
    height: 45px;
  }
  
  .promotion-icon i {
    font-size: 1.3rem;
  }
  
  .promotion-title {
    font-size: 1.2rem;
  }
  
  .promotion-list li {
    font-size: 0.95rem;
    gap: 8px;
  }
  
  .promotion-list li i {
    font-size: 0.9rem;
  }
  
  .promotion-amount {
    font-size: 1.6rem;
  }
  
  .cta-button {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}