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

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

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

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

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

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

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

.btn-secondary:hover {
  background: #ff6b35;
  transform: translateY(-2px);
}

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

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

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

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

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: #cccccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

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

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

/* Tablet Responsiveness */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }

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

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .feature-item {
    justify-content: center;
  }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }

  .hero-section {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }

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

  .feature-item {
    padding: 12px;
  }

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

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

.main-header.scrolled {
  background: rgba(10, 10, 10, 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;
}

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

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

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

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

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

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

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

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.btn-cta {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  border: none;
  cursor: pointer;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.burger-line {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

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

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

.mobile-menu-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

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

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

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-family: 'Prompt', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

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

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

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

.mobile-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  width: 100%;
}

.mobile-nav-link {
  font-family: 'Prompt', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: block;
}

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

.mobile-cta {
  margin-top: 20px;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  
  .desktop-only {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-container {
    padding: 0 15px;
    height: 60px;
  }
  
  .logo-text {
    font-size: 20px;
  }
  
  .logo-link i {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 10px;
    height: 55px;
  }
  
  .logo-text {
    font-size: 18px;
  }
  
  .mobile-menu-header {
    padding: 15px 0;
  }
  
  .mobile-nav-menu {
    gap: 25px;
  }
  
  .mobile-nav-link {
    font-size: 18px;
    padding: 12px 15px;
  }
}

/* Platform Overview Section */
.platform-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.platform-title {
  font-family: 'Prompt', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.platform-description p {
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 20px;
}

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

.platform-description strong {
  color: #ff6b35;
  font-weight: 600;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  text-align: center;
}

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

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

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

.feature-card h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.5;
  margin: 0;
}

.platform-conclusion {
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
  margin: 0;
}

.platform-conclusion strong {
  color: #ff6b35;
  font-weight: 600;
}

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

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

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

.platform-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

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

.stat-label {
  font-size: 12px;
  color: #cccccc;
  margin-top: 2px;
}

/* Tablet Responsiveness */
@media (max-width: 768px) {
  .platform-section {
    padding: 60px 0;
  }

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

  .platform-title {
    font-size: 32px;
    text-align: center;
  }

  .platform-description {
    text-align: center;
  }

  .platform-features {
    grid-template-columns: 1fr;
  }

  .platform-conclusion {
    text-align: center;
  }

  .platform-stats {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .stat-item {
    justify-content: center;
  }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .platform-container {
    padding: 0 15px;
  }

  .platform-section {
    padding: 40px 0;
  }

  .platform-title {
    font-size: 24px;
    line-height: 1.4;
  }

  .platform-description p {
    font-size: 15px;
  }

  .feature-card {
    padding: 20px;
  }

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

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

  .feature-card h3 {
    font-size: 16px;
  }

  .feature-card p {
    font-size: 13px;
  }

  .platform-stats {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 15px;
  }

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

  .stat-label {
    font-size: 11px;
  }
}

/* Investment Guide Section */
.investment-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

.investment-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

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

.investment-title {
  font-family: 'Prompt', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.investment-description p {
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 20px;
}

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

.investment-description strong {
  color: #ff6b35;
  font-weight: 600;
}

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

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

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

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

.highlight-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-3px);
}

.highlight-item i {
  color: #ff6b35;
  font-size: 24px;
  width: 30px;
  text-align: center;
  flex-shrink: 0;
}

.highlight-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.highlight-content p {
  font-size: 14px;
  color: #cccccc;
  margin: 0;
  line-height: 1.4;
}

.highlight-content strong {
  color: #ff6b35;
  font-weight: 600;
}

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

/* Tablet Responsiveness */
@media (max-width: 768px) {
  .investment-section {
    padding: 60px 0;
  }

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

  .investment-title {
    font-size: 28px;
    text-align: center;
  }

  .investment-description {
    text-align: center;
  }

  .investment-highlights {
    grid-template-columns: 1fr;
  }

  .investment-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

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

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .investment-container {
    padding: 0 15px;
  }

  .investment-section {
    padding: 40px 0;
  }

  .investment-title {
    font-size: 22px;
    line-height: 1.4;
  }

  .investment-description p {
    font-size: 15px;
  }

  .investment-highlights {
    gap: 15px;
  }

  .highlight-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
  }

  .highlight-item i {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .highlight-content h4 {
    font-size: 15px;
  }

  .highlight-content p {
    font-size: 13px;
  }

  .investment-cta {
    flex-direction: column;
    gap: 15px;
  }

  .investment-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Deposit Security Section */
.security-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

.security-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.security-title {
  font-family: 'Prompt', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.security-description p {
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 20px;
}

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

.security-description strong {
  color: #ff6b35;
  font-weight: 600;
}

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

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

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

.security-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.security-info h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.security-info p {
  font-size: 14px;
  color: #cccccc;
  margin: 0;
  line-height: 1.4;
}

.security-conclusion {
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
  margin: 0;
}

.security-conclusion strong {
  color: #ff6b35;
  font-weight: 600;
}

.security-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
  align-self: start;
  margin-top: 40px;
}

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

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

.security-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.stat-card:hover {
  background: rgba(255, 107, 53, 0.15);
  transform: translateX(5px);
}

.stat-card i {
  color: #ff6b35;
  font-size: 18px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.stat-details {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: #cccccc;
  margin-top: 2px;
  line-height: 1.2;
}

/* Tablet Responsiveness */
@media (max-width: 768px) {
  .security-section {
    padding: 60px 0;
  }

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

  .security-title {
    font-size: 30px;
    text-align: center;
  }

  .security-description {
    text-align: center;
  }

  .security-features {
    grid-template-columns: 1fr;
  }

  .security-conclusion {
    text-align: center;
  }

  .security-image {
    margin-top: 0;
  }

  .security-stats {
    position: static;
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
  }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .security-container {
    padding: 0 15px;
  }

  .security-section {
    padding: 40px 0;
  }

  .security-title {
    font-size: 22px;
    line-height: 1.4;
  }

  .security-description p {
    font-size: 15px;
  }

  .security-features {
    gap: 15px;
  }

  .security-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .security-icon {
    margin-bottom: 10px;
  }

  .security-info h4 {
    font-size: 15px;
    text-align: center;
  }

  .security-info p {
    font-size: 13px;
    text-align: center;
  }

  .stat-card {
    padding: 12px;
  }

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

  .stat-label {
    font-size: 11px;
  }
}

/* Ruay Review Section */
.review-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

.review-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.review-image {
  position: relative;
  animation: fadeInLeft 1s ease-out;
  position: sticky;
  top: 20px;
}

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

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

.review-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

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

.review-title {
  font-family: 'Prompt', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.review-description p {
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 20px;
}

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

.review-description strong {
  color: #ff6b35;
  font-weight: 600;
}

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

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

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.feature-box:hover::before {
  left: 100%;
}

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

.feature-box i {
  color: #ff6b35;
  font-size: 28px;
  margin-bottom: 15px;
  display: block;
}

.feature-box h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-box p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.4;
  margin: 0;
}

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

/* Tablet Responsiveness */
@media (max-width: 768px) {
  .review-section {
    padding: 60px 0;
  }

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

  .review-image {
    position: static;
    order: 2;
  }

  .review-text {
    order: 1;
  }

  .review-title {
    font-size: 28px;
    text-align: center;
  }

  .review-description {
    text-align: center;
  }

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

  .review-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .review-badge {
    top: 15px;
    right: 15px;
    padding: 10px 15px;
    font-size: 12px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .review-container {
    padding: 0 15px;
  }

  .review-section {
    padding: 40px 0;
  }

  .review-title {
    font-size: 22px;
    line-height: 1.4;
  }

  .review-description p {
    font-size: 15px;
  }

  .feature-grid {
    gap: 15px;
  }

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

  .feature-box i {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .feature-box h4 {
    font-size: 15px;
  }

  .feature-box p {
    font-size: 13px;
  }

  .review-cta {
    flex-direction: column;
    gap: 15px;
  }

  .review-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Ruay Alternatives Section */
.alternatives-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

.alternatives-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.alternatives-title {
  font-family: 'Prompt', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.alternatives-description p {
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 20px;
}

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

.alternatives-description strong {
  color: #ff6b35;
  font-weight: 600;
}

.verification-checklist {
  margin-bottom: 30px;
}

.verification-checklist h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.check-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.check-item:hover {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateX(5px);
}

.check-item i {
  color: #ff6b35;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.check-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
  line-height: 1.3;
}

.check-content p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.4;
  margin: 0;
}

.pro-tips {
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 25px;
}

.pro-tips p {
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 15px;
}

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

.pro-tips strong {
  color: #ff6b35;
  font-weight: 600;
}

.alternatives-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.vip-benefits {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: 25px;
}

.benefit-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.benefit-header i {
  color: #ff6b35;
  font-size: 20px;
}

.benefit-header h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

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

.benefit-item span {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.4;
}

.lottery-types {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 20px;
}

.lottery-types h5 {
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 15px;
  text-align: center;
}

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

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

.lottery-item:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: scale(1.02);
}

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

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

/* Tablet Responsiveness */
@media (max-width: 768px) {
  .alternatives-section {
    padding: 60px 0;
  }

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

  .alternatives-title {
    font-size: 30px;
    text-align: center;
  }

  .alternatives-description {
    text-align: center;
  }

  .verification-checklist h3 {
    justify-content: center;
  }

  .pro-tips {
    text-align: center;
  }

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

  .lottery-item {
    justify-content: center;
  }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .alternatives-container {
    padding: 0 15px;
  }

  .alternatives-section {
    padding: 40px 0;
  }

  .alternatives-title {
    font-size: 22px;
    line-height: 1.4;
  }

  .alternatives-description p {
    font-size: 15px;
  }

  .verification-checklist h3 {
    font-size: 18px;
  }

  .checklist-items {
    gap: 12px;
  }

  .check-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .check-content h4 {
    text-align: center;
    margin-top: 8px;
  }

  .check-content p {
    text-align: center;
  }

  .pro-tips {
    padding: 20px;
  }

  .pro-tips p {
    font-size: 15px;
  }

  .vip-benefits {
    padding: 20px;
  }

  .benefit-header {
    justify-content: center;
  }

  .benefit-item {
    justify-content: center;
  }

  .lottery-grid {
    gap: 8px;
  }

  .lottery-item {
    padding: 6px 10px;
  }

  .lottery-item span {
    font-size: 11px;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

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

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

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

/* Footer About Section */
.footer-about {
  max-width: 400px;
}

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

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

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 25px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cccccc;
}

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

.contact-item span {
  font-size: 14px;
  font-weight: 500;
}

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

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 20px;
  position: relative;
}

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

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

.footer-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

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

.footer-link:hover {
  color: #ff6b35;
  padding-left: 20px;
}

.footer-link:hover::before {
  background: #ff6b35;
  width: 6px;
  height: 6px;
}

/* Footer Features */
.footer-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 107, 53, 0.1);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  margin-bottom: 40px;
}

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

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

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

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

.feature-label {
  font-family: 'Prompt', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.feature-desc {
  font-size: 12px;
  color: #cccccc;
  margin-top: 2px;
}

/* Footer Bottom */
.footer-bottom {
  padding: 30px 0;
  text-align: center;
}

.footer-copyright {
  margin-bottom: 15px;
}

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

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

.disclaimer-text {
  font-size: 12px;
  color: #888888;
  line-height: 1.4;
  margin: 0;
  font-style: italic;
}

/* Tablet Responsiveness */
@media (max-width: 768px) {
  .footer-container {
    padding: 40px 15px 0;
  }

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

  .footer-about {
    grid-column: 1 / -1;
    max-width: none;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-logo {
    justify-content: center;
  }

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

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

  .feature-highlight {
    padding: 15px;
  }

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

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .footer-container {
    padding: 30px 10px 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
  }

  .footer-about {
    margin-bottom: 15px;
  }

  .footer-logo-text {
    font-size: 24px;
  }

  .footer-description {
    font-size: 15px;
  }

  .footer-title {
    font-size: 16px;
    text-align: center;
  }

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

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

  .footer-link {
    padding-left: 0;
  }

  .footer-link::before {
    display: none;
  }

  .footer-link:hover {
    padding-left: 0;
  }

  .footer-features {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 30px 0;
  }

  .feature-highlight {
    padding: 12px;
    flex-direction: column;
    text-align: center;
  }

  .feature-highlight i {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .footer-bottom {
    padding: 25px 0;
  }

  .footer-copyright p {
    font-size: 13px;
  }

  .disclaimer-text {
    font-size: 11px;
  }
}

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

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

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  transition: all 0.3s ease;
}

.sticky-btn:hover::before {
  background: rgba(255, 107, 53, 0.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;
  line-height: 1.2;
  text-align: center;
  transition: all 0.3s ease;
}

.sticky-btn-login {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  color: #ffffff;
  transform: translateY(-2px);
}

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

.sticky-btn-register {
  background: linear-gradient(135deg, #059669, #047857);
  color: #ffffff;
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #047857, #065f46);
  color: #ffffff;
  transform: translateY(-2px);
}

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

.sticky-btn-credit {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.sticky-btn-credit::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

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

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

@keyframes shine {
  0% {
    transform: translateX(-200%) translateY(-200%) rotate(45deg);
  }
  50% {
    transform: translateX(200%) translateY(200%) rotate(45deg);
  }
  100% {
    transform: translateX(-200%) translateY(-200%) rotate(45deg);
  }
}

/* Tablet Responsiveness */
@media (max-width: 768px) {
  .sticky-btn {
    padding: 10px 6px;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 16px;
  }
  
  .btn-text {
    font-size: 10px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .sticky-buttons {
    border-top: 1px solid rgba(255, 107, 53, 0.3);
  }
  
  .sticky-btn {
    padding: 8px 4px;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 15px;
    margin-bottom: 3px;
  }
  
  .btn-text {
    font-size: 9px;
    line-height: 1.1;
  }
}

/* Ensure main content has bottom padding to avoid overlap */
body {
  padding-bottom: 60px;
}

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

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

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

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

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

.login-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Logo Styles */
.login-logo {
  text-align: center;
  animation: fadeInDown 1s ease-out;
}

.logo-image {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Login Card */
.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: -100%; }
}

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* 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: none;
  align-items: center;
  gap: 10px;
  animation: shake 0.5s ease-in-out;
}

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

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

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

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

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

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

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

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

.input-icon {
  position: absolute;
  left: 16px;
  color: #888888;
  font-size: 16px;
  z-index: 1;
  transition: color 0.3s ease;
}

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

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

.form-input:focus + .password-toggle,
.form-input:focus ~ .input-icon {
  color: #ff6b35;
}

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

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

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

.field-error {
  display: block;
  color: #ef4444;
  font-size: 12px;
  margin-top: 5px;
  min-height: 16px;
  font-weight: 500;
}

/* Login Button */
.login-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

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

.login-btn.loading {
  pointer-events: none;
}

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

.loading-spinner {
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
}

.login-btn.loading .loading-spinner {
  display: flex;
}

/* Divider */
.login-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

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

.login-divider span {
  background: rgba(255, 255, 255, 0.05);
  padding: 0 20px;
  color: #888888;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* Register Button */
.register-btn {
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  border: 2px solid #ff6b35;
  border-radius: 12px;
  color: #ff6b35;
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

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

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

.security-note {
  font-size: 12px;
  color: #888888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  line-height: 1.4;
}

.security-note i {
  color: #10b981;
  font-size: 14px;
}

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

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

/* Tablet Responsiveness */
@media (max-width: 768px) {
  .login-section {
    padding: 15px 0;
  }

  .login-container {
    padding: 100px 15px;
  }

  .login-card {
    padding: 30px 25px;
    max-width: 100%;
  }

  .login-title {
    font-size: 28px;
  }

  .logo-image {
    width: 100px;
    height: 100px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .login-section {
    padding: 10px 0;
  }

  .login-container {
    padding: 100px 10px;
  }

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

  .login-title {
    font-size: 24px;
  }

  .login-subtitle {
    font-size: 14px;
  }

  .logo-image {
    width: 80px;
    height: 80px;
  }

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

  .input-icon {
    left: 14px;
    font-size: 14px;
  }

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

  .login-btn,
  .register-btn {
    padding: 14px 20px;
    font-size: 15px;
  }
}

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

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

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

.register-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Logo Styles */
.register-logo {
  text-align: center;
  animation: fadeInDown 1s ease-out;
}

.logo-image {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Register Card */
.register-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: -100%; }
}

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Error and Success Messages */
.error-message,
.success-message {
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 10px;
  animation: shake 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(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.error-message.show,
.success-message.show {
  display: flex;
}

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

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

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

.success-message span {
  color: #10b981;
  font-size: 14px;
  font-weight: 500;
}

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

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

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

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

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

.input-icon {
  position: absolute;
  left: 16px;
  color: #888888;
  font-size: 16px;
  z-index: 1;
  transition: color 0.3s ease;
}

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

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

.form-input:focus ~ .input-icon {
  color: #ff6b35;
}

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

.field-error {
  display: block;
  color: #ef4444;
  font-size: 12px;
  margin-top: 5px;
  min-height: 16px;
  font-weight: 500;
}

/* Register Button */
.register-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

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

.register-btn.loading {
  pointer-events: none;
}

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

.loading-spinner {
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
}

.register-btn.loading .loading-spinner {
  display: flex;
}

/* Divider */
.register-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

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

.register-divider span {
  background: rgba(255, 255, 255, 0.05);
  padding: 0 20px;
  color: #888888;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* Login Button */
.login-btn {
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  border: 2px solid #ff6b35;
  border-radius: 12px;
  color: #ff6b35;
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

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

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

.terms-note {
  font-size: 12px;
  color: #888888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  line-height: 1.4;
  flex-wrap: wrap;
}

.terms-note i {
  color: #ff6b35;
  font-size: 14px;
  flex-shrink: 0;
}

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

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

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

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

/* Tablet Responsiveness */
@media (max-width: 768px) {
  .register-section {
    padding: 15px 0;
  }

  .register-container {
    padding: 100px 15px;
  }

  .register-card {
    padding: 30px 25px;
    max-width: 100%;
  }

  .register-title {
    font-size: 28px;
  }

  .logo-image {
    width: 100px;
    height: 100px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .register-section {
    padding: 10px 0;
  }

  .register-container {
    padding: 100px 10px;
  }

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

  .register-title {
    font-size: 24px;
  }

  .register-subtitle {
    font-size: 14px;
  }

  .logo-image {
    width: 80px;
    height: 80px;
  }

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

  .input-icon {
    left: 14px;
    font-size: 14px;
  }

  .register-btn,
  .login-btn {
    padding: 14px 20px;
    font-size: 15px;
  }

  .terms-note {
    font-size: 11px;
    text-align: center;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

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

.hero-content {
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffffff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-cta-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 ease;
}

.hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
  color: #ffffff;
}

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

/* Promotion Sections */
.promotion-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.promotion-section:nth-child(even) {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.promotion-section:nth-child(odd) {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

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

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

.promotion-title {
  font-family: 'Prompt', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 0;
  background: linear-gradient(135deg, #ffffff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promotion-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.promotion-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  width: 100%;
  max-width: 1000px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.feature-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.feature-item:hover::before {
  left: 100%;
}

.feature-item i {
  font-size: 24px;
  color: #ff6b35;
  flex-shrink: 0;
  width: 30px;
  text-align: center;
}

.feature-item span {
  font-size: 16px;
  line-height: 1.5;
  color: #cccccc;
  font-weight: 500;
}

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

.promotion-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promotion-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 ease;
}

.promotion-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  color: #ffffff;
}

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

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

/* Tablet Responsiveness */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-cta-btn {
    padding: 16px 28px;
    font-size: 16px;
  }

  .promotion-section {
    padding: 60px 0;
  }

  .promotion-title {
    font-size: 28px;
  }

  .promotion-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-item {
    padding: 20px;
  }

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

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

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .hero-container,
  .promotion-container {
    padding: 0 15px;
  }

  .hero-section {
    padding: 80px 0 50px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-cta-btn {
    padding: 14px 24px;
    font-size: 15px;
  }

  .promotion-section {
    padding: 50px 0;
  }

  .promotion-title {
    font-size: 24px;
    line-height: 1.4;
  }

  .promotion-features {
    gap: 15px;
  }

  .feature-item {
    padding: 18px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .feature-item i {
    font-size: 28px;
    margin-bottom: 10px;
    width: auto;
  }

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

  .promotion-btn {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}