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

body {
  font-family: 'Sarabun', sans-serif;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.6);
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
}

/* Hero Section */
.hero-section {
  padding: 6rem 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(79, 172, 254, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(247, 147, 30, 0.05) 0%, transparent 100%);
  z-index: 1;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #4facfe 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.25rem;
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

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

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

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

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

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

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.3));
}

.hero-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

.hero-badge i {
  font-size: 1.25rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 1rem;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    width: 100%;
    max-width: 280px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .feature-item {
    padding: 0.75rem;
    justify-content: center;
  }
  
  .hero-badge {
    top: -0.5rem;
    right: -0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 3rem 1rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-text {
    gap: 1.5rem;
  }
  
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
  }
  
  .feature-item {
    padding: 0.625rem;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
  
  .feature-item span {
    font-size: 0.875rem;
  }
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
}

.header-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.site-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #4facfe 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.site-logo a:hover .logo-text {
  transform: scale(1.05);
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}

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

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

.nav-link:hover {
  color: #4facfe;
  background-color: rgba(79, 172, 254, 0.1);
  transform: translateY(-2px);
}

.header-cta .btn-cta {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  padding: 0.875rem 1.75rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  border: none;
  cursor: pointer;
}

.header-cta .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

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

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.hamburger-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
  width: 1.5rem;
  height: 0.125rem;
  background-color: #ffffff;
  border-radius: 0.125rem;
  transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(0.25rem, 0.25rem);
}

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

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.25rem, -0.25rem);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  padding: 2rem 0;
  transition: right 0.3s ease;
  overflow-y: auto;
}

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

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

.mobile-logo {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #4facfe 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.mobile-menu-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #4facfe;
}

.mobile-navigation {
  padding: 2rem 0;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

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

.mobile-nav-link:hover {
  background-color: rgba(79, 172, 254, 0.1);
  color: #4facfe;
  border-left-color: #4facfe;
  transform: translateX(10px);
}

.mobile-nav-link i {
  font-size: 1.125rem;
  min-width: 1.5rem;
}

.mobile-cta .mobile-cta-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  margin: 1rem 2rem 0;
  border-radius: 2rem;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  border-left: 3px solid transparent;
}

.mobile-cta .mobile-cta-btn:hover {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.6);
  border-left-color: transparent;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 1.5rem;
  }
  
  .nav-menu {
    gap: 1.5rem;
  }
  
  .nav-link {
    padding: 0.625rem 0.75rem;
    font-size: 0.9rem;
  }
  
  .header-cta .btn-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }
  
  .header-content {
    height: 70px;
  }
  
  .logo-text {
    font-size: 1.75rem;
  }
  
  .main-navigation {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 1rem;
  }
  
  .header-content {
    height: 65px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .mobile-menu {
    width: 100vw;
    right: -100vw;
  }
  
  .mobile-menu-header {
    padding: 0 1.5rem 1.5rem;
  }
  
  .mobile-nav-link {
    padding: 1rem 1.5rem;
  }
  
  .mobile-cta .mobile-cta-btn {
    margin: 1rem 1.5rem 0;
  }
}

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

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(79, 172, 254, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
  z-index: 1;
}

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

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #ff6b35 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.about-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

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

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

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(79, 172, 254, 0.3);
  transform: translateX(10px);
}

.highlight-item i {
  font-size: 2.5rem;
  color: #4facfe;
  min-width: 3rem;
  z-index: 1;
}

.highlight-text {
  z-index: 1;
}

.highlight-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.highlight-text p {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin: 0;
}

.about-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-img {
  max-width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  filter: drop-shadow(0 0 30px rgba(79, 172, 254, 0.3));
  transition: all 0.3s ease;
}

.about-img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 40px rgba(79, 172, 254, 0.5));
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

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

.stat-item i {
  font-size: 1.5rem;
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #b8b8b8;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .about-title {
    font-size: 2.25rem;
  }
  
  .about-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .highlight-item:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 4rem 1rem;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .about-description p {
    font-size: 0.95rem;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem;
  }
  
  .highlight-item i {
    font-size: 2rem;
  }
  
  .highlight-text h3 {
    font-size: 1.125rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .stat-item {
    padding: 1.25rem 0.75rem;
  }
  
  .stat-number {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 3rem 1rem;
  }
  
  .about-title {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  
  .about-text {
    gap: 1.5rem;
  }
  
  .about-description {
    gap: 1.25rem;
  }
  
  .about-description p {
    font-size: 0.9rem;
  }
  
  .about-highlights {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .highlight-item {
    padding: 1rem;
  }
  
  .highlight-item i {
    font-size: 1.75rem;
  }
  
  .highlight-text h3 {
    font-size: 1rem;
  }
  
  .highlight-text p {
    font-size: 0.875rem;
  }
  
  .stat-item {
    padding: 1rem 0.5rem;
  }
  
  .stat-number {
    font-size: 1.125rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

/* Payout Section */
.payout-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #2d1b69 100%);
  position: relative;
  overflow: hidden;
}

.payout-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 75% 25%, rgba(247, 147, 30, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 25% 75%, rgba(79, 172, 254, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 100%);
  z-index: 1;
}

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

.payout-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

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

.payout-img {
  max-width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  filter: drop-shadow(0 0 25px rgba(247, 147, 30, 0.4));
  transition: all 0.3s ease;
}

.payout-img:hover {
  transform: scale(1.02) rotate(1deg);
  filter: drop-shadow(0 0 35px rgba(247, 147, 30, 0.6));
}

.payout-badge {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  color: #ffffff;
  padding: 1.25rem 1.75rem;
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 25px rgba(247, 147, 30, 0.5);
  animation: bounce 2s infinite;
}

.payout-badge i {
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.payout-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.payout-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 50%, #4facfe 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.payout-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.payout-description p {
  font-size: 1.125rem;
  color: #d1d1d1;
  line-height: 1.8;
  text-align: justify;
}

.payout-description strong {
  color: #f7931e;
  font-weight: 700;
}

.payout-description a {
  color: #4facfe;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.payout-description a:hover {
  color: #ff6b35;
}

.payout-rates {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(15px);
}

.rates-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.rates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.rate-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rate-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(247, 147, 30, 0.1), transparent);
  transition: left 0.6s ease;
}

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

.rate-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(247, 147, 30, 0.3);
  transform: translateX(10px);
}

.rate-item i {
  font-size: 1.75rem;
  color: #f7931e;
  min-width: 2.5rem;
  z-index: 1;
}

.rate-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 1;
}

.rate-type {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
}

.rate-value {
  font-size: 1.25rem;
  color: #f7931e;
  font-weight: 700;
}

.payout-features {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  border-radius: 1rem;
  border: 1px solid rgba(79, 172, 254, 0.2);
}

.payout-features p {
  font-size: 1.125rem;
  color: #e1e1e1;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}

.payout-features strong {
  color: #4facfe;
  font-weight: 700;
}

.payout-cta {
  display: flex;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .payout-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .payout-title {
    font-size: 2.25rem;
  }
  
  .payout-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .payout-features p {
    font-size: 1rem;
    text-align: left;
  }
  
  .rate-item:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .payout-section {
    padding: 4rem 1rem;
  }
  
  .payout-title {
    font-size: 2rem;
  }
  
  .payout-description p {
    font-size: 0.95rem;
  }
  
  .payout-rates {
    padding: 1.5rem;
  }
  
  .rates-title {
    font-size: 1.25rem;
  }
  
  .rate-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 1rem;
  }
  
  .rate-item i {
    font-size: 1.5rem;
  }
  
  .rate-info {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  
  .rate-type {
    font-size: 0.9rem;
    text-align: center;
  }
  
  .rate-value {
    font-size: 1.125rem;
  }
  
  .payout-features {
    padding: 1.25rem;
  }
  
  .payout-features p {
    font-size: 0.95rem;
  }
  
  .payout-badge {
    top: -1rem;
    left: -1rem;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .payout-section {
    padding: 3rem 1rem;
  }
  
  .payout-title {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  
  .payout-text {
    gap: 1.5rem;
  }
  
  .payout-description {
    gap: 1.25rem;
  }
  
  .payout-description p {
    font-size: 0.9rem;
  }
  
  .payout-rates {
    padding: 1.25rem;
  }
  
  .rates-title {
    font-size: 1.125rem;
  }
  
  .rate-item {
    padding: 0.875rem;
  }
  
  .rate-item i {
    font-size: 1.25rem;
  }
  
  .rate-type {
    font-size: 0.825rem;
  }
  
  .rate-value {
    font-size: 1rem;
  }
  
  .payout-features {
    padding: 1rem;
  }
  
  .payout-features p {
    font-size: 0.875rem;
  }
  
  .payout-badge {
    top: -0.75rem;
    left: -0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    gap: 0.5rem;
  }
  
  .payout-badge i {
    font-size: 1.25rem;
  }
}

/* Security Section */
.security-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #16213e 0%, #0e1b3c 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(79, 172, 254, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.06) 0%, transparent 100%);
  z-index: 1;
}

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

.security-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.security-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.security-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #4facfe 0%, #9333ea 50%, #ff6b35 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.security-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.security-description p {
  font-size: 1.125rem;
  color: #d1d1d1;
  line-height: 1.8;
  text-align: justify;
}

.security-description strong {
  color: #4facfe;
  font-weight: 700;
}

.security-description a {
  color: #9333ea;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.security-description a:hover {
  color: #ff6b35;
}

.device-support {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

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

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

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

.device-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(79, 172, 254, 0.3);
  transform: translateY(-5px);
}

.device-item i {
  font-size: 2.5rem;
  color: #4facfe;
  z-index: 1;
}

.device-info {
  z-index: 1;
}

.device-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.device-info p {
  font-size: 0.9rem;
  color: #b8b8b8;
  margin: 0;
}

.security-cta {
  display: flex;
  justify-content: flex-start;
}

.security-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.security-img {
  max-width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  filter: drop-shadow(0 0 30px rgba(147, 51, 234, 0.3));
  transition: all 0.3s ease;
}

.security-img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 40px rgba(147, 51, 234, 0.5));
}

.security-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
}

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(79, 172, 254, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-card:hover {
  border-color: rgba(147, 51, 234, 0.3);
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2rem;
  color: #9333ea;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 0.875rem;
  color: #b8b8b8;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .security-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .security-title {
    font-size: 2.25rem;
    text-align: center;
  }
  
  .security-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .device-support {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .security-cta {
    justify-content: center;
  }
  
  .security-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .security-section {
    padding: 4rem 1rem;
  }
  
  .security-title {
    font-size: 2rem;
  }
  
  .security-description p {
    font-size: 0.95rem;
  }
  
  .device-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem;
  }
  
  .device-item i {
    font-size: 2rem;
  }
  
  .device-info h3 {
    font-size: 1.125rem;
  }
  
  .security-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .feature-card {
    padding: 1.25rem 0.75rem;
  }
  
  .feature-card i {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .security-section {
    padding: 3rem 1rem;
  }
  
  .security-title {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  
  .security-text {
    gap: 1.5rem;
  }
  
  .security-description {
    gap: 1.25rem;
  }
  
  .security-description p {
    font-size: 0.9rem;
  }
  
  .device-support {
    gap: 0.75rem;
    margin: 1.5rem 0;
  }
  
  .device-item {
    padding: 1rem;
  }
  
  .device-item i {
    font-size: 1.75rem;
  }
  
  .device-info h3 {
    font-size: 1rem;
  }
  
  .device-info p {
    font-size: 0.825rem;
  }
  
  .feature-card {
    padding: 1rem 0.5rem;
  }
  
  .feature-card i {
    font-size: 1.5rem;
  }
  
  .feature-card h4 {
    font-size: 0.9rem;
  }
  
  .feature-card p {
    font-size: 0.8rem;
  }
}

/* Investment Section */
.investment-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.investment-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(79, 172, 254, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 60% 40%, rgba(34, 197, 94, 0.08) 0%, transparent 100%);
  z-index: 1;
}

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

.investment-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: start;
}

.investment-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.investment-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #22c55e 0%, #4facfe 50%, #ff6b35 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.investment-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.investment-description p {
  font-size: 1.125rem;
  color: #d1d1d1;
  line-height: 1.8;
  text-align: justify;
}

.investment-description strong {
  color: #22c55e;
  font-weight: 700;
}

.investment-description a {
  color: #4facfe;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.investment-description a:hover {
  color: #ff6b35;
}

.investment-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

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

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(79, 172, 254, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.highlight-card:hover {
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-10px);
}

.highlight-card i {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.highlight-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.highlight-card p {
  font-size: 1rem;
  color: #b8b8b8;
  margin: 0;
  position: relative;
  z-index: 1;
}

.game-categories {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(15px);
}

.categories-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.categories-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.category-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateX(10px);
}

.category-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #22c55e 0%, #4facfe 100%);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  min-width: 3rem;
  z-index: 1;
}

.category-content {
  z-index: 1;
}

.category-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.category-content p {
  font-size: 0.95rem;
  color: #b8b8b8;
  margin: 0;
  line-height: 1.5;
}

.additional-info {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  border-radius: 1rem;
  border: 1px solid rgba(79, 172, 254, 0.2);
}

.additional-info p {
  font-size: 1.125rem;
  color: #e1e1e1;
  line-height: 1.8;
  text-align: justify;
  margin: 0 0 1.5rem 0;
}

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

.additional-info strong {
  color: #4facfe;
  font-weight: 700;
}

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

.investment-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.investment-img {
  max-width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  filter: drop-shadow(0 0 30px rgba(34, 197, 94, 0.3));
  transition: all 0.3s ease;
}

.investment-img:hover {
  transform: scale(1.02) rotate(-1deg);
  filter: drop-shadow(0 0 40px rgba(34, 197, 94, 0.5));
}

.investment-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
}

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

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.stats-card i {
  font-size: 2rem;
  color: #ff6b35;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: #b8b8b8;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .investment-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .investment-title {
    font-size: 2.25rem;
    text-align: center;
  }
  
  .investment-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .investment-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .additional-info p {
    font-size: 1rem;
    text-align: left;
  }
  
  .investment-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .investment-section {
    padding: 4rem 1rem;
  }
  
  .investment-title {
    font-size: 2rem;
  }
  
  .investment-description p {
    font-size: 0.95rem;
  }
  
  .highlight-card {
    padding: 1.5rem 1rem;
  }
  
  .highlight-card i {
    font-size: 2.5rem;
  }
  
  .game-categories {
    padding: 1.5rem;
  }
  
  .categories-title {
    font-size: 1.25rem;
  }
  
  .category-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
  }
  
  .category-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.125rem;
    min-width: 2.5rem;
  }
  
  .category-item:hover {
    transform: translateY(-5px);
  }
  
  .additional-info {
    padding: 1.25rem;
  }
  
  .additional-info p {
    font-size: 0.95rem;
  }
  
  .investment-stats {
    grid-template-columns: 1fr;
  }
  
  .stats-card {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .investment-section {
    padding: 3rem 1rem;
  }
  
  .investment-title {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  
  .investment-text {
    gap: 1.5rem;
  }
  
  .investment-description {
    gap: 1.25rem;
  }
  
  .investment-description p {
    font-size: 0.9rem;
  }
  
  .investment-highlights {
    gap: 0.75rem;
    margin: 1.5rem 0;
  }
  
  .highlight-card {
    padding: 1.25rem 0.75rem;
  }
  
  .highlight-card i {
    font-size: 2rem;
  }
  
  .highlight-card h3 {
    font-size: 1.125rem;
  }
  
  .game-categories {
    padding: 1.25rem;
  }
  
  .categories-title {
    font-size: 1.125rem;
  }
  
  .category-item {
    padding: 0.875rem;
  }
  
  .category-number {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    min-width: 2rem;
  }
  
  .category-content h4 {
    font-size: 1rem;
  }
  
  .category-content p {
    font-size: 0.875rem;
  }
  
  .additional-info {
    padding: 1rem;
  }
  
  .additional-info p {
    font-size: 0.875rem;
  }
  
  .stats-card {
    padding: 1rem;
  }
  
  .stats-card i {
    font-size: 1.75rem;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

/* Trust Section */
.trust-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0f0f23 0%, #2d1b69 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(79, 172, 254, 0.08) 0%, transparent 100%);
  z-index: 1;
}

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

.trust-content {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

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

.trust-img {
  max-width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.4));
  transition: all 0.3s ease;
}

.trust-img:hover {
  transform: scale(1.02) rotate(-1deg);
  filter: drop-shadow(0 0 35px rgba(168, 85, 247, 0.6));
}

.trust-badge {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, #a855f7 0%, #22c55e 100%);
  color: #ffffff;
  padding: 1.25rem 1.75rem;
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.5);
  animation: glow 2s infinite alternate;
}

.trust-badge i {
  font-size: 1.5rem;
}

@keyframes glow {
  0% {
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.5);
  }
  100% {
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.8);
  }
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.trust-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #a855f7 0%, #22c55e 50%, #4facfe 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.trust-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trust-description p {
  font-size: 1.125rem;
  color: #d1d1d1;
  line-height: 1.8;
  text-align: justify;
}

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

.trust-description a {
  color: #22c55e;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.trust-description a:hover {
  color: #4facfe;
}

.trust-reasons {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(15px);
}

.reasons-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reason-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.reason-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateX(10px);
}

.reason-item i {
  font-size: 1.25rem;
  color: #22c55e;
  min-width: 1.5rem;
  z-index: 1;
}

.reason-item span {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  z-index: 1;
}

.trust-conclusion {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  border-radius: 1rem;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.trust-conclusion p {
  font-size: 1.125rem;
  color: #e1e1e1;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}

.trust-conclusion strong {
  color: #4facfe;
  font-weight: 700;
}

.trust-cta {
  display: flex;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .trust-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .trust-title {
    font-size: 2.25rem;
    text-align: center;
  }
  
  .trust-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .trust-conclusion p {
    font-size: 1rem;
    text-align: left;
  }
  
  .reason-item:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .trust-section {
    padding: 4rem 1rem;
  }
  
  .trust-title {
    font-size: 2rem;
  }
  
  .trust-description p {
    font-size: 0.95rem;
  }
  
  .trust-reasons {
    padding: 1.5rem;
  }
  
  .reasons-title {
    font-size: 1.25rem;
  }
  
  .reason-item {
    padding: 0.875rem 1rem;
  }
  
  .reason-item span {
    font-size: 0.9rem;
  }
  
  .trust-conclusion {
    padding: 1.25rem;
  }
  
  .trust-conclusion p {
    font-size: 0.95rem;
  }
  
  .trust-badge {
    top: -1rem;
    right: -1rem;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .trust-section {
    padding: 3rem 1rem;
  }
  
  .trust-title {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  
  .trust-text {
    gap: 1.5rem;
  }
  
  .trust-description {
    gap: 1.25rem;
  }
  
  .trust-description p {
    font-size: 0.9rem;
  }
  
  .trust-reasons {
    padding: 1.25rem;
  }
  
  .reasons-title {
    font-size: 1.125rem;
  }
  
  .reasons-list {
    gap: 0.75rem;
  }
  
  .reason-item {
    padding: 0.75rem;
  }
  
  .reason-item i {
    font-size: 1.125rem;
  }
  
  .reason-item span {
    font-size: 0.825rem;
  }
  
  .trust-conclusion {
    padding: 1rem;
  }
  
  .trust-conclusion p {
    font-size: 0.875rem;
  }
  
  .trust-badge {
    top: -0.75rem;
    right: -0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    gap: 0.5rem;
  }
  
  .trust-badge i {
    font-size: 1.25rem;
  }
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(79, 172, 254, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.05) 0%, transparent 100%);
  z-index: 1;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.footer-description {
  font-size: 1.125rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin: 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d1d1;
  font-size: 1rem;
}

.contact-item i {
  color: #4facfe;
  font-size: 1.125rem;
  min-width: 1.25rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 2rem;
  height: 2px;
  background: linear-gradient(135deg, #ff6b35 0%, #4facfe 100%);
  border-radius: 1px;
}

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

.footer-link {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
  position: relative;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(135deg, #ff6b35 0%, #4facfe 100%);
  transition: width 0.3s ease;
}

.footer-link:hover::before {
  width: 100%;
}

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

.footer-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.feature-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(79, 172, 254, 0.3);
  transform: translateY(-3px);
}

.feature-badge i {
  color: #ff6b35;
  font-size: 1.25rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}

.footer-copyright p,
.footer-disclaimer p {
  margin: 0;
  color: #888888;
  font-size: 0.875rem;
}

.footer-disclaimer p {
  text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .site-footer {
    padding: 3rem 1.5rem 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-disclaimer p {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 2.5rem 1rem 1.5rem;
  }
  
  .footer-logo-text {
    font-size: 2rem;
  }
  
  .footer-description {
    font-size: 1rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .feature-badge {
    padding: 0.875rem;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .footer-title {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-menu {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 2rem 1rem 1rem;
    margin-top: 2rem;
  }
  
  .footer-content {
    gap: 2rem;
  }
  
  .footer-brand {
    gap: 1rem;
  }
  
  .footer-logo-text {
    font-size: 1.75rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-contact {
    gap: 0.75rem;
  }
  
  .contact-item {
    justify-content: center;
    font-size: 0.9rem;
  }
  
  .footer-links {
    gap: 1.25rem;
  }
  
  .footer-title {
    font-size: 1.125rem;
  }
  
  .footer-link {
    font-size: 0.875rem;
  }
  
  .footer-features {
    gap: 0.5rem;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
  }
  
  .feature-badge {
    padding: 0.75rem 0.5rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .feature-badge i {
    font-size: 1.125rem;
  }
  
  .feature-badge span {
    font-size: 0.8rem;
  }
  
  .footer-bottom {
    padding-top: 1.5rem;
    gap: 0.75rem;
  }
  
  .footer-copyright p,
  .footer-disclaimer p {
    font-size: 0.8rem;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.sticky-btn:last-child {
  border-right: none;
}

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.sticky-btn:hover {
  transform: translateY(-3px);
  color: #4facfe;
}

.sticky-btn i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  z-index: 1;
  position: relative;
}

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

.sticky-btn-login {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.sticky-btn-register {
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.sticky-btn-credit {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  animation: pulse-glow 2s infinite;
}

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

@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.6);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 0.875rem 0.25rem;
    gap: 0.25rem;
  }
  
  .sticky-btn i {
    font-size: 1.125rem;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 0.75rem 0.25rem;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 0.125rem;
  }
  
  .sticky-btn span {
    font-size: 0.65rem;
    line-height: 1.1;
  }
}

@media (max-width: 360px) {
  .sticky-btn span {
    font-size: 0.6rem;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
  }
  
  .sticky-btn {
    padding: 0.625rem 0.125rem;
  }
}

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

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

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

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(79, 172, 254, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.05) 0%, transparent 100%);
  z-index: 1;
}

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

.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 25px 50px 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 0%, #f7931e 50%, #4facfe 100%);
  border-radius: 1.5rem 1.5rem 0 0;
}

.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

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

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

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ff6b35 0%, #4facfe 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.error-message {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 0.75rem;
  color: #ef4444;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

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

.input-icon {
  position: absolute;
  left: 1rem;
  color: #4facfe;
  font-size: 1rem;
  z-index: 1;
}

.form-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-input:focus {
  outline: none;
  border-color: #4facfe;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
}

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

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

.password-toggle {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: #888888;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: color 0.3s ease;
  z-index: 1;
}

.password-toggle:hover {
  color: #4facfe;
}

.field-error {
  font-size: 0.8rem;
  color: #ef4444;
  margin-left: 0.5rem;
  min-height: 1.2rem;
}

.login-btn {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border: none;
  border-radius: 0.75rem;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
  position: relative;
  overflow: hidden;
}

.login-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.6);
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
}

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

.loading-spinner {
  display: none;
}

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

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

.register-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border: none;
  border-radius: 0.75rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

.login-features {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.feature-item i {
  color: #4facfe;
  font-size: 1.25rem;
}

.feature-item span {
  color: #b8b8b8;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 100px 1.5rem 1.5rem 1.5rem;
    min-height: calc(100vh - 140px);
  }
  
  .login-card {
    padding: 2rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .form-input {
    padding: 0.875rem 0.875rem 0.875rem 2.75rem;
  }
  
  .login-btn {
    padding: 1.125rem;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 0.875rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 100px 1rem 1rem 1rem;
  }
  
  .login-container {
    max-width: 100%;
  }
  
  .login-card {
    padding: 1.5rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.25rem;
  }
  
  .login-subtitle {
    font-size: 0.875rem;
  }
  
  .form-input {
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 0.75rem;
    font-size: 0.9rem;
  }
  
  .password-toggle {
    right: 0.75rem;
  }
  
  .login-btn {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  
  .login-features {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  
  .feature-item i {
    font-size: 1.125rem;
  }
  
  .feature-item span {
    font-size: 0.75rem;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 75% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 25% 75%, rgba(79, 172, 254, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 100%);
  z-index: 1;
}

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

.register-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #22c55e 100%);
  border-radius: 1.5rem 1.5rem 0 0;
}

.register-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

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

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

.register-header {
  text-align: center;
  margin-bottom: 2rem;
}

.register-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ff6b35 0%, #22c55e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.register-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.error-message {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 0.75rem;
  color: #ef4444;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

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

.success-message {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 0.75rem;
  color: #22c55e;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

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

.input-icon {
  position: absolute;
  left: 1rem;
  color: #22c55e;
  font-size: 1rem;
  z-index: 1;
}

.form-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-input:focus {
  outline: none;
  border-color: #22c55e;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

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

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

.field-error {
  font-size: 0.8rem;
  color: #ef4444;
  margin-left: 0.5rem;
  min-height: 1.2rem;
}

.register-btn {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border: none;
  border-radius: 0.75rem;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
  position: relative;
  overflow: hidden;
}

.register-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.6);
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
}

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

.loading-spinner {
  display: none;
}

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

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

.login-btn {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 2px solid #4facfe;
  border-radius: 0.75rem;
  color: #4facfe;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.login-btn:hover {
  background: rgba(79, 172, 254, 0.1);
  color: #ffffff;
  border-color: #4facfe;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.register-features {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

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

.feature-item span {
  color: #b8b8b8;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 1.5rem;
    min-height: calc(100vh - 140px);
  }
  
  .register-card {
    padding: 2rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .form-input {
    padding: 0.875rem 0.875rem 0.875rem 2.75rem;
  }
  
  .register-btn {
    padding: 1.125rem;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 0.875rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 1rem;
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-card {
    padding: 1.5rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.25rem;
  }
  
  .register-subtitle {
    font-size: 0.875rem;
  }
  
  .form-input {
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 0.75rem;
    font-size: 0.9rem;
  }
  
  .register-btn {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  
  .register-features {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  
  .feature-item i {
    font-size: 1.125rem;
  }
  
  .feature-item span {
    font-size: 0.75rem;
  }
}

/* Hero Section */
.hero-section {
  padding: 8rem 2rem 6rem;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(79, 172, 254, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 100%);
  z-index: 1;
}

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

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #4facfe 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  max-width: 1000px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #d1d1d1;
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
}

.hero-cta .btn {
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 2.5rem;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
  }
  50% {
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.7);
  }
}

/* Promotion Section */
.promotion-section {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

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

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

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 75%, rgba(79, 172, 254, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
  z-index: 1;
}

.promotion-alternate::before {
  background: 
    radial-gradient(circle at 75% 25%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 25% 75%, rgba(147, 51, 234, 0.06) 0%, transparent 50%);
}

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

.promotion-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

.promotion-header {
  width: 100%;
}

.promotion-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
  background: linear-gradient(135deg, #4facfe 0%, #22c55e 50%, #ff6b35 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.promotion-details {
  width: 100%;
  max-width: 800px;
}

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

.promotion-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promotion-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
  transition: left 0.6s ease;
}

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

.promotion-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(79, 172, 254, 0.3);
  transform: translateX(10px);
}

.promotion-item i {
  font-size: 1.5rem;
  color: #22c55e;
  min-width: 1.5rem;
  z-index: 1;
}

.promotion-item span {
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: 600;
  text-align: left;
  z-index: 1;
}

.promotion-cta {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(79, 172, 254, 0.6);
}

.btn i {
  font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 6rem 1.5rem 4rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .promotion-section {
    padding: 4rem 1.5rem;
  }
  
  .promotion-title {
    font-size: 2.25rem;
  }
  
  .promotion-content {
    gap: 2.5rem;
  }
  
  .promotion-item {
    padding: 1.25rem 1.5rem;
  }
  
  .promotion-item span {
    font-size: 1rem;
  }
  
  .promotion-item:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 1rem 3rem;
    margin-top: 70px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta .btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
  }
  
  .promotion-section {
    padding: 3rem 1rem;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
  
  .promotion-content {
    gap: 2rem;
  }
  
  .promotion-item {
    padding: 1rem 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .promotion-item i {
    font-size: 1.25rem;
  }
  
  .promotion-item span {
    font-size: 0.95rem;
    text-align: center;
  }
  
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 3rem 1rem 2.5rem;
    margin-top: 65px;
  }
  
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-content {
    gap: 1.5rem;
  }
  
  .hero-cta .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 2.5rem 1rem;
  }
  
  .promotion-title {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  
  .promotion-content {
    gap: 1.5rem;
  }
  
  .promotion-list {
    gap: 1rem;
  }
  
  .promotion-item {
    padding: 0.875rem 1rem;
  }
  
  .promotion-item i {
    font-size: 1.125rem;
  }
  
  .promotion-item span {
    font-size: 0.875rem;
  }
  
  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
  
  .btn i {
    font-size: 1.125rem;
  }
}