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

body {
  font-family: 'Sarabun', sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0a0a0a;
  overflow-x: hidden;
}

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

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

a:hover {
  color: #ff8a65;
}

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35, #ff8a65);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff8a65, #ffab91);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #ffffff;
}

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

.btn-secondary:hover {
  background: #ff6b35;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 138, 101, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

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

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

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #cccccc;
  line-height: 1.8;
}

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

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

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

.feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
}

.feature i {
  font-size: 24px;
  color: #ff6b35;
}

.feature span {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 60px 20px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 16px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  .hero-description {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .feature {
    padding: 16px;
  }
  
  .feature i {
    font-size: 20px;
  }
  
  .feature span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 30px 12px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-description {
    font-size: 14px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .feature {
    flex-direction: row;
    justify-content: center;
    padding: 12px;
  }
  
  .feature i {
    font-size: 18px;
  }
  
  .feature span {
    font-size: 11px;
  }
}

/* Header Styles */
.main-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  border-bottom: 1px solid rgba(255, 107, 53, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

/* Logo Styles */
.logo {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.logo-link i {
  font-size: 28px;
  color: #ff6b35;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Desktop Navigation */
.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav-item {
  position: relative;
}

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

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

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

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

/* Header CTA Button */
.header-cta {
  flex-shrink: 0;
}

.btn-cta {
  background: linear-gradient(135deg, #ff6b35, #ff8a65);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #ff8a65, #ffab91);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #ffffff;
}

.btn-cta i {
  font-size: 14px;
}

/* Mobile Menu Toggle */
.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;
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  border-left: 1px solid rgba(255, 107, 53, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

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

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

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

.mobile-logo i {
  font-size: 24px;
  color: #ff6b35;
}

.mobile-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  color: #ff6b35;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.5);
}

/* Mobile Navigation */
.mobile-nav {
  padding: 20px 0;
}

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

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Sarabun', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
}

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

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px;
  padding: 15px;
  background: linear-gradient(135deg, #ff6b35, #ff8a65);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Sarabun', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav-cta:hover {
  background: linear-gradient(135deg, #ff8a65, #ffab91);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #ffffff;
}

.mobile-nav-cta i {
  font-size: 16px;
  color: #ffffff;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 16px;
  }
  
  .nav-menu {
    gap: 30px;
  }
  
  .nav-link {
    font-size: 15px;
  }
  
  .btn-cta {
    font-size: 13px;
    padding: 10px 16px;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-content {
    height: 60px;
  }
  
  .logo-link i {
    font-size: 24px;
  }
  
  .logo-text {
    font-size: 20px;
  }
  
  .mobile-menu {
    width: 280px;
  }
  
  body {
    padding-top: 60px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 12px;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .mobile-menu-header {
    padding: 16px;
  }
  
  .mobile-logo i {
    font-size: 20px;
  }
  
  .mobile-logo-text {
    font-size: 18px;
  }
  
  .mobile-nav-link {
    padding: 16px;
    font-size: 15px;
  }
  
  .mobile-nav-cta {
    margin: 16px;
    padding: 12px;
    font-size: 15px;
  }
}

/* About Section */
.about-section {
  background: linear-gradient(180deg, #1a1a1a 0%, #252525 50%, #1a1a1a 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 20% 70%, rgba(255, 138, 101, 0.06) 0%, transparent 50%);
  z-index: 1;
}

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

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

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

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

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

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

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

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.feature-card i {
  font-size: 28px;
  color: #ff6b35;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.feature-card p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.additional-info {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.additional-info p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

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

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out;
}

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

.about-img:hover {
  transform: scale(1.05) rotate(1deg);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .about-section {
    padding: 60px 20px;
  }
  
  .about-content {
    gap: 40px;
  }
  
  .about-title {
    font-size: 32px;
  }
  
  .features-grid {
    gap: 16px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-card i {
    font-size: 24px;
  }
  
  .feature-card h3 {
    font-size: 16px;
  }
  
  .feature-card p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 16px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
  }
  
  .about-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .about-description p {
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }
  
  .feature-card {
    padding: 20px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .feature-card i {
    font-size: 24px;
    margin-bottom: 0;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .feature-card div {
    flex: 1;
  }
  
  .feature-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .feature-card p {
    font-size: 14px;
  }
  
  .additional-info {
    padding: 25px;
  }
  
  .additional-info p {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 30px 12px;
  }
  
  .about-title {
    font-size: 24px;
  }
  
  .about-description p {
    font-size: 14px;
  }
  
  .feature-card {
    padding: 16px;
    gap: 12px;
  }
  
  .feature-card i {
    font-size: 20px;
  }
  
  .feature-card h3 {
    font-size: 15px;
  }
  
  .feature-card p {
    font-size: 13px;
  }
  
  .additional-info {
    padding: 20px;
  }
  
  .additional-info p {
    font-size: 13px;
  }
}

/* Login System Section */
.login-system-section {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 50%, #2c2c2c 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.login-system-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(255, 138, 101, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

.login-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: flex-start;
}

.login-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInLeft 1s ease-out;
}

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

.login-img:hover {
  transform: scale(1.03) rotate(-1deg);
}

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

.login-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffffff;
  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: 16px;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.login-description a {
  color: #ff6b35;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.login-description a:hover {
  color: #ff8a65;
}

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

.security-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.security-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.security-card:hover::before {
  opacity: 1;
}

.security-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.security-card i {
  font-size: 24px;
  color: #ff6b35;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.security-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.security-card p {
  font-size: 13px;
  color: #cccccc;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.deposit-withdrawal-info {
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.deposit-withdrawal-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 15px;
  text-align: center;
}

.deposit-withdrawal-info p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

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

.transaction-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

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

.highlight-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateX(5px);
}

.highlight-item i {
  font-size: 18px;
  color: #ff6b35;
  flex-shrink: 0;
}

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

.login-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .login-system-section {
    padding: 60px 20px;
  }
  
  .login-content {
    gap: 40px;
  }
  
  .login-title {
    font-size: 28px;
  }
  
  .security-features {
    gap: 16px;
  }
  
  .security-card {
    padding: 16px;
  }
  
  .security-card i {
    font-size: 20px;
  }
  
  .security-card h3 {
    font-size: 15px;
  }
  
  .security-card p {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .login-system-section {
    padding: 40px 16px;
  }
  
  .login-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .login-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .login-description p {
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  .security-features {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }
  
  .security-card {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
  }
  
  .security-card i {
    font-size: 22px;
    margin-bottom: 0;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .security-card div {
    flex: 1;
  }
  
  .security-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  .security-card p {
    font-size: 14px;
  }
  
  .deposit-withdrawal-info {
    padding: 25px;
    margin-bottom: 25px;
  }
  
  .deposit-withdrawal-info h3 {
    font-size: 18px;
  }
  
  .deposit-withdrawal-info p {
    font-size: 14px;
  }
  
  .transaction-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 30px;
  }
  
  .highlight-item {
    padding: 12px;
  }
  
  .highlight-item i {
    font-size: 16px;
  }
  
  .highlight-item span {
    font-size: 13px;
  }
  
  .login-actions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .login-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .login-system-section {
    padding: 30px 12px;
  }
  
  .login-title {
    font-size: 22px;
  }
  
  .login-description p {
    font-size: 14px;
  }
  
  .security-card {
    padding: 16px;
    gap: 12px;
  }
  
  .security-card i {
    font-size: 20px;
  }
  
  .security-card h3 {
    font-size: 15px;
  }
  
  .security-card p {
    font-size: 13px;
  }
  
  .deposit-withdrawal-info {
    padding: 20px;
  }
  
  .deposit-withdrawal-info h3 {
    font-size: 16px;
  }
  
  .deposit-withdrawal-info p {
    font-size: 13px;
  }
  
  .highlight-item {
    padding: 10px;
    gap: 10px;
  }
  
  .highlight-item i {
    font-size: 15px;
  }
  
  .highlight-item span {
    font-size: 12px;
  }
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(180deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 60% 40%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 30% 80%, rgba(255, 138, 101, 0.06) 0%, transparent 50%);
  z-index: 1;
}

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

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

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

.reviews-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

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

.reviews-description p {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.pantip-highlights {
  margin-bottom: 40px;
}

.highlight-box {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.highlight-box:hover::before {
  opacity: 1;
}

.highlight-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.highlight-box i {
  font-size: 32px;
  color: #ff6b35;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.highlight-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.highlight-box p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.additional-reviews {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.additional-reviews p {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 18px;
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateX(5px);
}

.trust-item i {
  font-size: 20px;
  color: #ff6b35;
  flex-shrink: 0;
}

.trust-item span {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
}

.reviews-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  animation: fadeInRight 1s ease-out;
}

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

.reviews-img:hover {
  transform: scale(1.03) rotate(-1deg);
}

.review-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  width: 100%;
}

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

.stat-card:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-2px);
}

.stat-card i {
  font-size: 24px;
  color: #ff6b35;
  flex-shrink: 0;
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .reviews-section {
    padding: 60px 20px;
  }
  
  .reviews-content {
    gap: 40px;
  }
  
  .reviews-title {
    font-size: 28px;
  }
  
  .highlight-box {
    padding: 20px;
  }
  
  .highlight-box i {
    font-size: 28px;
  }
  
  .highlight-box h3 {
    font-size: 18px;
  }
  
  .additional-reviews {
    padding: 25px;
  }
  
  .trust-item {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 40px 16px;
  }
  
  .reviews-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .reviews-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .reviews-description p {
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  .highlight-box {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .highlight-box i {
    font-size: 28px;
  }
  
  .highlight-box h3 {
    font-size: 18px;
  }
  
  .highlight-box p {
    font-size: 14px;
  }
  
  .additional-reviews {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .additional-reviews p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .trust-features {
    gap: 12px;
  }
  
  .trust-item {
    padding: 15px;
  }
  
  .trust-item i {
    font-size: 18px;
  }
  
  .trust-item span {
    font-size: 13px;
  }
  
  .review-stats {
    gap: 12px;
  }
  
  .stat-card {
    padding: 16px;
  }
  
  .stat-card i {
    font-size: 20px;
  }
  
  .stat-number {
    font-size: 18px;
  }
  
  .stat-label {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .reviews-section {
    padding: 30px 12px;
  }
  
  .reviews-title {
    font-size: 20px;
  }
  
  .reviews-description p {
    font-size: 14px;
  }
  
  .highlight-box {
    padding: 16px;
  }
  
  .highlight-box i {
    font-size: 24px;
  }
  
  .highlight-box h3 {
    font-size: 16px;
  }
  
  .highlight-box p {
    font-size: 13px;
  }
  
  .additional-reviews {
    padding: 16px;
  }
  
  .additional-reviews p {
    font-size: 13px;
  }
  
  .trust-item {
    padding: 12px;
    gap: 12px;
  }
  
  .trust-item i {
    font-size: 16px;
  }
  
  .trust-item span {
    font-size: 12px;
  }
  
  .stat-card {
    padding: 14px;
  }
  
  .stat-card i {
    font-size: 18px;
  }
  
  .stat-number {
    font-size: 16px;
  }
  
  .stat-label {
    font-size: 10px;
  }
}

/* Customer Service Section */
.customer-service-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.customer-service-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 40% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(255, 138, 101, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

.service-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

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

.service-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

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

.service-description p {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.feature-item i {
  font-size: 28px;
  color: #ff6b35;
  flex-shrink: 0;
  margin-top: 5px;
  position: relative;
  z-index: 2;
}

.feature-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.feature-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
}

.payment-info {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.payment-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 15px;
  text-align: center;
}

.payment-info p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.8;
  text-align: justify;
}

.quality-assurance {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.quality-assurance p {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.8;
  text-align: justify;
}

.quality-assurance a {
  color: #ff6b35;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.quality-assurance a:hover {
  color: #ff8a65;
}

.customer-satisfaction {
  border-left: 4px solid #ff6b35;
  padding-left: 20px;
  margin-bottom: 30px;
}

.customer-satisfaction h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 15px;
}

.customer-satisfaction p {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

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

.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-2px);
}

.contact-item i {
  font-size: 20px;
  color: #ff6b35;
}

.contact-item span {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}

.service-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  animation: fadeInRight 1s ease-out;
}

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

.service-img:hover {
  transform: scale(1.03) rotate(1deg);
}

.service-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  width: 100%;
}

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

.stat-box:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateX(-3px);
}

.stat-box i {
  font-size: 24px;
  color: #ff6b35;
  flex-shrink: 0;
}

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

.stat-number {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .customer-service-section {
    padding: 60px 20px;
  }
  
  .service-content {
    gap: 40px;
  }
  
  .service-title {
    font-size: 28px;
  }
  
  .feature-item {
    padding: 20px;
  }
  
  .feature-item i {
    font-size: 24px;
  }
  
  .feature-content h3 {
    font-size: 16px;
  }
  
  .payment-info {
    padding: 20px;
  }
  
  .quality-assurance {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .customer-service-section {
    padding: 40px 16px;
  }
  
  .service-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .service-description p {
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  .service-features {
    gap: 16px;
    margin-bottom: 30px;
  }
  
  .feature-item {
    padding: 20px;
    gap: 15px;
  }
  
  .feature-item i {
    font-size: 24px;
  }
  
  .feature-content h3 {
    font-size: 16px;
  }
  
  .feature-content p {
    font-size: 13px;
  }
  
  .payment-info {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .payment-info h3 {
    font-size: 18px;
  }
  
  .payment-info p {
    font-size: 14px;
  }
  
  .quality-assurance {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .quality-assurance p {
    font-size: 14px;
  }
  
  .customer-satisfaction {
    margin-bottom: 25px;
  }
  
  .customer-satisfaction h3 {
    font-size: 16px;
  }
  
  .customer-satisfaction p {
    font-size: 14px;
  }
  
  .contact-channels {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .contact-item {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 12px;
  }
  
  .contact-item i {
    font-size: 18px;
  }
  
  .contact-item span {
    font-size: 13px;
  }
  
  .service-stats {
    gap: 12px;
  }
  
  .stat-box {
    padding: 16px;
  }
  
  .stat-box i {
    font-size: 20px;
  }
  
  .stat-number {
    font-size: 16px;
  }
  
  .stat-label {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .customer-service-section {
    padding: 30px 12px;
  }
  
  .service-title {
    font-size: 20px;
  }
  
  .service-description p {
    font-size: 14px;
  }
  
  .feature-item {
    padding: 16px;
    gap: 12px;
  }
  
  .feature-item i {
    font-size: 20px;
  }
  
  .feature-content h3 {
    font-size: 15px;
  }
  
  .feature-content p {
    font-size: 12px;
  }
  
  .payment-info {
    padding: 16px;
  }
  
  .payment-info h3 {
    font-size: 16px;
  }
  
  .payment-info p {
    font-size: 13px;
  }
  
  .quality-assurance {
    padding: 16px;
  }
  
  .quality-assurance p {
    font-size: 13px;
  }
  
  .customer-satisfaction h3 {
    font-size: 15px;
  }
  
  .customer-satisfaction p {
    font-size: 13px;
  }
  
  .contact-item {
    padding: 12px;
    gap: 10px;
  }
  
  .contact-item i {
    font-size: 16px;
  }
  
  .contact-item span {
    font-size: 12px;
  }
  
  .stat-box {
    padding: 14px;
  }
  
  .stat-box i {
    font-size: 18px;
  }
  
  .stat-number {
    font-size: 15px;
  }
  
  .stat-label {
    font-size: 9px;
  }
}

/* Promotions Section */
.promotions-section {
  background: linear-gradient(180deg, #2c2c2c 0%, #1a1a1a 50%, #2c2c2c 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.promotions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 80% 20%, rgba(255, 138, 101, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

.promotions-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: flex-start;
}

.promotions-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  animation: fadeInLeft 1s ease-out;
}

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

.promotions-img:hover {
  transform: scale(1.03) rotate(1deg);
}

.bonus-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  width: 100%;
}

.bonus-card {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.bonus-card:hover::before {
  opacity: 1;
}

.bonus-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.bonus-card i {
  font-size: 24px;
  color: #ff6b35;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.bonus-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 2;
}

.bonus-amount {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.bonus-label {
  font-size: 11px;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

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

.promotions-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

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

.promotions-description p {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

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

.bonus-type {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.bonus-type:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-2px);
}

.bonus-type i {
  font-size: 22px;
  color: #ff6b35;
  flex-shrink: 0;
  margin-top: 2px;
}

.type-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.type-content p {
  font-size: 13px;
  color: #cccccc;
  line-height: 1.5;
}

.special-promotions {
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.special-promotions h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 15px;
  text-align: center;
}

.special-promotions p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.8;
  text-align: justify;
}

.free-credit-info {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.free-credit-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 15px;
}

.free-credit-info p {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.8;
  text-align: justify;
}

.loyalty-program {
  border-left: 4px solid #ff6b35;
  padding-left: 20px;
  margin-bottom: 30px;
}

.loyalty-program h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 15px;
}

.loyalty-program p {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.8;
  text-align: justify;
}

.promotion-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

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

.promo-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateX(5px);
}

.promo-item i {
  font-size: 16px;
  color: #ff6b35;
  flex-shrink: 0;
}

.promo-item span {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
}

.tournament-info {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.tournament-info p {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

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

.tournament-info a {
  color: #ff6b35;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.tournament-info a:hover {
  color: #ff8a65;
}

.promotion-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .promotions-section {
    padding: 60px 20px;
  }
  
  .promotions-content {
    gap: 40px;
  }
  
  .promotions-title {
    font-size: 28px;
  }
  
  .bonus-types {
    gap: 16px;
  }
  
  .bonus-type {
    padding: 16px;
  }
  
  .bonus-type i {
    font-size: 20px;
  }
  
  .type-content h3 {
    font-size: 15px;
  }
  
  .type-content p {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .promotions-section {
    padding: 40px 16px;
  }
  
  .promotions-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .promotions-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .promotions-description p {
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  .bonus-types {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }
  
  .bonus-type {
    padding: 16px;
  }
  
  .bonus-type i {
    font-size: 20px;
  }
  
  .type-content h3 {
    font-size: 15px;
  }
  
  .type-content p {
    font-size: 13px;
  }
  
  .special-promotions {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .special-promotions h3 {
    font-size: 16px;
  }
  
  .special-promotions p {
    font-size: 14px;
  }
  
  .free-credit-info {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .free-credit-info h3 {
    font-size: 16px;
  }
  
  .free-credit-info p {
    font-size: 14px;
  }
  
  .loyalty-program {
    margin-bottom: 25px;
  }
  
  .loyalty-program h3 {
    font-size: 16px;
  }
  
  .loyalty-program p {
    font-size: 14px;
  }
  
  .promotion-list {
    gap: 10px;
    margin-bottom: 25px;
  }
  
  .promo-item {
    padding: 12px;
  }
  
  .promo-item i {
    font-size: 15px;
  }
  
  .promo-item span {
    font-size: 13px;
  }
  
  .tournament-info {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .tournament-info p {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .promotion-actions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .promotion-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .bonus-highlights {
    gap: 12px;
  }
  
  .bonus-card {
    padding: 16px;
  }
  
  .bonus-card i {
    font-size: 20px;
  }
  
  .bonus-amount {
    font-size: 16px;
  }
  
  .bonus-label {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .promotions-section {
    padding: 30px 12px;
  }
  
  .promotions-title {
    font-size: 20px;
  }
  
  .promotions-description p {
    font-size: 14px;
  }
  
  .bonus-type {
    padding: 14px;
    gap: 12px;
  }
  
  .bonus-type i {
    font-size: 18px;
  }
  
  .type-content h3 {
    font-size: 14px;
  }
  
  .type-content p {
    font-size: 12px;
  }
  
  .special-promotions {
    padding: 16px;
  }
  
  .special-promotions h3 {
    font-size: 15px;
  }
  
  .special-promotions p {
    font-size: 13px;
  }
  
  .free-credit-info {
    padding: 16px;
  }
  
  .free-credit-info h3 {
    font-size: 15px;
  }
  
  .free-credit-info p {
    font-size: 13px;
  }
  
  .loyalty-program h3 {
    font-size: 15px;
  }
  
  .loyalty-program p {
    font-size: 13px;
  }
  
  .promo-item {
    padding: 10px;
    gap: 12px;
  }
  
  .promo-item i {
    font-size: 14px;
  }
  
  .promo-item span {
    font-size: 12px;
  }
  
  .tournament-info {
    padding: 16px;
  }
  
  .tournament-info p {
    font-size: 13px;
  }
  
  .bonus-card {
    padding: 14px;
    gap: 12px;
  }
  
  .bonus-card i {
    font-size: 18px;
  }
  
  .bonus-amount {
    font-size: 15px;
  }
  
  .bonus-label {
    font-size: 9px;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(255, 138, 101, 0.03) 0%, transparent 50%);
  z-index: 1;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 60px 20px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Footer Brand Section */
.footer-brand {
  padding-right: 20px;
}

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

.footer-logo i {
  font-size: 32px;
  color: #ff6b35;
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-description {
  font-size: 14px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 25px;
  text-align: justify;
}

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

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

.footer-feature i {
  font-size: 14px;
  color: #ff6b35;
  width: 16px;
  text-align: center;
}

/* Footer Titles */
.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

/* Footer Links */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.footer-links li a:hover {
  color: #ff6b35;
  transform: translateX(5px);
}

.footer-links li a i {
  font-size: 14px;
  color: #ff6b35;
  width: 16px;
  text-align: center;
}

/* Contact Info */
.contact-info {
  margin-bottom: 25px;
}

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

.contact-item i {
  font-size: 16px;
  color: #ff6b35;
  width: 20px;
  text-align: center;
}

/* Social Media */
.social-media {
  display: flex;
  gap: 15px;
}

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

.social-link:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.5);
  color: #ff6b35;
  transform: translateY(-2px);
}

.social-link i {
  font-size: 16px;
}

/* Footer Bottom */
.footer-bottom {
  padding: 30px 20px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright p {
  font-size: 14px;
  color: #cccccc;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  font-size: 13px;
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ff6b35;
}

/* Footer Disclaimers */
.footer-disclaimers {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.disclaimer-text {
  font-size: 12px;
  color: #aaaaaa;
  line-height: 1.6;
  margin: 0 0 10px 0;
  text-align: center;
}

.disclaimer-text:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 50px 16px 30px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 20px;
  }
  
  .footer-features {
    flex-direction: row;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 40px 16px 25px;
  }
  
  .footer-brand {
    text-align: center;
    margin-bottom: 15px;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-logo i {
    font-size: 28px;
  }
  
  .footer-logo-text {
    font-size: 24px;
  }
  
  .footer-features {
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-title {
    font-size: 16px;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links {
    align-items: center;
  }
  
  .contact-info {
    text-align: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .social-media {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 30px 12px 20px;
  }
  
  .footer-logo i {
    font-size: 24px;
  }
  
  .footer-logo-text {
    font-size: 20px;
  }
  
  .footer-description {
    font-size: 13px;
  }
  
  .footer-title {
    font-size: 15px;
  }
  
  .footer-links li a {
    font-size: 13px;
  }
  
  .contact-item {
    font-size: 13px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .social-link i {
    font-size: 14px;
  }
  
  .footer-bottom {
    padding: 20px 12px;
  }
  
  .copyright p {
    font-size: 12px;
  }
  
  .footer-legal a {
    font-size: 11px;
  }
  
  .footer-disclaimers {
    padding: 15px;
  }
  
  .disclaimer-text {
    font-size: 11px;
  }
}

/* Sticky Bottom Buttons */
.sticky-bottom-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 999;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  border-top: 1px solid rgba(255, 107, 53, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.sticky-btn:hover::before {
  opacity: 1;
}

.sticky-btn i {
  font-size: 18px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.sticky-btn-text {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Login Button */
.sticky-btn-login {
  background: linear-gradient(135deg, #2c2c2c, #404040);
  color: #ffffff;
}

.sticky-btn-login::before {
  background: linear-gradient(135deg, #404040, #555555);
}

.sticky-btn-login:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.sticky-btn-login i {
  color: #60a5fa;
}

/* Register Button */
.sticky-btn-register {
  background: linear-gradient(135deg, #166534, #15803d);
  color: #ffffff;
}

.sticky-btn-register::before {
  background: linear-gradient(135deg, #15803d, #16a34a);
}

.sticky-btn-register:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.sticky-btn-register i {
  color: #86efac;
}

/* Credit Button */
.sticky-btn-credit {
  background: linear-gradient(135deg, #ff6b35, #ff8a65);
  color: #ffffff;
}

.sticky-btn-credit::before {
  background: linear-gradient(135deg, #ff8a65, #ffab91);
}

.sticky-btn-credit:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.sticky-btn-credit i {
  color: #ffd54f;
}

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

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    gap: 2px;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 14px;
  }
  
  .sticky-btn-text {
    font-size: 9px;
    letter-spacing: 0.2px;
  }
}

/* Add bottom padding to body to prevent content from being hidden behind sticky buttons */
body {
  padding-bottom: 60px;
}

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

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

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 138, 101, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

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

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

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

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

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

.login-form-container {
  width: 100%;
}

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.login-subtitle {
  font-size: 14px;
  color: #cccccc;
  text-align: center;
  margin-bottom: 30px;
}

/* Error Message */
.error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: errorShake 0.5s ease-in-out;
}

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

.error-message i {
  color: #ef4444;
  font-size: 16px;
}

.error-message span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

/* Form Styles */
.login-form {
  width: 100%;
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: 'Sarabun', sans-serif;
}

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

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6b35;
  font-size: 16px;
  z-index: 2;
}

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

.form-input:focus {
  outline: none;
  border-color: rgba(255, 107, 53, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input::placeholder {
  color: #888888;
  font-size: 14px;
}

.form-input.error {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.05);
}

.form-input.success {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.05);
}

.password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #888888;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s ease;
  z-index: 2;
}

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

.field-error {
  color: #ef4444;
  font-size: 12px;
  margin-top: 6px;
  min-height: 18px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.field-error::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background: #ef4444;
  color: #ffffff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: bold;
}

.field-error:empty::before {
  display: none;
}

/* Submit Button */
.login-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ff6b35, #ff8a65);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Sarabun', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.login-submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #ff8a65, #ffab91);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

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

.login-submit-btn i {
  font-size: 16px;
}

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

.btn-loader i {
  color: #ffffff;
  font-size: 16px;
}

/* Login Footer */
.login-footer {
  text-align: center;
}

.register-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.register-link:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  color: #ff6b35;
  transform: translateY(-2px);
}

.register-link i {
  color: #ff6b35;
  font-size: 14px;
}

.forgot-password {
  margin-top: 10px;
}

.forgot-link {
  color: #888888;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 70px 16px 20px;
  }
  
  .login-wrapper {
    padding: 30px 25px;
    border-radius: 15px;
  }
  
  .login-title {
    font-size: 24px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 14px 14px 14px 45px;
    font-size: 15px;
  }
  
  .input-icon {
    left: 14px;
    font-size: 14px;
  }
  
  .password-toggle {
    right: 14px;
    font-size: 14px;
  }
  
  .login-submit-btn {
    padding: 14px;
    font-size: 15px;
  }
  
  .register-link {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 60px 12px 20px;
  }
  
  .login-wrapper {
    padding: 25px 20px;
    max-width: 100%;
  }
  
  .login-title {
    font-size: 22px;
  }
  
  .login-subtitle {
    font-size: 13px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 12px 12px 40px;
    font-size: 14px;
  }
  
  .input-icon {
    left: 12px;
    font-size: 13px;
  }
  
  .password-toggle {
    right: 12px;
    font-size: 13px;
  }
  
  .form-label {
    font-size: 13px;
  }
  
  .login-submit-btn {
    padding: 12px;
    font-size: 14px;
  }
  
  .register-link {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .forgot-link {
    font-size: 12px;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 138, 101, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

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

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

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

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

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

.register-form-container {
  width: 100%;
}

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.register-subtitle {
  font-size: 14px;
  color: #cccccc;
  text-align: center;
  margin-bottom: 30px;
}

/* Error and Success Messages */
.error-message, .success-message {
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: messageShake 0.5s ease-in-out;
}

.error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.success-message {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

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

.error-message i {
  color: #ef4444;
  font-size: 16px;
}

.success-message i {
  color: #22c55e;
  font-size: 16px;
}

.error-message span, .success-message span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

/* Form Styles */
.register-form {
  width: 100%;
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: 'Sarabun', sans-serif;
}

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

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6b35;
  font-size: 16px;
  z-index: 2;
}

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

.form-input:focus {
  outline: none;
  border-color: rgba(255, 107, 53, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input::placeholder {
  color: #888888;
  font-size: 14px;
}

.form-input.error {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.05);
}

.form-input.success {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.05);
}

.field-error {
  color: #ef4444;
  font-size: 12px;
  margin-top: 6px;
  min-height: 18px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.field-error::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background: #ef4444;
  color: #ffffff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: bold;
}

.field-error:empty::before {
  display: none;
}

.field-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 12px;
  color: #888888;
}

.field-hint i {
  color: #60a5fa;
  font-size: 11px;
}

/* Terms Checkbox */
.terms-checkbox {
  margin-bottom: 24px;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  line-height: 1.5;
}

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

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

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, #ff6b35, #ff8a65);
  border-color: #ff6b35;
}

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

.checkbox-text {
  font-size: 13px;
  color: #cccccc;
  flex: 1;
}

.terms-link, .privacy-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
}

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

/* Submit Button */
.register-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ff6b35, #ff8a65);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Sarabun', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.register-submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #ff8a65, #ffab91);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

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

.register-submit-btn i {
  font-size: 16px;
}

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

.btn-loader i {
  color: #ffffff;
  font-size: 16px;
}

/* Register Footer */
.register-footer {
  text-align: center;
}

.login-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid #ff6b35;
  border-radius: 10px;
  color: #ff6b35;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.login-link:hover {
  background: #ff6b35;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.login-link i {
  font-size: 14px;
}

.register-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

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

.benefit-item i {
  color: #22c55e;
  font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 70px 16px 20px;
  }
  
  .register-wrapper {
    padding: 30px 25px;
    border-radius: 15px;
  }
  
  .register-title {
    font-size: 24px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 14px 14px 14px 45px;
    font-size: 15px;
  }
  
  .input-icon {
    left: 14px;
    font-size: 14px;
  }
  
  .register-submit-btn {
    padding: 14px;
    font-size: 15px;
  }
  
  .login-link {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .register-benefits {
    gap: 8px;
  }
  
  .benefit-item {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 60px 12px 20px;
  }
  
  .register-wrapper {
    padding: 25px 20px;
    max-width: 100%;
  }
  
  .register-title {
    font-size: 22px;
  }
  
  .register-subtitle {
    font-size: 13px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 12px 12px 40px;
    font-size: 14px;
  }
  
  .input-icon {
    left: 12px;
    font-size: 13px;
  }
  
  .form-label {
    font-size: 13px;
  }
  
  .register-submit-btn {
    padding: 12px;
    font-size: 14px;
  }
  
  .login-link {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .checkbox-text {
    font-size: 12px;
  }
  
  .field-hint {
    font-size: 11px;
  }
  
  .benefit-item {
    font-size: 10px;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8a65 50%, #ff6b35 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
              radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
  z-index: 1;
}

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

.hero-content {
  margin: 0 auto;
  animation: heroFadeIn 1s ease-out;
}

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  color: #ffffff;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-cta-btn:hover {
  background: linear-gradient(135deg, #2c2c2c, #404040);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  color: #ff6b35;
}

.hero-cta-btn i {
  font-size: 20px;
}

/* Promotion Sections */
.promotion-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  position: relative;
  overflow: hidden;
}

.promotion-section-alt {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 138, 101, 0.03) 0%, transparent 50%);
  z-index: 1;
}

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

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

@keyframes promotionSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.promotion-card:hover {
  transform: translateY(-5px);
}

.promotion-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.promotion-header i {
  font-size: 32px;
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  padding: 15px;
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.promotion-header h2 {
  font-family: 'Prompt', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

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

.promotion-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 15px;
}

.promotion-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border-left: 3px solid #ff6b35;
  transition: all 0.3s ease;
}

.promotion-features li:hover {
  background: rgba(255, 107, 53, 0.05);
  transform: translateX(5px);
}

.promotion-features li i {
  font-size: 16px;
  color: #22c55e;
  margin-top: 2px;
  flex-shrink: 0;
}

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

.promotion-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ff6b35, #ff8a65);
  color: #ffffff;
  padding: 18px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  border: 2px solid transparent;
}

.promotion-cta-btn:hover {
  background: linear-gradient(135deg, #ff8a65, #ffab91);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.promotion-cta-btn i {
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 80px 16px;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .promotion-section {
    padding: 60px 16px;
  }
  
  .promotion-card {
    padding: 30px;
  }
  
  .promotion-header h2 {
    font-size: 24px;
  }
  
  .promotion-features li {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 16px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .hero-cta-btn {
    padding: 16px 30px;
    font-size: 16px;
  }
  
  .promotion-section {
    padding: 40px 16px;
  }
  
  .promotion-card {
    padding: 25px;
  }
  
  .promotion-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .promotion-header i {
    font-size: 28px;
    padding: 12px;
  }
  
  .promotion-header h2 {
    font-size: 22px;
  }
  
  .promotion-features li {
    font-size: 14px;
    padding: 10px;
  }
  
  .promotion-cta-btn {
    padding: 14px 25px;
    font-size: 14px;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 12px;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  .hero-cta-btn {
    padding: 14px 25px;
    font-size: 14px;
  }
  
  .promotion-section {
    padding: 30px 12px;
  }
  
  .promotion-card {
    padding: 20px;
  }
  
  .promotion-header i {
    font-size: 24px;
    padding: 10px;
  }
  
  .promotion-header h2 {
    font-size: 18px;
  }
  
  .promotion-features li {
    font-size: 13px;
    padding: 8px;
    gap: 10px;
  }
  
  .promotion-features li i {
    font-size: 14px;
  }
  
  .promotion-cta-btn {
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .promotion-cta-btn i {
    font-size: 16px;
  }
}