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

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

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

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

a:hover {
  color: #ffed4e;
}

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

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

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

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

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

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

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  color: #000;
}

.btn-secondary {
  background: linear-gradient(45deg, #ff4500, #ff6347);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
  color: #fff;
}

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

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

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

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.hero-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  padding: 15px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
  animation: pulse 2s infinite;
}

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

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

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

/* 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 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
  }
  
  .feature {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .hero-badge {
    position: static;
    margin: 20px auto 0;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .hero-features {
    gap: 15px;
  }
  
  .feature {
    padding: 12px 15px;
  }
  
  .feature span {
    font-size: 0.8rem;
  }
}

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

.main-header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

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

/* Logo Section */
.logo-section {
  flex-shrink: 0;
}

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

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

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

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

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  transition: all 0.3s ease;
}

.logo-link:hover .logo-text {
  color: #ffed4e;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
}

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

.nav-item {
  position: relative;
}

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

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

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

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  color: #000;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #ffd700;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle:hover .hamburger-line {
  background: #ffed4e;
}

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

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

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

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

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

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

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

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffd700;
}

.mobile-logo i {
  font-size: 1.8rem;
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 400px;
}

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

.mobile-nav-item:last-child {
  margin-bottom: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mobile-nav-link:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  color: #ffd700;
  transform: translateX(10px);
}

.mobile-nav-link i {
  font-size: 1.2rem;
  color: #ffd700;
  min-width: 20px;
}

/* Mobile CTA Button */
.mobile-cta-item {
  margin-top: 20px;
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 30px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.mobile-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  color: #000;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 15px;
  }
  
  .nav-list {
    gap: 30px;
  }
  
  .nav-link {
    font-size: 0.95rem;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

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

@media (max-width: 480px) {
  .header-container {
    padding: 0 10px;
  }
  
  .header-content {
    height: 65px;
  }
  
  .logo-link i {
    font-size: 1.5rem;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-menu-content {
    padding: 15px;
  }
  
  .mobile-nav-link {
    padding: 18px 20px;
    font-size: 1rem;
  }
  
  .mobile-cta-button {
    padding: 18px 25px;
    font-size: 1rem;
  }
}

/* Scroll Effect */
body {
  padding-top: 80px;
}

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

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

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

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

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

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

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 2px;
}

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

.about-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: justify;
}

.about-text strong {
  color: #ffd700;
  font-weight: 700;
}

.about-image {
  position: relative;
  animation: floatUpDown 3s ease-in-out infinite;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
}

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

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

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 1.8rem;
  color: #000;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.feature-description {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.6;
}

/* Animations */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.4rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-text {
    order: 2;
  }
  
  .about-image {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-content {
    margin-bottom: 60px;
  }
  
  .about-text p {
    font-size: 1rem;
    text-align: left;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
  
  .feature-title {
    font-size: 1.1rem;
  }
  
  .feature-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .about-text {
    gap: 20px;
  }
  
  .about-text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .feature-icon i {
    font-size: 1.3rem;
  }
  
  .feature-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .feature-description {
    font-size: 0.85rem;
  }
}

/* Registration Section */
.registration-section {
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.registration-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 75% 75%, rgba(255, 69, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.registration-intro {
  margin-bottom: 80px;
}

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

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: justify;
}

.intro-text strong {
  color: #ffd700;
  font-weight: 700;
}

.intro-image {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.intro-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.registration-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  background: linear-gradient(45deg, #ff4500, #ff6347);
  color: #fff;
  padding: 12px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 15px rgba(255, 69, 0, 0.4);
  animation: bounce 2s infinite;
}

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

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

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

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

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #000;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 20px auto 25px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
  transform: scale(1.1);
}

.step-icon i {
  font-size: 2rem;
  color: #ffd700;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.step-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cccccc;
  text-align: justify;
}

.step-content strong {
  color: #ffd700;
  font-weight: 700;
}

.promotions-section {
  margin-bottom: 60px;
}

.promotions-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.promotions-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #ff4500, #ff6347);
  border-radius: 2px;
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.promo-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 69, 0, 0.2);
  border-radius: 18px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 69, 0, 0.15);
  border-color: rgba(255, 69, 0, 0.4);
}

.promo-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(45deg, #ff4500, #ff6347);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.promo-card:hover .promo-icon {
  transform: scale(1.1);
}

.promo-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.promo-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6347;
  margin-bottom: 15px;
}

.promo-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
  text-align: justify;
}

.promo-description strong {
  color: #ffd700;
  font-weight: 700;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: linear-gradient(45deg, #ff4500, #ff6347);
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 69, 0, 0.3);
  color: #fff;
}

.final-note {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
}

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

.final-note strong {
  color: #ffd700;
  font-weight: 700;
}

.final-note a {
  color: #ffd700;
  font-weight: 700;
  text-decoration: underline;
}

.final-note a:hover {
  color: #ffed4e;
}

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 69, 0, 0.1) 100%);
  border-radius: 20px;
  padding: 50px 30px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

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

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
  color: #000;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .intro-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .intro-text {
    order: 2;
  }
  
  .intro-image {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .promotions-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .registration-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .intro-text p {
    font-size: 1rem;
    text-align: left;
  }
  
  .step-card {
    padding: 30px 20px;
  }
  
  .step-icon {
    width: 70px;
    height: 70px;
  }
  
  .step-icon i {
    font-size: 1.7rem;
  }
  
  .step-title {
    font-size: 1.15rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
    text-align: left;
  }
  
  .promotions-title {
    font-size: 1.8rem;
  }
  
  .promo-card {
    padding: 25px 20px;
  }
  
  .cta-title {
    font-size: 1.7rem;
  }
  
  .cta-btn {
    padding: 15px 35px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .registration-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .intro-text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .step-card {
    padding: 25px 15px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
  }
  
  .step-icon i {
    font-size: 1.5rem;
  }
  
  .step-title {
    font-size: 1.05rem;
  }
  
  .step-content p {
    font-size: 0.85rem;
  }
  
  .promotions-title {
    font-size: 1.6rem;
  }
  
  .promo-card {
    padding: 20px 15px;
  }
  
  .promo-icon {
    width: 60px;
    height: 60px;
  }
  
  .promo-icon i {
    font-size: 1.5rem;
  }
  
  .promo-title {
    font-size: 1.1rem;
  }
  
  .promo-description {
    font-size: 0.85rem;
  }
  
  .final-note {
    padding: 20px;
  }
  
  .final-note p {
    font-size: 0.9rem;
  }
  
  .cta-section {
    padding: 40px 20px;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-btn {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
}

/* Lottery Section */
.lottery-section {
  background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.lottery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 40% 20%, rgba(255, 215, 0, 0.06) 0%, transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

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

.lottery-intro {
  margin-bottom: 80px;
}

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

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: justify;
}

.intro-text strong {
  color: #ffd700;
  font-weight: 700;
}

.intro-image {
  position: relative;
  animation: rotateFloat 4s ease-in-out infinite;
}

.lottery-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 215, 0, 0.3);
}

.no-limit-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  padding: 15px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
  animation: glow 2s ease-in-out infinite alternate;
}

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

.advantages-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.advantage-card.primary {
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.advantage-card.secondary {
  border: 2px solid rgba(255, 69, 0, 0.3);
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.advantage-card.primary::before {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
}

.advantage-card.secondary::before {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.1) 0%, transparent 100%);
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

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

.advantage-card.primary:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 30px 60px rgba(255, 215, 0, 0.15);
}

.advantage-card.secondary:hover {
  border-color: rgba(255, 69, 0, 0.5);
  box-shadow: 0 30px 60px rgba(255, 69, 0, 0.15);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.advantage-card.primary .advantage-icon {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.advantage-card.secondary .advantage-icon {
  background: linear-gradient(45deg, #ff4500, #ff6347);
}

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

.advantage-icon i {
  font-size: 2rem;
}

.advantage-card.primary .advantage-icon i {
  color: #000;
}

.advantage-card.secondary .advantage-icon i {
  color: #fff;
}

.advantage-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.advantage-card.primary .advantage-title {
  color: #ffd700;
}

.advantage-card.secondary .advantage-title {
  color: #ff6347;
}

.advantage-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #cccccc;
  text-align: justify;
}

.advantage-description strong {
  color: #ffd700;
  font-weight: 700;
}

.advantage-description a {
  color: #ffd700;
  font-weight: 700;
  text-decoration: underline;
}

.advantage-description a:hover {
  color: #ffed4e;
}

.lottery-types-grid {
  margin-bottom: 80px;
}

.grid-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.grid-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, #ff4500, #ff6347);
  border-radius: 2px;
}

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

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

.type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
}

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

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

.type-card:hover .type-icon {
  transform: scale(1.1);
}

.type-icon i {
  font-size: 1.5rem;
  color: #000;
}

.type-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
}

.type-description {
  font-size: 0.9rem;
  color: #cccccc;
  margin-bottom: 15px;
}

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

.feature-tag {
  background: rgba(255, 69, 0, 0.2);
  color: #ff6347;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 69, 0, 0.3);
}

.flexibility-section {
  margin-bottom: 60px;
}

.flexibility-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin-bottom: 40px;
}

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

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

.flexibility-text strong {
  color: #ffd700;
  font-weight: 700;
}

.flexibility-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.flex-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.flex-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(5px);
}

.flex-feature i {
  font-size: 1.5rem;
  color: #ffd700;
  min-width: 30px;
}

.feature-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 5px;
}

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

.result-tracking {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  margin-bottom: 60px;
}

.tracking-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.tracking-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 30px;
  text-align: center;
}

.tracking-description strong {
  color: #ffd700;
  font-weight: 700;
}

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

.track-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 25px 20px;
  transition: all 0.3s ease;
}

.track-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.5);
}

.track-card i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 15px;
}

.track-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
}

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

.cta-lottery {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
  border-radius: 25px;
  padding: 50px 30px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.cta-lottery-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.cta-lottery-description {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 35px;
}

.cta-lottery-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 50px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  border-radius: 35px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.cta-lottery-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
  color: #000;
}

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

/* Animations */
@keyframes rotateFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(-5px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
  }
  100% {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .intro-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .intro-text {
    order: 2;
  }
  
  .intro-image {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .advantages-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .flexibility-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .tracking-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .lottery-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .intro-text p {
    font-size: 1rem;
    text-align: left;
  }
  
  .advantage-card {
    padding: 30px 25px;
  }
  
  .advantage-icon {
    width: 70px;
    height: 70px;
  }
  
  .advantage-icon i {
    font-size: 1.7rem;
  }
  
  .advantage-title {
    font-size: 1.2rem;
  }
  
  .advantage-description {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .grid-title {
    font-size: 1.8rem;
  }
  
  .types-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .type-card {
    padding: 20px 15px;
  }
  
  .type-icon {
    width: 50px;
    height: 50px;
  }
  
  .type-icon i {
    font-size: 1.3rem;
  }
  
  .flexibility-title {
    font-size: 1.7rem;
  }
  
  .flexibility-text p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .flex-feature {
    padding: 15px;
  }
  
  .result-tracking {
    padding: 30px 20px;
  }
  
  .tracking-title {
    font-size: 1.6rem;
  }
  
  .cta-lottery-title {
    font-size: 1.9rem;
  }
  
  .cta-lottery-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .lottery-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .intro-text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .advantage-card {
    padding: 25px 20px;
  }
  
  .advantage-icon {
    width: 60px;
    height: 60px;
  }
  
  .advantage-icon i {
    font-size: 1.5rem;
  }
  
  .advantage-title {
    font-size: 1.1rem;
  }
  
  .advantage-description {
    font-size: 0.9rem;
  }
  
  .grid-title {
    font-size: 1.6rem;
  }
  
  .types-container {
    grid-template-columns: 1fr;
  }
  
  .type-card {
    padding: 18px 12px;
  }
  
  .type-icon {
    width: 45px;
    height: 45px;
  }
  
  .type-icon i {
    font-size: 1.1rem;
  }
  
  .type-title {
    font-size: 1rem;
  }
  
  .type-description {
    font-size: 0.85rem;
  }
  
  .feature-tag {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
  
  .flexibility-title {
    font-size: 1.5rem;
  }
  
  .flexibility-text p {
    font-size: 0.9rem;
  }
  
  .flex-feature {
    flex-direction: column;
    text-align: center;
    padding: 12px;
  }
  
  .flex-feature i {
    font-size: 1.3rem;
    min-width: auto;
    margin-bottom: 8px;
  }
  
  .feature-content h4 {
    font-size: 0.95rem;
  }
  
  .feature-content p {
    font-size: 0.85rem;
  }
  
  .result-tracking {
    padding: 25px 15px;
  }
  
  .tracking-title {
    font-size: 1.4rem;
  }
  
  .tracking-description {
    font-size: 0.9rem;
  }
  
  .track-card {
    padding: 20px 15px;
  }
  
  .track-card i {
    font-size: 1.7rem;
  }
  
  .track-card h4 {
    font-size: 1rem;
  }
  
  .track-card p {
    font-size: 0.85rem;
  }
  
  .cta-lottery {
    padding: 40px 20px;
  }
  
  .cta-lottery-title {
    font-size: 1.7rem;
  }
  
  .cta-lottery-description {
    font-size: 1rem;
  }
  
  .cta-lottery-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
  
  .cta-lottery-btn i {
    font-size: 1.1rem;
  }
}

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

.support-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 60% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

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

.support-intro {
  margin-bottom: 80px;
}

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

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: justify;
}

.intro-text strong {
  color: #ffd700;
  font-weight: 700;
}

.intro-image {
  position: relative;
  animation: pulse 3s ease-in-out infinite;
}

.support-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 215, 0, 0.3);
}

.support-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  background: linear-gradient(45deg, #00d4aa, #00b894);
  color: #fff;
  padding: 15px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(0, 212, 170, 0.4);
  animation: bounce2 2s infinite;
}

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

.contact-channels {
  margin-bottom: 80px;
}

.channels-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.channels-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, #00d4aa, #00b894);
  border-radius: 2px;
}

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

.channel-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.channel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.channel-card.live-chat {
  border-color: rgba(255, 215, 0, 0.3);
}

.channel-card.live-chat::before {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
}

.channel-card.line-official {
  border-color: rgba(0, 212, 170, 0.3);
}

.channel-card.line-official::before {
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, transparent 100%);
}

.channel-card.phone-support {
  border-color: rgba(255, 69, 0, 0.3);
}

.channel-card.phone-support::before {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.1) 0%, transparent 100%);
}

.channel-card.pantip-forum {
  border-color: rgba(138, 43, 226, 0.3);
}

.channel-card.pantip-forum::before {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, transparent 100%);
}

.channel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

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

.channel-card.live-chat:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.15);
}

.channel-card.line-official:hover {
  border-color: rgba(0, 212, 170, 0.5);
  box-shadow: 0 25px 50px rgba(0, 212, 170, 0.15);
}

.channel-card.phone-support:hover {
  border-color: rgba(255, 69, 0, 0.5);
  box-shadow: 0 25px 50px rgba(255, 69, 0, 0.15);
}

.channel-card.pantip-forum:hover {
  border-color: rgba(138, 43, 226, 0.5);
  box-shadow: 0 25px 50px rgba(138, 43, 226, 0.15);
}

.channel-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.channel-card.live-chat .channel-icon {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.channel-card.line-official .channel-icon {
  background: linear-gradient(45deg, #00d4aa, #00b894);
}

.channel-card.phone-support .channel-icon {
  background: linear-gradient(45deg, #ff4500, #ff6347);
}

.channel-card.pantip-forum .channel-icon {
  background: linear-gradient(45deg, #8a2be2, #9932cc);
}

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

.channel-icon i {
  font-size: 2rem;
}

.channel-card.live-chat .channel-icon i {
  color: #000;
}

.channel-card.line-official .channel-icon i,
.channel-card.phone-support .channel-icon i,
.channel-card.pantip-forum .channel-icon i {
  color: #fff;
}

.channel-title {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.channel-card.live-chat .channel-title {
  color: #ffd700;
}

.channel-card.line-official .channel-title {
  color: #00d4aa;
}

.channel-card.phone-support .channel-title {
  color: #ff6347;
}

.channel-card.pantip-forum .channel-title {
  color: #8a2be2;
}

.channel-content {
  margin-bottom: 25px;
}

.channel-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cccccc;
  text-align: justify;
  margin-bottom: 20px;
}

.channel-content strong {
  color: #ffd700;
  font-weight: 700;
}

.channel-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.feature-item i {
  font-size: 0.9rem;
  min-width: 16px;
}

.channel-card.live-chat .feature-item i {
  color: #ffd700;
}

.channel-card.line-official .feature-item i {
  color: #00d4aa;
}

.channel-card.phone-support .feature-item i {
  color: #ff6347;
}

.channel-card.pantip-forum .feature-item i {
  color: #8a2be2;
}

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

.channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.channel-card.live-chat .channel-btn {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.channel-card.line-official .channel-btn {
  background: linear-gradient(45deg, #00d4aa, #00b894);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.channel-card.phone-support .channel-btn {
  background: linear-gradient(45deg, #ff4500, #ff6347);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.channel-card.pantip-forum .channel-btn {
  background: linear-gradient(45deg, #8a2be2, #9932cc);
  color: #fff;
  box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.channel-btn:hover {
  transform: translateY(-2px);
}

.channel-card.live-chat .channel-btn:hover {
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  color: #000;
}

.channel-card.line-official .channel-btn:hover {
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
  color: #fff;
}

.channel-card.phone-support .channel-btn:hover {
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
  color: #fff;
}

.channel-card.pantip-forum .channel-btn:hover {
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
  color: #fff;
}

.service-quality {
  margin-bottom: 60px;
}

.quality-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.quality-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #ff4500, #ff6347);
  border-radius: 2px;
}

.quality-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

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

.quality-text strong {
  color: #ffd700;
  font-weight: 700;
}

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

.quality-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.quality-feature:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(5px);
}

.quality-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quality-icon i {
  font-size: 1.3rem;
  color: #000;
}

.quality-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 5px;
}

.quality-feature p {
  font-size: 0.85rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.4;
}

.contact-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
  border-radius: 25px;
  padding: 50px 30px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.cta-contact-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.cta-contact-description {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 35px;
}

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

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-btn.primary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.contact-btn.secondary {
  background: linear-gradient(45deg, #00d4aa, #00b894);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.contact-btn:hover {
  transform: translateY(-3px);
}

.contact-btn.primary:hover {
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
  color: #000;
}

.contact-btn.secondary:hover {
  box-shadow: 0 12px 35px rgba(0, 212, 170, 0.4);
  color: #fff;
}

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

/* Animations */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes bounce2 {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  40% {
    transform: translateY(-8px) rotate(2deg);
  }
  60% {
    transform: translateY(-4px) rotate(-1deg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .intro-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .intro-text {
    order: 2;
  }
  
  .intro-image {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .channels-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .quality-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .quality-features {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .quality-feature {
    flex: 1;
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .support-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .intro-text p {
    font-size: 1rem;
    text-align: left;
  }
  
  .channels-title {
    font-size: 2rem;
  }
  
  .channel-card {
    padding: 30px 25px;
  }
  
  .channel-icon {
    width: 70px;
    height: 70px;
  }
  
  .channel-icon i {
    font-size: 1.7rem;
  }
  
  .channel-title {
    font-size: 1.2rem;
  }
  
  .channel-content p {
    font-size: 0.9rem;
    text-align: left;
  }
  
  .quality-title {
    font-size: 1.9rem;
  }
  
  .quality-text p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .quality-features {
    flex-direction: column;
  }
  
  .quality-feature {
    min-width: auto;
    padding: 15px;
  }
  
  .quality-icon {
    width: 45px;
    height: 45px;
  }
  
  .quality-icon i {
    font-size: 1.1rem;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .cta-contact-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .support-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .intro-text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .channels-title {
    font-size: 1.7rem;
  }
  
  .channel-card {
    padding: 25px 20px;
  }
  
  .channel-icon {
    width: 60px;
    height: 60px;
  }
  
  .channel-icon i {
    font-size: 1.5rem;
  }
  
  .channel-title {
    font-size: 1.1rem;
  }
  
  .channel-content p {
    font-size: 0.85rem;
  }
  
  .feature-item {
    padding: 6px 10px;
  }
  
  .feature-item span {
    font-size: 0.8rem;
  }
  
  .channel-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .quality-title {
    font-size: 1.6rem;
  }
  
  .quality-text p {
    font-size: 0.9rem;
  }
  
  .quality-feature {
    padding: 12px;
    flex-direction: column;
    text-align: center;
  }
  
  .quality-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
  
  .quality-icon i {
    font-size: 1rem;
  }
  
  .quality-feature h4 {
    font-size: 0.95rem;
  }
  
  .quality-feature p {
    font-size: 0.8rem;
  }
  
  .contact-cta {
    padding: 40px 20px;
  }
  
  .cta-contact-title {
    font-size: 1.7rem;
  }
  
  .cta-contact-description {
    font-size: 1rem;
  }
  
  .contact-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .contact-btn i {
    font-size: 1.1rem;
  }
}

/* Banking Section */
.banking-section {
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f23 50%, #16213e 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.banking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.04) 0%, transparent 70%),
              radial-gradient(circle at 70% 30%, rgba(0, 212, 170, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

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

.banking-intro {
  margin-bottom: 80px;
}

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

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: justify;
}

.intro-text strong {
  color: #ffd700;
  font-weight: 700;
}

.intro-image {
  position: relative;
  animation: floatSpin 5s ease-in-out infinite;
}

.banking-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(0, 212, 170, 0.3);
}

.auto-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(45deg, #00d4aa, #00b894);
  color: #fff;
  padding: 15px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(0, 212, 170, 0.4);
  animation: autoGlow 2s ease-in-out infinite alternate;
}

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

.system-features {
  margin-bottom: 80px;
}

.features-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.features-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, #00d4aa, #00b894);
  border-radius: 2px;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card.primary {
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.feature-card.secondary {
  border: 2px solid rgba(0, 212, 170, 0.3);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card.primary::before {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
}

.feature-card.secondary::before {
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, transparent 100%);
}

.feature-card:hover {
  transform: translateY(-10px);
}

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

.feature-card.primary:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.15);
}

.feature-card.secondary:hover {
  border-color: rgba(0, 212, 170, 0.5);
  box-shadow: 0 25px 50px rgba(0, 212, 170, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card.primary .feature-icon {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.feature-card.secondary .feature-icon {
  background: linear-gradient(45deg, #00d4aa, #00b894);
}

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

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

.feature-card.primary .feature-icon i {
  color: #000;
}

.feature-card.secondary .feature-icon i {
  color: #fff;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.feature-card.primary .feature-title {
  color: #ffd700;
}

.feature-card.secondary .feature-title {
  color: #00d4aa;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #cccccc;
  text-align: justify;
}

.feature-description strong {
  color: #ffd700;
  font-weight: 700;
}

.no-minimum-section {
  margin-bottom: 80px;
}

.minimum-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.minimum-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #ff4500, #ff6347);
  border-radius: 2px;
}

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

.minimum-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  text-align: justify;
}

.minimum-text strong {
  color: #ffd700;
  font-weight: 700;
}

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

.min-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.min-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(10px);
}

.min-feature i {
  font-size: 1.5rem;
  color: #ffd700;
  min-width: 30px;
}

.min-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 5px;
}

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

.speed-section {
  margin-bottom: 80px;
}

.speed-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin-bottom: 50px;
}

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

.speed-stats {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stat-card.deposit {
  border-color: rgba(0, 212, 170, 0.3);
}

.stat-card.withdraw {
  border-color: rgba(255, 69, 0, 0.3);
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card.deposit:hover {
  border-color: rgba(0, 212, 170, 0.5);
  box-shadow: 0 15px 30px rgba(0, 212, 170, 0.2);
}

.stat-card.withdraw:hover {
  border-color: rgba(255, 69, 0, 0.5);
  box-shadow: 0 15px 30px rgba(255, 69, 0, 0.2);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-card.deposit .stat-icon {
  background: linear-gradient(45deg, #00d4aa, #00b894);
}

.stat-card.withdraw .stat-icon {
  background: linear-gradient(45deg, #ff4500, #ff6347);
}

.stat-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.stat-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 5px;
}

.stat-time {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.stat-card.deposit .stat-time {
  color: #00d4aa;
}

.stat-card.withdraw .stat-time {
  color: #ff6347;
}

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

.speed-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  text-align: justify;
}

.speed-text strong {
  color: #ffd700;
  font-weight: 700;
}

.speed-text a {
  color: #ffd700;
  font-weight: 700;
  text-decoration: underline;
}

.speed-text a:hover {
  color: #ffed4e;
}

.security-section {
  margin-bottom: 80px;
}

.security-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin-bottom: 50px;
}

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

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

.security-text strong {
  color: #ffd700;
  font-weight: 700;
}

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

.secure-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.secure-feature:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(5px);
}

.secure-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.secure-icon i {
  font-size: 1.3rem;
  color: #000;
}

.secure-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 5px;
}

.secure-feature p {
  font-size: 0.85rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.4;
}

.supported-banks {
  margin-bottom: 60px;
}

.banks-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin-bottom: 50px;
}

.banks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.bank-category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 30px 25px;
  transition: all 0.3s ease;
}

.bank-category:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
}

.category-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-title i {
  font-size: 1.2rem;
}

.bank-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

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

.bank-item i {
  color: #ffd700;
  font-size: 1.1rem;
  min-width: 20px;
}

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

.banking-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
  border-radius: 25px;
  padding: 50px 30px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.cta-banking-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.cta-banking-description {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 35px;
}

.cta-banking-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 50px;
  background: linear-gradient(45deg, #00d4aa, #00b894);
  color: #fff;
  border-radius: 35px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.cta-banking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 212, 170, 0.4);
  color: #fff;
}

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

/* Animations */
@keyframes floatSpin {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(2deg);
  }
  50% {
    transform: translateY(-15px) rotate(0deg);
  }
  75% {
    transform: translateY(-8px) rotate(-2deg);
  }
}

@keyframes autoGlow {
  0% {
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.4);
  }
  100% {
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.6);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .intro-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .intro-text {
    order: 2;
  }
  
  .intro-image {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .minimum-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .speed-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .speed-stats {
    flex-direction: row;
    justify-content: center;
  }
  
  .security-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .security-features {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .secure-feature {
    flex: 1;
    min-width: 250px;
  }
  
  .banks-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .banking-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .intro-text p {
    font-size: 1rem;
    text-align: left;
  }
  
  .features-title {
    font-size: 2rem;
  }
  
  .feature-card {
    padding: 30px 25px;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
  }
  
  .feature-icon i {
    font-size: 1.7rem;
  }
  
  .feature-title {
    font-size: 1.2rem;
  }
  
  .feature-description {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .minimum-title {
    font-size: 1.9rem;
  }
  
  .minimum-text p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .min-feature {
    padding: 15px;
  }
  
  .speed-title {
    font-size: 1.9rem;
  }
  
  .speed-stats {
    flex-direction: column;
  }
  
  .stat-card {
    padding: 20px;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
  }
  
  .stat-icon i {
    font-size: 1.3rem;
  }
  
  .stat-time {
    font-size: 1.3rem;
  }
  
  .speed-text p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .security-title {
    font-size: 1.9rem;
  }
  
  .security-text p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .security-features {
    flex-direction: column;
  }
  
  .secure-feature {
    min-width: auto;
    padding: 15px;
  }
  
  .secure-icon {
    width: 45px;
    height: 45px;
  }
  
  .secure-icon i {
    font-size: 1.1rem;
  }
  
  .banks-title {
    font-size: 1.9rem;
  }
  
  .bank-category {
    padding: 25px 20px;
  }
  
  .cta-banking-title {
    font-size: 1.9rem;
  }
  
  .cta-banking-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .banking-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .intro-text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .features-title {
    font-size: 1.7rem;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
  
  .feature-title {
    font-size: 1.1rem;
  }
  
  .feature-description {
    font-size: 0.9rem;
  }
  
  .minimum-title {
    font-size: 1.6rem;
  }
  
  .minimum-text p {
    font-size: 0.9rem;
  }
  
  .min-feature {
    flex-direction: column;
    text-align: center;
    padding: 12px;
  }
  
  .min-feature i {
    font-size: 1.3rem;
    min-width: auto;
    margin-bottom: 8px;
  }
  
  .min-content h4 {
    font-size: 0.95rem;
  }
  
  .min-content p {
    font-size: 0.85rem;
  }
  
  .speed-title {
    font-size: 1.6rem;
  }
  
  .stat-card {
    padding: 15px;
    flex-direction: column;
    text-align: center;
  }
  
  .stat-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
  }
  
  .stat-icon i {
    font-size: 1.1rem;
  }
  
  .stat-time {
    font-size: 1.1rem;
  }
  
  .stat-info h4 {
    font-size: 1rem;
  }
  
  .stat-info p {
    font-size: 0.85rem;
  }
  
  .speed-text p {
    font-size: 0.9rem;
  }
  
  .security-title {
    font-size: 1.6rem;
  }
  
  .security-text p {
    font-size: 0.9rem;
  }
  
  .secure-feature {
    flex-direction: column;
    text-align: center;
    padding: 12px;
  }
  
  .secure-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
  
  .secure-icon i {
    font-size: 1rem;
  }
  
  .secure-feature h4 {
    font-size: 0.95rem;
  }
  
  .secure-feature p {
    font-size: 0.8rem;
  }
  
  .banks-title {
    font-size: 1.6rem;
  }
  
  .bank-category {
    padding: 20px 15px;
  }
  
  .category-title {
    font-size: 1.1rem;
  }
  
  .bank-item {
    padding: 12px;
  }
  
  .bank-item span {
    font-size: 0.9rem;
  }
  
  .banking-cta {
    padding: 40px 20px;
  }
  
  .cta-banking-title {
    font-size: 1.7rem;
  }
  
  .cta-banking-description {
    font-size: 1rem;
  }
  
  .cta-banking-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
  
  .cta-banking-btn i {
    font-size: 1.1rem;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f23 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.03) 0%, transparent 70%),
              radial-gradient(circle at 80% 70%, rgba(255, 69, 0, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* Footer Logo and About */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo i {
  font-size: 2rem;
  color: #ffd700;
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
}

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

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

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

.social-link:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
  color: #ffed4e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

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

/* Footer Sections */
.footer-section {
  display: flex;
  flex-direction: column;
}

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

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
}

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

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cccccc;
  text-decoration: none;
  padding: 8px 0;
  transition: all 0.3s ease;
  border-radius: 5px;
}

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

.footer-link i {
  font-size: 0.9rem;
  color: #ffd700;
  min-width: 16px;
}

.footer-link span {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Contact Info */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.contact-item i {
  font-size: 1rem;
  color: #ffd700;
  min-width: 20px;
}

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

/* Footer Features */
.footer-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 0;
  margin-bottom: 40px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
}

.feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-3px);
}

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

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

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

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

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

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

.legal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffd700;
  transition: width 0.3s ease;
}

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

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

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

.footer-copyright .disclaimer {
  font-size: 0.8rem;
  color: #999999;
  margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .about-section {
    grid-column: 1 / -1;
  }
  
  .footer-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 50px 15px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-logo i {
    font-size: 1.7rem;
  }
  
  .footer-logo-text {
    font-size: 1.5rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .social-link i {
    font-size: 1rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .footer-link {
    justify-content: center;
  }
  
  .contact-details {
    align-items: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .footer-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .feature-item {
    padding: 12px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links-legal {
    justify-content: center;
  }
  
  .footer-copyright {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 40px 10px 15px;
  }
  
  .footer-logo i {
    font-size: 1.5rem;
  }
  
  .footer-logo-text {
    font-size: 1.3rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .social-link i {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-link {
    padding: 6px 0;
  }
  
  .footer-link span {
    font-size: 0.9rem;
  }
  
  .contact-item span {
    font-size: 0.9rem;
  }
  
  .feature-item {
    flex-direction: column;
    gap: 8px;
    padding: 10px;
  }
  
  .feature-item i {
    font-size: 1.1rem;
  }
  
  .feature-item span {
    font-size: 0.8rem;
  }
  
  .footer-links-legal {
    flex-direction: column;
    gap: 10px;
  }
  
  .legal-link {
    font-size: 0.85rem;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
  
  .footer-copyright .disclaimer {
    font-size: 0.75rem;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

/* Login Button */
.login-btn {
  background: linear-gradient(135deg, #1a73e8 0%, #0f5cc9 100%);
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.login-btn::before {
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.2) 0%, rgba(15, 92, 201, 0.2) 100%);
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.4);
  color: #ffffff;
}

/* Register Button */
.register-btn {
  background: linear-gradient(135deg, #34a853 0%, #1e7e34 100%);
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.register-btn::before {
  background: linear-gradient(135deg, rgba(52, 168, 83, 0.2) 0%, rgba(30, 126, 52, 0.2) 100%);
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(52, 168, 83, 0.4);
  color: #ffffff;
}

/* Credit Button */
.credit-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000000;
  position: relative;
}

.credit-btn::before {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 237, 78, 0.2) 100%);
}

.credit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  color: #000000;
}

/* Button Icons and Text */
.sticky-btn i {
  font-size: 1.3rem;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.sticky-btn:hover i {
  transform: scale(1.1);
}

.btn-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.sticky-btn:hover .btn-text {
  transform: scale(1.05);
}

/* Pulse Animation for Credit Button */
.credit-btn {
  animation: creditPulse 3s ease-in-out infinite;
}

@keyframes creditPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 215, 0, 0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 10px 6px;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 3px;
  }
  
  .btn-text {
    font-size: 0.75rem;
  }
}

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

@media (max-width: 360px) {
  .sticky-btn {
    padding: 6px 2px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .btn-text {
    font-size: 0.65rem;
  }
}

/* Ensure content doesn't go behind sticky buttons */
body {
  padding-bottom: 70px;
}

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

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

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

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

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

.login-container {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.login-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

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

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

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

.login-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

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

.login-subtitle {
  font-size: 1rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.4;
}

/* Error Message */
.error-message {
  display: none;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  color: #f44336;
  align-items: center;
  gap: 10px;
  animation: shake 0.5s ease-in-out;
}

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

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

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

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

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

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

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

.form-input {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

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

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

.form-input:invalid {
  border-color: rgba(244, 67, 54, 0.5);
}

.form-input.error {
  border-color: rgba(244, 67, 54, 0.7);
  background: rgba(244, 67, 54, 0.05);
}

/* Password Wrapper */
.password-wrapper {
  position: relative;
}

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

.password-toggle:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

/* Field Error */
.field-error {
  color: #f44336;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
  align-items: center;
  gap: 5px;
}

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

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

/* Form Actions */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

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

.login-btn.loading {
  pointer-events: none;
  color: transparent;
}

.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.login-btn.loading .btn-loader {
  display: block;
}

.register-btn {
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: #ffd700;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}

.register-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  color: #ffed4e;
  transform: translateY(-2px);
}

/* Login Footer */
.login-footer {
  text-align: center;
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #00d4aa;
  font-size: 0.85rem;
  margin-bottom: 20px;
  padding: 10px;
  background: rgba(0, 212, 170, 0.05);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 8px;
}

.security-info i {
  font-size: 1rem;
}

.help-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.help-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  padding: 5px;
  border-radius: 5px;
}

.help-link:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.05);
}

.help-link i {
  font-size: 0.8rem;
}

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

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-container {
    padding: 0 15px;
  }
  
  .login-card {
    padding: 30px 25px;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.7rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 0 10px;
  }
  
  .login-card {
    padding: 25px 20px;
  }
  
  .login-logo {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .login-subtitle {
    font-size: 0.85rem;
  }
  
  .form-input {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .login-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  
  .security-info {
    font-size: 0.8rem;
    padding: 8px;
  }
  
  .help-links {
    gap: 15px;
  }
  
  .help-link {
    font-size: 0.85rem;
  }
}

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

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

.register-container {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.register-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.register-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

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

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

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

.register-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

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

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

/* Messages */
.success-message {
  display: none;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  color: #4caf50;
  align-items: center;
  gap: 10px;
  animation: slideInDown 0.5s ease-out;
}

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

.error-message {
  display: none;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  color: #f44336;
  align-items: center;
  gap: 10px;
  animation: shake 0.5s ease-in-out;
}

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

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

.success-text,
.error-text {
  font-weight: 600;
  font-size: 0.9rem;
}

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

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

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

.form-label i {
  font-size: 1.1rem;
}

.form-input {
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

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

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

.form-input:invalid {
  border-color: rgba(244, 67, 54, 0.5);
}

.form-input.error {
  border-color: rgba(244, 67, 54, 0.7);
  background: rgba(244, 67, 54, 0.05);
}

.form-input.success {
  border-color: rgba(76, 175, 80, 0.7);
  background: rgba(76, 175, 80, 0.05);
}

/* Field Error */
.field-error {
  color: #f44336;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
  align-items: center;
  gap: 5px;
}

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

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

/* Field Hint */
.field-hint {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #999999;
  font-size: 0.8rem;
  margin-top: 5px;
}

.field-hint i {
  font-size: 0.8rem;
  color: #ffd700;
}

/* Form Actions */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.register-btn {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

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

.register-btn.loading {
  pointer-events: none;
  color: transparent;
}

.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.register-btn.loading .btn-loader {
  display: block;
}

.login-btn {
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  color: #ffd700;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}

.login-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  color: #ffed4e;
  transform: translateY(-2px);
}

/* Register Footer */
.register-footer {
  text-align: center;
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #00d4aa;
  font-size: 0.85rem;
  margin-bottom: 25px;
  padding: 12px;
  background: rgba(0, 212, 170, 0.05);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 8px;
}

.security-info i {
  font-size: 1rem;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

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

.feature-item span {
  font-size: 0.75rem;
  color: #cccccc;
  font-weight: 600;
  text-align: center;
}

.help-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.help-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  padding: 5px;
  border-radius: 5px;
}

.help-link:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.05);
}

.help-link i {
  font-size: 0.8rem;
}

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

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .register-container {
    padding: 0 15px;
  }
  
  .register-card {
    padding: 30px 25px;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.7rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 16px 18px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 16px 20px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  
  .features-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .feature-item {
    flex-direction: row;
    justify-content: center;
    padding: 10px 15px;
  }
  
  .feature-item span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .register-container {
    padding: 0 10px;
  }
  
  .register-card {
    padding: 25px 20px;
  }
  
  .register-logo {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .register-subtitle {
    font-size: 0.85rem;
  }
  
  .form-input {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
  
  .security-info {
    font-size: 0.8rem;
    padding: 10px;
  }
  
  .feature-item {
    padding: 8px 12px;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
  
  .feature-item span {
    font-size: 0.75rem;
  }
  
  .help-links {
    gap: 15px;
  }
  
  .help-link {
    font-size: 0.85rem;
  }
}

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

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

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

.hero-content {
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1.2;
  margin-bottom: 30px;
  font-family: 'Prompt', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #ff4500, #ff6347);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
  animation: bounceIn 1s ease-out 0.3s both;
}

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

.hero-description {
  font-size: 1.3rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  border-radius: 35px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

.hero-btn.primary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.hero-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5);
  color: #000;
}

.hero-btn.secondary {
  background: transparent;
  color: #ffd700;
  border: 3px solid rgba(255, 215, 0, 0.5);
}

.hero-btn.secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.8);
  transform: translateY(-3px);
  color: #ffed4e;
}

/* Promotion Sections */
.promotion-section {
  background: linear-gradient(180deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
  padding: 80px 0;
  position: relative;
}

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

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

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

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

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
  font-family: 'Prompt', sans-serif;
}

.title-decoration {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  margin: 0 auto;
}

.title-decoration i {
  font-size: 1.5rem;
  color: #000;
}

/* Promotion Cards */
.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 40px 35px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.promotion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.promotion-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.15);
}

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

.promotion-card.featured {
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

/* Promotion Header */
.promotion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.promotion-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promotion-badge {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
}

.promotion-badge.deposit {
  background: linear-gradient(45deg, #00d4aa, #00b894);
  color: #fff;
}

.promotion-badge.referral {
  background: linear-gradient(45deg, #8a2be2, #9932cc);
  color: #fff;
}

.promotion-badge.points {
  background: linear-gradient(45deg, #ff4500, #ff6347);
  color: #fff;
}

.promotion-amount {
  text-align: right;
}

.amount-label {
  display: block;
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.amount-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1;
  margin: 5px 0;
}

.amount-max {
  display: block;
  font-size: 0.8rem;
  color: #999999;
  font-style: italic;
}

/* Promotion Content */
.promotion-content {
  margin-bottom: 35px;
}

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

.promotion-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.promotion-benefits i {
  color: #00d4aa;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.promotion-benefits span {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.5;
}

/* Points System Specific Styles */
.points-info {
  margin-bottom: 25px;
}

.points-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  color: #ffd700;
  font-weight: 600;
}

.points-rule i {
  font-size: 1.1rem;
}

.points-rewards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.reward-tier {
  text-align: center;
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.reward-tier:hover {
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.tier-points {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
}

.tier-reward {
  font-size: 0.9rem;
  color: #e0e0e0;
  font-weight: 600;
}

/* Promotion Footer */
.promotion-footer {
  text-align: center;
}

.promotion-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.promotion-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
  color: #000;
}

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

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .section-title {
    font-size: 2.3rem;
  }
  
  .promotion-header {
    flex-direction: column;
    text-align: center;
  }
  
  .promotion-amount {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 80px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.9rem;
  }
  
  .promotion-card {
    padding: 30px 25px;
  }
  
  .amount-value {
    font-size: 2rem;
  }
  
  .points-rewards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .promotion-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-container,
  .promotion-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.7rem;
  }
  
  .hero-highlight {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .hero-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .title-decoration {
    width: 50px;
    height: 50px;
  }
  
  .title-decoration i {
    font-size: 1.3rem;
  }
  
  .promotion-card {
    padding: 25px 20px;
  }
  
  .promotion-badge {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
  
  .amount-value {
    font-size: 1.7rem;
  }
  
  .promotion-benefits li {
    flex-direction: column;
    gap: 8px;
    text-align: left;
  }
  
  .promotion-benefits span {
    font-size: 0.9rem;
  }
  
  .points-rule {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .reward-tier {
    padding: 15px 10px;
  }
  
  .tier-points {
    font-size: 1.1rem;
  }
  
  .tier-reward {
    font-size: 0.8rem;
  }
  
  .promotion-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}