/* 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 {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  z-index: 1;
}

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

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ff6b35, #4ecdc4);
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: #cccccc;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

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

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

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
}

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

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

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

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

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

.hero-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  color: white;
  padding: 12px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 60px 20px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 15px;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  .hero-buttons {
    justify-content: center;
    margin-bottom: 32px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .feature-item {
    justify-content: center;
    text-align: center;
  }
  
  .hero-badge {
    position: static;
    margin-top: 16px;
    align-self: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 30px 10px;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-img {
    max-width: 100%;
  }
}

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

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

.header-logo a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

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

.logo-subtitle {
  font-size: 0.7rem;
  color: #cccccc;
  font-weight: 400;
  margin-top: 2px;
}

.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

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

.nav-link:hover {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
}

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

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

.header-cta {
  display: flex;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #ffffff;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

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

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

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

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

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100%;
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.mobile-logo {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.mobile-nav {
  flex: 1;
  padding: 20px 0;
}

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

.mobile-nav-link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 20px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
  background: rgba(255, 107, 53, 0.1);
  border-left-color: #ff6b35;
  color: #ff6b35;
}

.mobile-nav-cta {
  display: block;
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 20px;
  margin: 16px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.mobile-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    padding: 12px 15px;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .logo-subtitle {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 10px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-subtitle {
    font-size: 0.55rem;
  }
  
  .mobile-menu {
    max-width: 280px;
  }
  
  .mobile-menu-header {
    padding: 16px;
  }
  
  .mobile-logo {
    font-size: 1.3rem;
  }
  
  .mobile-nav-link {
    font-size: 1rem;
    padding: 14px 16px;
  }
  
  .mobile-nav-cta {
    font-size: 1rem;
    padding: 14px 16px;
    margin: 12px 16px;
  }
}

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

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

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

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

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(78, 205, 196, 0.08) 0%, transparent 70%);
  z-index: 1;
}

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

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

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

.about-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #4ecdc4, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

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

.advantages-list {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.advantages-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.advantages-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #ff6b35, #4ecdc4);
  border-radius: 2px;
}

.advantages-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.advantage-item i {
  color: #ff6b35;
  font-size: 1.3rem;
  width: 24px;
  text-align: center;
}

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

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

.about-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  margin-bottom: 32px;
}

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

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

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

.stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(78, 205, 196, 0.3);
  transform: translateY(-4px);
}

.stat-item i {
  font-size: 2rem;
  color: #4ecdc4;
  width: 40px;
  text-align: center;
}

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

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-section {
    padding: 80px 20px;
  }
  
  .about-content {
    gap: 40px;
  }
  
  .about-title {
    font-size: 2.25rem;
  }
  
  .about-description p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 15px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 24px;
  }
  
  .about-description p {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  
  .advantages-list {
    padding: 24px;
  }
  
  .advantages-title {
    font-size: 1.3rem;
    text-align: center;
    justify-content: center;
  }
  
  .advantage-item {
    padding: 12px;
  }
  
  .advantage-item:hover {
    transform: translateY(-2px);
  }
  
  .about-stats {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 10px;
  }
  
  .about-title {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  
  .about-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .advantages-list {
    padding: 20px;
  }
  
  .advantages-title {
    font-size: 1.2rem;
  }
  
  .advantage-item {
    padding: 12px;
    gap: 12px;
  }
  
  .advantage-item i {
    font-size: 1.1rem;
  }
  
  .advantage-item span {
    font-size: 0.9rem;
  }
  
  .stat-item {
    padding: 16px;
    gap: 12px;
  }
  
  .stat-item i {
    font-size: 1.8rem;
    width: 36px;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
}

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

.registration-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
  z-index: 1;
}

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

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

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

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

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

.registration-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  color: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  animation: float 3s ease-in-out infinite;
}

.overlay-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.overlay-content i {
  font-size: 2rem;
  margin-bottom: 4px;
}

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

.overlay-content strong {
  font-size: 1.8rem;
  font-weight: 700;
}

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

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

.registration-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #ff6b35, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

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

.inline-link {
  color: #ff6b35;
  text-decoration: underline;
  transition: color 0.3s ease;
}

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

.registration-steps {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.steps-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 24px;
  text-align: center;
}

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

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

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

.step-number {
  background: linear-gradient(135deg, #ff6b35, #4ecdc4);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content i {
  color: #4ecdc4;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.5;
}

.registration-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  min-width: 200px;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .registration-section {
    padding: 80px 20px;
  }
  
  .registration-content {
    gap: 40px;
  }
  
  .registration-title {
    font-size: 2.25rem;
  }
  
  .registration-description p {
    font-size: 1.05rem;
  }
  
  .steps-grid {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .registration-section {
    padding: 60px 15px;
  }
  
  .registration-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .registration-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .registration-description p {
    font-size: 1rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .step-item {
    padding: 16px;
  }
  
  .registration-overlay {
    top: 10px;
    right: 10px;
    padding: 16px;
    border-radius: 16px;
  }
  
  .overlay-content i {
    font-size: 1.5rem;
  }
  
  .overlay-content strong {
    font-size: 1.5rem;
  }
  
  .registration-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-large {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .registration-section {
    padding: 40px 10px;
  }
  
  .registration-title {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  
  .registration-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .registration-steps {
    padding: 24px;
  }
  
  .steps-title {
    font-size: 1.3rem;
  }
  
  .step-item {
    padding: 16px;
    gap: 12px;
  }
  
  .step-number {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  
  .step-content h4 {
    font-size: 1rem;
  }
  
  .step-content p {
    font-size: 0.85rem;
  }
  
  .step-content i {
    font-size: 1.3rem;
  }
  
  .registration-overlay {
    position: static;
    margin-top: 16px;
    align-self: center;
    padding: 12px;
  }
  
  .overlay-content i {
    font-size: 1.3rem;
  }
  
  .overlay-content span {
    font-size: 0.8rem;
  }
  
  .overlay-content strong {
    font-size: 1.3rem;
  }
}

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

.access-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(78, 205, 196, 0.08) 0%, transparent 70%);
  z-index: 1;
}

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

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

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

.access-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #4ecdc4, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.access-description strong {
  color: #ffffff;
  font-weight: 700;
}

.security-features {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.security-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4ecdc4;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.security-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #4ecdc4, #ff6b35);
  border-radius: 2px;
}

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

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

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

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

.security-icon i {
  color: white;
  font-size: 1.5rem;
}

.security-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.4;
}

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

.access-cta {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  border: 2px solid #4ecdc4;
  color: #4ecdc4;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #4ecdc4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.access-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.access-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  margin-bottom: 32px;
}

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

.access-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 400px;
}

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

.badge-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(78, 205, 196, 0.3);
  transform: translateY(-4px);
}

.badge-item i {
  font-size: 1.5rem;
  color: #4ecdc4;
  width: 30px;
  text-align: center;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .access-section {
    padding: 80px 20px;
  }
  
  .access-content {
    gap: 40px;
  }
  
  .access-title {
    font-size: 2.25rem;
  }
  
  .access-description p {
    font-size: 1.05rem;
  }
  
  .security-features {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .access-section {
    padding: 60px 15px;
  }
  
  .access-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .access-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .access-description p {
    font-size: 1rem;
  }
  
  .security-features {
    padding: 24px;
  }
  
  .security-title {
    font-size: 1.3rem;
    text-align: center;
    justify-content: center;
  }
  
  .security-item {
    padding: 16px;
    gap: 16px;
  }
  
  .security-item:hover {
    transform: translateY(-2px);
  }
  
  .security-icon {
    width: 50px;
    height: 50px;
  }
  
  .security-icon i {
    font-size: 1.3rem;
  }
  
  .access-cta {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .access-section {
    padding: 40px 10px;
  }
  
  .access-title {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  
  .access-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .security-features {
    padding: 20px;
  }
  
  .security-title {
    font-size: 1.2rem;
  }
  
  .security-item {
    padding: 16px;
    gap: 12px;
  }
  
  .security-icon {
    width: 45px;
    height: 45px;
  }
  
  .security-icon i {
    font-size: 1.2rem;
  }
  
  .security-content h4 {
    font-size: 1rem;
  }
  
  .security-content p {
    font-size: 0.9rem;
  }
  
  .access-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-large {
    width: 100%;
    max-width: 280px;
  }
  
  .badge-item {
    padding: 14px 16px;
    gap: 12px;
  }
  
  .badge-item i {
    font-size: 1.3rem;
    width: 28px;
  }
  
  .badge-item span {
    font-size: 0.9rem;
  }
}

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

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
  z-index: 1;
}

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

.features-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.features-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.features-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b35, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-subtitle {
  font-size: 1.3rem;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

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

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #4ecdc4);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

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

.feature-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

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

.lottery-types {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.types-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4ecdc4;
  text-align: center;
  margin-bottom: 32px;
}

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

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

.type-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(78, 205, 196, 0.3);
  transform: translateY(-4px);
}

.type-item i {
  color: #4ecdc4;
  font-size: 1.5rem;
  width: 30px;
  text-align: center;
}

.type-item span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

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

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

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

.features-description {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

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

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

.features-description strong {
  color: #ffffff;
  font-weight: 700;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .features-section {
    padding: 80px 20px;
  }
  
  .features-content {
    gap: 50px;
  }
  
  .features-title {
    font-size: 2.5rem;
  }
  
  .features-subtitle {
    font-size: 1.2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
  }
  
  .feature-card {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 60px 15px;
  }
  
  .features-content {
    gap: 40px;
  }
  
  .features-title {
    font-size: 2.25rem;
  }
  
  .features-subtitle {
    font-size: 1.1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 24px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 1.6rem;
  }
  
  .feature-content h3 {
    font-size: 1.3rem;
  }
  
  .feature-content p {
    font-size: 0.95rem;
  }
  
  .lottery-types {
    padding: 32px;
  }
  
  .types-title {
    font-size: 1.6rem;
  }
  
  .types-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .type-item {
    padding: 16px;
    gap: 14px;
  }
  
  .type-item span {
    font-size: 1rem;
  }
  
  .features-description p {
    font-size: 1rem;
  }
  
  .features-cta {
    gap: 16px;
  }
  
  .btn-large {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 40px 10px;
  }
  
  .features-content {
    gap: 32px;
  }
  
  .features-title {
    font-size: 1.9rem;
    line-height: 1.4;
  }
  
  .features-subtitle {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-icon {
    width: 55px;
    height: 55px;
  }
  
  .feature-icon i {
    font-size: 1.4rem;
  }
  
  .feature-content h3 {
    font-size: 1.2rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .lottery-types {
    padding: 24px;
  }
  
  .types-title {
    font-size: 1.4rem;
  }
  
  .type-item {
    padding: 14px;
    gap: 12px;
  }
  
  .type-item i {
    font-size: 1.3rem;
    width: 28px;
  }
  
  .type-item span {
    font-size: 0.95rem;
  }
  
  .features-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .features-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .btn-large {
    width: 100%;
    max-width: 280px;
  }
}

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

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(78, 205, 196, 0.06) 0%, transparent 70%);
  z-index: 1;
}

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

.reviews-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.reviews-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.reviews-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #4ecdc4, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

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

.review-card.positive {
  border-color: rgba(78, 205, 196, 0.3);
}

.review-card.neutral {
  border-color: rgba(255, 193, 7, 0.3);
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

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

.review-avatar {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-avatar i {
  color: white;
  font-size: 1.5rem;
}

.review-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.review-rating {
  display: flex;
  gap: 4px;
}

.review-rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

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

.review-content strong {
  color: #ffffff;
  font-weight: 700;
}

.faq-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.faq-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b35;
  text-align: center;
  margin-bottom: 32px;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

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

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.faq-question i {
  color: #ff6b35;
  font-size: 1.3rem;
}

.faq-question span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.faq-answer p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin: 0;
  padding-left: 32px;
}

.warning-section {
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.warning-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b35;
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.warning-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: #ff6b35;
  border-radius: 2px;
}

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

.warning-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

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

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

.warning-icon i {
  color: white;
  font-size: 1.3rem;
}

.warning-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.4;
}

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

.reviews-image {
  text-align: center;
}

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

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

.reviews-description {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

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

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

.reviews-description strong {
  color: #ffffff;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .reviews-section {
    padding: 80px 20px;
  }
  
  .reviews-content {
    gap: 50px;
  }
  
  .reviews-title {
    font-size: 2.25rem;
  }
  
  .reviews-subtitle {
    font-size: 1.1rem;
  }
  
  .reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
  }
  
  .review-card {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 15px;
  }
  
  .reviews-content {
    gap: 40px;
  }
  
  .reviews-title {
    font-size: 2rem;
  }
  
  .reviews-subtitle {
    font-size: 1rem;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .review-card {
    padding: 24px;
  }
  
  .review-header {
    gap: 12px;
  }
  
  .review-avatar {
    width: 45px;
    height: 45px;
  }
  
  .review-avatar i {
    font-size: 1.3rem;
  }
  
  .faq-section {
    padding: 32px;
  }
  
  .faq-title {
    font-size: 1.6rem;
  }
  
  .faq-item {
    padding: 20px;
  }
  
  .faq-question span {
    font-size: 1rem;
  }
  
  .faq-answer p {
    font-size: 0.95rem;
    padding-left: 28px;
  }
  
  .warning-section {
    padding: 32px;
  }
  
  .warning-title {
    font-size: 1.6rem;
  }
  
  .warning-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .warning-item {
    padding: 16px;
    gap: 12px;
  }
  
  .warning-icon {
    width: 45px;
    height: 45px;
  }
  
  .warning-icon i {
    font-size: 1.2rem;
  }
  
  .reviews-description p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .reviews-section {
    padding: 40px 10px;
  }
  
  .reviews-content {
    gap: 32px;
  }
  
  .reviews-title {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  
  .reviews-subtitle {
    font-size: 0.95rem;
  }
  
  .review-card {
    padding: 20px;
  }
  
  .review-header {
    gap: 10px;
    margin-bottom: 16px;
  }
  
  .review-info h4 {
    font-size: 1rem;
  }
  
  .review-rating i {
    font-size: 0.8rem;
  }
  
  .review-content p {
    font-size: 0.95rem;
  }
  
  .faq-section {
    padding: 24px;
  }
  
  .faq-title {
    font-size: 1.4rem;
  }
  
  .faq-item {
    padding: 18px;
  }
  
  .faq-question i {
    font-size: 1.2rem;
  }
  
  .faq-question span {
    font-size: 0.95rem;
  }
  
  .faq-answer p {
    font-size: 0.9rem;
    padding-left: 24px;
  }
  
  .warning-section {
    padding: 24px;
  }
  
  .warning-title {
    font-size: 1.4rem;
  }
  
  .warning-item {
    padding: 14px;
    gap: 10px;
  }
  
  .warning-icon {
    width: 40px;
    height: 40px;
  }
  
  .warning-icon i {
    font-size: 1.1rem;
  }
  
  .warning-content h4 {
    font-size: 1rem;
  }
  
  .warning-content p {
    font-size: 0.85rem;
  }
  
  .reviews-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

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

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center top, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  z-index: 1;
}

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

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

.footer-column {
  display: flex;
  flex-direction: column;
}

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

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

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

.footer-logo-subtitle {
  font-size: 0.8rem;
  color: #cccccc;
  font-weight: 400;
  margin-top: 4px;
  display: block;
}

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

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.contact-item i {
  color: #ff6b35;
  font-size: 1rem;
  width: 16px;
}

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

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

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

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

.footer-links li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 8px;
}

.footer-links li a:hover {
  color: #ff6b35;
  border-left-color: #ff6b35;
  padding-left: 12px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

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

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

.social-link i {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

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

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

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

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.payment-item i {
  color: #4ecdc4;
  font-size: 1rem;
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  padding-bottom: 24px;
}

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

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

.footer-security {
  display: flex;
  gap: 20px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4ecdc4;
  font-size: 0.85rem;
}

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

.footer-disclaimer {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.disclaimer-text {
  color: #ffccb3;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 32px;
  }
  
  .footer-container {
    padding: 0 20px;
  }
  
  .main-footer {
    padding-top: 50px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 16px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .main-footer {
    padding-top: 40px;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .footer-security {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-brand {
    grid-column: auto;
    margin-bottom: 0;
  }
  
  .footer-container {
    padding: 0 10px;
  }
  
  .main-footer {
    padding-top: 32px;
  }
  
  .footer-content {
    margin-bottom: 32px;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-logo-subtitle {
    font-size: 0.75rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  
  .footer-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .contact-item {
    gap: 10px;
  }
  
  .contact-item span {
    font-size: 0.85rem;
  }
  
  .footer-links li a {
    font-size: 0.85rem;
  }
  
  .social-link {
    gap: 10px;
    padding: 6px 0;
  }
  
  .social-link span {
    font-size: 0.85rem;
  }
  
  .payment-item {
    font-size: 0.8rem;
    gap: 8px;
  }
  
  .footer-security {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .security-badge {
    font-size: 0.8rem;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
  
  .disclaimer-text {
    font-size: 0.8rem;
  }
  
  .footer-disclaimer {
    padding: 14px;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 999;
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

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

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

.sticky-btn span {
  font-size: 0.75rem;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

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

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

.sticky-btn-login {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #5ed3ca, #4aa68f);
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.sticky-btn-register {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #7289f0, #8657a8);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.sticky-btn-bonus {
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  position: relative;
}

.sticky-btn-bonus:hover {
  background: linear-gradient(135deg, #ff7145, #ff9863);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

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

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

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

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

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

/* Add bottom padding to body to account for sticky buttons */
body {
  padding-bottom: 65px;
}

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

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

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

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

.error-message {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  color: #ff6b6b;
  font-size: 0.9rem;
  animation: slideIn 0.3s ease;
}

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

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

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

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

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

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

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: #999999;
  font-size: 1rem;
  z-index: 2;
  transition: color 0.3s ease;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px 16px 16px 48px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  outline: none;
}

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

.form-input:focus {
  border-color: #ff6b35;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-input:focus + .input-icon,
.form-input:focus ~ .input-icon {
  color: #ff6b35;
}

.password-toggle {
  position: absolute;
  right: 16px;
  background: transparent;
  border: none;
  color: #999999;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  z-index: 2;
}

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

.field-error {
  display: block;
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 6px;
  min-height: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.field-error.show {
  opacity: 1;
}

.form-input.error {
  border-color: #ff6b6b;
  background: rgba(244, 67, 54, 0.1);
}

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

.login-btn {
  width: 100%;
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #ff7145, #ff9863);
}

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

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

.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.login-btn.loading span {
  opacity: 0.7;
}

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

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

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

.register-btn:hover {
  background: #4ecdc4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.login-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.forgot-link,
.home-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.forgot-link:hover,
.home-link:hover {
  color: #4ecdc4;
}

.link-divider {
  color: #666666;
  font-size: 0.8rem;
}

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

@media (max-width: 480px) {
  .login-section {
    padding: 15px 10px;
  }
  
  .login-card {
    padding: 28px 20px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .login-subtitle {
    font-size: 0.85rem;
  }
  
  .form-input {
    padding: 14px 14px 14px 44px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 14px;
    font-size: 0.95rem;
  }
  
  .password-toggle {
    right: 14px;
  }
  
  .login-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .login-links {
    flex-direction: column;
    gap: 8px;
  }
  
  .link-divider {
    display: none;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
  z-index: 1;
}

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

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

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

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

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
  transition: transform 0.3s ease;
}

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

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

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

.success-message {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  color: #81c784;
  font-size: 0.9rem;
  animation: slideIn 0.3s ease;
}

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

.success-message i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.error-message {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  color: #ff6b6b;
  font-size: 0.9rem;
  animation: slideIn 0.3s ease;
}

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

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

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

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

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

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

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: #999999;
  font-size: 1rem;
  z-index: 2;
  transition: color 0.3s ease;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px 16px 16px 48px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  outline: none;
}

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

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

.form-input:focus + .input-icon,
.form-input:focus ~ .input-icon {
  color: #4ecdc4;
}

.field-error {
  display: block;
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 6px;
  min-height: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.field-error.show {
  opacity: 1;
}

.field-help {
  display: block;
  color: #999999;
  font-size: 0.75rem;
  margin-top: 4px;
}

.form-input.error {
  border-color: #ff6b6b;
  background: rgba(244, 67, 54, 0.1);
}

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

.register-btn {
  width: 100%;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
  background: linear-gradient(135deg, #5ed3ca, #4aa68f);
}

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

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

.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.register-btn.loading span {
  opacity: 0.7;
}

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

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

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

.login-btn:hover {
  background: #ff6b35;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.register-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.home-link,
.promo-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.home-link:hover,
.promo-link:hover {
  color: #4ecdc4;
}

.link-divider {
  color: #666666;
  font-size: 0.8rem;
}

.register-benefits {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.benefits-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #4ecdc4;
  text-align: center;
  margin-bottom: 20px;
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 15px;
  }
  
  .register-card {
    padding: 32px 24px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.75rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 15px 10px;
  }
  
  .register-card {
    padding: 28px 20px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .register-subtitle {
    font-size: 0.85rem;
  }
  
  .form-input {
    padding: 14px 14px 14px 44px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 14px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .register-links {
    flex-direction: column;
    gap: 8px;
  }
  
  .link-divider {
    display: none;
  }
  
  .register-benefits {
    padding: 20px;
  }
  
  .benefits-title {
    font-size: 1.1rem;
  }
  
  .benefit-item {
    padding: 10px;
    gap: 8px;
  }
  
  .benefit-item span {
    font-size: 0.8rem;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #ff6b35 0%, #4ecdc4 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 auto;
}

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

.hero-subtitle {
  font-size: 1.3rem;
  color: #ffffff;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 20px 40px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

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

/* Promotion Sections */
.promotion-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
}

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

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: 1;
}

#welcome-promotion::before {
  background: radial-gradient(ellipse at center, #ff6b35 0%, transparent 70%);
}

#first-deposit-promotion::before {
  background: radial-gradient(ellipse at center, #4ecdc4 0%, transparent 70%);
}

#referral-promotion::before {
  background: radial-gradient(ellipse at center, #667eea 0%, transparent 70%);
}

#cashback-promotion::before {
  background: radial-gradient(ellipse at center, #ffc107 0%, transparent 70%);
}

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

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

.promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
}

.welcome-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
}

.deposit-card:hover {
  border-color: rgba(78, 205, 196, 0.3);
}

.referral-card:hover {
  border-color: rgba(102, 126, 234, 0.3);
}

.cashback-card:hover {
  border-color: rgba(255, 193, 7, 0.3);
}

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

.promotion-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.welcome-card .promotion-icon {
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
}

.deposit-card .promotion-icon {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.referral-card .promotion-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.cashback-card .promotion-icon {
  background: linear-gradient(135deg, #ffc107, #ff9800);
}

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

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

.promotion-content {
  margin-bottom: 32px;
}

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

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

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

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

.feature-item span {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

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

.promotion-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 16px;
  padding: 18px 36px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 250px;
}

.welcome-card .promotion-btn {
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
}

.welcome-card .promotion-btn:hover {
  background: linear-gradient(135deg, #ff7145, #ff9863);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.deposit-card .promotion-btn {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.deposit-card .promotion-btn:hover {
  background: linear-gradient(135deg, #5ed3ca, #4aa68f);
  box-shadow: 0 12px 35px rgba(78, 205, 196, 0.4);
}

.referral-card .promotion-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.referral-card .promotion-btn:hover {
  background: linear-gradient(135deg, #7289f0, #8657a8);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.cashback-card .promotion-btn {
  background: linear-gradient(135deg, #ffc107, #ff9800);
}

.cashback-card .promotion-btn:hover {
  background: linear-gradient(135deg, #ffd54f, #ffa726);
  box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4);
}

.promotion-btn:hover {
  transform: translateY(-4px);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 80px 20px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 60px 20px;
  }
  
  .promotion-card {
    padding: 32px;
  }
  
  .promotion-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 50px 15px;
  }
  
  .promotion-card {
    padding: 28px;
  }
  
  .promotion-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.8rem;
  }
  
  .promotion-title {
    font-size: 1.5rem;
  }
  
  .feature-item {
    padding: 14px;
  }
  
  .feature-item span {
    font-size: 0.95rem;
  }
  
  .promotion-btn {
    padding: 16px 28px;
    font-size: 1rem;
    min-width: 220px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 10px;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 40px 10px;
  }
  
  .promotion-card {
    padding: 24px;
  }
  
  .promotion-header {
    gap: 12px;
    margin-bottom: 24px;
  }
  
  .promotion-icon {
    width: 50px;
    height: 50px;
  }
  
  .promotion-icon i {
    font-size: 1.5rem;
  }
  
  .promotion-title {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  
  .promotion-content {
    margin-bottom: 24px;
  }
  
  .feature-item {
    padding: 12px;
    gap: 12px;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
  
  .promotion-btn {
    padding: 14px 24px;
    font-size: 0.95rem;
    min-width: 200px;
  }
  
  .promotion-btn i {
    font-size: 1.1rem;
  }
}