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

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

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

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

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.hero-text {
  max-width: 100%;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ff69b4, #ba55d3, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  color: #ffffff;
  border: 2px solid #ff69b4;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  transform: translateY(-2px);
}

.hero-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .feature-item {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(42, 26, 42, 0.95));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 105, 180, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

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

.logo {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.logo-link i {
  font-size: 2rem;
  color: #ff69b4;
  transition: all 0.3s ease;
}

.logo-link:hover i {
  color: #ba55d3;
  transform: rotate(5deg);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.nav-link:hover {
  color: #ff69b4;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.3);
}

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

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
  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 {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.5);
}

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

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

.hamburger-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.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;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu-content {
  background: linear-gradient(135deg, #1a1a1a, #2a1a3a);
  width: 90%;
  max-width: 400px;
  height: 100%;
  margin-left: auto;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

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

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

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
}

.mobile-logo i {
  font-size: 1.5rem;
  color: #ff69b4;
}

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

.mobile-menu-close:hover {
  background: rgba(255, 105, 180, 0.2);
  color: #ff69b4;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: rgba(255, 105, 180, 0.05);
  border: 1px solid rgba(255, 105, 180, 0.1);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.1), transparent);
  transition: left 0.3s ease;
}

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

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

.mobile-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 25px;
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 105, 180, 0.4);
  position: relative;
  overflow: hidden;
}

.mobile-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;
}

.mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.6);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .header-content {
    height: 65px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .nav-list {
    gap: 20px;
  }
  
  .desktop-nav {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .desktop-nav, .cta-btn {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .header-content {
    height: 60px;
  }
  
  .logo-link i {
    font-size: 1.8rem;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }
  
  .header-content {
    height: 55px;
  }
  
  .logo-link i {
    font-size: 1.6rem;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .mobile-menu-content {
    width: 95%;
    padding: 15px;
  }
  
  .mobile-nav-link {
    font-size: 1rem;
    padding: 12px 15px;
  }
  
  .mobile-cta-btn {
    padding: 15px 20px;
    font-size: 1rem;
  }
}

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

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

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

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

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 105, 180, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 30% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.about-text {
  max-width: 100%;
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.3;
  background: linear-gradient(135deg, #ff69b4, #ba55d3, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  margin-bottom: 40px;
}

.about-description p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

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

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

.feature-card {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(138, 43, 226, 0.05));
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

.feature-icon {
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.feature-content h3 {
  font-size: 1.1rem;
  color: #ff69b4;
  margin-bottom: 8px;
  font-weight: 600;
}

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

.about-conclusion {
  background: rgba(255, 105, 180, 0.05);
  border-left: 4px solid #ff69b4;
  padding: 25px;
  border-radius: 10px;
}

.about-conclusion p {
  font-size: 1.05rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.7;
  text-align: justify;
}

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

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

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

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

.image-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  padding: 15px 20px;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
}

.overlay-content i {
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    gap: 60px;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .about-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .about-description p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .feature-card {
    padding: 20px;
    gap: 15px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.3rem;
  }
  
  .feature-content h3 {
    font-size: 1rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 0 15px;
  }
  
  .about-title {
    font-size: 1.5rem;
  }
  
  .about-description p {
    font-size: 0.9rem;
  }
  
  .feature-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  
  .about-conclusion {
    padding: 20px;
  }
  
  .about-conclusion p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .image-overlay {
    top: 15px;
    right: 15px;
    padding: 12px 16px;
  }
  
  .overlay-content {
    font-size: 0.8rem;
  }
}

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

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 105, 180, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.features-text {
  max-width: 100%;
}

.features-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.3;
  background: linear-gradient(135deg, #ff69b4, #ba55d3, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-description {
  margin-bottom: 30px;
}

.features-description p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.features-description strong {
  color: #ff69b4;
  font-weight: 600;
}

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

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

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

.features-highlight {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

.highlight-item {
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.highlight-item i {
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(138, 43, 226, 0.05));
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
  border-color: rgba(255, 105, 180, 0.5);
}

.service-card:hover::before {
  left: 100%;
}

.service-icon {
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

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

.service-card h3 {
  font-size: 1.3rem;
  color: #ff69b4;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

.service-card p strong {
  color: #ff69b4;
  font-weight: 600;
}

.support-info {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(138, 43, 226, 0.05));
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.support-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.support-text h3 {
  font-size: 1.8rem;
  color: #ff69b4;
  margin-bottom: 20px;
  font-weight: 600;
}

.support-text p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.support-text strong {
  color: #ff69b4;
  font-weight: 600;
}

.support-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 105, 180, 0.1);
  padding: 15px 20px;
  border-radius: 15px;
  border-left: 4px solid #ff69b4;
  transition: all 0.3s ease;
}

.support-feature:hover {
  background: rgba(255, 105, 180, 0.2);
  transform: translateX(5px);
}

.support-feature i {
  font-size: 1.5rem;
  color: #ff69b4;
  flex-shrink: 0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .features-content {
    gap: 50px;
  }
  
  .features-title {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .service-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 80px 0;
  }
  
  .features-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .features-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .features-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .highlight-item {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 25px;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
  }
  
  .service-icon i {
    font-size: 1.8rem;
  }
  
  .support-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .support-text h3 {
    font-size: 1.5rem;
  }
  
  .support-text p {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .features-container {
    padding: 0 15px;
  }
  
  .features-title {
    font-size: 1.5rem;
  }
  
  .features-description p {
    font-size: 0.95rem;
  }
  
  .features-highlight {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .highlight-item {
    padding: 8px 12px;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
  
  .service-card p {
    font-size: 0.9rem;
  }
  
  .support-info {
    padding: 30px 20px;
  }
  
  .support-text h3 {
    font-size: 1.4rem;
    text-align: center;
  }
  
  .support-text p {
    font-size: 0.9rem;
  }
  
  .support-feature {
    padding: 12px 15px;
  }
  
  .support-feature i {
    font-size: 1.3rem;
  }
  
  .support-feature span {
    font-size: 0.9rem;
  }
}

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

.platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.platform-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.platform-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
  background: linear-gradient(135deg, #ff69b4, #ba55d3, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.platform-subtitle {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.platform-subtitle strong {
  color: #ff69b4;
  font-weight: 600;
}

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

.platform-text {
  max-width: 100%;
}

.feature-highlight {
  margin-bottom: 40px;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(138, 43, 226, 0.1));
  border: 2px solid rgba(255, 105, 180, 0.3);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
  border-color: rgba(255, 105, 180, 0.5);
}

.highlight-icon {
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.highlight-box:hover .highlight-icon {
  transform: scale(1.1) rotate(10deg);
}

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

.highlight-content h3 {
  font-size: 1.5rem;
  color: #ff69b4;
  margin-bottom: 15px;
  font-weight: 600;
}

.highlight-content p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.highlight-content strong {
  color: #ff69b4;
  font-weight: 600;
}

.lottery-types, .bonus-program {
  background: rgba(255, 105, 180, 0.05);
  border-left: 4px solid #ff69b4;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.lottery-types h3, .bonus-program h3 {
  font-size: 1.3rem;
  color: #ff69b4;
  margin-bottom: 15px;
  font-weight: 600;
}

.lottery-types p, .bonus-program p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.lottery-types strong, .bonus-program strong {
  color: #ff69b4;
  font-weight: 600;
}

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

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

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

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

.badge {
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  padding: 10px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

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

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.feature-item {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(138, 43, 226, 0.05));
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(255, 105, 180, 0.2);
  border-color: rgba(255, 105, 180, 0.4);
}

.feature-item .feature-icon {
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

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

.feature-item h4 {
  font-size: 1.1rem;
  color: #ff69b4;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-item p {
  font-size: 0.95rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.5;
}

.security-info {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(138, 43, 226, 0.05));
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.security-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.security-text h3 {
  font-size: 1.6rem;
  color: #ff69b4;
  margin-bottom: 20px;
  font-weight: 600;
}

.security-text p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

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

.security-text strong {
  color: #ff69b4;
  font-weight: 600;
}

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

.security-text a:hover {
  color: #ba55d3;
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.security-badge:hover {
  background: rgba(255, 105, 180, 0.2);
  transform: translateX(5px);
  border-color: rgba(255, 105, 180, 0.5);
}

.security-badge i {
  font-size: 2rem;
  color: #ff69b4;
  flex-shrink: 0;
}

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

.badge-text p {
  font-size: 0.9rem;
  color: #cccccc;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .platform-content {
    gap: 50px;
  }
  
  .platform-title {
    font-size: 2rem;
  }
  
  .features-list {
    grid-template-columns: repeat(auto-fit, minMax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 80px 0;
  }
  
  .platform-header {
    margin-bottom: 50px;
  }
  
  .platform-title {
    font-size: 1.8rem;
  }
  
  .platform-subtitle {
    font-size: 1rem;
    text-align: left;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .highlight-box {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  
  .highlight-icon {
    width: 60px;
    height: 60px;
  }
  
  .highlight-icon i {
    font-size: 1.8rem;
  }
  
  .highlight-content h3 {
    font-size: 1.3rem;
  }
  
  .highlight-content p {
    text-align: left;
  }
  
  .lottery-types p, .bonus-program p {
    text-align: left;
  }
  
  .image-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 15px;
  }
  
  .features-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .security-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .security-text h3 {
    font-size: 1.4rem;
  }
  
  .security-text p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .platform-container {
    padding: 0 15px;
  }
  
  .platform-title {
    font-size: 1.5rem;
  }
  
  .platform-subtitle {
    font-size: 0.95rem;
  }
  
  .highlight-box {
    padding: 20px;
  }
  
  .highlight-icon {
    width: 50px;
    height: 50px;
  }
  
  .highlight-icon i {
    font-size: 1.5rem;
  }
  
  .highlight-content h3 {
    font-size: 1.2rem;
  }
  
  .highlight-content p {
    font-size: 0.9rem;
  }
  
  .lottery-types, .bonus-program {
    padding: 20px;
  }
  
  .lottery-types h3, .bonus-program h3 {
    font-size: 1.2rem;
  }
  
  .lottery-types p, .bonus-program p {
    font-size: 0.9rem;
  }
  
  .feature-item {
    padding: 20px;
  }
  
  .feature-item .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-item .feature-icon i {
    font-size: 1.3rem;
  }
  
  .feature-item h4 {
    font-size: 1rem;
  }
  
  .feature-item p {
    font-size: 0.9rem;
  }
  
  .security-info {
    padding: 30px 20px;
  }
  
  .security-text h3 {
    font-size: 1.3rem;
  }
  
  .security-text p {
    font-size: 0.9rem;
  }
  
  .security-badge {
    padding: 15px;
    gap: 12px;
  }
  
  .security-badge i {
    font-size: 1.7rem;
  }
  
  .badge-text h4 {
    font-size: 0.9rem;
  }
  
  .badge-text p {
    font-size: 0.8rem;
  }
  
  .image-badges {
    gap: 8px;
  }
  
  .badge {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

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

.guide-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 60% 40%, rgba(255, 105, 180, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 40% 70%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.guide-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.guide-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.3;
  background: linear-gradient(135deg, #ff69b4, #ba55d3, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.guide-subtitle {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.guide-subtitle strong {
  color: #ff69b4;
  font-weight: 600;
}

.guide-subtitle a {
  color: #ff69b4;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.guide-subtitle a:hover {
  color: #ba55d3;
}

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

.guide-text {
  max-width: 100%;
}

.strategy-section {
  margin-bottom: 40px;
}

.strategy-box {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(138, 43, 226, 0.1));
  border: 2px solid rgba(255, 105, 180, 0.3);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.strategy-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
  border-color: rgba(255, 105, 180, 0.5);
}

.strategy-icon {
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.strategy-box:hover .strategy-icon {
  transform: scale(1.1) rotate(10deg);
}

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

.strategy-content h3 {
  font-size: 1.4rem;
  color: #ff69b4;
  margin-bottom: 15px;
  font-weight: 600;
}

.strategy-content p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.strategy-content strong {
  color: #ff69b4;
  font-weight: 600;
}

.analysis-section,
.investment-strategy {
  background: rgba(255, 105, 180, 0.05);
  border-left: 4px solid #ff69b4;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.analysis-section h3,
.investment-strategy h3 {
  font-size: 1.3rem;
  color: #ff69b4;
  margin-bottom: 15px;
  font-weight: 600;
}

.analysis-section p,
.investment-strategy p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.analysis-section strong,
.investment-strategy strong {
  color: #ff69b4;
  font-weight: 600;
}

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

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

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

.image-tips {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.tip {
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  padding: 8px 12px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 3px 10px rgba(255, 105, 180, 0.4);
}

.tip i {
  font-size: 0.9rem;
}

.time-management,
.bonus-tips,
.skill-development {
  background: rgba(255, 105, 180, 0.05);
  border-left: 4px solid #ff69b4;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.time-management h3,
.bonus-tips h3,
.skill-development h3 {
  font-size: 1.4rem;
  color: #ff69b4;
  margin-bottom: 15px;
  font-weight: 600;
}

.time-management p,
.bonus-tips p,
.skill-development p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.time-management strong,
.bonus-tips strong,
.skill-development strong {
  color: #ff69b4;
  font-weight: 600;
}

.tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.tip-item {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(138, 43, 226, 0.05));
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 105, 180, 0.2);
  border-color: rgba(255, 105, 180, 0.4);
}

.tip-number {
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.tip-item:hover .tip-number {
  transform: scale(1.1) rotate(5deg);
}

.tip-item h4 {
  font-size: 1rem;
  color: #ff69b4;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.3;
}

.tip-item p {
  font-size: 0.9rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .guide-content {
    gap: 50px;
  }
  
  .guide-title {
    font-size: 2rem;
  }
  
  .tips-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .guide-section {
    padding: 80px 0;
  }
  
  .guide-header {
    margin-bottom: 50px;
  }
  
  .guide-title {
    font-size: 1.8rem;
  }
  
  .guide-subtitle {
    font-size: 1rem;
    text-align: left;
  }
  
  .guide-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .strategy-box {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  
  .strategy-icon {
    width: 60px;
    height: 60px;
  }
  
  .strategy-icon i {
    font-size: 1.8rem;
  }
  
  .strategy-content h3 {
    font-size: 1.2rem;
  }
  
  .strategy-content p {
    text-align: left;
  }
  
  .analysis-section p,
  .investment-strategy p,
  .time-management p,
  .bonus-tips p,
  .skill-development p {
    text-align: left;
  }
  
  .image-tips {
    position: static;
    margin-top: 15px;
  }
  
  .tips-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .guide-container {
    padding: 0 15px;
  }
  
  .guide-title {
    font-size: 1.5rem;
  }
  
  .guide-subtitle {
    font-size: 0.95rem;
  }
  
  .strategy-box {
    padding: 20px;
  }
  
  .strategy-icon {
    width: 50px;
    height: 50px;
  }
  
  .strategy-icon i {
    font-size: 1.5rem;
  }
  
  .strategy-content h3 {
    font-size: 1.1rem;
  }
  
  .strategy-content p {
    font-size: 0.9rem;
  }
  
  .analysis-section,
  .investment-strategy,
  .time-management,
  .bonus-tips,
  .skill-development {
    padding: 20px;
  }
  
  .analysis-section h3,
  .investment-strategy h3,
  .time-management h3,
  .bonus-tips h3,
  .skill-development h3 {
    font-size: 1.2rem;
  }
  
  .analysis-section p,
  .investment-strategy p,
  .time-management p,
  .bonus-tips p,
  .skill-development p {
    font-size: 0.9rem;
  }
  
  .tip-item {
    padding: 20px;
    gap: 15px;
  }
  
  .tip-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .tip-item h4 {
    font-size: 0.95rem;
  }
  
  .tip-item p {
    font-size: 0.85rem;
  }
  
  .image-tips {
    gap: 8px;
  }
  
  .tip {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  
  .tip i {
    font-size: 0.8rem;
  }
}

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

.registration-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 105, 180, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.registration-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.registration-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.3;
  background: linear-gradient(135deg, #ff69b4, #ba55d3, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.registration-subtitle {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.registration-subtitle strong {
  color: #ff69b4;
  font-weight: 600;
}

.registration-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.registration-steps {
  max-width: 100%;
}

.step-item {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(138, 43, 226, 0.05));
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
  border-color: rgba(255, 105, 180, 0.4);
}

.step-number {
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.step-item:hover .step-number {
  transform: scale(1.1) rotate(10deg);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.4rem;
  color: #ff69b4;
  margin-bottom: 15px;
  font-weight: 600;
}

.step-content p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.step-content strong {
  color: #ff69b4;
  font-weight: 600;
}

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

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

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

.registration-features {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-badge {
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  padding: 8px 12px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 3px 10px rgba(255, 105, 180, 0.4);
}

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

.benefits-section,
.support-section,
.membership-benefits {
  background: rgba(255, 105, 180, 0.05);
  border-left: 4px solid #ff69b4;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.benefits-section h3,
.support-section h3,
.membership-benefits h3 {
  font-size: 1.4rem;
  color: #ff69b4;
  margin-bottom: 15px;
  font-weight: 600;
}

.benefits-section p,
.support-section p,
.membership-benefits p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.benefits-section strong,
.support-section strong,
.membership-benefits strong {
  color: #ff69b4;
  font-weight: 600;
}

.benefits-section a,
.support-section a {
  color: #ff69b4;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.benefits-section a:hover,
.support-section a:hover {
  color: #ba55d3;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.fact-item {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(138, 43, 226, 0.05));
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.fact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 105, 180, 0.2);
  border-color: rgba(255, 105, 180, 0.4);
}

.fact-icon {
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.fact-item:hover .fact-icon {
  transform: scale(1.1) rotate(5deg);
}

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

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

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

.cta-section {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(138, 43, 226, 0.1));
  border: 2px solid rgba(255, 105, 180, 0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

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

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

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

.cta-content p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  color: #ffffff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(255, 105, 180, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-button::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-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.6);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .registration-content {
    gap: 50px;
  }
  
  .registration-title {
    font-size: 2rem;
  }
  
  .quick-facts {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .registration-section {
    padding: 80px 0;
  }
  
  .registration-header {
    margin-bottom: 50px;
  }
  
  .registration-title {
    font-size: 1.8rem;
  }
  
  .registration-subtitle {
    font-size: 1rem;
    text-align: left;
  }
  
  .registration-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  
  .step-number {
    align-self: center;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .step-content h3 {
    font-size: 1.2rem;
  }
  
  .step-content p {
    text-align: left;
  }
  
  .registration-features {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 15px;
  }
  
  .quick-facts {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefits-section p,
  .support-section p,
  .membership-benefits p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .registration-container {
    padding: 0 15px;
  }
  
  .registration-title {
    font-size: 1.5rem;
  }
  
  .registration-subtitle {
    font-size: 0.95rem;
  }
  
  .step-item {
    padding: 20px;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .step-content h3 {
    font-size: 1.1rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .benefits-section,
  .support-section,
  .membership-benefits {
    padding: 20px;
  }
  
  .benefits-section h3,
  .support-section h3,
  .membership-benefits h3 {
    font-size: 1.2rem;
  }
  
  .benefits-section p,
  .support-section p,
  .membership-benefits p {
    font-size: 0.9rem;
  }
  
  .fact-item {
    padding: 20px;
    gap: 15px;
  }
  
  .fact-icon {
    width: 50px;
    height: 50px;
  }
  
  .fact-icon i {
    font-size: 1.3rem;
  }
  
  .fact-content h4 {
    font-size: 1rem;
  }
  
  .fact-content p {
    font-size: 0.9rem;
  }
  
  .cta-section {
    padding: 30px 20px;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 15px 25px;
    font-size: 1rem;
  }
  
  .cta-button i {
    font-size: 1.1rem;
  }
  
  .registration-features {
    gap: 8px;
  }
  
  .feature-badge {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  
  .feature-badge i {
    font-size: 0.8rem;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a0a 100%);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 105, 180, 0.05) 0%, transparent 70%),
              radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.footer-section {
  max-width: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo i {
  font-size: 2rem;
  color: #ff69b4;
  transition: all 0.3s ease;
}

.footer-logo:hover i {
  color: #ba55d3;
  transform: scale(1.1);
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.contact-item i {
  color: #ff69b4;
  width: 16px;
  flex-shrink: 0;
}

.footer-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

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

.footer-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 5px 0;
  position: relative;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #ff69b4;
  transition: width 0.3s ease;
}

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

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

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 50%;
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link:hover {
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.payment-methods {
  margin-top: 20px;
}

.payment-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.payment-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cccccc;
  font-size: 0.85rem;
  padding: 8px 12px;
  background: rgba(255, 105, 180, 0.05);
  border: 1px solid rgba(255, 105, 180, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.payment-item:hover {
  background: rgba(255, 105, 180, 0.1);
  border-color: rgba(255, 105, 180, 0.3);
}

.payment-item i {
  color: #ff69b4;
  width: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 105, 180, 0.2);
  padding: 25px 0;
  position: relative;
  z-index: 1;
}

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

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.copyright {
  color: #999999;
  font-size: 0.9rem;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

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

.security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 20px;
  color: #cccccc;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 35px;
  }
  
  .footer-section:last-child {
    grid-column: 1 / -1;
    margin-top: 20px;
  }
  
  .payment-methods {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 0;
    margin-top: 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-section:first-child {
    grid-column: 1 / -1;
    margin-bottom: 10px;
  }
  
  .footer-section:last-child {
    grid-column: 1 / -1;
    margin-top: 20px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .footer-legal {
    width: 100%;
  }
  
  .legal-links {
    gap: 15px;
  }
  
  .footer-badges {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer {
    padding: 40px 0 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-section:first-child,
  .footer-section:last-child {
    grid-column: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .footer-logo-text {
    font-size: 1.3rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .social-links {
    flex-wrap: wrap;
  }
  
  .payment-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .footer-badges {
    flex-direction: column;
    gap: 10px;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .legal-link {
    font-size: 0.8rem;
  }
  
  .copyright {
    font-size: 0.85rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(42, 26, 42, 0.95));
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 105, 180, 0.3);
  z-index: 999;
  padding: 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.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;
  position: relative;
  overflow: hidden;
  min-height: 60px;
  border: none;
  border-right: 1px solid rgba(255, 105, 180, 0.2);
}

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

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

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

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

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

.sticky-btn-login {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(75, 0, 130, 0.2));
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.4), rgba(75, 0, 130, 0.4));
  transform: translateY(-2px);
}

.sticky-btn-login i {
  color: #ba55d3;
}

.sticky-btn-login:hover i {
  color: #ffffff;
  transform: scale(1.1);
}

.sticky-btn-register {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(220, 20, 60, 0.2));
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.4), rgba(220, 20, 60, 0.4));
  transform: translateY(-2px);
}

.sticky-btn-register i {
  color: #ff69b4;
}

.sticky-btn-register:hover i {
  color: #ffffff;
  transform: scale(1.1);
}

.sticky-btn-bonus {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
  position: relative;
}

.sticky-btn-bonus::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border-radius: 50%;
  animation: pulse-bonus 2s ease-in-out infinite;
}

@keyframes pulse-bonus {
  0%, 100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
  }
}

.sticky-btn-bonus:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), rgba(255, 165, 0, 0.4));
  transform: translateY(-2px);
}

.sticky-btn-bonus i {
  color: #ffd700;
}

.sticky-btn-bonus:hover i {
  color: #ffffff;
  transform: scale(1.1) rotate(10deg);
}

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

@media (max-width: 480px) {
  .sticky-btn {
    min-height: 55px;
    padding: 8px 4px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 0.65rem;
    line-height: 1.1;
  }
}

@media (max-width: 360px) {
  .sticky-btn {
    min-height: 50px;
    padding: 6px 3px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
  }
  
  .sticky-btn span {
    font-size: 0.6rem;
  }
}

/* Ensure main content doesn't overlap with sticky buttons */
body {
  padding-bottom: 60px;
}

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

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

/* Hide sticky buttons when mobile menu is open */
.mobile-menu-overlay.active ~ .sticky-buttons {
  display: none;
}

/* Login Section Styles */
.login-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a0a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 80px;
  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, 105, 180, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.login-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.login-wrapper {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(42, 26, 42, 0.9));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.login-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.05), rgba(138, 43, 226, 0.05));
  border-radius: 20px;
  pointer-events: none;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.login-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 12px 30px rgba(255, 105, 180, 0.4);
}

.login-title {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.login-form {
  position: relative;
  z-index: 1;
}

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

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

.form-label i {
  color: #ff69b4;
  font-size: 1rem;
}

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

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  outline: none;
  border-color: #ff69b4;
  box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.form-input:valid {
  border-color: #4ade80;
}

.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.password-wrapper {
  position: relative;
}

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

.password-toggle:hover {
  color: #ff69b4;
  background: rgba(255, 105, 180, 0.1);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

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

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 105, 180, 0.5);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: all 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  border-color: #ff69b4;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
  opacity: 1;
}

.checkbox-label {
  color: #cccccc;
  font-size: 0.85rem;
}

.forgot-password {
  color: #ff69b4;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.forgot-password:hover {
  color: #ba55d3;
  text-decoration: underline;
}

.error-message {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 16px;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.error-message.show {
  opacity: 1;
  transform: translateY(0);
}

.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  color: #ef4444;
  font-size: 0.85rem;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.form-error.show {
  opacity: 1;
  transform: translateY(0);
}

.login-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}

.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 {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

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

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

.btn-text {
  transition: opacity 0.3s ease;
}

.btn-loader {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-loader i {
  animation: spin 1s linear infinite;
}

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

.login-btn.loading .btn-loader {
  opacity: 1;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.register-btn {
  width: 100%;
  padding: 14px;
  background: rgba(255, 105, 180, 0.1);
  color: #ff69b4;
  border: 2px solid rgba(255, 105, 180, 0.3);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.register-btn:hover {
  background: rgba(255, 105, 180, 0.2);
  border-color: rgba(255, 105, 180, 0.5);
  color: #ffffff;
  transform: translateY(-1px);
}

.login-footer {
  position: relative;
  z-index: 1;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 90px 0 70px;
  }
  
  .login-wrapper {
    padding: 30px;
    margin: 0 10px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 0 15px;
  }
  
  .login-wrapper {
    padding: 25px 20px;
    margin: 0;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .login-subtitle {
    font-size: 0.85rem;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 14px;
    font-size: 0.95rem;
    min-height: 48px;
  }
  
  .register-btn {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .security-info {
    gap: 15px;
  }
  
  .security-item {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .login-wrapper {
    padding: 20px 15px;
  }
  
  .form-input {
    padding: 10px 12px;
  }
  
  .login-btn {
    padding: 12px;
    min-height: 44px;
  }
}

/* Register Section Styles */
.register-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a0a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 80px;
  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, 105, 180, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.register-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.register-wrapper {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(42, 26, 42, 0.9));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.register-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.05), rgba(138, 43, 226, 0.05));
  border-radius: 20px;
  pointer-events: none;
}

.register-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.register-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 12px 30px rgba(255, 105, 180, 0.4);
}

.register-title {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.register-form {
  position: relative;
  z-index: 1;
}

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

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

.form-label i {
  color: #ff69b4;
  font-size: 1rem;
}

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

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  outline: none;
  border-color: #ff69b4;
  box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.form-input:valid {
  border-color: #4ade80;
}

.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

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

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

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

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

.checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: all 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  border-color: #ff69b4;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
  opacity: 1;
}

.checkbox-label {
  color: #cccccc;
  font-size: 0.85rem;
  line-height: 1.4;
}

.checkbox-label a {
  color: #ff69b4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.checkbox-label a:hover {
  color: #ba55d3;
  text-decoration: underline;
}

.error-message {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 16px;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.error-message.show {
  opacity: 1;
  transform: translateY(0);
}

.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  color: #ef4444;
  font-size: 0.85rem;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.form-error.show {
  opacity: 1;
  transform: translateY(0);
}

.register-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}

.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 {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

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

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

.btn-text {
  transition: opacity 0.3s ease;
}

.btn-loader {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-loader i {
  animation: spin 1s linear infinite;
}

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

.register-btn.loading .btn-loader {
  opacity: 1;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: transparent;
  color: #ff69b4;
  border: 2px solid rgba(255, 105, 180, 0.5);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 25px;
  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, 105, 180, 0.1), transparent);
  transition: left 0.3s ease;
}

.login-btn:hover {
  background: rgba(255, 105, 180, 0.1);
  border-color: rgba(255, 105, 180, 0.7);
  color: #ffffff;
  transform: translateY(-1px);
}

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

.register-footer {
  position: relative;
  z-index: 1;
}

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

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

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

.bonus-highlight {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 105, 180, 0.1));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.bonus-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.bonus-content i {
  font-size: 2.5rem;
  color: #ffd700;
  animation: bounce 2s ease-in-out infinite;
}

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

.bonus-text h3 {
  color: #ffd700;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.bonus-text p {
  color: #cccccc;
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 90px 0 70px;
  }
  
  .register-wrapper {
    padding: 30px;
    margin: 0 10px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .security-info {
    gap: 12px;
  }
  
  .bonus-content {
    flex-direction: column;
    gap: 10px;
  }
  
  .bonus-content i {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .register-container {
    padding: 0 15px;
  }
  
  .register-wrapper {
    padding: 25px 20px;
    margin: 0;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .register-subtitle {
    font-size: 0.85rem;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 14px;
    font-size: 0.95rem;
    min-height: 48px;
  }
  
  .login-btn {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .security-info {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }
  
  .security-item {
    font-size: 0.75rem;
  }
  
  .bonus-highlight {
    padding: 15px;
  }
  
  .bonus-text h3 {
    font-size: 1rem;
  }
  
  .bonus-text p {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .register-wrapper {
    padding: 20px 15px;
  }
  
  .form-input {
    padding: 10px 12px;
  }
  
  .register-btn {
    padding: 12px;
    min-height: 44px;
  }
  
  .bonus-content i {
    font-size: 1.8rem;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1a3a 50%, #1a1a1a 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(circle at 50% 30%, rgba(255, 105, 180, 0.15) 0%, transparent 70%),
              radial-gradient(circle at 30% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ff69b4, #ba55d3, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 35px;
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-cta::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:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 105, 180, 0.6);
}

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

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

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

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

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 105, 180, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

.promotion-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(42, 26, 42, 0.8));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  max-width: 900px;
  margin: 0 auto;
}

.promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
  border-color: rgba(255, 105, 180, 0.4);
}

.promotion-card.featured {
  border-color: rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 105, 180, 0.05));
}

.promotion-card.weekly {
  border-color: rgba(138, 43, 226, 0.5);
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(255, 105, 180, 0.05));
}

.promotion-card.cashback {
  border-color: rgba(34, 197, 94, 0.5);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(255, 105, 180, 0.05));
}

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

.promotion-icon {
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.promotion-card.featured .promotion-icon {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.promotion-card.weekly .promotion-icon {
  background: linear-gradient(135deg, #ba55d3, #8b5cf6);
}

.promotion-card.cashback .promotion-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.promotion-card:hover .promotion-icon {
  transform: scale(1.1) rotate(5deg);
}

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

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

.promotion-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(255, 105, 180, 0.4);
}

.promotion-badge.bonus {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.promotion-badge.weekly {
  background: linear-gradient(135deg, #ba55d3, #8b5cf6);
}

.promotion-badge.cashback {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.promotion-content {
  position: relative;
}

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

.promotion-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.6;
}

.promotion-list li i {
  color: #22c55e;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.promotion-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 25px;
  background: linear-gradient(135deg, #ff69b4, #ba55d3);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
  position: relative;
  overflow: hidden;
}

.promotion-card.featured .promotion-cta {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.promotion-card.weekly .promotion-cta {
  background: linear-gradient(135deg, #ba55d3, #8b5cf6);
  box-shadow: 0 5px 15px rgba(186, 85, 211, 0.3);
}

.promotion-card.cashback .promotion-cta {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.promotion-cta::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-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.5);
}

.promotion-card.featured .promotion-cta:hover {
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.promotion-card.weekly .promotion-cta:hover {
  box-shadow: 0 8px 20px rgba(186, 85, 211, 0.5);
}

.promotion-card.cashback .promotion-cta:hover {
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.5);
}

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

.promotion-cta i {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .promotion-card {
    padding: 35px;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta {
    padding: 16px 25px;
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-card {
    padding: 30px;
  }
  
  .promotion-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  
  .promotion-badge {
    position: static;
    margin-top: 10px;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
  }
  
  .promotion-icon i {
    font-size: 2rem;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .promotion-list li {
    font-size: 0.95rem;
  }
  
  .promotion-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .hero-container,
  .promotion-container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 90px 0 50px;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-cta {
    padding: 14px 20px;
    font-size: 0.9rem;
  }
  
  .hero-cta i {
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 40px 0;
  }
  
  .promotion-card {
    padding: 25px 20px;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.8rem;
  }
  
  .promotion-title {
    font-size: 1.2rem;
  }
  
  .promotion-list li {
    font-size: 0.9rem;
  }
  
  .promotion-cta {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .promotion-badge {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}