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

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

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

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

a:hover {
  color: #ff8c42;
}

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

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

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

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa726 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

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

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

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

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

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

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

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

@media (min-width: 1281px) {
  .hero-container {
    max-width: 1280px;
  }
}

/* Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  z-index: 1000;
  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-brand {
  flex-shrink: 0;
}

.brand-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa726 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  border: none;
  cursor: pointer;
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu-btn.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(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu-content {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

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

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

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

.mobile-nav {
  flex: 1;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 5px;
}

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

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

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 20px 0;
  padding: 15px 25px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

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

.mobile-cta-btn i {
  font-size: 1.2rem;
}

/* Responsive Classes */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

/* Responsive Design */
@media (max-width: 968px) {
  .header-nav {
    display: none;
  }
  
  .desktop-only {
    display: none;
  }
  
  .mobile-only {
    display: flex;
  }
  
  .brand-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
    height: 65px;
  }
  
  .brand-text {
    font-size: 1.5rem;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-nav {
    padding: 25px 15px;
  }
  
  .mobile-cta-btn {
    margin: 20px 15px 0;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 60px;
  }
  
  .brand-text {
    font-size: 1.4rem;
  }
  
  .mobile-brand-text {
    font-size: 1.3rem;
  }
  
  .mobile-nav-link {
    font-size: 1rem;
    padding: 12px 15px;
  }
  
  .mobile-cta-btn {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

/* Body padding to account for fixed header */
body {
  padding-top: 70px;
}

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

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

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

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

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

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

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

.about-description {
  margin-bottom: 2.5rem;
}

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

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

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

.about-features-list {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 107, 53, 0.2);
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

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

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

.feature-list-item:hover {
  transform: translateX(10px);
  color: #ff8c42;
}

.feature-list-item i {
  color: #ff6b35;
  font-size: 1.3rem;
  width: 25px;
  text-align: center;
}

.feature-list-item span {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
}

.about-conclusion {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  padding: 1.5rem;
  background: rgba(255, 107, 53, 0.1);
  border-left: 4px solid #ff6b35;
  border-radius: 8px;
}

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

.about-image {
  position: relative;
}

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

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

.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 30px;
}

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

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

.stat-item i {
  color: #ff6b35;
  font-size: 2rem;
}

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

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

.stat-label {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin-top: 2px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-title {
    font-size: 2.2rem;
  }
  
  .about-description p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 70px 0;
  }
  
  .about-container {
    padding: 0 15px;
  }
  
  .about-title {
    font-size: 1.9rem;
  }
  
  .about-description p {
    font-size: 1rem;
  }
  
  .about-features-list {
    padding: 1.5rem;
  }
  
  .feature-list-item {
    gap: 12px;
  }
  
  .feature-list-item span {
    font-size: 0.95rem;
  }
  
  .about-conclusion {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.7rem;
  }
  
  .about-description p {
    font-size: 0.95rem;
  }
  
  .about-features-list {
    padding: 1.2rem;
  }
  
  .feature-list-item {
    gap: 10px;
    padding: 10px 0;
  }
  
  .feature-list-item i {
    font-size: 1.2rem;
  }
  
  .feature-list-item span {
    font-size: 0.9rem;
  }
  
  .stat-item {
    padding: 15px;
  }
  
  .stat-item i {
    font-size: 1.7rem;
  }
  
  .stat-number {
    font-size: 1.3rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
}

/* Platform Section */
.platform-section {
  background: linear-gradient(135deg, #2d1b3d 0%, #0f0f23 50%, #1a0e2e 100%);
  padding: 100px 0;
  position: relative;
}

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

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

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

.platform-image {
  position: relative;
}

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

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

.platform-badges {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 107, 53, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.badge-item i {
  font-size: 0.9rem;
}

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

.platform-description {
  margin-bottom: 2.5rem;
}

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

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

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

.platform-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 2.5rem;
}

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

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

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
}

.feature-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.feature-info p {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.4;
}

.platform-highlight {
  background: rgba(255, 107, 53, 0.1);
  border-left: 4px solid #ff6b35;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2.5rem;
}

.platform-highlight p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0;
}

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

.platform-registration {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 2rem;
}

.registration-content {
  flex: 1;
}

.registration-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.registration-content h3 a {
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.3s ease;
}

.registration-content h3 a:hover {
  color: #ff8c42;
}

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

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

.registration-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

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

.platform-mobile {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
}

.platform-mobile p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0;
}

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

/* Responsive Design */
@media (max-width: 968px) {
  .platform-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .platform-title {
    font-size: 2.2rem;
  }
  
  .platform-features {
    grid-template-columns: 1fr;
  }
  
  .platform-registration {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .registration-btn {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 70px 0;
  }
  
  .platform-container {
    padding: 0 15px;
  }
  
  .platform-title {
    font-size: 1.9rem;
  }
  
  .platform-description p {
    font-size: 1rem;
  }
  
  .platform-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .feature-card {
    padding: 15px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .platform-highlight p {
    font-size: 1rem;
  }
  
  .registration-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .platform-title {
    font-size: 1.7rem;
  }
  
  .platform-description p {
    font-size: 0.95rem;
  }
  
  .badge-item {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
  
  .feature-card {
    padding: 12px;
    gap: 12px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .feature-info h3 {
    font-size: 0.95rem;
  }
  
  .feature-info p {
    font-size: 0.85rem;
  }
  
  .platform-highlight {
    padding: 1.2rem;
  }
  
  .platform-registration {
    padding: 15px;
    gap: 15px;
  }
  
  .registration-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .platform-mobile {
    padding: 1.2rem;
  }
  
  .platform-mobile p {
    font-size: 0.95rem;
  }
}

/* Guide Section */
.guide-section {
  background: linear-gradient(135deg, #0f0f23 0%, #2d1b3d 50%, #1a0e2e 100%);
  padding: 100px 0;
  position: relative;
}

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

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

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

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

.guide-description {
  margin-bottom: 2.5rem;
}

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

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

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

.guide-techniques {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 2.5rem;
}

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

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

.technique-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
}

.technique-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

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

.guide-patterns {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2.5rem;
}

.guide-patterns h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.guide-patterns p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0;
}

.guide-patterns strong {
  color: #ff6b35;
  font-weight: 600;
}

.guide-access {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: 20px;
}

.access-content {
  flex: 1;
}

.access-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.access-content h3 a {
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.3s ease;
}

.access-content h3 a:hover {
  color: #ff8c42;
}

.access-content p {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
}

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

.access-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

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

.guide-image {
  position: relative;
}

.guide-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

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

.guide-tips {
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
}

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

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

.tip-item i {
  color: #ff6b35;
  font-size: 1.2rem;
  margin-top: 2px;
}

.tip-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

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

.guide-final-tip {
  background: rgba(255, 107, 53, 0.1);
  border-left: 4px solid #ff6b35;
  padding: 1.5rem;
  border-radius: 8px;
}

.guide-final-tip p {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
}

.guide-final-tip strong {
  color: #ff6b35;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
  .guide-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .guide-title {
    font-size: 2.2rem;
  }
  
  .guide-techniques {
    grid-template-columns: 1fr;
  }
  
  .guide-access {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .access-btn {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .guide-section {
    padding: 70px 0;
  }
  
  .guide-container {
    padding: 0 15px;
  }
  
  .guide-title {
    font-size: 1.9rem;
  }
  
  .guide-description p {
    font-size: 1rem;
  }
  
  .technique-card {
    padding: 15px;
    gap: 12px;
  }
  
  .technique-icon {
    width: 45px;
    height: 45px;
  }
  
  .guide-patterns {
    padding: 1.5rem;
  }
  
  .guide-patterns h3 {
    font-size: 1.2rem;
  }
  
  .guide-patterns p {
    font-size: 1rem;
  }
  
  .tip-item {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .guide-title {
    font-size: 1.7rem;
  }
  
  .guide-description p {
    font-size: 0.95rem;
  }
  
  .technique-card {
    padding: 12px;
  }
  
  .technique-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .technique-info h3 {
    font-size: 1rem;
  }
  
  .technique-info p {
    font-size: 0.85rem;
  }
  
  .guide-patterns {
    padding: 1.2rem;
  }
  
  .guide-patterns h3 {
    font-size: 1.1rem;
  }
  
  .guide-patterns p {
    font-size: 0.95rem;
  }
  
  .guide-access {
    padding: 15px;
    gap: 15px;
  }
  
  .access-content h3 {
    font-size: 1.2rem;
  }
  
  .access-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .tip-item {
    padding: 10px;
    gap: 10px;
  }
  
  .tip-content h4 {
    font-size: 0.95rem;
  }
  
  .tip-content p {
    font-size: 0.8rem;
  }
  
  .guide-final-tip {
    padding: 1.2rem;
  }
  
  .guide-final-tip p {
    font-size: 0.9rem;
  }
}

/* Security Section */
.security-section {
  background: linear-gradient(135deg, #1a0e2e 0%, #0f0f23 50%, #2d1b3d 100%);
  padding: 100px 0;
  position: relative;
}

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

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

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

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

.security-description {
  margin-bottom: 2.5rem;
}

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

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

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

.security-features {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2.5rem;
}

.security-features h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 1.5rem;
  text-align: center;
}

.features-list {
  display: grid;
  gap: 15px;
}

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

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

.item-number {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.security-item span:last-child {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
}

.security-certification {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 2rem;
}

.cert-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.cert-content h3 a {
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cert-content h3 a:hover {
  color: #ff8c42;
}

.cert-content p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0;
}

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

.security-privacy {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.security-privacy p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0;
}

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

.security-promotion {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: 20px;
}

.promo-content {
  flex: 1;
}

.promo-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.promo-content h3 a {
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.3s ease;
}

.promo-content h3 a:hover {
  color: #ff8c42;
}

.promo-content p {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
}

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

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

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

.security-image {
  position: relative;
}

.security-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

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

.security-stats {
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
}

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

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

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
}

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

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #ff6b35;
  font-weight: 600;
  margin-top: 2px;
}

.stat-desc {
  font-size: 0.8rem;
  color: #b0b0b0;
  margin-top: 2px;
}

.payment-methods {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  padding: 20px;
}

.payment-methods h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 15px;
  text-align: center;
}

.payment-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 968px) {
  .security-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .security-title {
    font-size: 2.2rem;
  }
  
  .security-promotion {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .promo-btn {
    align-self: center;
  }
  
  .payment-icons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .security-section {
    padding: 70px 0;
  }
  
  .security-container {
    padding: 0 15px;
  }
  
  .security-title {
    font-size: 1.9rem;
  }
  
  .security-description p {
    font-size: 1rem;
  }
  
  .security-features {
    padding: 1.5rem;
  }
  
  .security-features h3 {
    font-size: 1.3rem;
  }
  
  .security-item {
    padding: 10px 12px;
  }
  
  .item-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .security-item span:last-child {
    font-size: 0.95rem;
  }
  
  .stat-card {
    padding: 15px;
  }
  
  .stat-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .stat-value {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .security-title {
    font-size: 1.7rem;
  }
  
  .security-description p {
    font-size: 0.95rem;
  }
  
  .security-features {
    padding: 1.2rem;
  }
  
  .security-features h3 {
    font-size: 1.2rem;
  }
  
  .security-item {
    gap: 12px;
    padding: 8px 10px;
  }
  
  .item-number {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
  }
  
  .security-item span:last-child {
    font-size: 0.9rem;
  }
  
  .security-certification {
    padding: 15px;
  }
  
  .cert-content h3 {
    font-size: 1.2rem;
  }
  
  .cert-content p {
    font-size: 0.95rem;
  }
  
  .security-privacy {
    padding: 1.2rem;
  }
  
  .security-privacy p {
    font-size: 0.95rem;
  }
  
  .security-promotion {
    padding: 15px;
    gap: 15px;
  }
  
  .promo-content h3 {
    font-size: 1.2rem;
  }
  
  .promo-content p {
    font-size: 0.9rem;
  }
  
  .promo-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .stat-card {
    padding: 12px;
  }
  
  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .stat-value {
    font-size: 1.4rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  .stat-desc {
    font-size: 0.75rem;
  }
  
  .payment-methods {
    padding: 15px;
  }
  
  .payment-methods h4 {
    font-size: 1rem;
  }
  
  .payment-item {
    padding: 8px 10px;
  }
  
  .payment-item span {
    font-size: 0.8rem;
  }
}

/* Analysis Section */
.analysis-section {
  background: linear-gradient(135deg, #2d1b3d 0%, #1a0e2e 50%, #0f0f23 100%);
  padding: 100px 0;
  position: relative;
}

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

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

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

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

.analysis-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.analysis-subtitle {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.analysis-subtitle strong {
  color: #ff6b35;
  font-weight: 600;
}

.analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 4rem;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 2rem;
  padding: 20px;
  border-radius: 15px;
}

.pros-header {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.cons-header {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.header-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.pros-header .header-icon {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
}

.cons-header .header-icon {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
}

.section-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

.intro-text {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.advantage-cards {
  display: grid;
  gap: 15px;
  margin-bottom: 2rem;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.advantage-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.advantage-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.advantage-info p {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.5;
  margin: 0;
}

.highlight-text {
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #ff6b35;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.highlight-text p {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0;
}

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

.pro-features {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
}

.pro-features p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0;
}

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

.disadvantage-list {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 2rem;
}

.list-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #ef4444;
  font-weight: 600;
}

.list-header i {
  font-size: 1.1rem;
}

.disadvantage-items {
  display: grid;
  gap: 10px;
}

.disadvantage-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.disadvantage-item:hover {
  background: rgba(239, 68, 68, 0.15);
  transform: translateX(5px);
}

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

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

.tech-requirements {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.tech-requirements p {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
}

.tech-requirements strong {
  color: #ff6b35;
  font-weight: 600;
}

.time-limitations {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.time-limitations p {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0;
}

.time-limitations strong {
  color: #ff6b35;
  font-weight: 600;
}

.warning-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 1.5rem;
}

.warning-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.warning-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f59e0b;
  margin-bottom: 8px;
}

.warning-content p {
  font-size: 0.9rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
}

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

.final-advice {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #ef4444;
  border-radius: 8px;
  padding: 1.5rem;
}

.final-advice p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0;
}

.final-advice strong {
  color: #ff6b35;
  font-weight: 600;
}

.analysis-cta {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.cta-content {
  margin-bottom: 2rem;
}

.cta-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin: 0;
}

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

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

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

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

.cta-btn.primary {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

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

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

/* Responsive Design */
@media (max-width: 968px) {
  .analysis-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .analysis-title {
    font-size: 2.2rem;
  }
  
  .analysis-subtitle {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .analysis-section {
    padding: 70px 0;
  }
  
  .analysis-container {
    padding: 0 15px;
  }
  
  .analysis-title {
    font-size: 1.9rem;
  }
  
  .analysis-subtitle {
    font-size: 1rem;
  }
  
  .section-header {
    padding: 15px;
  }
  
  .header-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .section-header h3 {
    font-size: 1.3rem;
  }
  
  .intro-text {
    font-size: 1rem;
  }
  
  .advantage-item {
    padding: 12px;
  }
  
  .advantage-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .advantage-info h4 {
    font-size: 1rem;
  }
  
  .advantage-info p {
    font-size: 0.85rem;
  }
  
  .analysis-cta {
    padding: 2rem;
  }
  
  .cta-content h3 {
    font-size: 1.6rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .analysis-title {
    font-size: 1.7rem;
  }
  
  .analysis-subtitle {
    font-size: 0.95rem;
  }
  
  .analysis-header {
    margin-bottom: 3rem;
  }
  
  .analysis-grid {
    margin-bottom: 3rem;
  }
  
  .section-header {
    padding: 12px;
    gap: 12px;
  }
  
  .header-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .section-header h3 {
    font-size: 1.2rem;
  }
  
  .intro-text {
    font-size: 0.95rem;
  }
  
  .advantage-item {
    padding: 10px;
    gap: 12px;
  }
  
  .advantage-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .advantage-info h4 {
    font-size: 0.95rem;
  }
  
  .advantage-info p {
    font-size: 0.8rem;
  }
  
  .highlight-text {
    padding: 1.2rem;
  }
  
  .highlight-text p {
    font-size: 0.95rem;
  }
  
  .pro-features {
    padding: 1.2rem;
  }
  
  .pro-features p {
    font-size: 0.95rem;
  }
  
  .disadvantage-list {
    padding: 15px;
  }
  
  .disadvantage-item {
    padding: 8px;
  }
  
  .disadvantage-item span {
    font-size: 0.9rem;
  }
  
  .tech-requirements, .time-limitations {
    padding: 1rem;
  }
  
  .tech-requirements p, .time-limitations p {
    font-size: 0.9rem;
  }
  
  .warning-box {
    padding: 15px;
    gap: 12px;
  }
  
  .warning-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .warning-content h4 {
    font-size: 1rem;
  }
  
  .warning-content p {
    font-size: 0.85rem;
  }
  
  .final-advice {
    padding: 1.2rem;
  }
  
  .final-advice p {
    font-size: 0.95rem;
  }
  
  .analysis-cta {
    padding: 1.5rem;
  }
  
  .cta-content h3 {
    font-size: 1.4rem;
  }
  
  .cta-content p {
    font-size: 0.95rem;
  }
  
  .cta-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

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

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
  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: 60px;
  padding: 60px 0 40px;
}

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

.footer-brand-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa726 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

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

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

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

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

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

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

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

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

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

.footer-link-list li {
  transition: transform 0.3s ease;
}

.footer-link-list li:hover {
  transform: translateX(5px);
}

.footer-link-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  padding: 5px 0;
}

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

.footer-link-list a i {
  color: #ff6b35;
  width: 16px;
  text-align: center;
  font-size: 0.8rem;
}

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

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

.social-link:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.5);
  color: #ff6b35;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

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

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

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

.footer-bottom-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.footer-copyright {
  display: flex;
  align-items: center;
}

.footer-copyright p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b0b0b0;
  font-size: 0.9rem;
  margin: 0;
}

.footer-copyright i {
  color: #ff6b35;
}

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

.footer-disclaimers p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b0b0b0;
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
}

.footer-disclaimers i {
  color: #ff6b35;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.footer-security {
  display: flex;
  justify-content: flex-end;
}

.security-badges {
  display: flex;
  gap: 15px;
}

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

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

.security-item i {
  color: #ff6b35;
  font-size: 0.8rem;
}

.security-item span {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-bottom-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .security-badges {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    padding: 50px 0 30px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-brand-title {
    font-size: 1.7rem;
  }
  
  .footer-brand-desc {
    font-size: 0.95rem;
  }
  
  .footer-column-title {
    font-size: 1.1rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-cta {
    text-align: center;
  }
  
  .footer-bottom {
    padding: 25px 0;
  }
  
  .security-badges {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 40px 0 25px;
    gap: 30px;
  }
  
  .footer-brand-title {
    font-size: 1.5rem;
  }
  
  .footer-brand-desc {
    font-size: 0.9rem;
  }
  
  .footer-column-title {
    font-size: 1rem;
  }
  
  .footer-link-list a {
    font-size: 0.85rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
  
  .footer-cta-btn {
    font-size: 0.85rem;
    padding: 10px 18px;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .footer-bottom-content {
    gap: 15px;
  }
  
  .footer-disclaimers p {
    font-size: 0.75rem;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
  
  .security-item {
    padding: 4px 8px;
  }
  
  .security-item span {
    font-size: 0.7rem;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.btn-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 2;
}

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

.sticky-btn span {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

/* Login Button */
.login-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
}

.login-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Register Button */
.register-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
}

.register-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Credit Button */
.credit-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  animation: pulse-glow 2s infinite;
}

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

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.8), 0 0 25px rgba(255, 107, 53, 0.4);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 12px 8px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .sticky-btn span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 10px 6px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
  }
  
  .btn-content {
    gap: 3px;
  }
}

@media (max-width: 360px) {
  .sticky-btn span {
    font-size: 0.7rem;
  }
  
  .sticky-btn i {
    font-size: 0.95rem;
  }
}

/* Add bottom padding to body to account for sticky buttons */
body {
  padding-bottom: 70px;
}

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

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

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

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

.login-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.login-box {
  width: 100%;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.login-box:hover {
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.login-logo {
  text-align: center;
  margin-bottom: 30px;
}

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

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

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

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa726 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.login-subtitle {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.5;
}

.error-message {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  color: #ef4444;
  font-size: 0.9rem;
  animation: shake 0.5s ease-in-out;
}

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

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

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

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

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
}

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

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

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

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

.form-input:valid {
  border-color: rgba(34, 197, 94, 0.5);
}

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

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

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

.login-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.btn-loader {
  display: none;
}

.login-btn.loading .btn-loader {
  display: inline-flex;
}

.login-btn.loading span {
  display: none;
}

.login-divider {
  text-align: center;
  position: relative;
  margin: 25px 0;
}

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

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

.register-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: transparent;
  border: 2px solid #ff6b35;
  border-radius: 12px;
  color: #ff6b35;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.register-btn::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;
}

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

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

.login-footer {
  margin-top: 30px;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-container {
    padding: 0 15px;
  }
  
  .login-box {
    padding: 30px;
    max-width: 400px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .logo-img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 15px 0;
  }
  
  .login-box {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-img {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .security-info {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 360px) {
  .login-box {
    padding: 20px 15px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .security-info {
    gap: 8px;
  }
  
  .security-item {
    font-size: 0.8rem;
  }
}

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

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

.register-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.register-box {
  width: 100%;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.register-box:hover {
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.register-logo {
  text-align: center;
  margin-bottom: 30px;
}

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

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

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

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa726 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.register-subtitle {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.5;
}

.error-message {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  color: #ef4444;
  font-size: 0.9rem;
  animation: shake 0.5s ease-in-out;
}

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

.success-message {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  color: #22c55e;
  font-size: 0.9rem;
  animation: slideDown 0.3s ease-out;
}

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

.error-message i, .success-message i {
  font-size: 1rem;
}

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

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

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

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
}

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

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

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

.form-input:focus {
  border-color: #ff6b35;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

.form-input:valid {
  border-color: rgba(34, 197, 94, 0.5);
}

.input-helper {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: #888888;
  font-size: 0.85rem;
}

.input-helper i {
  color: #ff6b35;
  font-size: 0.8rem;
}

.register-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  border: none;
  border-radius: 15px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.register-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

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

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

.btn-loader {
  display: none;
}

.register-btn.loading .btn-loader {
  display: inline-flex;
}

.register-btn.loading span,
.register-btn.loading > i {
  display: none;
}

.register-divider {
  text-align: center;
  position: relative;
  margin: 25px 0;
}

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

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

.login-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  background: transparent;
  border: 2px solid #ff6b35;
  border-radius: 12px;
  color: #ff6b35;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.login-btn::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;
}

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

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

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

.security-info {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.security-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #b0b0b0;
  font-size: 0.8rem;
  text-align: center;
}

.security-item i {
  color: #ff6b35;
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.terms-info {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-info p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #888888;
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
}

.terms-info i {
  color: #ff6b35;
  font-size: 0.9rem;
  flex-shrink: 0;
}

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

.terms-info a:hover {
  color: #ff8c42;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-container {
    padding: 0 15px;
  }
  
  .register-box {
    padding: 30px;
    max-width: 400px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .logo-img {
    width: 70px;
    height: 70px;
  }
  
  .security-info {
    flex-direction: column;
    gap: 15px;
  }
  
  .security-item {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 15px 0;
  }
  
  .register-box {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-img {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 14px 16px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 16px 20px;
    font-size: 1.1rem;
  }
  
  .login-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  
  .security-item {
    font-size: 0.75rem;
  }
  
  .terms-info p {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .register-box {
    padding: 20px 15px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .security-info {
    gap: 12px;
  }
  
  .security-item {
    font-size: 0.7rem;
  }
  
  .terms-info p {
    font-size: 0.7rem;
  }
}

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

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

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

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa726 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-cta {
  margin-top: 2rem;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

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

.hero-cta-btn i {
  font-size: 1.4rem;
}

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

.promotion-section:nth-child(even) {
  background: linear-gradient(135deg, #1a0e2e 0%, #0f0f23 50%, #2d1b3d 100%);
}

.promotion-section:nth-child(odd) {
  background: linear-gradient(135deg, #0f0f23 0%, #2d1b3d 50%, #1a0e2e 100%);
}

.promotion-section.alt {
  background: linear-gradient(135deg, #2d1b3d 0%, #1a0e2e 50%, #0f0f23 100%);
}

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

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

.promotion-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 25px;
  padding: 50px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.promotion-content:hover {
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.1);
}

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

.promotion-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.promotion-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  flex: 1;
}

.promotion-features {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

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

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

.feature-item i {
  color: #ff6b35;
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.feature-item span {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
}

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

.promotion-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 40px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

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

.promotion-btn i {
  font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
  
  .hero-cta-btn {
    padding: 18px 35px;
    font-size: 1.2rem;
  }
  
  .promotion-content {
    padding: 40px;
  }
  
  .promotion-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-cta-btn {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-container {
    padding: 0 15px;
  }
  
  .promotion-content {
    padding: 30px;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .feature-item {
    padding: 15px;
  }
  
  .feature-item span {
    font-size: 1rem;
  }
  
  .promotion-btn {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta-btn {
    padding: 14px 25px;
    font-size: 1rem;
  }
  
  .promotion-content {
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .promotion-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .feature-item {
    padding: 12px;
    gap: 12px;
  }
  
  .feature-item i {
    font-size: 1.2rem;
  }
  
  .feature-item span {
    font-size: 0.95rem;
  }
  
  .promotion-btn {
    padding: 14px 25px;
    font-size: 1rem;
  }
  
  .promotion-btn i {
    font-size: 1.2rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.7rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .promotion-content {
    padding: 20px 15px;
  }
  
  .promotion-title {
    font-size: 1.5rem;
  }
  
  .feature-item {
    padding: 10px;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
}