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

body {
  font-family: 'Sarabun', sans-serif;
  background-color: #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;
  transition: all 0.3s ease;
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="%23333" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.1;
}

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

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

.hero-text {
  padding-right: 40px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

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

.hero-features {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.hero-feature:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

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

.hero-feature span {
  font-size: 0.95rem;
  font-weight: 500;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  background: linear-gradient(45deg, #ffed4a, #ffd700);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffd700;
}

.btn-secondary:hover {
  background: #ffd700;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

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

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

.hero-overlay {
  position: absolute;
  bottom: -20px;
  left: -20px;
  right: -20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.hero-stat {
  text-align: center;
}

.hero-stat h3 {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 4px;
}

.hero-stat p {
  font-size: 0.9rem;
  color: #cccccc;
}

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 16px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text {
    padding-right: 0;
    order: 2;
  }
  
  .hero-image {
    order: 1;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 12px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-feature {
    justify-content: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-overlay {
    position: static;
    margin-top: 20px;
  }
}

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

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

.header-logo {
  flex-shrink: 0;
}

.logo-link {
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.nav-item {
  position: relative;
}

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ffd700;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

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

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

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  background: linear-gradient(45deg, #ffed4a, #ffd700);
}

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

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

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #ffd700;
  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: 100vh;
  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: -100%;
  width: 300px;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 20px;
  transition: right 0.3s ease;
  border-left: 2px solid rgba(255, 215, 0, 0.2);
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
  right: 0;
}

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

.mobile-logo {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-menu-close {
  width: 35px;
  height: 35px;
  background: transparent;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  color: #ffd700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.mobile-menu-close i {
  font-size: 1.1rem;
}

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

.mobile-nav-item {
  border-radius: 12px;
  overflow: hidden;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

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

.mobile-nav-link i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.mobile-cta-item {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding-top: 24px;
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  color: #000000;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  text-align: center;
}

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

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

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

@media (max-width: 768px) {
  .header-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-container {
    height: 60px;
    padding: 0 12px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .mobile-menu {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 250px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .mobile-menu-header {
    margin-bottom: 32px;
  }
  
  .mobile-logo {
    font-size: 1rem;
  }
}

/* Platform Overview Section */
.platform-section {
  background: #1a1a1a;
  padding: 100px 20px;
  position: relative;
}

.platform-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.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
}

.platform-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.platform-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.platform-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
  color: #ffffff;
  position: relative;
}

.platform-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4a);
  border-radius: 2px;
}

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

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

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

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

.highlight-link:hover {
  color: #ffed4a;
}

.platform-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

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

.highlight-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.highlight-item i {
  color: #ffd700;
  font-size: 1.5rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.highlight-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.highlight-content p {
  font-size: 0.95rem;
  color: #aaaaaa;
  line-height: 1.4;
}

.platform-summary {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cccccc;
  font-style: italic;
  border-left: 4px solid #ffd700;
  padding-left: 20px;
  background: rgba(255, 215, 0, 0.05);
  padding: 20px;
  border-radius: 8px;
  margin-top: 8px;
}

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

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

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

.platform-badges {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  color: #000000;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .platform-content {
    gap: 60px;
  }
  
  .platform-title {
    font-size: 2.2rem;
  }
  
  .platform-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 80px 16px;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: left;
  }
  
  .platform-image {
    order: -1;
  }
  
  .platform-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .platform-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .platform-description p {
    font-size: 1rem;
  }
  
  .platform-highlights {
    grid-template-columns: 1fr;
  }
  
  .platform-badges {
    position: static;
    transform: none;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .platform-section {
    padding: 60px 12px;
  }
  
  .platform-title {
    font-size: 1.8rem;
  }
  
  .highlight-item {
    padding: 16px;
  }
  
  .highlight-item i {
    font-size: 1.3rem;
  }
  
  .highlight-content h4 {
    font-size: 1rem;
  }
  
  .highlight-content p {
    font-size: 0.9rem;
  }
  
  .platform-summary {
    font-size: 1rem;
    padding: 16px;
  }
  
  .platform-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .badge {
    justify-content: center;
    min-width: 160px;
  }
}

/* Deposit & Withdrawal Section */
.deposit-section {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.deposit-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
  animation: slowRotate 30s linear infinite;
}

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

.deposit-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.deposit-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

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

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

.deposit-img:hover {
  transform: scale(1.05) rotateY(5deg);
  box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
}

.deposit-timer {
  position: absolute;
  top: -30px;
  right: -30px;
  z-index: 2;
}

.timer-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

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

.timer-circle i {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 4px;
}

.timer-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
}

.deposit-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
  color: #ffffff;
  position: relative;
}

.deposit-title::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4a);
  border-radius: 2px;
}

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

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

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

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

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

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

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.feature-icon i {
  font-size: 1.4rem;
  color: #000000;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.feature-content p {
  font-size: 0.95rem;
  color: #aaaaaa;
  line-height: 1.4;
}

.deposit-additional {
  background: rgba(255, 215, 0, 0.05);
  border-left: 4px solid #ffd700;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.deposit-additional p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 16px;
}

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

.deposit-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-outline:hover {
  background: #ffd700;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .deposit-content {
    gap: 60px;
  }
  
  .deposit-title {
    font-size: 2.2rem;
  }
  
  .timer-circle {
    width: 100px;
    height: 100px;
  }
  
  .timer-circle i {
    font-size: 1.6rem;
  }
  
  .timer-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .deposit-section {
    padding: 80px 16px;
  }
  
  .deposit-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .deposit-text {
    order: -1;
  }
  
  .deposit-title {
    font-size: 2rem;
  }
  
  .deposit-description p {
    font-size: 1rem;
  }
  
  .deposit-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .deposit-timer {
    top: -20px;
    right: -20px;
  }
  
  .timer-circle {
    width: 80px;
    height: 80px;
  }
  
  .timer-circle i {
    font-size: 1.3rem;
  }
  
  .timer-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .deposit-section {
    padding: 60px 12px;
  }
  
  .deposit-title {
    font-size: 1.8rem;
  }
  
  .feature-card {
    padding: 16px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-icon i {
    font-size: 1.2rem;
  }
  
  .feature-content h4 {
    font-size: 1rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
  
  .deposit-additional {
    padding: 20px;
  }
  
  .deposit-additional p {
    font-size: 1rem;
  }
  
  .deposit-actions {
    flex-direction: column;
  }
  
  .btn,
  .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .deposit-timer {
    position: static;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }
}

/* Popularity Section */
.popularity-section {
  background: #1f1f1f;
  padding: 100px 20px;
  position: relative;
}

.popularity-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, transparent 50%, rgba(255, 215, 0, 0.02) 100%);
}

.popularity-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.popularity-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #ffffff;
  position: relative;
}

.popularity-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4a);
  border-radius: 2px;
}

.popularity-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto;
}

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

.popularity-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.popularity-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 24px;
}

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

.popularity-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.popularity-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

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

.feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

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

.feature-text h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

.popularity-description {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
}

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

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

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

.popularity-cta .btn {
  padding: 18px 40px;
  font-size: 1.2rem;
  border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .popularity-title {
    font-size: 2.4rem;
  }
  
  .popularity-main {
    gap: 40px;
  }
  
  .popularity-features {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .popularity-section {
    padding: 80px 16px;
  }
  
  .popularity-title {
    font-size: 2rem;
  }
  
  .popularity-subtitle {
    font-size: 1.1rem;
  }
  
  .popularity-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .popularity-image {
    order: -1;
  }
  
  .popularity-text p {
    font-size: 1rem;
  }
  
  .popularity-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-item {
    padding: 20px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
  
  .feature-text h4 {
    font-size: 1.05rem;
  }
  
  .popularity-description {
    padding: 24px;
  }
  
  .popularity-description p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .popularity-section {
    padding: 60px 12px;
  }
  
  .popularity-title {
    font-size: 1.8rem;
  }
  
  .popularity-title::after {
    width: 80px;
  }
  
  .popularity-subtitle {
    font-size: 1rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px 16px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 1.6rem;
  }
  
  .feature-text h4 {
    font-size: 1rem;
  }
  
  .popularity-description {
    padding: 20px;
  }
  
  .popularity-cta .btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.1rem;
  }
}

/* Registration Guide Section */
.registration-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1c1c1c 100%);
  padding: 100px 20px;
  position: relative;
}

.registration-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 25% 25%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 75% 75%, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
}

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

.registration-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.registration-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
  color: #ffffff;
  position: relative;
}

.registration-title::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4a);
  border-radius: 2px;
}

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

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

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

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

.highlight-link:hover {
  color: #ffed4a;
}

.registration-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid #ffd700;
  transition: all 0.3s ease;
}

.step-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.step-number span {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000000;
}

.step-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 1rem;
  color: #aaaaaa;
  line-height: 1.4;
}

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

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

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

.registration-highlight {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 2;
}

.highlight-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  color: #000000;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  animation: bounce 2s ease-in-out infinite;
}

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

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

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

.techniques-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
  position: relative;
}

.techniques-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4a);
  border-radius: 2px;
}

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

.technique-card {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.technique-card:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.technique-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.technique-icon i {
  font-size: 2rem;
  color: #000000;
}

.technique-text h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.technique-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #cccccc;
}

.registration-benefits {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.03) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.benefits-text {
  margin-bottom: 32px;
}

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

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

.benefits-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .registration-content {
    gap: 60px;
  }
  
  .registration-title {
    font-size: 2.2rem;
  }
  
  .techniques-content {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

@media (max-width: 768px) {
  .registration-section {
    padding: 80px 16px;
  }
  
  .registration-content {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 60px;
  }
  
  .registration-image {
    order: -1;
  }
  
  .registration-title {
    font-size: 2rem;
  }
  
  .registration-description p {
    font-size: 1rem;
  }
  
  .techniques-title {
    font-size: 2rem;
  }
  
  .techniques-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .technique-card {
    padding: 24px;
  }
  
  .technique-icon {
    width: 60px;
    height: 60px;
  }
  
  .technique-icon i {
    font-size: 1.7rem;
  }
  
  .registration-benefits {
    padding: 32px 24px;
  }
  
  .registration-highlight {
    position: static;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .registration-section {
    padding: 60px 12px;
  }
  
  .registration-title {
    font-size: 1.8rem;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px 16px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
  }
  
  .step-number span {
    font-size: 1.6rem;
  }
  
  .techniques-title {
    font-size: 1.8rem;
  }
  
  .technique-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 24px 20px;
  }
  
  .technique-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
  }
  
  .technique-text h4 {
    font-size: 1.2rem;
  }
  
  .technique-text p {
    font-size: 0.95rem;
  }
  
  .registration-benefits {
    padding: 24px 16px;
  }
  
  .benefits-text p {
    font-size: 1rem;
  }
  
  .benefits-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .benefits-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* User Reviews Section */
.reviews-section {
  background: #181818;
  padding: 100px 20px;
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(255, 215, 0, 0.03) 25%, transparent 50%, rgba(255, 215, 0, 0.03) 75%, transparent 100%);
  background-size: 200px 200px;
  animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200px 200px;
  }
}

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

.reviews-header {
  text-align: center;
  margin-bottom: 80px;
}

.reviews-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #ffffff;
  position: relative;
}

.reviews-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4a);
  border-radius: 2px;
}

.reviews-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #cccccc;
  max-width: 900px;
  margin: 0 auto;
}

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

.reviews-main {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

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

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

.reviews-img:hover {
  transform: scale(1.05) rotateY(-5deg);
}

.reviews-badge {
  position: absolute;
  top: -25px;
  right: -25px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
  animation: float 3s ease-in-out infinite;
}

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

.badge-icon {
  width: 35px;
  height: 35px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-rating {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000000;
  line-height: 1;
}

.badge-label {
  font-size: 0.8rem;
  color: #000000;
  opacity: 0.8;
}

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

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

.reviews-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.highlight-card:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(255, 215, 0, 0.15);
}

.highlight-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.highlight-icon i {
  font-size: 1.5rem;
  color: #000000;
}

.highlight-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

.reviews-additional {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 50px;
}

.additional-content {
  padding: 32px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.06) 0%, rgba(255, 215, 0, 0.02) 100%);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.additional-content:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.04) 100%);
  border-color: rgba(255, 215, 0, 0.25);
  transform: translateY(-2px);
}

.additional-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 16px;
  position: relative;
}

.additional-content h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ffd700;
  border-radius: 1px;
}

.additional-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #cccccc;
}

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

.highlight-link:hover {
  color: #ffed4a;
}

.reviews-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.reviews-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.cta-content {
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

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

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .reviews-title {
    font-size: 2.4rem;
  }
  
  .reviews-main {
    gap: 50px;
  }
  
  .reviews-additional {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 80px 16px;
  }
  
  .reviews-title {
    font-size: 2rem;
  }
  
  .reviews-subtitle {
    font-size: 1.1rem;
  }
  
  .reviews-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .reviews-image {
    order: -1;
  }
  
  .reviews-text p {
    font-size: 1rem;
  }
  
  .reviews-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .highlight-card {
    padding: 20px;
  }
  
  .highlight-icon {
    width: 50px;
    height: 50px;
  }
  
  .highlight-icon i {
    font-size: 1.3rem;
  }
  
  .highlight-content h4 {
    font-size: 1rem;
  }
  
  .additional-content {
    padding: 24px;
  }
  
  .additional-content h3 {
    font-size: 1.2rem;
  }
  
  .additional-content p {
    font-size: 1rem;
  }
  
  .reviews-cta {
    padding: 40px 24px;
  }
  
  .cta-content h3 {
    font-size: 1.7rem;
  }
  
  .reviews-badge {
    top: -15px;
    right: -15px;
    padding: 12px 16px;
  }
  
  .badge-rating {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .reviews-section {
    padding: 60px 12px;
  }
  
  .reviews-title {
    font-size: 1.8rem;
  }
  
  .reviews-title::after {
    width: 80px;
  }
  
  .reviews-subtitle {
    font-size: 1rem;
  }
  
  .highlight-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px 16px;
  }
  
  .highlight-icon {
    width: 55px;
    height: 55px;
  }
  
  .additional-content {
    padding: 20px;
  }
  
  .reviews-cta {
    padding: 32px 16px;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .reviews-badge {
    position: static;
    margin-bottom: 20px;
    display: inline-flex;
  }
}

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

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

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

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

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2.5fr;
  gap: 80px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-text {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #aaaaaa;
  margin-bottom: 16px;
}

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

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

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

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

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #ffd700;
  border-radius: 1px;
}

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

.footer-link {
  color: #aaaaaa;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

.footer-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.feature-icon i {
  font-size: 1.3rem;
  color: #000000;
}

.feature-text h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.85rem;
  color: #aaaaaa;
  line-height: 1.4;
}

.footer-cta {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.03) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

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

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

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

.footer-bottom {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

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

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

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

.copyright {
  color: #aaaaaa;
  font-size: 0.9rem;
}

.footer-disclaimer {
  background: rgba(255, 165, 0, 0.1);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 8px;
  padding: 16px 20px;
  text-align: center;
}

.disclaimer-text {
  color: #ffaa00;
  font-size: 0.9rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.disclaimer-text i {
  font-size: 1rem;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    gap: 60px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .footer-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }
  
  .footer-container {
    padding: 0 16px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .footer-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-item {
    padding: 16px;
  }
  
  .footer-cta {
    padding: 32px 24px;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .footer-legal {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .legal-links {
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 0 0;
  }
  
  .footer-container {
    padding: 0 12px;
  }
  
  .footer-content {
    gap: 40px;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px 16px;
  }
  
  .footer-cta {
    padding: 24px 16px;
  }
  
  .cta-content h3 {
    font-size: 1.3rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 12px;
  }
  
  .disclaimer-text {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 60px;
  gap: 4px;
}

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

.sticky-btn i {
  font-size: 1.3rem;
  margin-bottom: 2px;
  transition: transform 0.3s ease;
}

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

/* Button Colors */
.sticky-btn-login {
  background: linear-gradient(135deg, #2c5530 0%, #1e3a21 100%);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #3d7040 0%, #2c5530 100%);
  transform: translateY(-2px);
}

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

.sticky-btn-register {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-2px);
}

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

.sticky-btn-bonus {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #000000;
  animation: pulse-glow 2s ease-in-out infinite;
}

.sticky-btn-bonus:hover {
  background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

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

.sticky-btn-bonus .sticky-btn-text {
  color: #000000;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.4);
  }
}

/* Hover Effects */
.sticky-btn:hover i {
  transform: scale(1.1);
}

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

/* Active State */
.sticky-btn:active {
  transform: translateY(1px);
}

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

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

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

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

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

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

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

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

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

.login-content:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.1);
}

.login-logo {
  text-align: center;
  padding: 40px 40px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.login-form-wrapper {
  padding: 40px;
}

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

.login-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

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

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

.login-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-label i {
  color: #ffd700;
  font-size: 1rem;
  width: 16px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Sarabun', sans-serif;
}

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

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

.form-input.error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

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

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

.password-toggle:hover {
  color: #ffd700;
}

.password-toggle i {
  font-size: 1.1rem;
}

.input-error {
  color: #fca5a5;
  font-size: 0.85rem;
  margin-top: 4px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #cccccc;
  cursor: pointer;
}

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

.checkmark {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.remember-me input[type="checkbox"]:checked + .checkmark {
  background: #ffd700;
  border-color: #ffd700;
}

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

.forgot-password {
  color: #ffd700;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.login-button {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  color: #000000;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  font-family: 'Sarabun', sans-serif;
}

.login-button:hover:not(:disabled) {
  background: linear-gradient(45deg, #ffed4a, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.login-button:active:not(:disabled) {
  transform: translateY(0);
}

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

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

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

.login-button.loading .loading-spinner {
  display: block !important;
}

.loading-spinner {
  position: absolute;
}

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

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

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

.register-button {
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  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;
  font-family: 'Sarabun', sans-serif;
}

.register-button:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.login-footer {
  margin-top: 24px;
  text-align: center;
}

.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #888888;
  margin: 0;
  line-height: 1.4;
}

.security-note i {
  color: #10b981;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 16px;
  }
  
  .login-container {
    max-width: 100%;
  }
  
  .login-logo {
    padding: 24px 24px 16px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-form-wrapper {
    padding: 24px;
  }
  
  .login-title {
    font-size: 1.7rem;
  }
  
  .form-options {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .login-logo {
    padding: 20px 20px 16px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-form-wrapper {
    padding: 20px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 14px 16px;
  }
  
  .login-button,
  .register-button {
    padding: 14px 20px;
  }
  
  .security-note {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

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

.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.12) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 40% 60%, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
}

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

.register-content {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: all 0.3s ease;
}

.register-content:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.15);
}

.register-logo {
  text-align: center;
  padding: 40px 40px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
}

.logo-image {
  width: 85px;
  height: 85px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  transition: transform 0.3s ease;
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.logo-image:hover {
  transform: scale(1.08) rotate(2deg);
}

.register-form-wrapper {
  padding: 40px;
}

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

.register-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

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

.error-message {
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: shake 0.5s ease-in-out;
}

.success-message {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn 0.5s ease-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

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

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

.success-message i {
  color: #6ee7b7;
  font-size: 1.1rem;
}

.error-text {
  color: #fca5a5;
  font-size: 0.95rem;
  font-weight: 500;
}

.success-text {
  color: #6ee7b7;
  font-size: 0.95rem;
  font-weight: 500;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.form-label i {
  color: #ffd700;
  font-size: 1.1rem;
  width: 18px;
}

.form-input {
  width: 100%;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #ffffff;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  font-family: 'Sarabun', sans-serif;
}

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

.form-input:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.15);
  transform: translateY(-2px);
}

.form-input.error {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15);
}

.form-input.success {
  border-color: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.input-error {
  color: #fca5a5;
  font-size: 0.9rem;
  margin-top: 6px;
  min-height: 22px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.input-help {
  color: #888888;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.input-help i {
  color: #ffd700;
  font-size: 0.9rem;
}

.form-terms {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #cccccc;
  cursor: pointer;
  line-height: 1.5;
}

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

.checkmark {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark {
  background: #ffd700;
  border-color: #ffd700;
  transform: scale(1.1);
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.terms-text {
  flex: 1;
}

.terms-link {
  color: #ffd700;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: #ffed4a;
}

.register-button {
  width: 100%;
  padding: 18px 28px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  color: #000000;
  border: none;
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  font-family: 'Sarabun', sans-serif;
  text-transform: none;
}

.register-button:hover:not(:disabled) {
  background: linear-gradient(45deg, #ffed4a, #ffd700);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.register-button:active:not(:disabled) {
  transform: translateY(-1px);
}

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

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

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

.register-button.loading .loading-spinner {
  display: block !important;
}

.loading-spinner {
  position: absolute;
}

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

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

.register-divider span {
  background: rgba(28, 28, 28, 0.9);
  color: #aaaaaa;
  padding: 0 18px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.login-button {
  width: 100%;
  padding: 16px 26px;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Sarabun', sans-serif;
}

.login-button:hover {
  background: rgba(255, 215, 0, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.25);
  border-color: #ffed4a;
}

.register-features {
  display: flex;
  justify-content: space-between;
  margin: 28px 0;
  gap: 16px;
}

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

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

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

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

.register-footer {
  margin-top: 28px;
  text-align: center;
}

.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #888888;
  margin: 0;
  line-height: 1.5;
}

.security-note i {
  color: #10b981;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 16px;
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-logo {
    padding: 28px 28px 18px;
  }
  
  .logo-image {
    width: 75px;
    height: 75px;
  }
  
  .register-form-wrapper {
    padding: 28px;
  }
  
  .register-title {
    font-size: 1.9rem;
  }
  
  .register-features {
    flex-direction: column;
    gap: 12px;
  }
  
  .feature-item {
    flex-direction: row;
    justify-content: center;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .register-logo {
    padding: 24px 24px 16px;
  }
  
  .logo-image {
    width: 65px;
    height: 65px;
  }
  
  .register-form-wrapper {
    padding: 24px;
  }
  
  .register-title {
    font-size: 1.7rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 16px 18px;
    font-size: 1rem;
  }
  
  .register-button,
  .login-button {
    padding: 16px 22px;
    font-size: 1rem;
  }
  
  .terms-checkbox {
    font-size: 0.9rem;
  }
  
  .feature-item {
    padding: 10px 12px;
  }
  
  .feature-item span {
    font-size: 0.8rem;
  }
  
  .security-note {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 50% 100%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
  animation: heroGlow 8s ease-in-out infinite;
}

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

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  background: linear-gradient(45deg, #ffd700, #ffed4a, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    background-position: 200% 0;
  }
  50% {
    background-position: -200% 0;
  }
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #cccccc;
  max-width: 800px;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  margin-top: 16px;
}

.btn-large {
  padding: 20px 40px;
  font-size: 1.3rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

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

/* Promo Sections */
.promo-section {
  background: #1a1a1a;
  padding: 80px 20px;
  position: relative;
}

.promo-section-alt {
  background: linear-gradient(135deg, #1f1f1f 0%, #2d2d2d 100%);
}

.promo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.02) 50%, transparent 100%);
}

.promo-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.promo-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.promo-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.3;
}

.promo-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  color: #000000;
  padding: 16px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  animation: bounce 3s ease-in-out infinite;
}

.vip-badge {
  background: linear-gradient(45deg, #9333ea, #c084fc);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.referral-badge {
  background: linear-gradient(45deg, #10b981, #34d399);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

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

.badge-amount {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.badge-label {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
}

.promo-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.promo-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  width: 100%;
}

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

.benefit-item:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.15);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.benefit-icon i {
  font-size: 1.4rem;
  color: #000000;
}

.benefit-item p {
  font-size: 1.05rem;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  font-family: 'Sarabun', sans-serif;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  color: #000000;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #ffed4a, #ffd700);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.btn-primary:active {
  transform: translateY(-1px);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .promo-title {
    font-size: 2.2rem;
  }
  
  .promo-benefits {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 16px 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .btn-large {
    padding: 18px 32px;
    font-size: 1.2rem;
  }
  
  .promo-section {
    padding: 60px 16px;
  }
  
  .promo-title {
    font-size: 2rem;
  }
  
  .promo-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefit-item {
    padding: 20px;
  }
  
  .benefit-icon {
    width: 45px;
    height: 45px;
  }
  
  .benefit-icon i {
    font-size: 1.2rem;
  }
  
  .benefit-item p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 12px 50px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn-large {
    padding: 16px 28px;
    font-size: 1.1rem;
  }
  
  .promo-section {
    padding: 50px 12px;
  }
  
  .promo-title {
    font-size: 1.8rem;
  }
  
  .promo-header {
    margin-bottom: 40px;
  }
  
  .promo-badge {
    padding: 12px 20px;
  }
  
  .badge-amount {
    font-size: 1.5rem;
  }
  
  .badge-label {
    font-size: 0.8rem;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px 16px;
  }
  
  .benefit-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .btn i {
    font-size: 1.1rem;
  }
}