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

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

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

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
}

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

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

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

.feature-item i {
  font-size: 1.5rem;
  margin-right: 12px;
  color: #ffd700;
}

.feature-item span {
  font-size: 1rem;
  font-weight: 500;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 180px;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.btn i {
  margin-right: 8px;
  font-size: 1.2rem;
}

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

.btn-primary:hover {
  background: linear-gradient(45deg, #e55a2b, #e0831a);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.hero-image {
  text-align: center;
  animation: fadeInRight 1s ease-out;
}

.hero-img {
  max-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);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    padding: 0 30px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .feature-item {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    min-width: 160px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-features {
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .feature-item {
    padding: 12px 15px;
  }
  
  .feature-item i {
    font-size: 1.3rem;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* Header Styles */
.main-header {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  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;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

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

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

.logo-link i {
  font-size: 2rem;
  color: #ff6b9d;
  margin-right: 12px;
  animation: heartbeat 2s infinite;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Desktop Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  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, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

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

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 107, 157, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

/* Desktop CTA Button */
.desktop-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  border: none;
  cursor: pointer;
}

.desktop-cta i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.desktop-cta:hover {
  background: linear-gradient(45deg, #e55a2b, #e0831a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

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

.hamburger-line:not(:last-child) {
  margin-bottom: 4px;
}

.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(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

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

.mobile-menu-content {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.mobile-logo {
  display: flex;
  align-items: center;
  color: #ffffff;
}

.mobile-logo i {
  font-size: 1.8rem;
  color: #ff6b9d;
  margin-right: 10px;
}

.mobile-logo span {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

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

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

/* Mobile Navigation */
.mobile-nav {
  flex: 1;
}

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

.mobile-nav-item {
  margin-bottom: 5px;
}

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 500;
}

.mobile-nav-link i {
  margin-right: 15px;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  color: #ff6b9d;
}

.mobile-nav-link:hover {
  background: rgba(255, 107, 157, 0.2);
  color: #ffffff;
  transform: translateX(5px);
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  text-align: center;
}

.mobile-cta-button i {
  margin-right: 8px;
  font-size: 1.2rem;
  color: #ffffff;
}

.mobile-cta-button:hover {
  background: linear-gradient(45deg, #e55a2b, #e0831a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 30px;
  }
  
  .nav-list {
    gap: 20px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
    height: 70px;
  }
  
  .logo-link i {
    font-size: 1.8rem;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .header-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .desktop-cta {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
    height: 65px;
  }
  
  .logo-link i {
    font-size: 1.6rem;
    margin-right: 8px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-menu-content {
    padding: 15px;
  }
  
  .mobile-nav-link {
    padding: 14px 16px;
    font-size: 1rem;
  }
  
  .mobile-nav-link i {
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
  }
  
  .mobile-cta-button {
    padding: 14px 20px;
    font-size: 1rem;
  }
}

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

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

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

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

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

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="40" cy="30" r="0.3" fill="%23ffffff" opacity="0.03"/><circle cx="70" cy="20" r="0.4" fill="%23ffffff" opacity="0.04"/><circle cx="20" cy="60" r="0.2" fill="%23ffffff" opacity="0.02"/><circle cx="80" cy="70" r="0.6" fill="%23ffffff" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  z-index: 1;
}

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

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

.about-text {
  animation: fadeInUp 1s ease-out;
}

.about-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.about-description p {
  margin-bottom: 20px;
}

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

.about-description a {
  color: #ffd700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.about-description a:hover {
  color: #ffed4e;
  border-bottom-color: #ffed4e;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.highlight-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.highlight-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(255, 107, 157, 0.3);
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ff6b9d, #c44569);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

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

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

.highlight-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.about-image {
  grid-column: 1 / -1;
  text-align: center;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.about-img {
  max-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);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .about-container {
    padding: 0 30px;
  }
  
  .about-content {
    gap: 40px;
  }
  
  .about-title {
    font-size: 2.4rem;
  }
  
  .about-description {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .about-description {
    font-size: 1rem;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .highlight-card {
    padding: 25px 20px;
  }
  
  .highlight-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .highlight-icon i {
    font-size: 1.5rem;
  }
  
  .highlight-title {
    font-size: 1.2rem;
  }
  
  .highlight-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 0 15px;
  }
  
  .about-section {
    padding: 60px 0;
  }
  
  .about-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .about-description {
    font-size: 0.95rem;
  }
  
  .about-content {
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .highlight-card {
    padding: 20px 15px;
  }
  
  .highlight-icon {
    width: 45px;
    height: 45px;
  }
  
  .highlight-icon i {
    font-size: 1.3rem;
  }
  
  .highlight-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .highlight-desc {
    font-size: 0.85rem;
  }
}

/* Financial Section */
.financial-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2d1b69 0%, #11998e 50%, #38ef7d 100%);
  position: relative;
  overflow: hidden;
}

.financial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.financial-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  transform: rotate(15deg);
  z-index: 1;
}

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

.financial-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 1s ease-out;
}

.financial-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.financial-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.financial-text {
  animation: fadeInLeft 1s ease-out 0.2s both;
}

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

.financial-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.financial-description strong {
  color: #38ef7d;
  font-weight: 700;
}

.financial-features {
  margin-bottom: 40px;
}

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

.feature-list .feature-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  border-left: 4px solid #38ef7d;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-list .feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
  border-left-color: #11998e;
}

.feature-list .feature-item i {
  font-size: 1.3rem;
  margin-right: 15px;
  color: #38ef7d;
  min-width: 24px;
}

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

.financial-additional p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.financial-additional strong {
  color: #38ef7d;
  font-weight: 700;
}

.financial-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  animation: fadeInRight 1s ease-out 0.4s both;
}

.highlight-box {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 25px 20px;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #11998e, #38ef7d);
}

.highlight-box:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow: 0 10px 30px rgba(56, 239, 125, 0.2);
}

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

.highlight-header i {
  font-size: 1.5rem;
  color: #38ef7d;
  margin-right: 12px;
}

.highlight-header h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.highlight-content {
  display: grid;
  gap: 15px;
}

.stat-item {
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #38ef7d;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: #ffffff;
  margin-top: 5px;
}

.stat-desc {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 3px;
}

.security-item {
  background: rgba(56, 239, 125, 0.2);
  padding: 8px 12px;
  border-radius: 6px;
  text-align: center;
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 500;
}

.financial-image {
  grid-column: 1 / -1;
  text-align: center;
  animation: fadeInUp 1s ease-out 0.6s both;
}

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

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

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .financial-container {
    padding: 0 30px;
  }
  
  .financial-title {
    font-size: 2.6rem;
  }
  
  .financial-content {
    gap: 40px;
  }
  
  .financial-description p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .financial-section {
    padding: 80px 0;
  }
  
  .financial-title {
    font-size: 2.2rem;
  }
  
  .financial-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .financial-description p {
    font-size: 1rem;
  }
  
  .feature-list {
    gap: 12px;
  }
  
  .feature-list .feature-item {
    padding: 12px 15px;
  }
  
  .feature-list .feature-item i {
    font-size: 1.2rem;
    margin-right: 12px;
  }
  
  .feature-list .feature-item span {
    font-size: 0.95rem;
  }
  
  .highlight-box {
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .financial-container {
    padding: 0 15px;
  }
  
  .financial-section {
    padding: 60px 0;
  }
  
  .financial-header {
    margin-bottom: 40px;
  }
  
  .financial-title {
    font-size: 1.8rem;
  }
  
  .financial-content {
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .financial-description {
    margin-bottom: 30px;
  }
  
  .financial-description p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .financial-additional p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .feature-list .feature-item {
    padding: 10px 12px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .feature-list .feature-item i {
    margin-right: 0;
    margin-bottom: 5px;
  }
  
  .highlight-box {
    padding: 18px 12px;
  }
  
  .highlight-header i {
    font-size: 1.3rem;
  }
  
  .highlight-header h3 {
    font-size: 1.1rem;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  .stat-desc {
    font-size: 0.75rem;
  }
}

/* Lottery Types Section */
.lottery-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  position: relative;
  overflow: hidden;
}

.lottery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.lottery-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  transform: rotate(-15deg);
  z-index: 1;
}

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

.lottery-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 1s ease-out;
}

.lottery-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  margin-bottom: 24px;
}

.lottery-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 900px;
  margin: 0 auto;
}

.lottery-subtitle strong {
  color: #f093fb;
  font-weight: 700;
}

.lottery-content {
  margin-bottom: 60px;
}

.lottery-description {
  margin-bottom: 50px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.lottery-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  text-align: justify;
}

.lottery-description strong {
  color: #f093fb;
  font-weight: 700;
}

.lottery-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.lottery-type-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px 25px;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lottery-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.lottery-type-card:hover::before {
  transform: translateX(0);
}

.lottery-type-card.featured {
  border-color: rgba(240, 147, 251, 0.5);
  box-shadow: 0 8px 32px rgba(240, 147, 251, 0.2);
}

.lottery-type-card.featured::before {
  background: linear-gradient(90deg, #f093fb, #ff9a9e);
}

.lottery-type-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

.card-header i {
  font-size: 2rem;
  color: #f093fb;
  margin-right: 15px;
  width: 40px;
  text-align: center;
}

.lottery-type-card.featured .card-header i {
  color: #ff9a9e;
}

.card-header h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

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

.lottery-schedule {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  font-weight: 500;
}

.lottery-features {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.feature-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.feature-badge.popular {
  background: linear-gradient(45deg, #f093fb, #ff9a9e);
  border-color: rgba(240, 147, 251, 0.5);
  box-shadow: 0 2px 10px rgba(240, 147, 251, 0.3);
}

.feature-badge:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.lottery-conclusion {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 50px;
  backdrop-filter: blur(15px);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.lottery-conclusion p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: center;
}

.lottery-conclusion strong {
  color: #f093fb;
  font-weight: 700;
}

.lottery-conclusion a {
  color: #ffd700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.lottery-conclusion a:hover {
  color: #ffed4e;
  border-bottom-color: #ffed4e;
}

.lottery-image {
  text-align: center;
  animation: fadeInUp 1s ease-out 0.8s both;
}

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

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

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .lottery-container {
    padding: 0 30px;
  }
  
  .lottery-title {
    font-size: 2.6rem;
  }
  
  .lottery-subtitle {
    font-size: 1.1rem;
  }
  
  .lottery-types-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .lottery-section {
    padding: 80px 0;
  }
  
  .lottery-title {
    font-size: 2.2rem;
  }
  
  .lottery-subtitle {
    font-size: 1rem;
  }
  
  .lottery-header {
    margin-bottom: 50px;
  }
  
  .lottery-content {
    margin-bottom: 50px;
  }
  
  .lottery-description {
    margin-bottom: 40px;
  }
  
  .lottery-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .lottery-types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .lottery-type-card {
    padding: 25px 20px;
  }
  
  .card-header i {
    font-size: 1.8rem;
  }
  
  .card-header h3 {
    font-size: 1.3rem;
  }
  
  .lottery-conclusion {
    padding: 25px 20px;
    margin-bottom: 40px;
  }
  
  .lottery-conclusion p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .lottery-container {
    padding: 0 15px;
  }
  
  .lottery-section {
    padding: 60px 0;
  }
  
  .lottery-title {
    font-size: 1.8rem;
  }
  
  .lottery-subtitle {
    font-size: 0.95rem;
  }
  
  .lottery-header {
    margin-bottom: 40px;
  }
  
  .lottery-content {
    margin-bottom: 40px;
  }
  
  .lottery-description {
    margin-bottom: 35px;
  }
  
  .lottery-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .lottery-type-card {
    padding: 20px 15px;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .card-header i {
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  
  .card-header h3 {
    font-size: 1.2rem;
  }
  
  .lottery-schedule {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .feature-badge {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
  
  .lottery-conclusion {
    padding: 20px 15px;
    margin-bottom: 35px;
  }
  
  .lottery-conclusion p {
    font-size: 0.95rem;
  }
}

/* Referral Commission Section */
.referral-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
  position: relative;
  overflow: hidden;
}

.referral-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.referral-section::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 30%;
  height: 160%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: rotate(20deg);
  z-index: 1;
}

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

.referral-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 1s ease-out;
}

.referral-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.referral-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.referral-text {
  animation: fadeInLeft 1s ease-out 0.2s both;
}

.referral-intro {
  margin-bottom: 30px;
}

.referral-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

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

.referral-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  text-align: justify;
}

.referral-intro strong,
.referral-description strong,
.referral-bonus strong {
  color: #ff6b9d;
  font-weight: 700;
}

.referral-features {
  margin-bottom: 40px;
}

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

.feature-list .feature-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 4px solid #ff6b9d;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-list .feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
  border-left-color: #ff9a9e;
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

.feature-list .feature-item i {
  font-size: 1.4rem;
  margin-right: 15px;
  color: #ff6b9d;
  min-width: 28px;
  text-align: center;
}

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

.referral-bonus {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 25px;
  backdrop-filter: blur(10px);
}

.referral-bonus p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.referral-bonus a {
  color: #ffd700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.referral-bonus a:hover {
  color: #ffed4e;
  border-bottom-color: #ffed4e;
}

.referral-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  animation: fadeInRight 1s ease-out 0.4s both;
}

.stat-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.stat-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.12) 100%);
  box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff6b9d, #ff9a9e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.stat-icon i {
  font-size: 1.3rem;
  color: #ffffff;
}

.stat-number {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 500;
}

.referral-cta {
  background: linear-gradient(145deg, rgba(255, 107, 157, 0.2) 0%, rgba(255, 154, 158, 0.15) 100%);
  border: 2px solid rgba(255, 107, 157, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  margin-bottom: 50px;
  backdrop-filter: blur(15px);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.cta-button i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.cta-button:hover {
  background: linear-gradient(45deg, #e55a2b, #e0831a);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.referral-image {
  text-align: center;
  animation: fadeInUp 1s ease-out 0.8s both;
}

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

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

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .referral-container {
    padding: 0 30px;
  }
  
  .referral-title {
    font-size: 2.6rem;
  }
  
  .referral-content {
    gap: 40px;
  }
  
  .referral-intro p {
    font-size: 1.1rem;
  }
  
  .referral-description p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .referral-section {
    padding: 80px 0;
  }
  
  .referral-title {
    font-size: 2.2rem;
  }
  
  .referral-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .referral-intro p {
    font-size: 1rem;
  }
  
  .referral-description p {
    font-size: 1rem;
  }
  
  .feature-list .feature-item {
    padding: 15px 18px;
  }
  
  .feature-list .feature-item i {
    font-size: 1.3rem;
    margin-right: 12px;
  }
  
  .feature-list .feature-item span {
    font-size: 0.95rem;
  }
  
  .stat-card {
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .referral-container {
    padding: 0 15px;
  }
  
  .referral-section {
    padding: 60px 0;
  }
  
  .referral-header {
    margin-bottom: 40px;
  }
  
  .referral-title {
    font-size: 1.8rem;
  }
  
  .referral-content {
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .referral-intro {
    margin-bottom: 25px;
  }
  
  .referral-intro p {
    font-size: 0.95rem;
  }
  
  .referral-description {
    margin-bottom: 30px;
  }
  
  .referral-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .referral-features {
    margin-bottom: 30px;
  }
  
  .feature-list {
    gap: 12px;
  }
  
  .feature-list .feature-item {
    padding: 12px 15px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .feature-list .feature-item i {
    margin-right: 0;
    margin-bottom: 5px;
    font-size: 1.2rem;
  }
  
  .feature-list .feature-item span {
    font-size: 0.9rem;
  }
  
  .referral-bonus {
    padding: 20px 15px;
  }
  
  .referral-bonus p {
    font-size: 0.95rem;
  }
  
  .stat-card {
    padding: 18px 12px;
  }
  
  .stat-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
  }
  
  .stat-icon i {
    font-size: 1.2rem;
  }
  
  .stat-number {
    font-size: 1.4rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  .referral-cta {
    padding: 30px 20px;
    margin-bottom: 35px;
  }
  
  .cta-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  
  .cta-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* Registration Process Section */
.registration-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #43e97b 100%);
  position: relative;
  overflow: hidden;
}

.registration-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.registration-section::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -25%;
  width: 50%;
  height: 180%;
  background: linear-gradient(-30deg, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  transform: rotate(-25deg);
  z-index: 1;
}

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

.registration-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 1s ease-out;
}

.registration-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.registration-content {
  margin-bottom: 60px;
}

.registration-description {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.registration-description p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  max-width: 900px;
  margin: 0 auto;
}

.registration-description strong {
  color: #43e97b;
  font-weight: 700;
}

.registration-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 35px 30px;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #4facfe, #43e97b);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.step-card:hover::before {
  transform: scaleY(1);
}

.step-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #4facfe, #00f2fe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
  flex-shrink: 0;
}

.step-number span {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.step-content {
  padding-left: 20px;
}

.step-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.step-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  text-align: justify;
}

.step-description strong {
  color: #43e97b;
  font-weight: 700;
}

.step-description a {
  color: #ffd700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.step-description a:hover {
  color: #ffed4e;
  border-bottom-color: #ffed4e;
}

.step-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.step-features .feature-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.step-features .feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.step-features .feature-item i {
  font-size: 1.2rem;
  color: #43e97b;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

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

.step-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.timeline-item {
  display: flex;
  align-items: center;
  background: rgba(67, 233, 123, 0.2);
  padding: 12px 15px;
  border-radius: 8px;
  border-left: 3px solid #43e97b;
}

.timeline-item i {
  font-size: 1.1rem;
  color: #43e97b;
  margin-right: 10px;
  width: 18px;
  text-align: center;
}

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

.step-highlight {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.highlight-item {
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, rgba(67, 233, 123, 0.3), rgba(79, 172, 254, 0.3));
  padding: 15px 20px;
  border-radius: 25px;
  border: 1px solid rgba(67, 233, 123, 0.4);
}

.highlight-item i {
  font-size: 1.3rem;
  color: #43e97b;
  margin-right: 10px;
}

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

.highlight-item strong {
  color: #43e97b;
  font-weight: 700;
}

.registration-additional {
  margin-bottom: 50px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.additional-info {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px 35px;
  backdrop-filter: blur(15px);
}

.info-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info-item i {
  font-size: 1.5rem;
  color: #43e97b;
  margin-top: 5px;
  flex-shrink: 0;
}

.info-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.info-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.info-content strong {
  color: #43e97b;
  font-weight: 700;
}

.registration-cta {
  background: linear-gradient(145deg, rgba(67, 233, 123, 0.2) 0%, rgba(79, 172, 254, 0.15) 100%);
  border: 2px solid rgba(67, 233, 123, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(15px);
  animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.cta-button i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.cta-button:hover {
  background: linear-gradient(45deg, #e55a2b, #e0831a);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.registration-image {
  text-align: center;
  animation: fadeInUp 1s ease-out 1s both;
}

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

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

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .registration-container {
    padding: 0 30px;
  }
  
  .registration-title {
    font-size: 2.6rem;
  }
  
  .registration-description p {
    font-size: 1.1rem;
  }
  
  .step-card {
    gap: 25px;
    padding: 30px 25px;
  }
  
  .step-number {
    width: 70px;
    height: 70px;
  }
  
  .step-number span {
    font-size: 1.8rem;
  }
  
  .step-content {
    padding-left: 15px;
  }
}

@media (max-width: 768px) {
  .registration-section {
    padding: 80px 0;
  }
  
  .registration-title {
    font-size: 2.2rem;
  }
  
  .registration-description p {
    font-size: 1rem;
  }
  
  .step-card {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .step-number {
    justify-self: center;
    width: 60px;
    height: 60px;
  }
  
  .step-number span {
    font-size: 1.6rem;
  }
  
  .step-content {
    padding-left: 0;
  }
  
  .step-title {
    font-size: 1.4rem;
  }
  
  .step-description {
    font-size: 1rem;
    text-align: center;
  }
  
  .step-features {
    grid-template-columns: 1fr;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .highlight-item i {
    margin-right: 0;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .info-title {
    font-size: 1.8rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .registration-container {
    padding: 0 15px;
  }
  
  .registration-section {
    padding: 60px 0;
  }
  
  .registration-header {
    margin-bottom: 40px;
  }
  
  .registration-title {
    font-size: 1.8rem;
  }
  
  .registration-description {
    margin-bottom: 40px;
  }
  
  .registration-description p {
    font-size: 0.95rem;
  }
  
  .registration-steps {
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .step-card {
    padding: 25px 20px;
  }
  
  .step-number {
    width: 55px;
    height: 55px;
  }
  
  .step-number span {
    font-size: 1.4rem;
  }
  
  .step-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .step-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .step-features .feature-item {
    padding: 10px 12px;
  }
  
  .step-features .feature-item i {
    font-size: 1.1rem;
  }
  
  .step-features .feature-item span {
    font-size: 0.9rem;
  }
  
  .timeline-item {
    padding: 10px 12px;
  }
  
  .timeline-item i {
    font-size: 1rem;
  }
  
  .timeline-item span {
    font-size: 0.9rem;
  }
  
  .step-highlight {
    flex-direction: column;
    gap: 15px;
  }
  
  .highlight-item {
    padding: 12px 15px;
  }
  
  .highlight-item i {
    font-size: 1.2rem;
  }
  
  .highlight-item span {
    font-size: 0.95rem;
  }
  
  .registration-additional {
    margin-bottom: 35px;
  }
  
  .additional-info {
    padding: 30px 20px;
  }
  
  .info-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  
  .info-item {
    gap: 12px;
  }
  
  .info-item i {
    font-size: 1.3rem;
  }
  
  .info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  
  .info-content p {
    font-size: 0.9rem;
  }
  
  .registration-cta {
    padding: 30px 20px;
  }
  
  .cta-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  
  .cta-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

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

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.5), transparent);
}

.main-footer::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  transform: rotate(15deg);
  pointer-events: none;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

/* Footer About Section */
.footer-about {
  max-width: 100%;
}

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

.footer-logo i {
  font-size: 2rem;
  color: #ff6b9d;
  margin-right: 12px;
  animation: pulse 2s infinite;
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.footer-description {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.footer-contact {
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
  font-size: 1rem;
  color: #ff6b9d;
  margin-right: 10px;
  width: 16px;
  text-align: center;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.social-link:hover {
  background: rgba(255, 107, 157, 0.2);
  border-color: rgba(255, 107, 157, 0.4);
  color: #ff6b9d;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

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

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

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  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(90deg, #ff6b9d, transparent);
}

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

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

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

.footer-menu a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

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

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 20px;
}

.footer-copyright {
  flex: 1;
}

.footer-copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

.footer-notice p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-style: italic;
}

.footer-payments {
  flex-shrink: 0;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.payment-icons {
  display: flex;
  gap: 8px;
}

.payment-icons i {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  cursor: help;
}

.payment-icons i:hover {
  color: #ff6b9d;
  background: rgba(255, 107, 157, 0.1);
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    padding: 50px 30px 20px;
  }
  
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 30px;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 40px 20px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-about {
    margin-bottom: 10px;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .payment-methods {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 30px 15px 15px;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  .footer-logo i {
    font-size: 1.8rem;
  }
  
  .footer-logo-text {
    font-size: 1.4rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .footer-menu li {
    margin-bottom: 8px;
  }
  
  .footer-menu a {
    font-size: 0.9rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .social-link i {
    font-size: 1rem;
  }
  
  .footer-bottom {
    padding-top: 20px;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
  
  .footer-notice p {
    font-size: 0.75rem;
  }
  
  .payment-label {
    font-size: 0.8rem;
  }
  
  .payment-icons i {
    font-size: 1.1rem;
    padding: 5px;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
  z-index: 998;
  padding: 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;
  position: relative;
  overflow: hidden;
  min-height: 60px;
  border: none;
  outline: none;
}

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

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

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

.btn-text {
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.2;
  transition: all 0.3s ease;
  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.4);
}

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

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

.sticky-register:hover {
  background: linear-gradient(135deg, #3d8bfe 0%, #00d4fe 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

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

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

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

.sticky-bonus i {
  color: #ffffff;
  animation: bounce 2s infinite;
}

.sticky-bonus::after {
  content: 'HOT';
  position: absolute;
  top: 2px;
  right: 4px;
  background: #ff1744;
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 8px;
  animation: pulse 1.5s infinite;
}

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

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

/* Active state */
.sticky-btn:active {
  transform: scale(0.95);
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 10px 6px;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }
  
  .btn-text {
    font-size: 0.7rem;
  }
  
  .sticky-bonus::after {
    font-size: 0.55rem;
    padding: 1px 3px;
    top: 1px;
    right: 3px;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .btn-text {
    font-size: 0.65rem;
  }
  
  .sticky-bonus::after {
    font-size: 0.5rem;
    padding: 1px 2px;
    top: 1px;
    right: 2px;
  }
}

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

/* Ensure content doesn't get hidden behind sticky buttons */
body {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  body {
    margin-bottom: 55px;
  }
}

@media (max-width: 480px) {
  body {
    margin-bottom: 50px;
  }
}

@media (max-width: 360px) {
  body {
    margin-bottom: 45px;
  }
}

/* Hide sticky buttons when mobile menu is open */
body.mobile-menu-open .sticky-buttons {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Login Section */
.login-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.login-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  transform: rotate(15deg);
  z-index: 1;
}

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

.login-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: fadeInUp 0.8s 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: 30px;
}

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

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

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

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

.login-subtitle {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* Error Message */
.error-message {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.error-message.show {
  display: flex;
  animation: slideDown 0.3s ease-out;
}

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

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

/* Form Styles */
.login-form {
  margin-bottom: 24px;
}

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

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 1rem;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  border: 2px solid #e1e1e1;
  border-radius: 12px;
  font-size: 1rem;
  background: #ffffff;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

.form-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input.error {
  border-color: #ee5a52;
  box-shadow: 0 0 0 3px rgba(238, 90, 82, 0.1);
}

.form-input.success {
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

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

.toggle-password:hover {
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

.validation-message {
  margin-top: 6px;
  font-size: 0.85rem;
  min-height: 20px;
}

.validation-message.error {
  color: #ee5a52;
}

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

/* Buttons */
.login-button {
  width: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

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

.login-button:hover {
  background: linear-gradient(135deg, #5a6fd8, #6a4190);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

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

.button-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.register-button {
  width: 100%;
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.register-button:hover {
  background: #667eea;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.register-button i {
  font-size: 1rem;
}

/* Login Footer */
.login-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e1e1e1;
}

.login-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-item {
  text-align: center;
  color: #666;
  font-size: 0.85rem;
}

.feature-item i {
  display: block;
  font-size: 1.2rem;
  color: #667eea;
  margin-bottom: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 15px;
  }
  
  .login-card {
    padding: 32px 24px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .login-card {
    padding: 24px 20px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 14px 14px 14px 44px;
  }
  
  .input-icon {
    left: 14px;
  }
  
  .toggle-password {
    right: 14px;
  }
  
  .login-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .feature-item {
    font-size: 0.8rem;
  }
  
  .feature-item i {
    font-size: 1.1rem;
  }
}

@media (max-width: 360px) {
  .login-card {
    padding: 20px 16px;
  }
  
  .login-button,
  .register-button {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* Register Section */
.register-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.register-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  transform: rotate(-15deg);
  z-index: 1;
}

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

.register-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: fadeInUp 0.8s 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: 30px;
}

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

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

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

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

.register-subtitle {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* Messages */
.error-message,
.success-message {
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.error-message {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.success-message {
  background: linear-gradient(135deg, #51cf66, #40c057);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(81, 207, 102, 0.3);
}

.error-message.show,
.success-message.show {
  display: flex;
  animation: slideDown 0.3s ease-out;
}

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

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

/* Form Styles */
.register-form {
  margin-bottom: 24px;
}

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

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 1rem;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  border: 2px solid #e1e1e1;
  border-radius: 12px;
  font-size: 1rem;
  background: #ffffff;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

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

.form-input.error {
  border-color: #ee5a52;
  box-shadow: 0 0 0 3px rgba(238, 90, 82, 0.1);
}

.form-input.success {
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.validation-message {
  margin-top: 6px;
  font-size: 0.85rem;
  min-height: 20px;
}

.validation-message.error {
  color: #ee5a52;
}

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

/* Buttons */
.register-button {
  width: 100%;
  background: linear-gradient(135deg, #ff6b9d, #ff9a9e);
  color: #ffffff;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

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

.register-button:hover {
  background: linear-gradient(135deg, #e55a89, #e58891);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

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

.button-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.login-button {
  width: 100%;
  background: transparent;
  color: #ff6b9d;
  border: 2px solid #ff6b9d;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.login-button:hover {
  background: #ff6b9d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
}

.login-button i {
  font-size: 1rem;
}

/* Register Footer */
.register-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e1e1e1;
}

.register-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-item {
  text-align: center;
  color: #666;
  font-size: 0.85rem;
}

.feature-item i {
  display: block;
  font-size: 1.2rem;
  color: #ff6b9d;
  margin-bottom: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 15px;
  }
  
  .register-card {
    padding: 32px 24px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .register-card {
    padding: 24px 20px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 14px 14px 14px 44px;
  }
  
  .input-icon {
    left: 14px;
  }
  
  .register-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .feature-item {
    font-size: 0.8rem;
  }
  
  .feature-item i {
    font-size: 1.1rem;
  }
}

@media (max-width: 360px) {
  .register-card {
    padding: 20px 16px;
  }
  
  .register-button,
  .login-button {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  transform: rotate(15deg);
  z-index: 1;
}

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

.hero-content {
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  text-align: justify;
}

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 20px 40px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  gap: 12px;
}

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

.hero-cta-button:hover {
  background: linear-gradient(45deg, #e55a2b, #e0831a);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

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

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

.promotion-section.alt-bg {
  background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%);
}

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

.promotion-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 1s ease-out;
}

.promotion-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

.promotion-content {
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Feature Cards Grid */
.promotion-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.feature-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.feature-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #ff6b9d, #c44569);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

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

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

.feature-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Feature Items List */
.feature-item {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

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

.feature-item i {
  font-size: 1.3rem;
  color: #ff6b9d;
  margin-right: 15px;
  margin-top: 2px;
  min-width: 20px;
}

.feature-item span {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Bonus Highlights */
.bonus-highlight {
  text-align: center;
  margin-bottom: 50px;
}

.bonus-main {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  display: inline-block;
  backdrop-filter: blur(15px);
}

.bonus-percentage {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.bonus-description {
  display: block;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0;
}

.bonus-max {
  display: block;
  font-size: 1.1rem;
  color: #ff6b9d;
  font-weight: 700;
}

/* Birthday Highlight */
.birthday-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  text-align: center;
}

.birthday-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff6b9d, #ff9a9e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.birthday-icon i {
  font-size: 3rem;
  color: #ffffff;
}

.birthday-details h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.birthday-details p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Commission Highlight */
.commission-highlight {
  text-align: center;
  margin-bottom: 50px;
}

.commission-rate {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  display: inline-block;
  backdrop-filter: blur(15px);
}

.commission-percentage {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.commission-description {
  display: block;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 10px;
}

/* Promotion CTA */
.promotion-cta {
  text-align: center;
}

.promotion-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 18px 36px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  gap: 12px;
}

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

.promotion-button:hover {
  background: linear-gradient(45deg, #e55a2b, #e0831a);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container,
  .promotion-container {
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .promotion-title {
    font-size: 2.4rem;
  }
  
  .promotion-features {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .promotion-section {
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    text-align: left;
  }
  
  .hero-cta-button {
    padding: 16px 32px;
    font-size: 1.2rem;
  }
  
  .promotion-title {
    font-size: 2.2rem;
  }
  
  .promotion-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 1.8rem;
  }
  
  .feature-title {
    font-size: 1.3rem;
  }
  
  .birthday-highlight {
    flex-direction: column;
    gap: 20px;
  }
  
  .birthday-icon {
    width: 80px;
    height: 80px;
  }
  
  .birthday-icon i {
    font-size: 2.5rem;
  }
  
  .birthday-details h3 {
    font-size: 2rem;
  }
  
  .bonus-percentage,
  .commission-percentage {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
  .hero-container,
  .promotion-container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 80px 0 50px;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta-button {
    padding: 14px 28px;
    font-size: 1.1rem;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-icon {
    width: 55px;
    height: 55px;
  }
  
  .feature-icon i {
    font-size: 1.6rem;
  }
  
  .feature-title {
    font-size: 1.2rem;
  }
  
  .feature-description {
    font-size: 0.95rem;
  }
  
  .feature-item {
    padding: 15px;
  }
  
  .feature-item i {
    font-size: 1.2rem;
  }
  
  .feature-item span {
    font-size: 1rem;
  }
  
  .birthday-icon {
    width: 70px;
    height: 70px;
  }
  
  .birthday-icon i {
    font-size: 2rem;
  }
  
  .birthday-details h3 {
    font-size: 1.8rem;
  }
  
  .birthday-details p {
    font-size: 1.1rem;
  }
  
  .bonus-main,
  .commission-rate {
    padding: 30px 20px;
  }
  
  .bonus-percentage,
  .commission-percentage {
    font-size: 3rem;
  }
  
  .bonus-description,
  .commission-description {
    font-size: 1.1rem;
  }
  
  .promotion-button {
    padding: 14px 28px;
    font-size: 1.1rem;
  }
}