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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  min-width: 160px;
  justify-content: center;
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, #e55a2b 0%, #e0821a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 500px;
}

.hero-text {
  order: 1;
}

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

.hero-subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

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

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

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

.feature-item span {
  font-weight: 600;
  font-size: 0.95rem;
}

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

.hero-image {
  order: 2;
  position: relative;
  text-align: center;
}

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

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

.hero-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

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

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

.hero-background-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent 0%, #0a0a0a 100%);
  z-index: 1;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-section {
    padding: 60px 20px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-img {
    max-width: 400px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 15px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text {
    order: 2;
  }
  
  .hero-image {
    order: 1;
  }
  
  .hero-title {
    font-size: 2.4rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .feature-item {
    padding: 14px;
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 15px;
  }
  
  .btn {
    min-width: 140px;
    font-size: 15px;
    padding: 12px 24px;
  }
  
  .hero-img {
    max-width: 350px;
  }
  
  .hero-badge {
    top: -8px;
    right: 15px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 30px 10px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-img {
    max-width: 300px;
  }
  
  .feature-item {
    padding: 12px;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
}

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

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

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

.logo-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 2px;
}

.logo-subtitle {
  font-size: 0.7rem;
  color: #b0b0b0;
  font-weight: 500;
  line-height: 1;
}

/* Navigation Styles */
.header-nav {
  flex: 1;
  margin: 0 40px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ff6b35;
  transform: translateY(-2px);
}

.nav-link i {
  font-size: 0.9rem;
  opacity: 0.8;
}

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

/* CTA Button Styles */
.header-cta {
  flex-shrink: 0;
}

.cta-button {
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 4px;
}

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

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

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

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

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

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

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

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

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

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

.mobile-menu-close {
  background: transparent;
  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 0;
  overflow-y: auto;
}

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

.mobile-nav-item {
  margin: 0 25px;
}

.mobile-nav-item.mobile-cta {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.mobile-nav-link i {
  font-size: 1.2rem;
  min-width: 20px;
  opacity: 0.8;
}

.mobile-nav-link:hover i {
  opacity: 1;
  color: #ff6b35;
}

.mobile-cta-button {
  width: 100%;
  padding: 18px 24px;
  font-size: 1.1rem;
  justify-content: center;
  margin: 0;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 15px;
  }
  
  .nav-menu {
    gap: 20px;
  }
  
  .nav-link {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Mobile Styles */
@media (max-width: 950px) {
  .site-header {
    height: 60px;
  }
  
  .header-container {
    height: 60px;
    padding: 0 15px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .logo-subtitle {
    font-size: 0.65rem;
  }
  
  .header-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  body {
    padding-top: 60px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 10px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-subtitle {
    font-size: 0.6rem;
  }
  
  .mobile-menu-header {
    padding: 15px 20px;
  }
  
  .mobile-nav-item {
    margin: 0 20px;
  }
  
  .mobile-nav-link {
    padding: 15px 16px;
    font-size: 1rem;
  }
  
  .mobile-cta-button {
    padding: 16px 20px;
    font-size: 1rem;
  }
}

/* Overview Section */
.overview-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #151515 0%, #252525 50%, #151515 100%);
  position: relative;
  overflow: hidden;
}

.overview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

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

.overview-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.overview-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
}

.overview-description p {
  margin-bottom: 24px;
}

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

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

.overview-image {
  position: relative;
}

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

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

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

.feature-card i {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 15px;
  display: block;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin: 0;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .overview-section {
    padding: 80px 20px;
  }
  
  .overview-content {
    gap: 60px;
  }
  
  .overview-title {
    font-size: 2.4rem;
  }
  
  .overview-description {
    font-size: 1rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .overview-section {
    padding: 60px 15px;
  }
  
  .overview-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .overview-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .overview-description {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .overview-description p {
    margin-bottom: 20px;
  }
  
  .overview-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-card i {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .overview-section {
    padding: 50px 10px;
  }
  
  .overview-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .overview-description {
    font-size: 0.9rem;
  }
  
  .overview-features {
    gap: 12px;
  }
  
  .feature-card {
    padding: 18px;
  }
  
  .feature-card i {
    font-size: 2rem;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
}

/* Access Section */
.access-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 50%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
}

.access-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

.access-header {
  text-align: center;
  margin-bottom: 60px;
}

.access-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 900px;
  margin: 0 auto;
}

.access-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: flex-start;
}

.access-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 40px;
}

.access-description p {
  margin-bottom: 24px;
}

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

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

.access-description a {
  color: #667eea;
  text-decoration: underline;
  transition: color 0.3s ease;
}

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

.access-cta {
  text-align: left;
}

.access-links {
  margin-bottom: 40px;
}

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

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

.link-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-2px);
}

.link-card i {
  font-size: 1.8rem;
  color: #ff6b35;
  min-width: 30px;
}

.link-info {
  flex: 1;
}

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

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

.link-status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  min-width: 80px;
}

.link-status.active {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: #ffffff;
}

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

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.method-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.method-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(102, 126, 234, 0.3);
  transform: translateY(-3px);
}

.method-card i {
  font-size: 2.2rem;
  color: #667eea;
  margin-bottom: 12px;
  display: block;
}

.method-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .access-section {
    padding: 80px 20px;
  }
  
  .access-content {
    gap: 60px;
  }
  
  .access-title {
    font-size: 2.4rem;
  }
  
  .access-description {
    font-size: 1rem;
  }
  
  .method-grid {
    gap: 12px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .access-section {
    padding: 60px 15px;
  }
  
  .access-header {
    margin-bottom: 50px;
  }
  
  .access-title {
    font-size: 2rem;
    line-height: 1.4;
  }
  
  .access-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .access-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  
  .access-description p {
    margin-bottom: 20px;
  }
  
  .access-cta {
    text-align: center;
  }
  
  .method-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .method-card {
    padding: 18px;
  }
  
  .method-card i {
    font-size: 2rem;
  }
  
  .link-card {
    padding: 18px;
    gap: 12px;
  }
  
  .link-card i {
    font-size: 1.6rem;
  }
  
  .links-title,
  .methods-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .access-section {
    padding: 50px 10px;
  }
  
  .access-title {
    font-size: 1.8rem;
  }
  
  .access-description {
    font-size: 0.9rem;
  }
  
  .link-card {
    padding: 16px;
    gap: 10px;
  }
  
  .method-card {
    padding: 16px;
  }
  
  .method-card i {
    font-size: 1.8rem;
  }
  
  .link-info h4 {
    font-size: 1rem;
  }
  
  .link-info p {
    font-size: 0.85rem;
  }
  
  .method-card h4 {
    font-size: 0.95rem;
  }
  
  .method-card p {
    font-size: 0.8rem;
  }
}

/* Slots Section */
.slots-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.slots-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 40% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 60% 80%, rgba(102, 126, 234, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

.slots-header {
  text-align: center;
  margin-bottom: 60px;
}

.slots-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 900px;
  margin: 0 auto;
}

.slots-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 50px;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.slots-description p {
  margin-bottom: 24px;
}

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

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

.slots-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

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

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

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

.game-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.game-card.featured {
  border-color: rgba(255, 107, 53, 0.4);
  background: rgba(255, 107, 53, 0.1);
}

.game-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
  position: relative;
  z-index: 1;
}

.game-card.featured i {
  color: #f7931e;
}

.game-card:not(.featured) i {
  color: #667eea;
}

.game-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.game-card p {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.5;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.game-provider {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

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

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

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

.feature-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.feature-list {
  margin-bottom: 30px;
}

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

.feature-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(5px);
}

.feature-item i {
  font-size: 1.5rem;
  color: #667eea;
  margin-top: 2px;
  min-width: 24px;
}

.feature-info {
  flex: 1;
}

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

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

.slots-cta {
  text-align: left;
}

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

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

.category-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.category-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(102, 126, 234, 0.3);
  transform: translateY(-3px);
}

.category-card i {
  font-size: 2.2rem;
  color: #ff6b35;
  margin-bottom: 15px;
  display: block;
}

.category-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .slots-section {
    padding: 80px 20px;
  }
  
  .slots-title {
    font-size: 2.4rem;
  }
  
  .slots-description {
    font-size: 1rem;
  }
  
  .slots-features {
    gap: 40px;
  }
  
  .slots-games-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .slots-section {
    padding: 60px 15px;
  }
  
  .slots-header {
    margin-bottom: 50px;
  }
  
  .slots-title {
    font-size: 2rem;
    line-height: 1.4;
  }
  
  .slots-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 40px;
  }
  
  .slots-description p {
    margin-bottom: 20px;
  }
  
  .slots-games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }
  
  .slots-features {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .feature-title {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .slots-cta {
    text-align: center;
  }
  
  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .game-card {
    padding: 20px;
  }
  
  .game-card i {
    font-size: 2.2rem;
  }
  
  .category-card {
    padding: 20px;
  }
  
  .category-card i {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .slots-section {
    padding: 50px 10px;
  }
  
  .slots-title {
    font-size: 1.8rem;
  }
  
  .slots-description {
    font-size: 0.9rem;
  }
  
  .slots-games-grid {
    margin-bottom: 40px;
  }
  
  .game-card {
    padding: 18px;
  }
  
  .game-card i {
    font-size: 2rem;
  }
  
  .game-card h3 {
    font-size: 1.2rem;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .category-card {
    padding: 18px;
  }
  
  .feature-item {
    padding: 12px;
  }
  
  .feature-info h4 {
    font-size: 1rem;
  }
  
  .feature-info p {
    font-size: 0.85rem;
  }
}

/* Demo Section */
.demo-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #161616 0%, #262626 50%, #161616 100%);
  position: relative;
  overflow: hidden;
}

.demo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

.demo-header {
  text-align: center;
  margin-bottom: 60px;
}

.demo-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 900px;
  margin: 0 auto;
}

.demo-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.demo-description p {
  margin-bottom: 24px;
}

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

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

.demo-description a {
  color: #667eea;
  text-decoration: underline;
  transition: color 0.3s ease;
}

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

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

.demo-image {
  position: relative;
}

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

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

.demo-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
  font-weight: 600;
  animation: pulse 2s ease-in-out infinite;
}

.demo-badge i {
  font-size: 1.1rem;
}

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

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

.benefit-list {
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(102, 126, 234, 0.3);
  transform: translateX(5px);
}

.benefit-item i {
  font-size: 1.5rem;
  color: #667eea;
  margin-top: 2px;
  min-width: 24px;
}

.benefit-info {
  flex: 1;
}

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

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

.demo-cta {
  text-align: left;
}

.steps-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

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

.step-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.step-card i {
  font-size: 2.5rem;
  color: #667eea;
  margin-bottom: 20px;
  display: block;
}

.step-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.5;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .demo-section {
    padding: 80px 20px;
  }
  
  .demo-title {
    font-size: 2.4rem;
  }
  
  .demo-description {
    font-size: 1rem;
    margin-bottom: 50px;
  }
  
  .demo-features {
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .demo-section {
    padding: 60px 15px;
  }
  
  .demo-header {
    margin-bottom: 50px;
  }
  
  .demo-title {
    font-size: 2rem;
    line-height: 1.4;
  }
  
  .demo-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 40px;
  }
  
  .demo-description p {
    margin-bottom: 20px;
  }
  
  .demo-features {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .benefits-title {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .demo-cta {
    text-align: center;
  }
  
  .steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .benefit-item {
    padding: 15px;
  }
  
  .step-card {
    padding: 25px 20px;
  }
  
  .step-card i {
    font-size: 2.2rem;
  }
  
  .demo-badge {
    top: -8px;
    right: 15px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .demo-section {
    padding: 50px 10px;
  }
  
  .demo-title {
    font-size: 1.8rem;
  }
  
  .demo-description {
    font-size: 0.9rem;
  }
  
  .demo-features {
    margin-bottom: 40px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .step-card {
    padding: 20px 15px;
  }
  
  .step-card i {
    font-size: 2rem;
  }
  
  .step-card h4 {
    font-size: 1.1rem;
  }
  
  .step-card p {
    font-size: 0.9rem;
  }
  
  .benefit-item {
    padding: 12px;
  }
  
  .benefit-info h4 {
    font-size: 1rem;
  }
  
  .benefit-info p {
    font-size: 0.85rem;
  }
}

/* Paradise Section */
.paradise-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1d1d1d 50%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.paradise-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

.paradise-header {
  text-align: center;
  margin-bottom: 60px;
}

.paradise-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 900px;
  margin: 0 auto;
}

.paradise-intro {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
}

.intro-text p {
  margin-bottom: 24px;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

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

.intro-image {
  position: relative;
  text-align: center;
}

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

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

.paradise-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.paradise-badge i {
  font-size: 1rem;
}

/* Promotions Section */
.promotions-section {
  margin-bottom: 80px;
}

.promotions-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

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

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

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(102, 126, 234, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.promo-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(102, 126, 234, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.promo-card.highlight {
  border-color: rgba(255, 107, 53, 0.4);
  background: rgba(255, 107, 53, 0.08);
}

.promo-card.highlight::before {
  background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.1) 100%);
}

.promo-card i {
  font-size: 2.5rem;
  color: #667eea;
  margin-bottom: 15px;
  display: block;
  position: relative;
  z-index: 1;
}

.promo-card.highlight i {
  color: #ff6b35;
}

.promo-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.promo-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #f7931e;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.promo-card p {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.5;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.promo-tag {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.promo-card.highlight .promo-tag {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

/* VIP Section */
.vip-section {
  margin-bottom: 80px;
}

.vip-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.vip-levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.vip-level {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.vip-level:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-3px);
}

.vip-level.diamond {
  border-color: rgba(102, 126, 234, 0.4);
  background: rgba(102, 126, 234, 0.08);
}

.vip-level i {
  font-size: 2.2rem;
  color: #b0b0b0;
  margin-bottom: 15px;
  display: block;
}

.vip-level i.bronze {
  color: #cd7f32;
}

.vip-level i.silver {
  color: #c0c0c0;
}

.vip-level i.gold {
  color: #ffd700;
}

.vip-level.diamond i {
  color: #667eea;
}

.vip-level h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.vip-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vip-benefits span {
  font-size: 0.85rem;
  color: #b0b0b0;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Wallet Section */
.wallet-section {
  margin-bottom: 80px;
}

.wallet-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.wallet-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.wallet-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
}

.wallet-text p {
  margin-bottom: 24px;
}

.wallet-text p:last-of-type {
  margin-bottom: 30px;
}

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

.wallet-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.wallet-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

.wallet-feature i {
  color: #667eea;
  font-size: 1.1rem;
}

.steps-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

.step-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.wallet-step {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.wallet-step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 53, 0.3);
}

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

.wallet-step span {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
}

/* Trust Section */
.trust-section {
  background: rgba(255, 255, 255, 0.03);
  padding: 50px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.trust-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.trust-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 40px;
}

.trust-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
}

.trust-text p {
  margin-bottom: 24px;
}

.trust-text p:last-child {
  margin-bottom: 0;
}

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

.trust-text a {
  color: #667eea;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.trust-text a:hover {
  color: #ff6b35;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

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

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(102, 126, 234, 0.3);
}

.trust-badge i {
  font-size: 1.5rem;
  color: #4ade80;
  min-width: 24px;
}

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .paradise-section {
    padding: 80px 20px;
  }
  
  .paradise-title {
    font-size: 2.4rem;
  }
  
  .paradise-intro {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .intro-text {
    font-size: 1rem;
  }
  
  .promotions-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .wallet-content {
    gap: 40px;
  }
  
  .trust-content {
    gap: 30px;
  }
  
  .vip-levels {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .paradise-section {
    padding: 60px 15px;
  }
  
  .paradise-header {
    margin-bottom: 50px;
  }
  
  .paradise-title {
    font-size: 2rem;
    line-height: 1.4;
  }
  
  .paradise-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
    text-align: center;
  }
  
  .intro-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .intro-text p {
    margin-bottom: 20px;
  }
  
  .promotions-title,
  .vip-title,
  .trust-title {
    font-size: 1.8rem;
  }
  
  .promotions-section,
  .vip-section,
  .wallet-section {
    margin-bottom: 60px;
  }
  
  .promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .wallet-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .wallet-title {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .wallet-text {
    font-size: 0.95rem;
  }
  
  .wallet-features {
    grid-template-columns: 1fr;
  }
  
  .trust-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .trust-text {
    font-size: 0.95rem;
  }
  
  .trust-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-section {
    padding: 40px 20px;
  }
  
  .vip-levels {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .paradise-section {
    padding: 50px 10px;
  }
  
  .paradise-title {
    font-size: 1.8rem;
  }
  
  .intro-text {
    font-size: 0.9rem;
  }
  
  .promotions-title,
  .vip-title,
  .trust-title {
    font-size: 1.6rem;
  }
  
  .promo-card {
    padding: 25px 20px;
  }
  
  .promo-card i {
    font-size: 2.2rem;
  }
  
  .promo-amount {
    font-size: 1.8rem;
  }
  
  .vip-levels {
    grid-template-columns: 1fr;
  }
  
  .vip-level {
    padding: 20px 15px;
  }
  
  .wallet-text {
    font-size: 0.9rem;
  }
  
  .trust-text {
    font-size: 0.9rem;
  }
  
  .trust-section {
    padding: 30px 15px;
  }
  
  .paradise-badge {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}

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

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
  z-index: 1;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 60px 20px 40px;
}

/* Footer Brand Section */
.footer-brand {
  max-width: 400px;
}

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

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}

.footer-logo-subtitle {
  font-size: 0.8rem;
  color: #b0b0b0;
  font-weight: 500;
  display: block;
}

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

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

.footer-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 500;
}

.footer-feature i {
  font-size: 1rem;
  color: #ff6b35;
  min-width: 16px;
}

/* Footer Sections */
.footer-section {
  min-width: 0;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 107, 53, 0.3);
  position: relative;
}

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

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

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

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

.footer-link i {
  font-size: 0.9rem;
  min-width: 16px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

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

/* Contact Info */
.contact-info {
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #d0d0d0;
}

.contact-item i {
  font-size: 1rem;
  color: #667eea;
  min-width: 18px;
}

.footer-btn {
  padding: 12px 24px;
  font-size: 0.9rem;
  width: 100%;
  justify-content: center;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 20px;
}

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

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

.legal-link {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

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

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

.footer-copyright p {
  margin: 0;
  font-size: 0.8rem;
  color: #b0b0b0;
  line-height: 1.4;
}

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

.social-link {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d0d0d0;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

/* Footer Badges */
.footer-badges {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
}

.footer-badges-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.8rem;
  color: #d0d0d0;
  transition: all 0.3s ease;
}

.security-badge:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(102, 126, 234, 0.3);
}

.security-badge i {
  font-size: 0.9rem;
  color: #4ade80;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 50px 15px 30px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
    margin-bottom: 20px;
  }
  
  .footer-bottom-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .legal-menu {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 15px 25px;
  }
  
  .footer-brand {
    text-align: center;
    margin-bottom: 10px;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-features {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-feature {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  
  .footer-title {
    text-align: center;
    font-size: 1.1rem;
  }
  
  .footer-menu {
    align-items: center;
  }
  
  .contact-info {
    text-align: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .footer-badges-container {
    gap: 15px;
  }
  
  .security-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  
  .footer-bottom {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 30px 10px 20px;
    gap: 25px;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
    text-align: center;
  }
  
  .footer-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .footer-feature {
    flex-direction: row;
    gap: 8px;
  }
  
  .legal-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-copyright p {
    font-size: 0.75rem;
  }
  
  .footer-badges-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .security-badge {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
  
  .footer-bottom {
    padding: 15px 10px;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  min-height: 60px;
}

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

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

.sticky-btn i {
  font-size: 1.2rem;
  margin-bottom: 4px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-text {
  font-size: 0.8rem;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Individual button styles */
.sticky-login {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-login:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

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

.sticky-register {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-register:hover {
  background: linear-gradient(135deg, #3bc970 0%, #1ea54a 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

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

.sticky-credit {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  position: relative;
}

.sticky-credit:hover {
  background: linear-gradient(135deg, #e55a2b 0%, #e0821a 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.sticky-credit i {
  color: #ffffff;
  animation: pulse 2s ease-in-out infinite;
}

.sticky-credit::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: #ff0000;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

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

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.8rem;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }
  
  .btn-text {
    font-size: 0.75rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.75rem;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .btn-text {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 6px 2px;
    font-size: 0.7rem;
    min-height: 45px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
    margin-bottom: 1px;
  }
  
  .btn-text {
    font-size: 0.65rem;
  }
}

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

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

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

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

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  z-index: 1;
}

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

.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.6s ease-out;
}

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

/* Login Header */
.login-header {
  text-align: center;
  margin-bottom: 35px;
}

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

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

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

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

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

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

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

.error-text {
  color: #fecaca;
  font-size: 0.9rem;
  flex: 1;
}

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

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

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

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

.form-label i {
  color: #ff6b35;
  font-size: 0.9rem;
}

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

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

.form-input::placeholder {
  color: #9ca3af;
  opacity: 0.8;
}

.form-input:invalid {
  border-color: rgba(239, 68, 68, 0.3);
}

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

/* Password Input */
.password-input-container {
  position: relative;
}

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

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

/* Field Errors */
.field-error {
  color: #fca5a5;
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.field-error::before {
  content: '⚠';
  font-size: 0.9rem;
}

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d0d0d0;
  font-size: 0.9rem;
  cursor: pointer;
  user-select: none;
}

.remember-me input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.remember-me input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-color: #ff6b35;
}

.remember-me input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.forgot-password {
  color: #667eea;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

/* Buttons */
.login-btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

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

.btn-text,
.btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.divider {
  position: relative;
  text-align: center;
  margin: 20px 0;
  color: #9ca3af;
  font-size: 0.9rem;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  z-index: 1;
}

.divider span {
  background: rgba(255, 255, 255, 0.05);
  padding: 0 15px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.register-btn {
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 25px;
  justify-content: center;
}

/* Login Footer */
.login-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

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

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

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

.contact-support {
  text-align: center;
}

.contact-support p {
  color: #9ca3af;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #667eea;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .login-section {
    padding: 15px;
  }
  
  .login-card {
    padding: 35px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .login-section {
    padding: 10px;
    align-items: flex-start;
    padding-top: 20px;
  }
  
  .login-container {
    max-width: 100%;
  }
  
  .login-card {
    padding: 25px;
    border-radius: 16px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .security-info {
    gap: 15px;
  }
  
  .security-item {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    min-height: 100vh;
    padding: 15px 10px;
  }
  
  .login-card {
    padding: 20px;
  }
  
  .login-header {
    margin-bottom: 25px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .logo-image {
    width: 50px;
    height: 50px;
  }
  
  .form-group {
    margin-bottom: 18px;
  }
  
  .login-btn,
  .register-btn {
    padding: 14px;
  }
  
  .security-info {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .contact-support p {
    font-size: 0.8rem;
  }
  
  .support-link {
    font-size: 0.8rem;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(102, 126, 234, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  z-index: 1;
}

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

.register-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.6s ease-out;
}

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

/* Register Header */
.register-header {
  text-align: center;
  margin-bottom: 35px;
}

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

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

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

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

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

/* Messages */
.error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInDown 0.3s ease-out;
}

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

.error-text {
  color: #fecaca;
  font-size: 0.9rem;
  flex: 1;
}

.success-message {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInDown 0.3s ease-out;
}

.success-message i {
  color: #22c55e;
  font-size: 1rem;
}

.success-text {
  color: #bbf7d0;
  font-size: 0.9rem;
  flex: 1;
}

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

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

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

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

.form-label i {
  color: #ff6b35;
  font-size: 0.9rem;
}

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

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

.form-input::placeholder {
  color: #9ca3af;
  opacity: 0.8;
}

.form-input:invalid {
  border-color: rgba(239, 68, 68, 0.3);
}

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

/* Input Help */
.input-help {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 6px;
}

.input-help i {
  color: #667eea;
  font-size: 0.8rem;
}

/* Field Errors */
.field-error {
  color: #fca5a5;
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.field-error::before {
  content: '⚠';
  font-size: 0.9rem;
}

/* Terms Section */
.terms-section {
  margin-bottom: 25px;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #d0d0d0;
  font-size: 0.9rem;
  cursor: pointer;
  user-select: none;
  line-height: 1.4;
}

.terms-checkbox input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 1px;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-color: #ff6b35;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.terms-text {
  flex: 1;
}

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

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

/* Buttons */
.register-btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

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

.btn-text,
.btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 107, 53, 0.5);
  color: #ff6b35;
  transform: translateY(-2px);
}

.divider {
  position: relative;
  text-align: center;
  margin: 20px 0;
  color: #9ca3af;
  font-size: 0.9rem;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  z-index: 1;
}

.divider span {
  background: rgba(255, 255, 255, 0.05);
  padding: 0 15px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.login-btn {
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 25px;
  justify-content: center;
}

/* Register Footer */
.register-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.benefits-section {
  margin-bottom: 25px;
}

.benefits-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 15px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.8rem;
  color: #d0d0d0;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 107, 53, 0.2);
}

.benefit-item i {
  color: #ff6b35;
  font-size: 0.9rem;
  min-width: 12px;
}

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

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

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

.contact-support {
  text-align: center;
}

.contact-support p {
  color: #9ca3af;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #667eea;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .register-section {
    padding: 15px;
  }
  
  .register-card {
    padding: 35px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .register-section {
    padding: 10px;
    align-items: flex-start;
    padding-top: 20px;
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-card {
    padding: 25px;
    border-radius: 16px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .security-info {
    gap: 15px;
  }
  
  .security-item {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    min-height: 100vh;
    padding: 15px 10px;
  }
  
  .register-card {
    padding: 20px;
  }
  
  .register-header {
    margin-bottom: 25px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .logo-image {
    width: 50px;
    height: 50px;
  }
  
  .form-group {
    margin-bottom: 18px;
  }
  
  .register-btn,
  .login-btn {
    padding: 14px;
  }
  
  .benefits-title {
    font-size: 1rem;
  }
  
  .benefit-item {
    padding: 8px 10px;
    font-size: 0.75rem;
  }
  
  .security-info {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .contact-support p {
    font-size: 0.8rem;
  }
  
  .support-link {
    font-size: 0.8rem;
  }
  
  .terms-checkbox {
    font-size: 0.85rem;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 30% 80%, rgba(102, 126, 234, 0.15) 0%, transparent 50%);
  z-index: 1;
}

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

.hero-content {
  margin: 0 auto;
}

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

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

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

.hero-btn {
  padding: 18px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

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

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

.promotion-section:nth-child(even) {
  background: linear-gradient(135deg, #151515 0%, #252525 50%, #151515 100%);
}

.promotion-section:nth-child(odd) {
  background: linear-gradient(135deg, #111111 0%, #212121 50%, #111111 100%);
}

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
  z-index: 1;
}

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

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promotion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
  z-index: 1;
}

.promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 107, 53, 0.3);
}

.vip-card {
  border-color: rgba(102, 126, 234, 0.4);
  background: rgba(102, 126, 234, 0.08);
}

.vip-card:hover {
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.promotion-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

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

.vip-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

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

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

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

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

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

.feature-item i {
  font-size: 1.1rem;
  color: #4ade80;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 1rem;
  line-height: 1.5;
  color: #d0d0d0;
  flex: 1;
}

.promotion-cta {
  text-align: center;
  margin-top: 30px;
}

.promotion-cta .btn {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  min-width: 200px;
}

/* Conclusion Section */
.conclusion-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1d1d1d 50%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.conclusion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 60%);
  z-index: 1;
}

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

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

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

.conclusion-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.conclusion-feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.conclusion-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-5px);
}

.conclusion-feature i {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 20px;
  display: block;
}

.conclusion-feature h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.conclusion-feature p {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.4;
}

.conclusion-cta {
  margin-top: 40px;
}

.conclusion-btn {
  padding: 18px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-section {
    padding: 100px 20px 60px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 60px 20px;
  }
  
  .promotion-card {
    padding: 35px;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .conclusion-section {
    padding: 80px 20px;
  }
  
  .conclusion-title {
    font-size: 2.2rem;
  }
  
  .conclusion-features {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 15px 50px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-btn {
    padding: 16px 30px;
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 50px 15px;
  }
  
  .promotion-card {
    padding: 25px;
  }
  
  .promotion-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .promotion-title {
    font-size: 1.4rem;
    text-align: center;
  }
  
  .feature-item {
    padding: 12px;
    flex-direction: row;
    align-items: flex-start;
  }
  
  .feature-item span {
    font-size: 0.95rem;
  }
  
  .promotion-cta .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    min-width: auto;
    width: 100%;
  }
  
  .conclusion-section {
    padding: 60px 15px;
  }
  
  .conclusion-title {
    font-size: 1.8rem;
  }
  
  .conclusion-text {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .conclusion-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .conclusion-feature {
    padding: 25px 20px;
  }
  
  .conclusion-btn {
    padding: 16px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 10px 40px;
  }
  
  .hero-title {
    font-size: 1.9rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .promotion-section {
    padding: 40px 10px;
  }
  
  .promotion-card {
    padding: 20px;
  }
  
  .promotion-icon {
    width: 50px;
    height: 50px;
  }
  
  .promotion-icon i {
    font-size: 1.3rem;
  }
  
  .promotion-title {
    font-size: 1.2rem;
  }
  
  .feature-item {
    padding: 10px;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
  
  .conclusion-section {
    padding: 50px 10px;
  }
  
  .conclusion-title {
    font-size: 1.6rem;
  }
  
  .conclusion-text {
    font-size: 0.95rem;
  }
  
  .conclusion-feature {
    padding: 20px 15px;
  }
  
  .conclusion-feature i {
    font-size: 2.2rem;
  }
  
  .conclusion-feature h3 {
    font-size: 1.1rem;
  }
  
  .conclusion-feature p {
    font-size: 0.9rem;
  }
}