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

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

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

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
}

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

.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: linear-gradient(135deg, #2d3436, #636e72);
  color: #ffffff;
  border: 2px solid #ff6b35;
  box-shadow: 0 4px 15px rgba(99, 110, 114, 0.3);
}

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

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

.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-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #ffdd59);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

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

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

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

.feature-item:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.5);
  transform: translateX(5px);
}

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

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

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

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.image-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}

.highlight-box {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

.highlight-box i {
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
  margin-bottom: 8px;
}

.highlight-text {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.highlight-desc {
  display: block;
  font-size: 0.9rem;
  color: #ffffff;
  opacity: 0.9;
}

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

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-container {
    padding: 0 20px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .image-overlay {
    top: 10px;
    right: 10px;
  }
  
  .highlight-box {
    padding: 12px 16px;
  }
  
  .highlight-text {
    font-size: 1rem;
  }
  
  .highlight-desc {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .feature-item {
    padding: 10px 14px;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
}

/* Header Styles */
.main-header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  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 */
.logo-section {
  display: flex;
  align-items: center;
}

.logo-link {
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

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

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
}

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

.nav-item {
  position: relative;
}

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

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

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

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

/* Header CTA Button */
.header-cta {
  display: flex;
  align-items: center;
}

.header-cta-btn {
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  white-space: nowrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

.mobile-menu-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

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

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

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

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

.mobile-nav-item {
  margin-bottom: 8px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 20px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

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

.mobile-nav-link i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

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

.mobile-cta-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 24px;
  }
  
  .nav-list {
    gap: 24px;
  }
  
  .nav-link {
    font-size: 0.95rem;
    padding: 6px 12px;
  }
  
  .header-cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .desktop-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 16px;
    height: 55px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .mobile-menu {
    width: 260px;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-menu-title {
    font-size: 1.2rem;
  }
  
  .mobile-nav-link {
    font-size: 1rem;
    padding: 14px 15px;
  }
  
  .mobile-cta-item {
    padding: 0 15px;
  }
  
  .mobile-cta-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
}

/* Fix for header spacing in sections */
body {
  padding-top: 70px;
}

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

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

/* About Platform Section */
.about-platform-section {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 100px 0;
  position: relative;
}

.about-platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>')
  opacity: 0.1;
  pointer-events: none;
}

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

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 32px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.about-description {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-description p {
  font-size: 1.1rem;
  color: #d0d0d0;
  line-height: 1.8;
  text-align: justify;
}

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.about-img:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 107, 53, 0.6);
}

.trust-badges {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.badge-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
}

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

.badge-item span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Key Features */
.key-features {
  background: rgba(255, 107, 53, 0.05);
  border-radius: 20px;
  padding: 60px 40px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.features-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.features-title::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

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

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(26, 26, 26, 0.8);
  padding: 30px 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  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(135deg, #ff6b35, #f7931e);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: translateX(0);
}

.feature-card:hover {
  background: rgba(26, 26, 26, 1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.feature-icon i {
  color: #ffffff;
  font-size: 1.5rem;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .about-container {
    padding: 0 24px;
  }
  
  .about-content {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .key-features {
    padding: 50px 30px;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .about-platform-section {
    padding: 80px 0;
  }
  
  .about-container {
    padding: 0 20px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .trust-badges {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .key-features {
    padding: 40px 25px;
  }
  
  .features-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .about-platform-section {
    padding: 60px 0;
  }
  
  .about-container {
    padding: 0 16px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .about-description p {
    font-size: 0.95rem;
  }
  
  .badge-item {
    padding: 10px 16px;
    gap: 6px;
  }
  
  .badge-item span {
    font-size: 0.8rem;
  }
  
  .key-features {
    padding: 30px 20px;
  }
  
  .features-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .feature-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.25rem;
  }
  
  .feature-content h4 {
    font-size: 1.1rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
}

/* Comprehensive Services Section */
.comprehensive-services-section {
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.comprehensive-services-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.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(247, 147, 30, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
}

.services-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.services-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.services-description {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.services-description p {
  font-size: 1.1rem;
  color: #d0d0d0;
  line-height: 1.9;
  text-align: justify;
}

.services-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 107, 53, 0.3);
  transition: all 0.4s ease;
}

.services-img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 107, 53, 0.6);
}

.service-highlights {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-color: rgba(255, 107, 53, 0.8);
}

.highlight-item i {
  color: #ff6b35;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.highlight-item:hover i {
  color: #ffffff;
}

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

/* Lottery Types */
.lottery-types {
  margin-bottom: 80px;
}

.lottery-types-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.lottery-types-title::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

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

.lottery-card {
  background: rgba(26, 26, 26, 0.9);
  padding: 35px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.lottery-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  transition: left 0.4s ease;
}

.lottery-card:hover::before {
  left: 0;
}

.lottery-card:hover {
  background: rgba(26, 26, 26, 1);
  border-color: rgba(255, 107, 53, 0.5);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lottery-icon {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.lottery-card:hover .lottery-icon {
  transform: rotateY(180deg);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.lottery-icon i {
  color: #ffffff;
  font-size: 2rem;
}

.lottery-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.lottery-desc {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.lottery-features {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 8px 14px;
  border-radius: 15px;
  font-size: 0.85rem;
  color: #ff6b35;
  font-weight: 600;
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.5);
}

.feature-tag i {
  font-size: 0.75rem;
}

/* Payout Rates */
.payout-rates {
  background: rgba(255, 107, 53, 0.05);
  border-radius: 25px;
  padding: 50px 40px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.payout-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.payout-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

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

.payout-item {
  background: rgba(26, 26, 26, 0.8);
  padding: 30px 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.payout-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 15px 15px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.payout-item:hover::before {
  transform: scaleX(1);
}

.payout-item:hover {
  background: rgba(26, 26, 26, 1);
  border-color: rgba(255, 107, 53, 0.5);
  transform: translateY(-5px);
}

.payout-type {
  font-size: 1.1rem;
  color: #d0d0d0;
  margin-bottom: 10px;
  font-weight: 600;
}

.payout-rate {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff6b35;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-container {
    padding: 0 24px;
  }
  
  .services-content {
    gap: 50px;
    margin-bottom: 80px;
  }
  
  .services-title {
    font-size: 2.4rem;
  }
  
  .lottery-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
  }
  
  .payout-rates {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .comprehensive-services-section {
    padding: 80px 0;
  }
  
  .services-container {
    padding: 0 20px;
  }
  
  .services-header {
    margin-bottom: 60px;
  }
  
  .services-title {
    font-size: 2rem;
  }
  
  .services-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    margin-bottom: 60px;
  }
  
  .services-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .service-highlights {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .lottery-types-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .lottery-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
  
  .lottery-card {
    padding: 30px 20px;
  }
  
  .payout-rates {
    padding: 35px 25px;
  }
  
  .payout-title {
    font-size: 1.75rem;
  }
  
  .payout-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .comprehensive-services-section {
    padding: 60px 0;
  }
  
  .services-container {
    padding: 0 16px;
  }
  
  .services-header {
    margin-bottom: 40px;
  }
  
  .services-title {
    font-size: 1.75rem;
  }
  
  .services-description {
    gap: 20px;
  }
  
  .services-description p {
    font-size: 0.95rem;
  }
  
  .highlight-item {
    padding: 8px 12px;
  }
  
  .highlight-item span {
    font-size: 0.75rem;
  }
  
  .lottery-types {
    margin-bottom: 50px;
  }
  
  .lottery-types-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .lottery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .lottery-card {
    padding: 25px 15px;
  }
  
  .lottery-icon {
    width: 60px;
    height: 60px;
  }
  
  .lottery-icon i {
    font-size: 1.5rem;
  }
  
  .lottery-name {
    font-size: 1.2rem;
  }
  
  .lottery-desc {
    font-size: 0.9rem;
  }
  
  .feature-tag {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  
  .payout-rates {
    padding: 30px 20px;
  }
  
  .payout-title {
    font-size: 1.5rem;
  }
  
  .payout-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .payout-item {
    padding: 25px 20px;
  }
  
  .payout-type {
    font-size: 1rem;
  }
  
  .payout-rate {
    font-size: 1.1rem;
  }
}

/* Registration Guide Section */
.registration-guide-section {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

.registration-header {
  text-align: center;
  margin-bottom: 80px;
}

.registration-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
}

.registration-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.registration-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.intro-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.intro-text p {
  font-size: 1.1rem;
  color: #d0d0d0;
  line-height: 1.9;
  text-align: justify;
}

.steps-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  position: relative;
}

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

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

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

.step-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 15px 0 0 15px;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.step-item:hover::before {
  transform: scaleY(1);
}

.step-item:hover {
  background: rgba(26, 26, 26, 1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateX(10px);
}

.step-number {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

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

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

.registration-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.registration-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 107, 53, 0.3);
  transition: all 0.4s ease;
}

.registration-img:hover {
  transform: scale(1.05);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 107, 53, 0.6);
}

.bonus-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
  text-align: center;
  animation: bounce 2s infinite;
}

.bonus-badge i {
  color: #ffffff;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 5px;
}

.bonus-text {
  display: block;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
}

.bonus-amount {
  display: block;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Additional Info */
.additional-info {
  background: rgba(255, 107, 53, 0.05);
  border-radius: 20px;
  padding: 50px 40px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  margin-bottom: 80px;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.info-text p {
  font-size: 1.1rem;
  color: #d0d0d0;
  line-height: 1.9;
  text-align: justify;
}

.info-text a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-text a:hover {
  color: #f7931e;
  text-decoration: underline;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  min-width: 200px;
  justify-content: center;
}

/* Security Features */
.security-features {
  text-align: center;
}

.security-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
  position: relative;
}

.security-title::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

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

.security-item {
  background: rgba(26, 26, 26, 0.8);
  padding: 35px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.security-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.security-item:hover::before {
  transform: translateX(0);
}

.security-item:hover {
  background: rgba(26, 26, 26, 1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.security-icon {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.security-item:hover .security-icon {
  transform: rotateY(180deg);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.security-icon i {
  color: #ffffff;
  font-size: 1.8rem;
}

.security-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.security-item p {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .registration-container {
    padding: 0 24px;
  }
  
  .registration-content {
    gap: 50px;
    margin-bottom: 60px;
  }
  
  .registration-title {
    font-size: 2.4rem;
  }
  
  .additional-info {
    padding: 40px 30px;
    margin-bottom: 60px;
  }
  
  .security-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .registration-guide-section {
    padding: 80px 0;
  }
  
  .registration-container {
    padding: 0 20px;
  }
  
  .registration-header {
    margin-bottom: 60px;
  }
  
  .registration-title {
    font-size: 2rem;
  }
  
  .registration-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    margin-bottom: 50px;
  }
  
  .intro-text p {
    font-size: 1rem;
    text-align: left;
  }
  
  .steps-title {
    font-size: 1.6rem;
    text-align: left;
  }
  
  .step-item {
    padding: 20px 15px;
  }
  
  .step-item:hover {
    transform: translateY(-5px);
  }
  
  .bonus-badge {
    position: static;
    margin-top: 20px;
    display: inline-block;
  }
  
  .additional-info {
    padding: 35px 25px;
    margin-bottom: 50px;
  }
  
  .info-text p {
    font-size: 1rem;
    text-align: left;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-large {
    max-width: 300px;
    width: 100%;
  }
  
  .security-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .security-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .security-item {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .registration-guide-section {
    padding: 60px 0;
  }
  
  .registration-container {
    padding: 0 16px;
  }
  
  .registration-header {
    margin-bottom: 40px;
  }
  
  .registration-title {
    font-size: 1.75rem;
  }
  
  .intro-text {
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .intro-text p {
    font-size: 0.95rem;
  }
  
  .steps-title {
    font-size: 1.4rem;
  }
  
  .steps-list {
    gap: 15px;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .step-content h4 {
    font-size: 1.1rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .bonus-badge {
    padding: 12px 16px;
  }
  
  .bonus-badge i {
    font-size: 1.2rem;
  }
  
  .bonus-text {
    font-size: 0.8rem;
  }
  
  .bonus-amount {
    font-size: 1rem;
  }
  
  .additional-info {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
  
  .info-text {
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .info-text p {
    font-size: 0.95rem;
  }
  
  .btn-large {
    padding: 15px 25px;
    font-size: 1rem;
    min-width: auto;
  }
  
  .security-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .security-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .security-item {
    padding: 25px 15px;
  }
  
  .security-icon {
    width: 60px;
    height: 60px;
  }
  
  .security-icon i {
    font-size: 1.5rem;
  }
  
  .security-item h4 {
    font-size: 1.1rem;
  }
  
  .security-item p {
    font-size: 0.9rem;
  }
}

/* Number Selection Guide Section */
.number-selection-guide-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.number-selection-guide-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" width="20" height="17.32" patternUnits="userSpaceOnUse"><polygon points="10,1 18.66,6 18.66,16 10,21 1.34,16 1.34,6" fill="none" stroke="%23ff6b35" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>')
  opacity: 0.3;
  pointer-events: none;
}

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

.guide-header {
  text-align: center;
  margin-bottom: 80px;
}

.guide-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
}

.guide-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.guide-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.intro-description {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.intro-description p {
  font-size: 1.1rem;
  color: #d0d0d0;
  line-height: 1.9;
  text-align: justify;
}

.guide-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.guide-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 107, 53, 0.3);
  transition: all 0.4s ease;
}

.guide-img:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 107, 53, 0.6);
}

.analysis-tools {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.tool-item:hover {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-color: rgba(255, 107, 53, 0.8);
  transform: translateY(-5px);
}

.tool-item i {
  color: #ff6b35;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.tool-item:hover i {
  color: #ffffff;
}

.tool-item span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Analysis Techniques */
.analysis-techniques {
  margin-bottom: 80px;
}

.techniques-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.techniques-title::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

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

.technique-card {
  background: rgba(26, 26, 26, 0.9);
  padding: 35px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.technique-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  transition: left 0.4s ease;
}

.technique-card:hover::before {
  left: 0;
}

.technique-card:hover {
  background: rgba(26, 26, 26, 1);
  border-color: rgba(255, 107, 53, 0.5);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.technique-icon {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.technique-card:hover .technique-icon {
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.technique-icon i {
  color: #ffffff;
  font-size: 1.8rem;
}

.technique-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.technique-desc {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0;
}

/* Additional Content */
.additional-content {
  margin-bottom: 80px;
}

.content-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.ai-recommendation,
.money-management {
  background: rgba(255, 107, 53, 0.05);
  border-radius: 20px;
  padding: 40px 35px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.ai-recommendation:hover,
.money-management:hover {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-5px);
}

.section-subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.ai-recommendation p,
.money-management p {
  font-size: 1.05rem;
  color: #d0d0d0;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}

.money-management a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.money-management a:hover {
  color: #f7931e;
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.05));
  border-radius: 25px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

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

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.cta-description {
  font-size: 1.2rem;
  color: #d0d0d0;
  margin-bottom: 35px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .guide-container {
    padding: 0 24px;
  }
  
  .guide-content {
    gap: 50px;
    margin-bottom: 80px;
  }
  
  .guide-title {
    font-size: 2.4rem;
  }
  
  .techniques-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .content-sections {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cta-section {
    padding: 50px 30px;
  }
}

@media (max-width: 768px) {
  .number-selection-guide-section {
    padding: 80px 0;
  }
  
  .guide-container {
    padding: 0 20px;
  }
  
  .guide-header {
    margin-bottom: 60px;
  }
  
  .guide-title {
    font-size: 2rem;
  }
  
  .guide-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    margin-bottom: 60px;
  }
  
  .intro-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .analysis-tools {
    position: static;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .techniques-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .techniques-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .technique-card {
    padding: 30px 20px;
  }
  
  .additional-content {
    margin-bottom: 60px;
  }
  
  .ai-recommendation,
  .money-management {
    padding: 35px 25px;
  }
  
  .section-subtitle {
    font-size: 1.4rem;
  }
  
  .ai-recommendation p,
  .money-management p {
    font-size: 1rem;
    text-align: left;
  }
  
  .cta-section {
    padding: 40px 25px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-description {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-large {
    max-width: 300px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .number-selection-guide-section {
    padding: 60px 0;
  }
  
  .guide-container {
    padding: 0 16px;
  }
  
  .guide-header {
    margin-bottom: 40px;
  }
  
  .guide-title {
    font-size: 1.75rem;
  }
  
  .intro-description {
    gap: 20px;
  }
  
  .intro-description p {
    font-size: 0.95rem;
  }
  
  .tool-item {
    padding: 10px 14px;
  }
  
  .tool-item span {
    font-size: 0.8rem;
  }
  
  .analysis-techniques {
    margin-bottom: 50px;
  }
  
  .techniques-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .techniques-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .technique-card {
    padding: 25px 15px;
  }
  
  .technique-icon {
    width: 60px;
    height: 60px;
  }
  
  .technique-icon i {
    font-size: 1.5rem;
  }
  
  .technique-name {
    font-size: 1.1rem;
  }
  
  .technique-desc {
    font-size: 0.9rem;
  }
  
  .additional-content {
    margin-bottom: 40px;
  }
  
  .ai-recommendation,
  .money-management {
    padding: 25px 20px;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
  }
  
  .ai-recommendation p,
  .money-management p {
    font-size: 0.95rem;
  }
  
  .cta-section {
    padding: 30px 20px;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .btn-large {
    padding: 15px 25px;
    font-size: 1rem;
    min-width: auto;
  }
}

/* Banking System Section */
.banking-system-section {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

.banking-header {
  text-align: center;
  margin-bottom: 80px;
}

.banking-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
}

.banking-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

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

.intro-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.intro-text p {
  font-size: 1.1rem;
  color: #d0d0d0;
  line-height: 1.9;
  text-align: justify;
}

.banking-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banking-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 107, 53, 0.3);
  transition: all 0.4s ease;
}

.banking-img:hover {
  transform: scale(1.05);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 107, 53, 0.6);
}

.speed-badges {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.speed-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  padding: 12px 16px;
  border-radius: 25px;
  border: 1px solid rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  animation: pulse-glow 2s infinite;
}

.speed-badge:hover {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-color: rgba(255, 107, 53, 0.8);
  transform: scale(1.05);
}

.speed-badge i {
  color: #ff6b35;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.speed-badge:hover i {
  color: #ffffff;
}

.speed-text {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
  }
}

/* Banking Benefits */
.banking-benefits {
  margin-bottom: 80px;
}

.benefits-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.benefits-title::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

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

.benefit-item {
  background: rgba(26, 26, 26, 0.9);
  padding: 35px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  transition: left 0.4s ease;
}

.benefit-item:hover::before {
  left: 0;
}

.benefit-item:hover {
  background: rgba(26, 26, 26, 1);
  border-color: rgba(255, 107, 53, 0.5);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-number {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-number {
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

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

.benefit-desc {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0;
}

/* Additional Services */
.additional-services {
  margin-bottom: 80px;
}

.service-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.casino-section,
.slots-section {
  background: rgba(255, 107, 53, 0.05);
  border-radius: 20px;
  padding: 40px 35px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.casino-section:hover,
.slots-section:hover {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-5px);
}

.service-subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
}

.service-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.casino-section p,
.slots-section p {
  font-size: 1.05rem;
  color: #d0d0d0;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}

.casino-section a,
.slots-section a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.casino-section a:hover,
.slots-section a:hover {
  color: #f7931e;
  text-decoration: underline;
}

.security-info {
  background: rgba(255, 107, 53, 0.05);
  border-radius: 20px;
  padding: 40px 35px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.security-info:hover {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-5px);
}

.security-subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
}

.security-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.security-info p {
  font-size: 1.05rem;
  color: #d0d0d0;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}

/* Supported Banks */
.supported-banks {
  margin-bottom: 80px;
}

.banks-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.banks-title::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

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

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

.bank-item:hover {
  background: rgba(26, 26, 26, 1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.bank-icon {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.bank-icon i {
  color: #ffffff;
  font-size: 1.2rem;
}

.bank-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
}

/* CTA Banking */
.cta-banking {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.05));
  border-radius: 25px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

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

.cta-banking-content {
  position: relative;
  z-index: 2;
}

.cta-banking-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.cta-banking-description {
  font-size: 1.2rem;
  color: #d0d0d0;
  margin-bottom: 35px;
  line-height: 1.6;
}

.cta-banking-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .banking-container {
    padding: 0 24px;
  }
  
  .banking-content {
    gap: 50px;
    margin-bottom: 80px;
  }
  
  .banking-title {
    font-size: 2.4rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .service-sections {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .banks-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }
  
  .cta-banking {
    padding: 50px 30px;
  }
}

@media (max-width: 768px) {
  .banking-system-section {
    padding: 80px 0;
  }
  
  .banking-container {
    padding: 0 20px;
  }
  
  .banking-header {
    margin-bottom: 60px;
  }
  
  .banking-title {
    font-size: 2rem;
  }
  
  .banking-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    margin-bottom: 60px;
  }
  
  .intro-text p {
    font-size: 1rem;
    text-align: left;
  }
  
  .speed-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .benefits-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .benefit-item {
    padding: 30px 20px;
  }
  
  .casino-section,
  .slots-section,
  .security-info {
    padding: 35px 25px;
  }
  
  .service-subtitle,
  .security-subtitle {
    font-size: 1.4rem;
  }
  
  .casino-section p,
  .slots-section p,
  .security-info p {
    font-size: 1rem;
    text-align: left;
  }
  
  .banks-title {
    font-size: 1.75rem;
  }
  
  .banks-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
  }
  
  .bank-item {
    padding: 20px 15px;
  }
  
  .cta-banking {
    padding: 40px 25px;
  }
  
  .cta-banking-title {
    font-size: 1.8rem;
  }
  
  .cta-banking-description {
    font-size: 1.1rem;
  }
  
  .cta-banking-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-large {
    max-width: 300px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .banking-system-section {
    padding: 60px 0;
  }
  
  .banking-container {
    padding: 0 16px;
  }
  
  .banking-header {
    margin-bottom: 40px;
  }
  
  .banking-title {
    font-size: 1.75rem;
  }
  
  .intro-text {
    gap: 20px;
  }
  
  .intro-text p {
    font-size: 0.95rem;
  }
  
  .speed-badge {
    padding: 10px 12px;
  }
  
  .speed-text {
    font-size: 0.8rem;
  }
  
  .banking-benefits {
    margin-bottom: 50px;
  }
  
  .benefits-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .benefit-item {
    padding: 25px 15px;
  }
  
  .benefit-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .benefit-title {
    font-size: 1.1rem;
  }
  
  .benefit-desc {
    font-size: 0.9rem;
  }
  
  .additional-services {
    margin-bottom: 50px;
  }
  
  .service-sections {
    gap: 25px;
    margin-bottom: 30px;
  }
  
  .casino-section,
  .slots-section,
  .security-info {
    padding: 25px 20px;
  }
  
  .service-subtitle,
  .security-subtitle {
    font-size: 1.2rem;
  }
  
  .casino-section p,
  .slots-section p,
  .security-info p {
    font-size: 0.95rem;
  }
  
  .supported-banks {
    margin-bottom: 50px;
  }
  
  .banks-title {
    font-size: 1.5rem;
  }
  
  .banks-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .bank-item {
    padding: 15px 12px;
  }
  
  .bank-icon {
    width: 40px;
    height: 40px;
  }
  
  .bank-icon i {
    font-size: 1rem;
  }
  
  .bank-name {
    font-size: 0.9rem;
  }
  
  .cta-banking {
    padding: 30px 20px;
  }
  
  .cta-banking-title {
    font-size: 1.5rem;
  }
  
  .cta-banking-description {
    font-size: 1rem;
  }
  
  .btn-large {
    padding: 15px 25px;
    font-size: 1rem;
    min-width: auto;
  }
}

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

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>')
  pointer-events: none;
}

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

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

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

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

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

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

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

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

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

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  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);
  border-radius: 1px;
}

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

.footer-menu-item {
  transition: transform 0.2s ease;
}

.footer-menu-item:hover {
  transform: translateX(5px);
}

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

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

.footer-link i {
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
  transition: color 0.3s ease;
}

.security-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 107, 53, 0.1);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.security-badge:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.4);
}

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

.security-badge span {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-cta {
  margin-top: 10px;
}

.footer-cta-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  padding: 30px 0;
  background: rgba(0, 0, 0, 0.3);
}

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

.copyright {
  color: #b0b0b0;
  font-size: 0.85rem;
}

.copyright p {
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

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

.social-link:hover {
  background: #ff6b35;
  color: #ffffff;
  border-color: #ff6b35;
  transform: translateY(-2px);
}

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

.footer-disclaimer {
  color: #888888;
  font-size: 0.75rem;
  text-align: right;
}

.footer-disclaimer p {
  margin: 0;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 24px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .footer-about {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }
  
  .footer-security {
    grid-column: 1 / -1;
    margin-top: 20px;
  }
  
  .security-badges {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .footer-cta-btn {
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 50px 0 0;
  }
  
  .footer-container {
    padding: 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
  }
  
  .footer-about {
    grid-column: 1 / -1;
  }
  
  .footer-security {
    grid-column: 1 / -1;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-link {
    font-size: 0.85rem;
  }
  
  .security-badge {
    padding: 10px 14px;
  }
  
  .security-badge span {
    font-size: 0.8rem;
  }
  
  .footer-bottom {
    padding: 25px 0;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-disclaimer {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 40px 0 0;
  }
  
  .footer-container {
    padding: 0 16px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 25px;
  }
  
  .footer-logo-text {
    font-size: 1.4rem;
  }
  
  .footer-description {
    font-size: 0.85rem;
  }
  
  .footer-title {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .footer-link {
    font-size: 0.8rem;
  }
  
  .contact-item {
    font-size: 0.85rem;
  }
  
  .security-badges {
    flex-direction: column;
  }
  
  .security-badge {
    padding: 8px 12px;
  }
  
  .security-badge span {
    font-size: 0.75rem;
  }
  
  .footer-cta-btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .footer-social {
    gap: 10px;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
  
  .social-link i {
    font-size: 0.9rem;
  }
  
  .copyright {
    font-size: 0.8rem;
  }
  
  .footer-disclaimer {
    font-size: 0.7rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 999;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  padding: 8px;
  gap: 8px;
}

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

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

.sticky-btn:hover::before {
  transform: translateX(100%);
}

.sticky-btn-login {
  background: linear-gradient(135deg, #2d3436, #636e72);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #636e72, #2d3436);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(45, 52, 54, 0.4);
}

.sticky-btn-register {
  background: linear-gradient(135deg, #0984e3, #74b9ff);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(9, 132, 227, 0.4);
}

.sticky-btn-bonus {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: pulse-bonus 2s infinite;
}

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

@keyframes pulse-bonus {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 8px rgba(255, 107, 53, 0);
  }
}

.sticky-btn i {
  font-size: 1.2rem;
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}

.sticky-btn-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

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

@media (max-width: 480px) {
  .sticky-buttons {
    padding: 5px;
    gap: 5px;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    min-height: 50px;
    border-radius: 6px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn-text {
    font-size: 0.65rem;
    font-weight: 500;
  }
}

@media (max-width: 360px) {
  .sticky-btn-text {
    font-size: 0.6rem;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
  }
  
  .sticky-btn {
    min-height: 45px;
  }
}

/* Add bottom padding to body to prevent content overlap */
body {
  padding-bottom: 80px;
}

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

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

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

/* Login Section */
.login-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 50px;
  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: 480px;
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.login-card {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

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

.logo-container {
  margin-bottom: 25px;
}

.login-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.login-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
}

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

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

/* Error Message */
.error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 25px;
  display: none;
  align-items: center;
  gap: 10px;
}

.error-message.show {
  display: flex;
  animation: slideDown 0.3s ease;
}

.error-message i {
  color: #ef4444;
  font-size: 1rem;
}

.error-text {
  color: #ef4444;
  font-size: 0.9rem;
  font-weight: 600;
}

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

/* Form Styles */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

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

.form-input {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

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

.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:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #ef4444;
}

.form-input:valid:not(:focus):not(:placeholder-shown) {
  border-color: #10b981;
}

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

.password-input-wrapper .form-input {
  padding-right: 50px;
}

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

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

.input-error {
  color: #ef4444;
  font-size: 0.85rem;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-error:before {
  content: '⚠';
  display: none;
}

.input-error:not(:empty):before {
  display: inline;
}

/* Form Actions */
.form-actions {
  margin-top: 10px;
}

.login-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

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

/* Login Footer */
.login-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.register-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
}

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

.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: 0.8rem;
}

/* Login Features */
.login-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b0b0b0;
  font-size: 0.85rem;
}

.feature-item i {
  color: #ff6b35;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 80px 0 30px;
    min-height: calc(100vh - 60px);
  }
  
  .login-container {
    max-width: 400px;
    padding: 0 16px;
  }
  
  .login-card {
    padding: 30px 25px;
    border-radius: 16px;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.75rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 14px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .login-features {
    gap: 20px;
    margin-top: 25px;
  }
  
  .feature-item {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 70px 0 20px;
    min-height: calc(100vh - 55px);
  }
  
  .login-container {
    max-width: 350px;
    padding: 0 12px;
  }
  
  .login-card {
    padding: 25px 20px;
    border-radius: 12px;
  }
  
  .login-logo {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .login-subtitle {
    font-size: 0.85rem;
  }
  
  .form-input {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .login-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  
  .login-links {
    flex-direction: column;
    gap: 15px;
  }
  
  .login-link {
    justify-content: center;
    font-size: 0.85rem;
  }
  
  .login-features {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }
  
  .feature-item {
    justify-content: center;
    font-size: 0.75rem;
  }
}

/* Register Section */
.register-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 50px;
  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: 500px;
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.register-card {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

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

.logo-container {
  margin-bottom: 25px;
}

.register-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.register-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
}

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

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

/* Message Styles */
.error-message,
.success-message {
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 25px;
  display: none;
  align-items: center;
  gap: 10px;
}

.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;
  animation: slideDown 0.3s ease;
}

.error-message i {
  color: #ef4444;
  font-size: 1rem;
}

.success-message i {
  color: #10b981;
  font-size: 1rem;
}

.error-text {
  color: #ef4444;
  font-size: 0.9rem;
  font-weight: 600;
}

.success-text {
  color: #10b981;
  font-size: 0.9rem;
  font-weight: 600;
}

@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;
  margin-bottom: 30px;
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

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

.form-input {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

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

.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:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #ef4444;
}

.form-input:valid:not(:focus):not(:placeholder-shown) {
  border-color: #10b981;
}

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

.input-error {
  color: #ef4444;
  font-size: 0.85rem;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-error:before {
  content: '⚠';
  display: none;
}

.input-error:not(:empty):before {
  display: inline;
}

.input-help {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #888888;
  font-size: 0.8rem;
}

.input-help i {
  color: #ff6b35;
  font-size: 0.75rem;
}

/* Form Actions */
.form-actions {
  margin-top: 10px;
}

.register-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

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

/* Register Footer */
.register-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.login-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
}

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

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

.register-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

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

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

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

/* Register Benefits */
.register-benefits {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 30px 25px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.benefits-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.benefits-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 1px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 6px;
}

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

.benefit-item i {
  color: #ff6b35;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 80px 0 30px;
    min-height: calc(100vh - 60px);
  }
  
  .register-container {
    max-width: 420px;
    padding: 0 16px;
  }
  
  .register-card {
    padding: 30px 25px;
    border-radius: 16px;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.75rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 14px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .register-benefits {
    padding: 25px 20px;
  }
  
  .benefits-title {
    font-size: 1.2rem;
  }
  
  .benefit-item {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 70px 0 20px;
    min-height: calc(100vh - 55px);
  }
  
  .register-container {
    max-width: 360px;
    padding: 0 12px;
  }
  
  .register-card {
    padding: 25px 20px;
    border-radius: 12px;
  }
  
  .register-logo {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .register-subtitle {
    font-size: 0.85rem;
  }
  
  .form-input {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .register-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  
  .register-links {
    flex-direction: column;
    gap: 15px;
  }
  
  .register-link {
    justify-content: center;
    font-size: 0.85rem;
  }
  
  .register-benefits {
    padding: 20px 15px;
  }
  
  .benefits-title {
    font-size: 1.1rem;
  }
  
  .benefit-item {
    font-size: 0.8rem;
    gap: 10px;
  }
  
  .benefit-item i {
    font-size: 0.9rem;
    width: 18px;
  }
}

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

.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;
  position: relative;
  z-index: 2;
}

.hero-content {
  margin: 0 auto;
}

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

.hero-description {
  font-size: 1.3rem;
  color: #d0d0d0;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  margin-top: 50px;
}

.hero-btn {
  padding: 20px 40px;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 12px;
  animation: pulse-hero 2s infinite;
}

@keyframes pulse-hero {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
  }
}

/* Promotion Sections */
.promotion-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
  position: relative;
}

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

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="promo-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23ff6b35" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23promo-pattern)"/></svg>')
  pointer-events: none;
}

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

.promotion-card {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 50px 40px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 107, 53, 0.4);
}

.promotion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 25px 25px 0 0;
}

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

.promotion-icon {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.promotion-card:hover .promotion-icon {
  transform: rotateY(180deg);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

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

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

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

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

.promotion-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #d0d0d0;
  font-size: 1.1rem;
  line-height: 1.6;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.promotion-item:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.promotion-item i {
  color: #10b981;
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

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

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

.highlight-amount {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

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

.promotion-btn {
  padding: 16px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 10px;
  min-width: 200px;
  justify-content: center;
  transition: all 0.3s ease;
}

.promotion-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-container,
  .promotion-container {
    padding: 0 24px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-card {
    padding: 40px 30px;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-footer {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 50px;
  }
  
  .hero-container,
  .promotion-container {
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-btn {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-card {
    padding: 35px 25px;
    border-radius: 20px;
  }
  
  .promotion-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
  }
  
  .promotion-icon i {
    font-size: 1.8rem;
  }
  
  .promotion-title {
    font-size: 1.6rem;
    text-align: center;
  }
  
  .promotion-item {
    font-size: 1rem;
  }
  
  .promotion-footer {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
  
  .highlight-amount {
    font-size: 2.2rem;
  }
  
  .promotion-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 70px 0 40px;
  }
  
  .hero-container,
  .promotion-container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .hero-btn {
    padding: 14px 25px;
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 40px 0;
  }
  
  .promotion-card {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .promotion-header {
    gap: 12px;
    margin-bottom: 25px;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.5rem;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .promotion-list {
    gap: 15px;
  }
  
  .promotion-item {
    font-size: 0.95rem;
  }
  
  .promotion-footer {
    gap: 20px;
    padding-top: 25px;
  }
  
  .highlight-amount {
    font-size: 2rem;
  }
  
  .highlight-text {
    font-size: 0.9rem;
  }
  
  .promotion-btn {
    padding: 14px 25px;
    font-size: 1rem;
    min-width: auto;
  }
}