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

body {
  font-family: 'Sarabun', sans-serif;
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}

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

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

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

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #2d1b69 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

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

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

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

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

.hero-description {
  font-size: 1.25rem;
  color: #b8c5d1;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #1a1f2e;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffd700;
  border-color: #ffd700;
}

.btn-secondary:hover {
  background: #ffd700;
  color: #1a1f2e;
  transform: translateY(-2px);
}

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

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

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

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

.feature-item span {
  font-weight: 500;
  color: #e1e8ed;
}

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

.hero-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 215, 0, 0.3);
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #00c851 0%, #007e33 100%);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 200, 81, 0.3);
}

.hero-badge i {
  color: #ffffff;
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 60px 0;
    min-height: 90vh;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-item {
    justify-content: center;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-container {
    padding: 0 20px;
  }
  
  .hero-content {
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .feature-item {
    padding: 0.75rem;
  }
  
  .hero-badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

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

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

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

.logo-link {
  text-decoration: none;
  color: inherit;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 2rem;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
}

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

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

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

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

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #1a1f2e;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 4px;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #ffd700;
  transition: all 0.3s ease;
  border-radius: 1px;
}

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

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

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

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

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

.mobile-menu-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;
}

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

.mobile-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.mobile-menu-close:hover {
  color: #ff6b35;
  transform: rotate(90deg);
}

.mobile-nav {
  flex: 1;
}

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

.mobile-nav-item {
  border-radius: 12px;
  overflow: hidden;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(5px);
}

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

.mobile-cta-item {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-nav-cta {
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%) !important;
  color: #1a1f2e !important;
  border: none !important;
  font-weight: 600;
  justify-content: center;
}

.mobile-nav-cta:hover {
  background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%) !important;
  color: #1a1f2e !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.mobile-nav-cta i {
  color: #1a1f2e !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-nav {
    margin: 0 1rem;
  }
  
  .nav-list {
    gap: 1.5rem;
  }
}

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

@media (max-width: 480px) {
  .header-container {
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-menu-content {
    padding: 1.5rem;
  }
  
  .mobile-nav-link {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }
}

/* Body padding to prevent content hiding behind fixed header */
body {
  padding-top: 70px;
}

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

/* About Section */
.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
  position: relative;
}

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

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

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 4rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 2rem;
  line-height: 1.3;
}

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

.about-description strong {
  color: #ffd700;
  font-weight: 600;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

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

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

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.95rem;
  color: #b8c5d1;
  line-height: 1.5;
}

.about-image {
  position: relative;
  grid-column: 1 / -1;
  margin-top: 2rem;
}

.about-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.about-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 1rem;
  justify-content: space-around;
}

.stat-item {
  background: rgba(26, 31, 46, 0.9);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(10px);
  flex: 1;
}

.stat-item i {
  color: #ffd700;
  font-size: 1.5rem;
}

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

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: #b8c5d1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-container {
    padding: 0 15px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }
  
  .about-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .about-description {
    text-align: left;
  }
  
  .about-description p {
    font-size: 1rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-card {
    padding: 1.25rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.25rem;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 0.75rem;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  .stat-item {
    padding: 0.75rem;
    justify-content: center;
  }
  
  .stat-number {
    font-size: 1.25rem;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .about-section {
    padding: 80px 0;
  }
  
  .about-content {
    gap: 3.5rem;
  }
  
  .about-title {
    font-size: 2.25rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  
  .about-description p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  
  .feature-card {
    padding: 1rem;
  }
  
  .feature-title {
    font-size: 1.1rem;
  }
  
  .feature-desc {
    font-size: 0.9rem;
  }
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #2d1b69 100%);
  position: relative;
  overflow: hidden;
}

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

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

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

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

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

.features-text {
  position: relative;
  z-index: 2;
}

.feature-intro p {
  font-size: 1.1rem;
  color: #b8c5d1;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.feature-intro strong {
  color: #ffd700;
  font-weight: 600;
}

.special-features {
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.special-features-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.special-features-title::before {
  content: '';
  width: 4px;
  height: 25px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  border-radius: 2px;
}

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

.features-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.features-list-item:last-child {
  border-bottom: none;
}

.features-list-item:hover {
  background: rgba(255, 215, 0, 0.05);
  padding-left: 0.5rem;
  border-radius: 8px;
}

.features-list-item i {
  color: #ffd700;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.features-list-item span {
  color: #e1e8ed;
  font-size: 1.05rem;
  font-weight: 500;
}

.auto-wallet-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.auto-wallet-section p {
  font-size: 1.1rem;
  color: #b8c5d1;
  line-height: 1.8;
  margin: 0;
}

.auto-wallet-section strong {
  color: #ffd700;
  font-weight: 600;
}

.features-showcase {
  position: relative;
}

.showcase-image {
  position: relative;
  margin-bottom: 2rem;
}

.showcase-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.feature-highlights {
  display: grid;
  gap: 1rem;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.highlight-card:hover {
  transform: translateX(10px);
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

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

.highlight-icon i {
  color: #1a1f2e;
  font-size: 1.25rem;
}

.highlight-content {
  flex: 1;
}

.highlight-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.highlight-desc {
  font-size: 0.9rem;
  color: #b8c5d1;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .features-section {
    padding: 60px 0;
  }
  
  .features-container {
    padding: 0 15px;
  }
  
  .features-title {
    font-size: 2rem;
  }
  
  .features-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .feature-intro p {
    font-size: 1rem;
  }
  
  .special-features {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  .special-features-title {
    font-size: 1.25rem;
  }
  
  .features-list-item {
    padding: 0.75rem 0;
  }
  
  .features-list-item span {
    font-size: 1rem;
  }
  
  .auto-wallet-section {
    padding: 1.25rem;
  }
  
  .auto-wallet-section p {
    font-size: 1rem;
  }
  
  .highlight-card {
    padding: 1rem;
  }
  
  .highlight-icon {
    width: 45px;
    height: 45px;
  }
  
  .highlight-icon i {
    font-size: 1.1rem;
  }
  
  .highlight-title {
    font-size: 1rem;
  }
  
  .highlight-desc {
    font-size: 0.85rem;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .features-section {
    padding: 80px 0;
  }
  
  .features-title {
    font-size: 2.25rem;
  }
  
  .features-content {
    gap: 3rem;
  }
  
  .special-features {
    margin: 2.5rem 0;
  }
}

@media (max-width: 480px) {
  .features-title {
    font-size: 1.75rem;
  }
  
  .features-header {
    margin-bottom: 3rem;
  }
  
  .feature-intro p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  
  .special-features {
    padding: 1.25rem;
  }
  
  .special-features-title {
    font-size: 1.1rem;
  }
  
  .highlight-card {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  
  .highlight-icon {
    width: 50px;
    height: 50px;
  }
}

/* Registration Section */
.registration-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 50%, #2d1b69 100%);
  position: relative;
}

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

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

.registration-header {
  text-align: center;
  margin-bottom: 4rem;
}

.registration-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

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

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

.registration-text {
  position: relative;
  z-index: 2;
}

.registration-intro p {
  font-size: 1.1rem;
  color: #b8c5d1;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.registration-intro strong {
  color: #ffd700;
  font-weight: 600;
}

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

.inline-link:hover {
  color: #ff6b35;
  text-decoration: none;
}

.benefits-section,
.usage-guide {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.benefits-title,
.usage-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefits-title::before,
.usage-title::before {
  content: '';
  width: 4px;
  height: 25px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  border-radius: 2px;
}

.benefits-section p,
.usage-guide p {
  font-size: 1.1rem;
  color: #b8c5d1;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.benefits-section strong,
.usage-guide strong {
  color: #ffd700;
  font-weight: 600;
}

.registration-steps {
  position: relative;
}

.steps-image {
  margin-bottom: 2rem;
}

.steps-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.steps-guide {
  margin-bottom: 2rem;
}

.steps-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateX(5px);
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.step-number {
  position: relative;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-number i {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #1a1f2e;
  font-size: 0.8rem;
}

.step-number span {
  color: #1a1f2e;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-content {
  flex: 1;
}

.step-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.step-desc {
  font-size: 0.95rem;
  color: #b8c5d1;
  margin: 0;
}

.registration-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-cta {
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #1a1f2e;
  padding: 1.25rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary-cta {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  padding: 1.25rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
  background: #ffd700;
  color: #1a1f2e;
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .registration-section {
    padding: 60px 0;
  }
  
  .registration-container {
    padding: 0 15px;
  }
  
  .registration-title {
    font-size: 2rem;
  }
  
  .registration-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .registration-intro p {
    font-size: 1rem;
  }
  
  .benefits-section,
  .usage-guide {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .benefits-title,
  .usage-title {
    font-size: 1.25rem;
  }
  
  .benefits-section p,
  .usage-guide p {
    font-size: 1rem;
  }
  
  .step-item {
    padding: 1rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
  }
  
  .step-number span {
    font-size: 1.25rem;
  }
  
  .step-number i {
    font-size: 0.7rem;
    top: 6px;
    right: 6px;
  }
  
  .registration-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta,
  .btn-secondary-cta {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .registration-section {
    padding: 80px 0;
  }
  
  .registration-title {
    font-size: 2.25rem;
  }
  
  .registration-content {
    gap: 3rem;
  }
  
  .registration-cta {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .registration-title {
    font-size: 1.75rem;
  }
  
  .registration-intro p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  
  .benefits-section,
  .usage-guide {
    padding: 1.25rem;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  
  .step-number {
    margin-bottom: 0.5rem;
  }
  
  .btn-cta,
  .btn-secondary-cta {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

/* Transaction Section */
.transaction-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
  position: relative;
}

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

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

.transaction-header {
  text-align: center;
  margin-bottom: 4rem;
}

.transaction-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

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

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

.transaction-text {
  position: relative;
  z-index: 2;
}

.system-intro p {
  font-size: 1.1rem;
  color: #b8c5d1;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.system-intro strong {
  color: #ffd700;
  font-weight: 600;
}

.advantages-section {
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.advantages-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.advantages-title::before {
  content: '';
  width: 4px;
  height: 25px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  border-radius: 2px;
}

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

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

.advantage-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 215, 0, 0.3);
}

.advantage-item i {
  color: #ffd700;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.advantage-item span {
  color: #e1e8ed;
  font-weight: 500;
  font-size: 0.95rem;
}

.withdrawal-info {
  margin: 2rem 0;
}

.withdrawal-info p {
  font-size: 1.1rem;
  color: #b8c5d1;
  line-height: 1.8;
}

.withdrawal-info strong {
  color: #ffd700;
  font-weight: 600;
}

.security-features {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.security-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.security-title::before {
  content: '';
  width: 4px;
  height: 25px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  border-radius: 2px;
}

.security-features p {
  font-size: 1.1rem;
  color: #b8c5d1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.security-features strong {
  color: #ffd700;
  font-weight: 600;
}

.transaction-features {
  position: relative;
}

.feature-image {
  margin-bottom: 2rem;
}

.feature-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.banking-options {
  margin-bottom: 2.5rem;
}

.banking-title,
.methods-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.bank-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.bank-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.bank-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: scale(1.02);
}

.bank-item i {
  color: #ffd700;
  font-size: 1rem;
}

.bank-item span {
  color: #e1e8ed;
  font-size: 0.9rem;
  font-weight: 500;
}

.methods-list {
  display: grid;
  gap: 1rem;
}

.method-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.method-card:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

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

.method-icon i {
  color: #1a1f2e;
  font-size: 1.25rem;
}

.method-content {
  flex: 1;
}

.method-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.method-desc {
  font-size: 0.9rem;
  color: #b8c5d1;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .transaction-section {
    padding: 60px 0;
  }
  
  .transaction-container {
    padding: 0 15px;
  }
  
  .transaction-title {
    font-size: 2rem;
  }
  
  .transaction-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .system-intro p {
    font-size: 1rem;
  }
  
  .advantages-section,
  .security-features {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  .advantages-title,
  .security-title {
    font-size: 1.25rem;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .advantage-item {
    padding: 0.75rem;
  }
  
  .advantage-item span {
    font-size: 0.9rem;
  }
  
  .bank-grid {
    grid-template-columns: 1fr;
  }
  
  .method-card {
    padding: 1rem;
  }
  
  .method-icon {
    width: 45px;
    height: 45px;
  }
  
  .method-icon i {
    font-size: 1.1rem;
  }
  
  .method-name {
    font-size: 1rem;
  }
  
  .method-desc {
    font-size: 0.85rem;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .transaction-section {
    padding: 80px 0;
  }
  
  .transaction-title {
    font-size: 2.25rem;
  }
  
  .transaction-content {
    gap: 3rem;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .transaction-title {
    font-size: 1.75rem;
  }
  
  .system-intro p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  
  .advantages-section,
  .security-features {
    padding: 1.25rem;
  }
  
  .banking-title,
  .methods-title {
    font-size: 1.1rem;
  }
  
  .method-card {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  
  .method-icon {
    margin-bottom: 0.5rem;
  }
}

/* Warnings Section */
.warnings-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2d1b69 0%, #1a1f2e 50%, #0f1419 100%);
  position: relative;
}

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

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

.warnings-header {
  text-align: center;
  margin-bottom: 4rem;
}

.warnings-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

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

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

.warnings-text {
  position: relative;
  z-index: 2;
}

.intro-text p {
  font-size: 1.1rem;
  color: #b8c5d1;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.intro-text strong {
  color: #ffd700;
  font-weight: 600;
}

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

.inline-link:hover {
  color: #ff6b35;
  text-decoration: none;
}

.common-issues {
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.issues-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.issues-title::before {
  content: '';
  width: 4px;
  height: 25px;
  background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
  border-radius: 2px;
}

.common-issues p {
  font-size: 1.1rem;
  color: #b8c5d1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.common-issues strong {
  color: #ffd700;
  font-weight: 600;
}

.important-precautions {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: 15px;
  border: 2px solid rgba(255, 107, 53, 0.3);
}

.precautions-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.precautions-title::before {
  content: '';
  width: 4px;
  height: 25px;
  background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
  border-radius: 2px;
}

.precautions-list {
  display: grid;
  gap: 1rem;
}

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

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

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

.precaution-item span {
  color: #e1e8ed;
  font-weight: 500;
  font-size: 1rem;
}

.credibility-section {
  margin-top: 2rem;
}

.credibility-section p {
  font-size: 1.1rem;
  color: #b8c5d1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.credibility-section strong {
  color: #ffd700;
  font-weight: 600;
}

.reviews-showcase {
  position: relative;
}

.review-image {
  margin-bottom: 2rem;
}

.review-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.trust-indicators {
  margin-bottom: 2.5rem;
}

.trust-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.trust-grid {
  display: grid;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.trust-item.positive {
  background: rgba(0, 200, 81, 0.1);
  border-color: rgba(0, 200, 81, 0.3);
}

.trust-item.neutral {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
}

.trust-item.warning {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
}

.trust-item:hover {
  transform: translateY(-2px);
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item.positive .trust-icon {
  background: rgba(0, 200, 81, 0.2);
}

.trust-item.neutral .trust-icon {
  background: rgba(255, 215, 0, 0.2);
}

.trust-item.warning .trust-icon {
  background: rgba(255, 107, 53, 0.2);
}

.trust-item.positive .trust-icon i {
  color: #00c851;
}

.trust-item.neutral .trust-icon i {
  color: #ffd700;
}

.trust-item.warning .trust-icon i {
  color: #ff6b35;
}

.trust-content {
  flex: 1;
}

.trust-label {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.trust-desc {
  font-size: 0.85rem;
  color: #b8c5d1;
  margin: 0;
}

.tips-section {
}

.tips-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.tips-list {
  display: grid;
  gap: 1rem;
}

.tip-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tip-card:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.tip-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tip-icon i {
  color: #1a1f2e;
  font-size: 1.1rem;
}

.tip-content {
  flex: 1;
}

.tip-name {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.tip-desc {
  font-size: 0.85rem;
  color: #b8c5d1;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .warnings-section {
    padding: 60px 0;
  }
  
  .warnings-container {
    padding: 0 15px;
  }
  
  .warnings-title {
    font-size: 2rem;
  }
  
  .warnings-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .intro-text p {
    font-size: 1rem;
  }
  
  .common-issues,
  .important-precautions {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  .issues-title,
  .precautions-title {
    font-size: 1.25rem;
  }
  
  .common-issues p,
  .credibility-section p {
    font-size: 1rem;
  }
  
  .precaution-item {
    padding: 0.75rem;
  }
  
  .precaution-item span {
    font-size: 0.9rem;
  }
  
  .tip-card {
    padding: 0.875rem;
  }
  
  .tip-icon {
    width: 40px;
    height: 40px;
  }
  
  .tip-icon i {
    font-size: 1rem;
  }
  
  .tip-name {
    font-size: 0.95rem;
  }
  
  .tip-desc {
    font-size: 0.8rem;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .warnings-section {
    padding: 80px 0;
  }
  
  .warnings-title {
    font-size: 2.25rem;
  }
  
  .warnings-content {
    gap: 3rem;
  }
  
  .precautions-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .warnings-title {
    font-size: 1.75rem;
  }
  
  .intro-text p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  
  .common-issues,
  .important-precautions {
    padding: 1.25rem;
  }
  
  .trust-title,
  .tips-title {
    font-size: 1.1rem;
  }
  
  .tip-card {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .tip-icon {
    margin-bottom: 0.5rem;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  position: relative;
  margin-top: auto;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
  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: 1fr 2fr;
  gap: 3rem;
  padding: 3rem 0 2rem;
}

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

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e1e8ed;
  font-size: 0.95rem;
}

.contact-item i {
  color: #ffd700;
  font-size: 1rem;
  width: 16px;
}

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

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

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 1rem;
  position: relative;
}

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

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

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #b8c5d1;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.footer-link:hover {
  color: #ffd700;
  padding-left: 0.5rem;
  background: rgba(255, 215, 0, 0.05);
}

.footer-link i {
  font-size: 0.9rem;
  width: 16px;
  color: #ffd700;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #b8c5d1;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #ffffff;
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

.social-link i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

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

.copyright {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #b8c5d1;
  font-size: 0.9rem;
  margin: 0;
}

.copyright i {
  color: #ffd700;
  font-size: 0.8rem;
}

.footer-security {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #e1e8ed;
}

.security-badge i {
  color: #ffd700;
  font-size: 0.8rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .footer-column:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0 1.5rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-column:last-child {
    grid-column: span 1;
  }
  
  .footer-logo-text {
    font-size: 1.75rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-security {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 1.5rem 0 1rem;
  }
  
  .footer-logo-text {
    font-size: 1.5rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  .social-link {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
  
  .footer-security {
    flex-direction: column;
    align-items: center;
  }
  
  .security-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.75rem 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  min-height: 60px;
  border: none;
  position: relative;
}

.sticky-btn::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.sticky-btn:last-child::after {
  display: none;
}

.sticky-btn i {
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.sticky-text {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

/* Login Button */
.sticky-login {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.sticky-login:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffd700;
  transform: translateY(-2px);
}

.sticky-login i {
  color: #ffd700;
}

/* Register Button */
.sticky-register {
  background: rgba(255, 107, 53, 0.1);
  color: #ffffff;
}

.sticky-register:hover {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  transform: translateY(-2px);
}

.sticky-register i {
  color: #ff6b35;
}

/* Credit Button */
.sticky-credit {
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #1a1f2e;
}

.sticky-credit:hover {
  background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
  color: #1a1f2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.sticky-credit i {
  color: #1a1f2e;
}

.sticky-credit .sticky-text {
  color: #1a1f2e;
  font-weight: 600;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .sticky-btn {
    padding: 0.875rem 0.75rem;
    min-height: 65px;
  }
  
  .sticky-btn i {
    font-size: 1.3rem;
  }
  
  .sticky-text {
    font-size: 0.8rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 1rem 0.5rem;
    min-height: 70px;
    gap: 0.5rem;
  }
  
  .sticky-btn i {
    font-size: 1.4rem;
  }
  
  .sticky-text {
    font-size: 0.85rem;
    font-weight: 600;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 0.875rem 0.25rem;
    min-height: 65px;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
  }
  
  .sticky-text {
    font-size: 0.7rem;
    font-weight: 600;
  }
}

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

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

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

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

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

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

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

.login-card {
  background: rgba(26, 31, 46, 0.95);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700 0%, #ff6b35 50%, #ffd700 100%);
  border-radius: 20px 20px 0 0;
}

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

.login-logo {
  margin-bottom: 1.5rem;
}

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
  border-color: rgba(255, 215, 0, 0.5);
}

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.login-subtitle {
  color: #b8c5d1;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.error-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  color: #ff6b6b;
  font-size: 0.9rem;
}

.error-message i {
  color: #dc3545;
}

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

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

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e1e8ed;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-label i {
  color: #ffd700;
  font-size: 1rem;
  width: 16px;
}

.form-input {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: #6c757d;
}

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

.form-input:valid {
  border-color: rgba(40, 167, 69, 0.5);
}

.form-input.error {
  border-color: rgba(220, 53, 69, 0.5);
  background: rgba(220, 53, 69, 0.05);
}

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

.password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem;
  transition: color 0.3s ease;
}

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

.input-error {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  min-height: 1rem;
}

.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #1a1f2e;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.login-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

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

.loading-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #1a1f2e;
}

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

.register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.register-btn:hover {
  background: #ffd700;
  color: #1a1f2e;
  transform: translateY(-2px);
}

.login-links {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.forgot-link,
.help-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #b8c5d1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.forgot-link:hover,
.help-link:hover {
  color: #ffd700;
}

.forgot-link i,
.help-link i {
  font-size: 0.8rem;
}

.security-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #b8c5d1;
  font-size: 0.8rem;
  justify-content: center;
}

.security-item i {
  color: #28a745;
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .login-section {
    padding: 1rem 0;
    min-height: calc(100vh - 130px);
  }
  
  .login-container {
    padding: 0 15px;
  }
  
  .login-card {
    padding: 2rem 1.5rem;
    border-radius: 15px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 0.875rem 1rem;
  }
  
  .login-btn {
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 0.875rem 1.5rem;
  }
  
  .login-links {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .login-card {
    padding: 1.75rem 1.25rem;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  
  .login-btn,
  .register-btn {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .security-info {
    gap: 0.75rem;
  }
  
  .security-item {
    font-size: 0.75rem;
  }
}

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

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

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

.register-card {
  background: rgba(26, 31, 46, 0.95);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700 0%, #ff6b35 50%, #ffd700 100%);
  border-radius: 20px 20px 0 0;
}

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

.register-logo {
  margin-bottom: 1.5rem;
}

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
  border-color: rgba(255, 215, 0, 0.5);
}

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.register-subtitle {
  color: #b8c5d1;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.success-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  color: #28a745;
  font-size: 0.9rem;
}

.success-message i {
  color: #28a745;
}

.error-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  color: #ff6b6b;
  font-size: 0.9rem;
}

.error-message i {
  color: #dc3545;
}

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

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

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e1e8ed;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-label i {
  color: #ffd700;
  font-size: 1rem;
  width: 16px;
}

.form-input {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: #6c757d;
}

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

.form-input:valid {
  border-color: rgba(40, 167, 69, 0.5);
}

.form-input.error {
  border-color: rgba(220, 53, 69, 0.5);
  background: rgba(220, 53, 69, 0.05);
}

.input-error {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  min-height: 1rem;
}

.input-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.input-hint i {
  font-size: 0.75rem;
  color: #17a2b8;
}

.register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #1a1f2e;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.register-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

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

.loading-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #1a1f2e;
}

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

.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.login-btn:hover {
  background: #ffd700;
  color: #1a1f2e;
  transform: translateY(-2px);
}

.register-links {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.help-link,
.promo-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #b8c5d1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.help-link:hover,
.promo-link:hover {
  color: #ffd700;
}

.help-link i,
.promo-link i {
  font-size: 0.8rem;
}

.benefits-info {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
}

.benefits-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffd700;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.benefits-title i {
  color: #ff6b35;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

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

.benefit-item i {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.benefit-item span {
  color: #e1e8ed;
  font-size: 0.8rem;
  font-weight: 500;
}

.security-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #b8c5d1;
  font-size: 0.8rem;
  justify-content: center;
}

.security-item i {
  color: #28a745;
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .register-section {
    padding: 1rem 0;
    min-height: calc(100vh - 130px);
  }
  
  .register-container {
    padding: 0 15px;
  }
  
  .register-card {
    padding: 2rem 1.5rem;
    border-radius: 15px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 0.875rem 1rem;
  }
  
  .register-btn {
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 0.875rem 1.5rem;
  }
  
  .register-links {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .benefit-item {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }
  
  .benefit-item i {
    margin-bottom: 0;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .register-card {
    padding: 1.75rem 1.25rem;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  
  .register-btn,
  .login-btn {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .benefits-info {
    padding: 1.25rem;
  }
  
  .benefits-title {
    font-size: 1rem;
  }
  
  .benefit-item span {
    font-size: 0.75rem;
  }
  
  .security-info {
    gap: 0.75rem;
  }
  
  .security-item {
    font-size: 0.75rem;
  }
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #2d1b69 100%);
  position: relative;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 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-size: 3rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: #b8c5d1;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-main {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #1a1f2e;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn-hero-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: transparent;
  color: #ffd700;
  text-decoration: none;
  border: 2px solid #ffd700;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: #ffd700;
  color: #1a1f2e;
  transform: translateY(-3px);
}

/* Promo Sections */
.promo-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
  position: relative;
}

.promo-section.promo-alternate {
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
}

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

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

.promo-card {
  background: rgba(26, 31, 46, 0.95);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  max-width: 800px;
  margin: 0 auto;
}

.promo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.promo-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.promo-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.promo-icon i {
  font-size: 2rem;
  color: #1a1f2e;
}

.promo-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1.3;
  margin: 0;
}

.promo-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.benefit-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(5px);
}

.benefit-item i {
  color: #28a745;
  font-size: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.benefit-item span {
  color: #e1e8ed;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
}

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

.btn-promo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #1a1f2e;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
}

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

.btn-promo:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-hero-main,
  .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 1.125rem 2rem;
    font-size: 1rem;
  }
  
  .promo-section {
    padding: 60px 0;
  }
  
  .promo-container {
    padding: 0 15px;
  }
  
  .promo-card {
    padding: 2rem 1.5rem;
  }
  
  .promo-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }
  
  .promo-icon i {
    font-size: 1.75rem;
  }
  
  .promo-title {
    font-size: 1.5rem;
  }
  
  .promo-benefits {
    margin-bottom: 2rem;
  }
  
  .benefit-item {
    padding: 0.875rem;
  }
  
  .benefit-item span {
    font-size: 1rem;
  }
  
  .btn-promo {
    width: 100%;
    max-width: 350px;
    padding: 1.125rem 2rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 0 50px;
  }
  
  .hero-title {
    font-size: 1.875rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .btn-hero-main,
  .btn-hero-secondary {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .promo-section {
    padding: 50px 0;
  }
  
  .promo-card {
    padding: 1.75rem 1.25rem;
    border-radius: 15px;
  }
  
  .promo-icon {
    width: 60px;
    height: 60px;
  }
  
  .promo-icon i {
    font-size: 1.5rem;
  }
  
  .promo-title {
    font-size: 1.375rem;
  }
  
  .benefit-item {
    padding: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.5rem;
  }
  
  .benefit-item span {
    font-size: 0.95rem;
  }
  
  .btn-promo {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-description {
    font-size: 1.375rem;
  }
  
  .promo-card {
    padding: 3.5rem;
  }
  
  .promo-icon {
    width: 90px;
    height: 90px;
  }
  
  .promo-icon i {
    font-size: 2.25rem;
  }
  
  .promo-title {
    font-size: 2rem;
  }
}