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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

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

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

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

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

.hero-text {
  padding-right: 20px;
}

.hero-title {
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 24px;
  background: linear-gradient(45deg, #ff6b35, #f7931e, #667eea);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-description {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

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

.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;
  margin: 0 auto;
}

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

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text {
    padding-right: 0;
    order: 2;
  }

  .hero-image {
    order: 1;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 28px;
  }

  .hero-buttons {
    justify-content: center;
    gap: 12px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .hero-badge {
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-container {
    padding: 0 15px;
  }
}

@media (max-width: 1280px) {

  .container,
  .hero-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

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

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

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

.logo-link {
  text-decoration: none;
  display: block;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  background: linear-gradient(45deg, #ff6b35, #f7931e, #667eea);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease-in-out infinite;
}

/* Header Navigation */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 40px;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  text-decoration: none;
  color: #e0e0e0;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
  transition: left 0.3s ease;
}

.nav-link:hover::before {
  left: 100%;
}

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

.nav-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.nav-link:hover i {
  transform: scale(1.1);
}

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

.header-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.header-btn:hover {
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
  transform: translateY(-2px);
}

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

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

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

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(15px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
}

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

.mobile-menu-content {
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.mobile-logo-text {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  background: linear-gradient(45deg, #ff6b35, #f7931e, #667eea);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease-in-out infinite;
}

.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: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.mobile-menu-close i {
  color: #ff6b35;
  font-size: 18px;
}

/* Mobile Navigation */
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.mobile-nav-item {
  width: 100%;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  text-decoration: none;
  color: #e0e0e0;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
  transition: left 0.4s ease;
}

.mobile-nav-link:hover::before {
  left: 100%;
}

.mobile-nav-link:hover {
  color: #ffffff;
  background: rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateX(5px);
}

.mobile-nav-link i {
  font-size: 20px;
  color: #ff6b35;
  transition: transform 0.3s ease;
}

.mobile-nav-link:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* Mobile CTA Item */
.mobile-cta-item {
  margin-top: 20px;
}

.mobile-cta-link {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff !important;
  border: none;
  font-weight: 700;
  text-align: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.mobile-cta-link:hover {
  background: linear-gradient(45deg, #f7931e, #ff6b35);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.mobile-cta-link i {
  color: #ffffff;
}

/* Responsive Design for Header */
@media (max-width: 1020px) {

  .header-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-container {
    height: 60px;
  }

  .logo-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
    height: 55px;
  }

  .logo-text {
    font-size: 1.4rem;
  }

  .mobile-menu-toggle {
    width: 35px;
    height: 35px;
    padding: 6px;
  }

  .hamburger-line {
    width: 20px;
    height: 2px;
  }

  .mobile-menu-content {
    padding: 15px;
  }

  .mobile-menu-header {
    padding: 15px 0;
    margin-bottom: 30px;
  }

  .mobile-logo-text {
    font-size: 1.6rem;
  }

  .mobile-menu-close {
    width: 35px;
    height: 35px;
  }

  .mobile-menu-close i {
    font-size: 16px;
  }

  .mobile-nav-link {
    padding: 18px 20px;
    font-size: 16px;
    gap: 12px;
  }

  .mobile-nav-link i {
    font-size: 18px;
  }
}

/* Adjust main content for fixed header */
body {
  padding-top: 70px;
}

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

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

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

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

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

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

.about-image {
  position: relative;
}

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

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

.about-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #ffffff;
  text-align: center;
}

.stat-item i {
  font-size: 24px;
  color: #ff6b35;
  margin-bottom: 5px;
}

.stat-number {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ff6b35;
}

.stat-label {
  font-size: 12px;
  color: #b0b0b0;
}

.about-text {
  padding-left: 20px;
}

.about-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.2;
}

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

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

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

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

.features-list {
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid #ff6b35;
  transition: all 0.3s ease;
}

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

.feature-item i {
  font-size: 18px;
  color: #ff6b35;
  min-width: 20px;
}

.feature-item span {
  color: #e0e0e0;
  font-size: 15px;
}

.about-cta {
  padding: 30px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  text-align: center;
}

.about-cta p {
  font-size: 1.05rem;
  color: #d0d0d0;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
  .about-section {
    padding: 80px 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-text {
    padding-left: 0;
  }

  .about-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .about-description p {
    font-size: 1rem;
  }

  .about-overlay {
    position: static;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.9);
  }

  .stats-grid {
    gap: 15px;
  }

  .stat-item i {
    font-size: 20px;
  }

  .stat-number {
    font-size: 18px;
  }

  .feature-item {
    justify-content: center;
    text-align: left;
  }

  .about-cta {
    padding: 25px 20px;
  }

  .about-cta p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 15px;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-description p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .feature-item {
    padding: 12px;
    gap: 12px;
  }

  .feature-item span {
    font-size: 14px;
  }

  .about-overlay {
    padding: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
  }

  .stats-grid {
    gap: 10px;
  }

  .about-cta {
    padding: 20px 15px;
  }

  .about-cta p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 1280px) {
  .about-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-content {
    gap: 60px;
  }
}

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

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

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

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

.system-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.2;
}

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

.system-description p {
  font-size: 1.05rem;
  color: #d0d0d0;
  margin-bottom: 20px;
  line-height: 1.8;
}

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

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

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

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

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

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

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

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

.feature-card h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
}

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

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

.system-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  margin: 0 auto;
  display: block;
}

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

.system-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  0% {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  }

  100% {
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.8);
  }
}

/* Responsive Design for System Section */
@media (max-width: 968px) {
  .system-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .system-image {
    order: -1;
  }

  .system-features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .system-section {
    padding: 80px 20px;
  }

  .system-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .system-description p {
    font-size: 1rem;
    margin-bottom: 18px;
  }

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

  .feature-card {
    padding: 25px 20px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .feature-icon i {
    font-size: 20px;
  }

  .feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  .system-badge {
    top: 15px;
    left: 15px;
    padding: 10px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .system-section {
    padding: 60px 15px;
  }

  .system-title {
    font-size: 1.8rem;
  }

  .system-description p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .feature-card {
    padding: 20px 15px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
  }

  .feature-icon i {
    font-size: 18px;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 1280px) {
  .system-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .system-content {
    gap: 60px;
  }
}

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

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

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

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

.wallet-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.2;
}

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

.wallet-description p {
  font-size: 1.05rem;
  color: #d0d0d0;
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.wallet-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.wallet-feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.wallet-feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wallet-feature-number {
  min-width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  transition: transform 0.3s ease;
}

.wallet-feature-item:hover .wallet-feature-number {
  transform: scale(1.1);
}

.wallet-feature-content h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

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

.wallet-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  margin: 0 auto;
  display: block;
}

.wallet-img:hover {
  transform: scale(1.02) rotate(-1deg);
}

.wallet-security-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.security-badge {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.security-badge:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.security-badge i {
  font-size: 16px;
  color: #ff6b35;
}

.security-badge span {
  color: #ffffff;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 12px;
}

/* Responsive Design for Wallet Section */
@media (max-width: 968px) {
  .wallet-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .wallet-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .wallet-section {
    padding: 80px 20px;
  }

  .wallet-title {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
  }

  .wallet-description p {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .wallet-features {
    gap: 15px;
  }

  .wallet-feature-item {
    padding: 18px 15px;
    gap: 15px;
  }

  .wallet-feature-number {
    min-width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .wallet-feature-content h4 {
    font-size: 1rem;
  }

  .wallet-security-badges {
    gap: 10px;
    margin-top: 25px;
  }

  .security-badge {
    padding: 10px 16px;
  }

  .security-badge span {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .wallet-section {
    padding: 60px 15px;
  }

  .wallet-title {
    font-size: 1.8rem;
  }

  .wallet-description p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .wallet-feature-item {
    padding: 15px 12px;
    gap: 12px;
  }

  .wallet-feature-number {
    min-width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .wallet-feature-content h4 {
    font-size: 0.95rem;
  }

  .wallet-security-badges {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .security-badge {
    padding: 8px 14px;
  }

  .security-badge i {
    font-size: 14px;
  }

  .security-badge span {
    font-size: 10px;
  }
}

@media (max-width: 1280px) {
  .wallet-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wallet-content {
    gap: 60px;
  }
}

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

.direct-website-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(102, 126, 234, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

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

.direct-website-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.direct-website-header {
  text-align: center;
  margin-bottom: 20px;
}

.direct-website-title {
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
  background: linear-gradient(45deg, #ff6b35, #f7931e, #667eea);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
}

.direct-website-subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  font-family: 'Prompt', sans-serif;
  font-weight: 400;
}

.direct-website-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.direct-website-description p {
  font-size: 1.05rem;
  color: #d0d0d0;
  margin-bottom: 20px;
  line-height: 1.8;
}

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

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

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

.direct-website-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  margin: 0 auto;
  display: block;
}

.direct-website-img:hover {
  transform: scale(1.02) rotate(1deg);
}

/* Certifications Section */
.certifications-section {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.certification-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-left: 4px solid #ff6b35;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.certification-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.certification-icon {
  min-width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.certification-item:hover .certification-icon {
  transform: scale(1.1) rotate(5deg);
}

.certification-icon i {
  font-size: 20px;
  color: #ffffff;
}

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

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

/* Bonus Highlights */
.bonus-highlights {
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(102, 126, 234, 0.1));
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

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

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

.bonus-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(102, 126, 234, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.bonus-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 107, 53, 0.6);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.bonus-percent {
  font-size: 2.5rem;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.bonus-item h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.bonus-item p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* CTA Section */
.direct-website-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
}

.btn-large {
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 700;
  min-width: 200px;
}

/* Responsive Design for Direct Website Section */
@media (max-width: 968px) {
  .direct-website-main {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .direct-website-image {
    order: -1;
  }

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

  .bonus-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .direct-website-section {
    padding: 80px 20px;
  }

  .direct-website-content {
    gap: 50px;
  }

  .direct-website-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }

  .direct-website-subtitle {
    font-size: 1.1rem;
  }

  .direct-website-description p {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .certifications-section,
  .bonus-highlights {
    padding: 30px 20px;
  }

  .certifications-title,
  .bonus-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
  }

  .certification-item {
    padding: 20px;
    gap: 15px;
  }

  .certification-icon {
    min-width: 45px;
    height: 45px;
  }

  .certification-icon i {
    font-size: 18px;
  }

  .certification-content h4 {
    font-size: 1rem;
  }

  .certification-content p {
    font-size: 0.9rem;
  }

  .bonus-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
  }

  .bonus-item {
    padding: 25px 15px;
  }

  .bonus-percent {
    font-size: 2rem;
  }

  .bonus-item h4 {
    font-size: 1rem;
  }

  .bonus-item p {
    font-size: 0.85rem;
  }

  .direct-website-cta {
    gap: 15px;
  }

  .btn-large {
    padding: 15px 30px;
    font-size: 16px;
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .direct-website-section {
    padding: 60px 15px;
  }

  .direct-website-title {
    font-size: 1.9rem;
  }

  .direct-website-subtitle {
    font-size: 1rem;
  }

  .direct-website-description p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .certifications-section,
  .bonus-highlights {
    padding: 25px 15px;
  }

  .certifications-title,
  .bonus-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .certification-item {
    padding: 15px;
    gap: 12px;
  }

  .certification-icon {
    min-width: 40px;
    height: 40px;
  }

  .certification-icon i {
    font-size: 16px;
  }

  .certification-content h4 {
    font-size: 0.95rem;
  }

  .certification-content p {
    font-size: 0.85rem;
  }

  .bonus-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }

  .bonus-item {
    padding: 20px 12px;
  }

  .bonus-percent {
    font-size: 1.8rem;
  }

  .bonus-item h4 {
    font-size: 0.95rem;
  }

  .bonus-item p {
    font-size: 0.8rem;
  }

  .direct-website-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 15px;
    min-width: 160px;
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 1280px) {
  .direct-website-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

.access-techniques-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 40% 60%, rgba(102, 126, 234, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.access-techniques-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.access-techniques-title {
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
  background: linear-gradient(45deg, #667eea, #764ba2, #ff6b35);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
}

.access-techniques-subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  font-family: 'Prompt', sans-serif;
  font-weight: 400;
}

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

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

.subsection-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.access-description p,
.techniques-description p,
.additional-info p {
  font-size: 1.05rem;
  color: #d0d0d0;
  margin-bottom: 20px;
  line-height: 1.8;
}

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

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

/* Access Features Grid */
.access-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

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

.access-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

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

.access-feature-card .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: transform 0.3s ease;
}

.access-feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.access-feature-card .feature-icon i {
  font-size: 20px;
  color: #ffffff;
}

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

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

/* Pro Techniques List */
.pro-techniques-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.technique-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.technique-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.technique-icon {
  min-width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

.technique-icon i {
  font-size: 18px;
  color: #ffffff;
}

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

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

/* Additional Info Styling */
.additional-info {
  background: rgba(102, 126, 234, 0.1);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(102, 126, 234, 0.2);
  margin-top: 30px;
}

.additional-info p {
  margin: 0;
  font-style: italic;
  color: #c0c0c0;
}

/* Image Section */
.access-image-section {
  position: relative;
  text-align: center;
  margin-top: 40px;
}

.access-techniques-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  margin: 0 auto;
  display: block;
}

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

.image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 25px;
  border: 2px solid rgba(255, 107, 53, 0.5);
  transition: all 0.3s ease;
}

.image-overlay:hover {
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 107, 53, 0.8);
  transform: translate(-50%, -50%) scale(1.05);
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.overlay-content i {
  font-size: 24px;
  color: #ff6b35;
  animation: pulse 2s ease-in-out infinite;
}

/* Responsive Design for Access and Techniques Section */
@media (max-width: 968px) {
  .access-main-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .access-features {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .access-techniques-section {
    padding: 80px 20px;
  }

  .access-techniques-content {
    gap: 50px;
  }

  .access-techniques-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }

  .access-techniques-subtitle {
    font-size: 1.1rem;
  }

  .subsection-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .access-description p,
  .techniques-description p,
  .additional-info p {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .access-features {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 25px;
  }

  .access-feature-card {
    padding: 20px 15px;
  }

  .access-feature-card .feature-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
  }

  .access-feature-card .feature-icon i {
    font-size: 18px;
  }

  .access-feature-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .access-feature-card p {
    font-size: 0.85rem;
  }

  .technique-item {
    padding: 18px 15px;
    gap: 15px;
  }

  .technique-icon {
    min-width: 40px;
    height: 40px;
  }

  .technique-icon i {
    font-size: 16px;
  }

  .technique-content h4 {
    font-size: 1rem;
  }

  .technique-content p {
    font-size: 0.9rem;
  }

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

  .overlay-content {
    font-size: 14px;
    gap: 10px;
  }

  .overlay-content i {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .access-techniques-section {
    padding: 60px 15px;
  }

  .access-techniques-title {
    font-size: 1.9rem;
  }

  .access-techniques-subtitle {
    font-size: 1rem;
  }

  .subsection-title {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }

  .access-description p,
  .techniques-description p,
  .additional-info p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .access-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .access-feature-card {
    padding: 18px 12px;
  }

  .access-feature-card .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .access-feature-card .feature-icon i {
    font-size: 16px;
  }

  .access-feature-card h4 {
    font-size: 0.95rem;
  }

  .access-feature-card p {
    font-size: 0.8rem;
  }

  .technique-item {
    padding: 15px 12px;
    gap: 12px;
  }

  .technique-icon {
    min-width: 35px;
    height: 35px;
  }

  .technique-icon i {
    font-size: 14px;
  }

  .technique-content h4 {
    font-size: 0.95rem;
  }

  .technique-content p {
    font-size: 0.85rem;
  }

  .additional-info {
    padding: 18px 15px;
  }

  .image-overlay {
    padding: 15px 20px;
  }

  .overlay-content {
    font-size: 12px;
    gap: 8px;
  }

  .overlay-content i {
    font-size: 18px;
  }
}

@media (max-width: 1280px) {
  .access-techniques-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

.footer-logo {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #ff6b35, #f7931e, #667eea);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease-in-out infinite;
}

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

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

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

.contact-item span {
  color: #d0d0d0;
}

/* Footer Sections */
.footer-section {
  display: flex;
  flex-direction: column;
}

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

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

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

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 6px 0;
  position: relative;
}

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

.footer-link i {
  font-size: 10px;
  color: #ff6b35;
  transition: transform 0.3s ease;
}

.footer-link:hover i {
  transform: scale(1.2);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

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

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover {
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.social-link i {
  font-size: 16px;
  position: relative;
  z-index: 1;
}

/* Payment Methods */
.payment-methods {
  margin-top: 10px;
}

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

.payment-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 35px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.payment-icon:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
}

.payment-icon i {
  color: #ff6b35;
  font-size: 14px;
}

/* Footer Bottom */
.footer-bottom {
  padding: 30px 0 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);
}

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

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

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

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

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

.separator {
  color: #666;
}

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

.footer-cta-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

/* Footer Disclaimer */
.footer-disclaimer {
  text-align: center;
  padding: 20px;
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 10px;
  margin-bottom: 20px;
}

.disclaimer-text {
  margin: 0;
  font-size: 0.85rem;
  color: #d0d0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.5;
}

.disclaimer-text i {
  color: #f7931e;
  font-size: 14px;
  flex-shrink: 0;
}

/* Responsive Design for Footer */
@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 50px 0 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .payment-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 40px 0 25px;
  }

  .footer-brand {
    grid-column: auto;
    text-align: center;
  }

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

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact {
    align-items: center;
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-legal {
    align-items: center;
  }

  .payment-icons {
    grid-template-columns: repeat(4, 1fr);
    max-width: 200px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }

  .footer-content {
    padding: 30px 0 20px;
    gap: 20px;
  }

  .footer-logo {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .footer-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .footer-link {
    font-size: 0.85rem;
  }

  .contact-item {
    font-size: 0.85rem;
  }

  .social-links {
    gap: 10px;
    margin-bottom: 20px;
  }

  .social-link {
    width: 35px;
    height: 35px;
  }

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

  .payment-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .payment-icon {
    height: 30px;
  }

  .payment-icon i {
    font-size: 12px;
  }

  .footer-bottom {
    padding: 20px 0 15px;
  }

  .footer-bottom-content {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .footer-legal p {
    font-size: 0.8rem;
  }

  .legal-link {
    font-size: 0.75rem;
  }

  .footer-cta-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .disclaimer-text {
    font-size: 0.8rem;
    flex-direction: column;
    gap: 5px;
  }

  .footer-disclaimer {
    padding: 15px;
    margin-bottom: 15px;
  }
}

@media (max-width: 1280px) {
  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 60px;
}

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.sticky-btn:active {
  transform: scale(0.98);
}

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

.btn-text {
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
  transition: all 0.3s ease;
}

/* Individual Button Styles */
.sticky-btn-login {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.sticky-btn-register {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.sticky-btn-bonus {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  position: relative;
}

.sticky-btn-bonus:hover {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.sticky-btn-bonus::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: linear-gradient(45deg, #ff0040, #ff8a00);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 0, 64, 0.6);
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Hover Effects */
.sticky-btn:hover i {
  transform: scale(1.1) rotate(5deg);
}

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

/* Responsive Design for Sticky Buttons */
@media (max-width: 768px) {
  .sticky-bottom-buttons {
    padding: 0;
  }

  .sticky-btn {
    padding: 10px 6px;
    min-height: 55px;
  }

  .sticky-btn i {
    font-size: 16px;
    margin-bottom: 3px;
  }

  .btn-text {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .sticky-bottom-buttons {
    padding: 0;
  }

  .sticky-btn {
    padding: 8px 4px;
    min-height: 50px;
  }

  .sticky-btn i {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .btn-text {
    font-size: 9px;
    line-height: 1;
  }
}

@media (max-width: 360px) {
  .sticky-btn {
    padding: 6px 2px;
    min-height: 45px;
  }

  .sticky-btn i {
    font-size: 13px;
  }

  .btn-text {
    font-size: 8px;
  }
}

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

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

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

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

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

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

.login-container {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
}

.login-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 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.login-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

/* Login Header */
.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.login-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
  transition: transform 0.3s ease;
}

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

.login-title {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 8px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login-subtitle {
  color: #b0b0b0;
  font-size: 0.95rem;
  margin: 0;
}

/* Error Message */
.error-message {
  display: none;
  background: rgba(220, 53, 69, 0.15);
  color: #ff6b6b;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #dc3545;
  animation: slideDown 0.3s ease-out;
}

.error-message.show {
  display: flex;
  align-items: center;
  gap: 10px;
}

.error-message i {
  font-size: 16px;
  flex-shrink: 0;
}

.error-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Styles */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

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

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

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

.form-input:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-input.error {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

/* Password Input Wrapper */
.password-input-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #b0b0b0;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-toggle:hover {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
}

.password-toggle i {
  font-size: 14px;
}

/* Input Error */
.input-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  min-height: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.input-error.show {
  opacity: 1;
}

/* Buttons */
.login-btn {
  margin-top: 10px;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.login-btn .btn-text {
  transition: opacity 0.3s ease;
}

.login-btn.loading .btn-text {
  opacity: 0;
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.login-btn.loading .btn-loader {
  opacity: 1;
}

.register-btn {
  margin-top: 8px;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

/* Login Footer */
.login-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-links {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 15px;
}

.login-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

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

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

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

.security-item i {
  color: #4caf50;
  font-size: 12px;
}

/* Responsive Design for Login */
@media (max-width: 768px) {
  .login-section {
    padding: 70px 15px 15px;
  }

  .login-container {
    max-width: 380px;
  }

  .login-card {
    padding: 30px 25px;
  }

  .login-logo {
    width: 70px;
    height: 70px;
  }

  .login-title {
    font-size: 1.8rem;
  }

  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .login-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }

  .register-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .login-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .security-info {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 60px 10px 10px;
    min-height: 100vh;
  }

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

  .login-card {
    padding: 25px 20px;
    border-radius: 15px;
  }

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

  .login-logo {
    width: 60px;
    height: 60px;
  }

  .login-title {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }

  .login-subtitle {
    font-size: 0.9rem;
  }

  .form-input {
    padding: 11px 12px;
    font-size: 0.9rem;
  }

  .password-toggle {
    right: 10px;
    padding: 6px;
  }

  .login-btn {
    padding: 13px 18px;
    font-size: 0.95rem;
  }

  .register-btn {
    padding: 11px 18px;
    font-size: 0.9rem;
  }

  .login-footer {
    margin-top: 25px;
    padding-top: 15px;
  }

  .login-links {
    margin-bottom: 15px;
    gap: 10px;
  }

  .login-link {
    font-size: 0.85rem;
  }

  .security-info {
    gap: 12px;
  }

  .security-item {
    font-size: 0.75rem;
  }
}

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

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

.register-container {
  width: 100%;
  max-width: 450px;
  position: relative;
  z-index: 1;
}

.register-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 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.register-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

/* Register Header */
.register-header {
  text-align: center;
  margin-bottom: 30px;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.register-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
  transition: transform 0.3s ease;
}

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

.register-title {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 8px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.register-subtitle {
  color: #b0b0b0;
  font-size: 0.95rem;
  margin: 0;
}

/* Success Message */
.success-message {
  display: none;
  background: rgba(76, 175, 80, 0.15);
  color: #4caf50;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #4caf50;
  animation: slideDown 0.3s ease-out;
}

.success-message.show {
  display: flex;
  align-items: center;
  gap: 10px;
}

.success-message i {
  font-size: 16px;
  flex-shrink: 0;
}

.success-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Error Message */
.error-message {
  display: none;
  background: rgba(220, 53, 69, 0.15);
  color: #ff6b6b;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #dc3545;
  animation: slideDown 0.3s ease-out;
}

.error-message.show {
  display: flex;
  align-items: center;
  gap: 10px;
}

.error-message i {
  font-size: 16px;
  flex-shrink: 0;
}

.error-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Styles */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

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

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

.form-input {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  font-family: 'Sarabun', sans-serif;
}

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

.form-input:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
  transform: translateY(-1px);
}

.form-input.error {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

.form-input.success {
  border-color: #4caf50;
  background: rgba(76, 175, 80, 0.1);
}

/* Input Error */
.input-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  min-height: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.input-error.show {
  opacity: 1;
}

/* Input Help */
.input-help {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #888;
  font-size: 0.8rem;
  margin-top: 4px;
}

.input-help i {
  font-size: 12px;
  color: #667eea;
  flex-shrink: 0;
}

/* Buttons */
.register-btn {
  margin-top: 5px;
  padding: 18px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border: none;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.register-btn:hover {
  background: linear-gradient(45deg, #f7931e, #ff6b35);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.register-btn .btn-text {
  transition: opacity 0.3s ease;
}

.register-btn.loading .btn-text {
  opacity: 0;
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.register-btn.loading .btn-loader {
  opacity: 1;
}

.login-btn {
  margin-top: 10px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

/* Outline Button Style */
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 107, 53, 0.6);
  color: #ff6b35;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: #ff6b35;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Register Footer */
.register-footer {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.register-links {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.register-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

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

.register-link i {
  font-size: 12px;
}

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

.security-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #888;
  font-size: 0.75rem;
  text-align: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.security-item i {
  color: #4caf50;
  font-size: 12px;
  flex-shrink: 0;
}

.register-disclaimer {
  text-align: center;
  padding: 15px;
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 10px;
}

.register-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #b0b0b0;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.register-disclaimer i {
  color: #f7931e;
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

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

.disclaimer-link:hover {
  color: #f7931e;
  text-decoration: underline;
}

/* Responsive Design for Register */
@media (max-width: 768px) {
  .register-section {
    padding: 70px 15px 15px;
  }

  .register-container {
    max-width: 400px;
  }

  .register-card {
    padding: 30px 25px;
  }

  .register-logo {
    width: 70px;
    height: 70px;
  }

  .register-title {
    font-size: 1.8rem;
  }

  .form-input {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .register-btn {
    padding: 16px 20px;
    font-size: 1rem;
  }

  .login-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .register-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .security-info {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .register-disclaimer p {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 60px 10px 10px;
    min-height: 100vh;
  }

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

  .register-card {
    padding: 25px 20px;
    border-radius: 15px;
  }

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

  .register-logo {
    width: 60px;
    height: 60px;
  }

  .register-title {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }

  .register-subtitle {
    font-size: 0.9rem;
  }

  .form-input {
    padding: 13px 15px;
    font-size: 0.95rem;
  }

  .register-btn {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .login-btn {
    padding: 13px 20px;
    font-size: 0.9rem;
  }

  .register-footer {
    margin-top: 30px;
    padding-top: 20px;
  }

  .register-links {
    margin-bottom: 15px;
    gap: 15px;
  }

  .register-link {
    font-size: 0.8rem;
  }

  .security-info {
    gap: 8px;
    margin-bottom: 15px;
  }

  .security-item {
    font-size: 0.7rem;
    padding: 6px;
  }

  .register-disclaimer {
    padding: 12px;
  }

  .register-disclaimer p {
    font-size: 0.75rem;
  }
}

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

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

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

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

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-features .feature-item i {
  color: #ff6b35;
  font-size: 16px;
}

.hero-cta {
  padding: 18px 36px;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border: none;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Promo Sections */
.promo-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

.promo-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.promo-header {
  text-align: left;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #ffffff;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.promo-badge-hot {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  animation: glow 2s ease-in-out infinite alternate;
}

.promo-badge-daily {
  background: linear-gradient(45deg, #4caf50, #45a049);
}

.promo-badge-jackpot {
  background: linear-gradient(45deg, #9c27b0, #673ab7);
}

@keyframes glow {
  from {
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
  }

  to {
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.8);
  }
}

.promo-title {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.promo-description {
  font-size: 1.1rem;
  color: #d0d0d0;
  line-height: 1.7;
  margin-bottom: 0;
}

.promo-features {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

.feature-icon {
  min-width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.feature-list-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
  color: #ffffff;
  font-size: 16px;
}

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

/* Promo CTA */
.promo-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.promo-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.highlight-amount {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.highlight-text {
  color: #b0b0b0;
  font-size: 1rem;
  font-weight: 600;
}

.promo-ratio {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.ratio-deposit {
  font-size: 2rem;
  font-weight: 700;
  color: #667eea;
}

.ratio-arrow {
  font-size: 1.5rem;
  color: #ff6b35;
}

.ratio-bonus {
  font-size: 2rem;
  font-weight: 700;
  color: #f7931e;
}

.promo-range {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 10px;
}

.range-min,
.range-max {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #9c27b0, #673ab7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.range-separator {
  font-size: 2rem;
  color: #b0b0b0;
}

.range-unit {
  font-size: 1.2rem;
  color: #b0b0b0;
  font-weight: 600;
}

.promo-cta .btn {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  min-width: 200px;
}

/* Responsive Design for Promo Pages */
@media (max-width: 968px) {
  .promo-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .promo-header {
    text-align: center;
  }

  .feature-list {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 20px 60px;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .hero-features {
    gap: 15px;
    margin-bottom: 30px;
  }

  .hero-features .feature-item {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .hero-cta {
    padding: 16px 30px;
    font-size: 1.1rem;
  }

  .promo-section {
    padding: 60px 20px;
  }

  .promo-content {
    gap: 30px;
  }

  .promo-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .promo-description {
    font-size: 1rem;
  }

  .feature-list {
    gap: 15px;
  }

  .feature-list-item {
    padding: 15px 18px;
  }

  .feature-icon {
    min-width: 35px;
    height: 35px;
  }

  .feature-icon i {
    font-size: 14px;
  }

  .feature-list-item span {
    font-size: 0.95rem;
  }

  .promo-cta {
    padding: 25px 20px;
  }

  .highlight-amount {
    font-size: 2.5rem;
  }

  .ratio-deposit,
  .ratio-bonus {
    font-size: 1.8rem;
  }

  .range-min,
  .range-max {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 70px 15px 50px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-features .feature-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-cta {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }

  .promo-section {
    padding: 50px 15px;
  }

  .promo-title {
    font-size: 1.6rem;
  }

  .promo-description {
    font-size: 0.95rem;
  }

  .feature-list-item {
    padding: 12px 15px;
    gap: 12px;
  }

  .feature-icon {
    min-width: 30px;
    height: 30px;
  }

  .feature-icon i {
    font-size: 12px;
  }

  .feature-list-item span {
    font-size: 0.9rem;
  }

  .promo-cta {
    padding: 20px 15px;
  }

  .promo-cta .btn {
    width: 100%;
    max-width: 250px;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .highlight-amount {
    font-size: 2rem;
  }

  .ratio-deposit,
  .ratio-bonus {
    font-size: 1.5rem;
  }

  .ratio-arrow {
    font-size: 1.2rem;
  }

  .range-min,
  .range-max {
    font-size: 1.8rem;
  }

  .range-separator {
    font-size: 1.5rem;
  }

  .range-unit {
    font-size: 1rem;
  }
}

@media (max-width: 1280px) {

  .hero-container,
  .promo-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}