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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  min-height: 48px;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  background: linear-gradient(135deg, #ff5252 0%, #ff7043 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
  background: linear-gradient(135deg, #26a69a 0%, #2e7d70 100%);
}

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

.hero-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="20" cy="20" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="60" cy="40" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="80" cy="60" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

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

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

.hero-text {
  space-y: 30px;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.2rem;
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 32px;
}

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

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

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  color: #4ecdc4;
  font-size: 1.2rem;
  min-width: 20px;
}

.feature-item span {
  font-weight: 600;
  color: #fff;
}

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

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.05) rotateY(5deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.image-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  animation: pulse 2s infinite;
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.overlay-icon {
  font-size: 1.1rem;
  color: #fff;
}

.overlay-text {
  font-weight: 600;
  font-size: 0.9rem;
}

.overlay-amount {
  font-weight: 700;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 6px;
  margin-left: 4px;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-buttons {
    justify-content: center;
    gap: 16px;
  }

  .btn {
    font-size: 14px;
    padding: 10px 20px;
    min-width: 140px;
  }

  .image-overlay {
    top: 15px;
    right: 15px;
    padding: 12px 16px;
  }

  .overlay-text {
    font-size: 0.8rem;
  }

  .overlay-amount {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 15px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .feature-item {
    padding: 10px 12px;
  }

  .feature-item span {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 13px;
    padding: 8px 16px;
    min-width: 120px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .image-overlay {
    top: 10px;
    right: 10px;
    padding: 8px 12px;
  }

  .overlay-content {
    gap: 6px;
  }

  .overlay-text {
    font-size: 0.75rem;
  }

  .overlay-amount {
    font-size: 0.9rem;
  }
}

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

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

.header-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.logo-tagline {
  font-size: 0.7rem;
  color: #4ecdc4;
  font-weight: 600;
  text-align: center;
  opacity: 0.8;
  margin-top: -2px;
}

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

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

.nav-link {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: #4ecdc4;
}

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

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

.header-cta {
  display: flex;
  align-items: center;
}

.btn-cta {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  background: linear-gradient(135deg, #ff5252 0%, #ff7043 100%);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

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

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

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

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

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

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

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

.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 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.mobile-menu-close:hover {
  color: #ff6b6b;
}

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #4ecdc4;
  border-color: rgba(78, 205, 196, 0.3);
  transform: translateX(8px);
}

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

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  background: linear-gradient(135deg, #ff5252 0%, #ff7043 100%);
}

.mobile-cta-btn i {
  color: #fff;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 15px;
  }

  .nav-list {
    gap: 24px;
  }

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

  .btn-cta {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {

  .header-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .logo-text {
    font-size: 1.6rem;
  }

  .logo-tagline {
    font-size: 0.6rem;
  }

  .mobile-menu {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
    height: 60px;
  }

  .logo-text {
    font-size: 1.4rem;
  }

  .mobile-menu {
    width: 100%;
  }

  .mobile-nav-link {
    font-size: 1rem;
    padding: 14px 16px;
  }

  .mobile-cta-btn {
    font-size: 1rem;
    padding: 14px 20px;
  }
}

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

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

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

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  space-y: 40px;
}

.about-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 32px;
  position: relative;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  border-radius: 2px;
}

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

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

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

.about-description a {
  color: #ff6b6b;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.about-description a:hover {
  color: #ff8e53;
}

.about-highlights {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

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

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(8px);
  border-color: rgba(78, 205, 196, 0.3);
}

.highlight-icon {
  color: #4ecdc4;
  font-size: 1.3rem;
  min-width: 24px;
  text-align: center;
}

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

.about-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.about-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.about-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.about-img:hover {
  transform: scale(1.03) rotateZ(1deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.image-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  max-width: 350px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.2) 0%, rgba(255, 107, 107, 0.1) 100%);
}

.stat-icon {
  color: #ff6b6b;
  font-size: 1.8rem;
  min-width: 32px;
  text-align: center;
}

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

.stat-number {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #b8b8b8;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    gap: 60px;
  }

  .about-title {
    font-size: 2.4rem;
  }

  .about-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: left;
  }

  .about-title {
    font-size: 2rem;
    text-align: center;
  }

  .about-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-description p {
    font-size: 0.95rem;
  }

  .about-highlights {
    padding: 24px;
  }

  .highlights-title {
    font-size: 1.2rem;
    text-align: center;
  }

  .about-cta {
    justify-content: center;
    margin-top: 32px;
  }

  .image-stats {
    max-width: 100%;
  }

  .stat-item {
    padding: 16px;
  }

  .stat-number {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 15px;
  }

  .about-title {
    font-size: 1.6rem;
  }

  .about-description p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .about-highlights {
    padding: 20px;
  }

  .highlights-title {
    font-size: 1.1rem;
  }

  .highlight-item {
    padding: 12px;
    gap: 12px;
  }

  .highlight-icon {
    font-size: 1.1rem;
  }

  .highlight-item span {
    font-size: 0.9rem;
  }

  .about-cta {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .btn {
    width: 80%;
    max-width: 250px;
  }

  .stat-item {
    padding: 14px;
    gap: 12px;
  }

  .stat-icon {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

/* App Section Styles */
.app-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.app-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(69, 183, 209, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.app-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.app-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.app-img:hover {
  transform: scale(1.05) rotateY(-5deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.app-badges {
  display: flex;
  gap: 16px;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.app-badge:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.2) 0%, rgba(255, 107, 107, 0.1) 100%);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.badge-icon {
  color: #4ecdc4;
  font-size: 1.2rem;
}

.app-badge span {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.app-text {
  space-y: 40px;
}

.app-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 32px;
  position: relative;
}

.app-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #4ecdc4 0%, #ff6b6b 100%);
  border-radius: 2px;
}

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

.app-description p {
  font-size: 1.1rem;
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 20px;
}

.app-description strong {
  color: #4ecdc4;
  font-weight: 700;
}

.app-description a {
  color: #ff6b6b;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.app-description a:hover {
  color: #ff8e53;
}

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

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

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(78, 205, 196, 0.3);
}

.feature-icon {
  color: #ff6b6b;
  font-size: 2rem;
  margin-bottom: 16px;
}

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

.feature-desc {
  font-size: 0.9rem;
  color: #b8b8b8;
  line-height: 1.6;
}

.app-details {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.app-details p {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 16px;
}

.app-details p:last-child {
  margin-bottom: 0;
}

.app-details strong {
  color: #4ecdc4;
  font-weight: 700;
}

.app-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .app-content {
    gap: 60px;
  }

  .app-title {
    font-size: 2.4rem;
  }

  .app-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .app-section {
    padding: 80px 20px;
  }

  .app-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .app-title {
    font-size: 2rem;
    text-align: center;
  }

  .app-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .app-description p {
    font-size: 0.95rem;
  }

  .app-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    font-size: 1.8rem;
  }

  .app-details {
    padding: 24px;
  }

  .app-cta {
    justify-content: center;
  }

  .app-badges {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .app-section {
    padding: 60px 15px;
  }

  .app-title {
    font-size: 1.6rem;
  }

  .app-description p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .app-features {
    gap: 12px;
  }

  .feature-card {
    padding: 16px;
  }

  .feature-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-desc {
    font-size: 0.8rem;
  }

  .app-details {
    padding: 20px;
  }

  .app-details p {
    font-size: 0.9rem;
  }

  .app-cta {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .btn {
    width: 80%;
    max-width: 250px;
  }

  .app-badges {
    gap: 12px;
  }

  .app-badge {
    padding: 10px 16px;
  }

  .badge-icon {
    font-size: 1rem;
  }

  .app-badge span {
    font-size: 0.8rem;
  }
}

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

.slots-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.slots-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.slots-text {
  space-y: 40px;
}

.slots-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 32px;
  position: relative;
}

.slots-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  border-radius: 2px;
}

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

.slots-description p {
  font-size: 1.1rem;
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 20px;
}

.slots-description strong {
  color: #ff6b6b;
  font-weight: 700;
}

.slots-advantages {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

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

.advantages-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.advantage-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(8px);
  border-color: rgba(255, 107, 107, 0.3);
}

.advantage-icon {
  color: #ff6b6b;
  font-size: 1.3rem;
  min-width: 24px;
  text-align: center;
}

.advantage-item span {
  color: #e0e0e0;
  font-weight: 600;
  font-size: 1rem;
}

.slots-final {
  background: rgba(78, 205, 196, 0.1);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
  border-left: 4px solid #4ecdc4;
}

.slots-final p {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

.slots-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.slots-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.slots-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.slots-img:hover {
  transform: scale(1.03) rotateZ(-1deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.slots-providers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 350px;
}

.provider-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.provider-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(78, 205, 196, 0.1) 100%);
}

.provider-icon {
  color: #4ecdc4;
  font-size: 1.2rem;
  min-width: 20px;
}

.provider-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.rtp-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

.rtp-icon {
  color: #fff;
  font-size: 1.1rem;
}

.rtp-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rtp-label {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
}

.rtp-value {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
}

@keyframes glow {
  from {
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  }

  to {
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6), 0 0 20px rgba(255, 107, 107, 0.3);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .slots-content {
    gap: 60px;
  }

  .slots-title {
    font-size: 2.4rem;
  }

  .slots-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .slots-section {
    padding: 80px 20px;
  }

  .slots-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .slots-title {
    font-size: 2rem;
    text-align: center;
  }

  .slots-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .slots-description p {
    font-size: 0.95rem;
  }

  .slots-advantages {
    padding: 24px;
  }

  .advantages-title {
    font-size: 1.2rem;
    text-align: center;
  }

  .slots-cta {
    justify-content: center;
  }

  .slots-providers {
    max-width: 100%;
  }

  .rtp-badge {
    top: 15px;
    right: 15px;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .slots-section {
    padding: 60px 15px;
  }

  .slots-title {
    font-size: 1.6rem;
  }

  .slots-description p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .slots-advantages {
    padding: 20px;
  }

  .advantages-title {
    font-size: 1.1rem;
  }

  .advantage-item {
    padding: 12px;
    gap: 12px;
  }

  .advantage-icon {
    font-size: 1.1rem;
  }

  .advantage-item span {
    font-size: 0.9rem;
  }

  .slots-final {
    padding: 20px;
  }

  .slots-final p {
    font-size: 1rem;
  }

  .slots-cta {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .btn {
    width: 80%;
    max-width: 250px;
  }

  .slots-providers {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .provider-item {
    padding: 12px;
    gap: 10px;
  }

  .provider-icon {
    font-size: 1rem;
  }

  .provider-name {
    font-size: 0.8rem;
  }

  .rtp-badge {
    top: 10px;
    right: 10px;
    padding: 10px 14px;
    gap: 8px;
  }

  .rtp-label {
    font-size: 0.7rem;
  }

  .rtp-value {
    font-size: 1rem;
  }
}

/* Support Section Styles */
.support-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.support-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(255, 107, 107, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.support-text {
  space-y: 40px;
}

.support-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 32px;
  position: relative;
}

.support-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #4ecdc4 0%, #ff6b6b 100%);
  border-radius: 2px;
}

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

.support-description p {
  font-size: 1.1rem;
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 20px;
}

.support-description strong {
  color: #4ecdc4;
  font-weight: 700;
}

.contact-channels {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

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

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

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

.channel-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  border-color: rgba(78, 205, 196, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.channel-icon {
  color: #4ecdc4;
  font-size: 1.5rem;
  min-width: 28px;
  text-align: center;
}

.channel-content {
  flex: 1;
}

.channel-name {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.channel-desc {
  font-size: 0.9rem;
  color: #b8b8b8;
  margin: 0;
}

.support-additional {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.support-additional p {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 16px;
}

.support-additional p:last-child {
  margin-bottom: 0;
}

.support-additional strong {
  color: #4ecdc4;
  font-weight: 700;
}

.support-additional a {
  color: #ff6b6b;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.support-additional a:hover {
  color: #ff8e53;
}

.support-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.support-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.support-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.support-img:hover {
  transform: scale(1.03) rotateZ(1deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.support-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: 350px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.2) 0%, rgba(255, 107, 107, 0.1) 100%);
}

.stat-icon {
  color: #ff6b6b;
  font-size: 1.8rem;
  min-width: 32px;
  text-align: center;
}

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

.stat-number {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #b8b8b8;
  font-weight: 500;
}

.service-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #4ecdc4 0%, #45b7d1 100%);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
  animation: float 3s ease-in-out infinite;
}

.badge-icon {
  color: #fff;
  font-size: 1.2rem;
}

.badge-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-title {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
}

.badge-year {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .support-content {
    gap: 60px;
  }

  .support-title {
    font-size: 2.4rem;
  }

  .support-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .support-section {
    padding: 80px 20px;
  }

  .support-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .support-title {
    font-size: 2rem;
    text-align: center;
  }

  .support-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .support-description p {
    font-size: 0.95rem;
  }

  .contact-channels {
    padding: 24px;
  }

  .channels-title {
    font-size: 1.2rem;
    text-align: center;
  }

  .channels-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .channel-item {
    padding: 16px;
  }

  .support-additional {
    padding: 24px;
  }

  .support-cta {
    justify-content: center;
  }

  .support-stats {
    max-width: 100%;
  }

  .service-badge {
    top: 15px;
    left: 15px;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .support-section {
    padding: 60px 15px;
  }

  .support-title {
    font-size: 1.6rem;
  }

  .support-description p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .contact-channels {
    padding: 20px;
  }

  .channels-title {
    font-size: 1.1rem;
  }

  .channel-item {
    padding: 14px;
    gap: 12px;
  }

  .channel-icon {
    font-size: 1.3rem;
  }

  .channel-name {
    font-size: 1rem;
  }

  .channel-desc {
    font-size: 0.8rem;
  }

  .support-additional {
    padding: 20px;
  }

  .support-additional p {
    font-size: 0.9rem;
  }

  .support-cta {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .btn {
    width: 80%;
    max-width: 250px;
  }

  .stat-card {
    padding: 16px;
    gap: 12px;
  }

  .stat-icon {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .service-badge {
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    gap: 10px;
  }

  .badge-title {
    font-size: 0.8rem;
  }

  .badge-year {
    font-size: 1rem;
  }
}

/* Promotions Section Styles */
.promotions-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.promotions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(69, 183, 209, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.promotions-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.promotions-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.promotions-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.promotions-img:hover {
  transform: scale(1.05) rotateY(5deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.bonus-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: 350px;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(78, 205, 196, 0.1) 100%);
}

.highlight-icon {
  color: #ff6b6b;
  font-size: 1.8rem;
  min-width: 32px;
  text-align: center;
}

.highlight-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.highlight-title {
  color: #b8b8b8;
  font-size: 0.9rem;
  font-weight: 500;
}

.highlight-amount {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
}

@keyframes shimmer {

  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.15);
  }

  50% {
    border-color: rgba(255, 107, 107, 0.4);
  }
}

.promotions-text {
  space-y: 40px;
}

.promotions-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 32px;
  position: relative;
}

.promotions-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  border-radius: 2px;
}

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

.promotions-description p {
  font-size: 1.1rem;
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 20px;
}

.promotions-description strong {
  color: #ff6b6b;
  font-weight: 700;
}

.promotions-description a {
  color: #4ecdc4;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.promotions-description a:hover {
  color: #45b7d1;
}

.weekly-promotions {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.weekly-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}

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

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

.weekly-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(8px);
  border-color: rgba(255, 107, 107, 0.3);
}

.weekly-icon {
  color: #4ecdc4;
  font-size: 1.2rem;
  min-width: 24px;
}

.weekly-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

.weekly-day {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.weekly-promo {
  color: #ff6b6b;
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(255, 107, 107, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
}

.promotions-final {
  background: rgba(78, 205, 196, 0.1);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
  border-left: 4px solid #4ecdc4;
}

.promotions-final p {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

.promotions-final strong {
  color: #4ecdc4;
  font-weight: 700;
}

.promotions-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .promotions-content {
    gap: 60px;
  }

  .promotions-title {
    font-size: 2.4rem;
  }

  .promotions-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .promotions-section {
    padding: 80px 20px;
  }

  .promotions-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: left;
  }

  .promotions-title {
    font-size: 2rem;
    text-align: center;
  }

  .promotions-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .promotions-description p {
    font-size: 0.95rem;
  }

  .weekly-promotions {
    padding: 24px;
  }

  .weekly-title {
    font-size: 1.2rem;
  }

  .weekly-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .promotions-cta {
    justify-content: center;
  }

  .bonus-highlights {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .promotions-section {
    padding: 60px 15px;
  }

  .promotions-title {
    font-size: 1.6rem;
  }

  .promotions-description p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .weekly-promotions {
    padding: 20px;
  }

  .weekly-title {
    font-size: 1.1rem;
  }

  .weekly-item {
    padding: 12px 16px;
    gap: 12px;
  }

  .weekly-icon {
    font-size: 1rem;
  }

  .weekly-day {
    font-size: 0.9rem;
  }

  .weekly-promo {
    font-size: 0.8rem;
    padding: 3px 8px;
  }

  .promotions-final {
    padding: 20px;
  }

  .promotions-final p {
    font-size: 1rem;
  }

  .promotions-cta {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .btn {
    width: 80%;
    max-width: 250px;
  }

  .highlight-card {
    padding: 16px;
    gap: 12px;
  }

  .highlight-icon {
    font-size: 1.5rem;
  }

  .highlight-title {
    font-size: 0.8rem;
  }

  .highlight-amount {
    font-size: 1.1rem;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: #fff;
  padding: 60px 20px 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(78, 205, 196, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.footer-section {
  space-y: 24px;
}

.footer-about {
  grid-column: span 2;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.footer-logo-tagline {
  font-size: 0.8rem;
  color: #4ecdc4;
  font-weight: 600;
  opacity: 0.8;
  margin-top: -2px;
}

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

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

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

.contact-icon {
  color: #4ecdc4;
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

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

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

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

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b8b8b8;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

.footer-link i {
  color: #4ecdc4;
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
  opacity: 0.7;
}

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

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  margin: 40px 0 30px;
}

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

.footer-copyright {
  flex: 1;
}

.footer-copyright p {
  color: #b8b8b8;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

.footer-disclaimer {
  opacity: 0.7;
  font-size: 0.8rem !important;
  margin-top: 4px !important;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.social-title {
  font-family: 'Prompt', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e0e0e0;
  margin: 0;
}

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

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

.social-link:hover {
  background: rgba(78, 205, 196, 0.2);
  color: #4ecdc4;
  border-color: rgba(78, 205, 196, 0.3);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer {
    padding: 50px 15px 20px;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-about {
    grid-column: span 2;
  }

  .footer-logo-text {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-about {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-social {
    align-items: center;
  }

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

@media (max-width: 480px) {
  .footer {
    padding: 40px 15px 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-about {
    grid-column: span 1;
    text-align: center;
  }

  .footer-logo {
    align-items: center;
  }

  .footer-logo-text {
    font-size: 1.6rem;
  }

  .footer-title {
    font-size: 1.1rem;
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact {
    align-items: center;
  }

  .social-links {
    gap: 10px;
  }

  .social-link {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .footer-copyright p {
    font-size: 0.8rem;
  }

  .footer-disclaimer {
    font-size: 0.75rem !important;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px;
  color: #fff;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.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: 2px;
}

.sticky-btn span {
  line-height: 1.2;
  font-size: 0.8rem;
}

.sticky-btn-login {
  background: linear-gradient(135deg, #4ecdc4 0%, #45b7d1 100%);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #26a69a 0%, #2196f3 100%);
  transform: translateY(-2px);
}

.sticky-btn-register {
  background: linear-gradient(135deg, #45b7d1 0%, #96c93d 100%);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #2196f3 0%, #8bc34a 100%);
  transform: translateY(-2px);
}

.sticky-btn-free-credit {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  position: relative;
  animation: pulse-credit 2s infinite;
}

.sticky-btn-free-credit:hover {
  background: linear-gradient(135deg, #ff5252 0%, #ff7043 100%);
  transform: translateY(-2px);
  animation: none;
}

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

@keyframes pulse-credit {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 107, 107, 0);
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }

  .sticky-btn {
    padding: 10px 6px;
    gap: 3px;
  }

  .sticky-btn i {
    font-size: 1.1rem;
  }

  .sticky-btn span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    gap: 2px;
  }

  .sticky-btn i {
    font-size: 1rem;
  }

  .sticky-btn span {
    font-size: 0.7rem;
    line-height: 1.1;
  }
}

@media (max-width: 360px) {
  .sticky-btn span {
    font-size: 0.65rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
  }
}

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

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

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

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.logo-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-subtitle {
  color: #b8b8b8;
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

.error-message {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  animation: shake 0.5s ease-in-out;
}

.error-icon {
  color: #f44336;
  font-size: 1rem;
}

.error-text {
  color: #f44336;
  font-size: 0.9rem;
  font-weight: 500;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

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

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

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

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

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

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

.form-input:focus {
  outline: none;
  border-color: #4ecdc4;
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

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

.form-input.error {
  border-color: #f44336;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

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

.toggle-password:hover {
  color: #4ecdc4;
}

.field-error {
  color: #f44336;
  font-size: 0.8rem;
  margin-top: 4px;
  min-height: 16px;
}

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

.remember-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b8b8b8;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
}

.remember-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

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

.remember-checkbox input:checked+.checkmark {
  background: #4ecdc4;
  border-color: #4ecdc4;
}

.remember-checkbox input:checked+.checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.forgot-link {
  color: #4ecdc4;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: #45b7d1;
}

.login-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #4ecdc4 0%, #45b7d1 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.login-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
  background: linear-gradient(135deg, #26a69a 0%, #2196f3 100%);
}

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

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

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

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

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

.register-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.register-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 107, 107, 0.3);
  color: #ff6b6b;
  transform: translateY(-2px);
}

.login-features {
  display: flex;
  justify-content: space-around;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #b8b8b8;
  font-size: 0.8rem;
}

.feature-icon {
  color: #4ecdc4;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 15px;
  }

  .login-card {
    padding: 32px 24px;
  }

  .login-title {
    font-size: 1.6rem;
  }

  .logo-image {
    width: 70px;
    height: 70px;
  }

  .form-input {
    padding: 12px 16px 12px 44px;
  }
}

@media (max-width: 480px) {
  .login-card {
    padding: 24px 20px;
  }

  .login-title {
    font-size: 1.4rem;
  }

  .logo-image {
    width: 60px;
    height: 60px;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .login-features {
    flex-wrap: wrap;
    gap: 20px;
  }

  .feature-item {
    flex: 1;
    min-width: 80px;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.register-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.logo-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.register-subtitle {
  color: #b8b8b8;
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

.error-message {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  animation: shake 0.5s ease-in-out;
}

.success-message {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  animation: slideIn 0.5s ease-in-out;
}

.error-icon {
  color: #f44336;
  font-size: 1rem;
}

.success-icon {
  color: #4caf50;
  font-size: 1rem;
}

.error-text {
  color: #f44336;
  font-size: 0.9rem;
  font-weight: 500;
}

.success-text {
  color: #4caf50;
  font-size: 0.9rem;
  font-weight: 500;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

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

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

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

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

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

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

.form-input:focus {
  outline: none;
  border-color: #4ecdc4;
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

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

.form-input.error {
  border-color: #f44336;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

.field-error {
  color: #f44336;
  font-size: 0.8rem;
  margin-top: 4px;
  min-height: 16px;
}

.field-help {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b8b8b8;
  font-size: 0.8rem;
  margin-top: 6px;
  opacity: 0.8;
}

.help-icon {
  color: #4ecdc4;
  font-size: 0.8rem;
}

.terms-agreement {
  margin-bottom: 24px;
}

.agreement-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #b8b8b8;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}

.agreement-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

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

.agreement-checkbox input:checked+.checkmark {
  background: #4ecdc4;
  border-color: #4ecdc4;
}

.agreement-checkbox input:checked+.checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.agreement-text {
  flex: 1;
}

.terms-link {
  color: #4ecdc4;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: #45b7d1;
}

.register-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.register-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  background: linear-gradient(135deg, #ff5252 0%, #ff7043 100%);
}

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

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

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

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

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

.login-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: transparent;
  border: 2px solid rgba(78, 205, 196, 0.5);
  border-radius: 12px;
  color: #4ecdc4;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.login-btn:hover {
  background: rgba(78, 205, 196, 0.1);
  border-color: #4ecdc4;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.2);
}

.register-features {
  display: flex;
  justify-content: space-around;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #b8b8b8;
  font-size: 0.8rem;
}

.feature-icon {
  color: #4ecdc4;
  font-size: 1.2rem;
}

.register-notice {
  margin-top: 24px;
  padding: 12px 16px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  text-align: center;
}

.register-notice p {
  color: #ffc107;
  font-size: 0.8rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.register-notice i {
  font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 15px;
  }

  .register-card {
    padding: 32px 24px;
  }

  .register-title {
    font-size: 1.6rem;
  }

  .logo-image {
    width: 70px;
    height: 70px;
  }

  .form-input {
    padding: 12px 16px 12px 44px;
  }
}

@media (max-width: 480px) {
  .register-card {
    padding: 24px 20px;
  }

  .register-title {
    font-size: 1.4rem;
  }

  .logo-image {
    width: 60px;
    height: 60px;
  }

  .register-features {
    flex-wrap: wrap;
    gap: 20px;
  }

  .feature-item {
    flex: 1;
    min-width: 80px;
  }

  .agreement-checkbox {
    font-size: 0.85rem;
    gap: 10px;
  }

  .checkmark {
    width: 16px;
    height: 16px;
  }

  .register-notice p {
    font-size: 0.75rem;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.1) 0%, transparent 70%),
    radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #b8b8b8;
  margin-bottom: 40px;
  line-height: 1.5;
}

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

.btn-large {
  padding: 18px 36px;
  font-size: 1.2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.3);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.stat-number {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #4ecdc4;
  display: block;
  line-height: 1;
}

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

/* Promotion Section Styles */
.promotion-section {
  padding: 60px 20px;
  position: relative;
}

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

.promotion-secondary {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 100%);
}

.promotion-tertiary {
  background: linear-gradient(135deg, #2d1b69 0%, #1a1a2e 100%);
}

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

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

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.promotion-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.promotion-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.promotion-badge.special {
  background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.promotion-badge.daily {
  background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.promotion-badge.referral {
  background: linear-gradient(135deg, #2196f3 0%, #03a9f4 100%);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.promotion-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.promotion-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.promotion-highlight {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
  border: 2px solid rgba(255, 107, 107, 0.3);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promotion-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

.promotion-highlight.birthday {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
  border-color: rgba(233, 30, 99, 0.3);
}

.promotion-highlight.daily {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(139, 195, 74, 0.1) 100%);
  border-color: rgba(76, 175, 80, 0.3);
}

.promotion-highlight.referral {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(3, 169, 244, 0.1) 100%);
  border-color: rgba(33, 150, 243, 0.3);
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.highlight-amount {
  font-family: 'Prompt', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
}

.highlight-currency {
  font-size: 1.2rem;
  color: #4ecdc4;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.highlight-desc {
  font-size: 1rem;
  color: #b8b8b8;
  display: block;
  margin-top: 8px;
}

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

.promotion-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  color: #e0e0e0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 1.6;
}

.promotion-features li:last-child {
  border-bottom: none;
}

.promotion-features i {
  color: #4ecdc4;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

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

.btn-promotion {
  background: linear-gradient(135deg, #4ecdc4 0%, #45b7d1 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
  min-width: 200px;
  justify-content: center;
}

.btn-promotion:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
  background: linear-gradient(135deg, #26a69a 0%, #2196f3 100%);
}

.btn-promotion.birthday {
  background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-promotion.birthday:hover {
  background: linear-gradient(135deg, #c2185b 0%, #7b1fa2 100%);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.btn-promotion.daily {
  background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-promotion.daily:hover {
  background: linear-gradient(135deg, #388e3c 0%, #689f38 100%);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-promotion.referral {
  background: linear-gradient(135deg, #2196f3 0%, #03a9f4 100%);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.btn-promotion.referral:hover {
  background: linear-gradient(135deg, #1976d2 0%, #0288d1 100%);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .promotion-content {
    grid-template-columns: 250px 1fr;
    gap: 30px;
  }

  .promotion-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 20px 60px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 300px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .promotion-section {
    padding: 40px 20px;
  }

  .promotion-card {
    padding: 30px 20px;
  }

  .promotion-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .promotion-title {
    font-size: 1.6rem;
  }

  .promotion-features {
    text-align: left;
  }

  .highlight-amount {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 15px 40px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .promotion-section {
    padding: 30px 15px;
  }

  .promotion-card {
    padding: 20px 15px;
  }

  .promotion-title {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .promotion-highlight {
    padding: 24px 16px;
  }

  .highlight-amount {
    font-size: 2.5rem;
  }

  .promotion-features li {
    font-size: 0.9rem;
    gap: 10px;
  }

  .btn-promotion {
    padding: 12px 20px;
    font-size: 0.9rem;
    min-width: 180px;
  }
}