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

body {
  font-family: 'Sarabun', sans-serif;
  background-color: #0f0f0f;
  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;
}

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

/* Hero Section Styles */
.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;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 69, 0, 0.1) 100%);
  pointer-events: none;
}

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

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(45deg, #FFD700, #FF4500, #FFD700);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShine 3s ease-in-out infinite;
}

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

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

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  font-size: 1rem;
  color: #FFD700;
  transition: all 0.3s ease;
}

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

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

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

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
}

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

.btn-secondary:hover {
  background: #FFD700;
  color: #000000;
  transform: translateY(-3px);
}

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

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

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

.hero-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(45deg, #FF4500, #FFD700);
  color: #000000;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(255, 69, 0, 0.4);
  animation: pulse 2s infinite;
}

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

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

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

/* Responsive Design */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .feature-item {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .hero-badge {
    padding: 10px 16px;
    font-size: 0.9rem;
    top: -10px;
    right: -10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-item {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

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

.logo-link {
  display: flex;
  align-items: baseline;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

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

.logo-domain {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #cccccc;
  margin-left: 2px;
}

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

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.nav-link:hover {
  color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.nav-link i {
  font-size: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

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

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 2px solid #FFD700;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.hamburger-line {
  width: 20px;
  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: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu-content {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.8) translateY(50px);
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: scale(1) translateY(0);
}

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

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

.mobile-menu-close {
  background: none;
  border: none;
  color: #FFD700;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: rotate(90deg);
}

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

.mobile-nav-item {
  width: 100%;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  width: 100%;
}

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

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

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  background: linear-gradient(45deg, #FFD700, #FF4500);
  color: #000000;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

/* Desktop Only Class */
.desktop-only {
  display: inline-flex;
}

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

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

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-domain {
    font-size: 1rem;
  }
  
  .header-nav {
    display: none;
  }
  
  .desktop-only {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  body {
    padding-top: 70px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
    height: 65px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .logo-domain {
    font-size: 0.9rem;
  }
  
  .mobile-menu-content {
    width: 95%;
    padding: 25px 20px;
  }
  
  .mobile-nav-link {
    padding: 12px 15px;
    font-size: 1rem;
  }
  
  .mobile-cta-button {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  body {
    padding-top: 65px;
  }
}

/* Platform Overview Section */
.platform-section {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  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% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.platform-header {
  text-align: center;
}

.platform-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #FFD700;
  margin-bottom: 20px;
  position: relative;
}

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

.platform-body {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

.platform-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.platform-text strong {
  color: #FFD700;
  font-weight: 700;
}

.inline-link {
  color: #FFD700;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.inline-link:hover {
  color: #FF4500;
}

.platform-image {
  position: relative;
  animation: fadeInUp 1s ease-out 0.3s both;
}

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

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

.trust-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(45deg, #4CAF50, #8BC34A);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.platform-highlights {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 50px 40px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

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

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

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

.highlight-item:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
}

.highlight-icon {
  background: linear-gradient(45deg, #FFD700, #FF4500);
  color: #000000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.highlight-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 5px;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .platform-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .platform-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .platform-title {
    font-size: 2.4rem;
  }
  
  .highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 80px 15px;
  }
  
  .platform-title {
    font-size: 2rem;
  }
  
  .platform-text p {
    font-size: 1rem;
    text-align: left;
  }
  
  .platform-highlights {
    padding: 40px 30px;
  }
  
  .highlights-title {
    font-size: 1.6rem;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .highlight-item {
    padding: 15px;
  }
  
  .highlight-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .platform-title {
    font-size: 1.6rem;
  }
  
  .platform-highlights {
    padding: 30px 20px;
  }
  
  .highlights-title {
    font-size: 1.4rem;
  }
  
  .highlight-content h4 {
    font-size: 1.1rem;
  }
  
  .highlight-content p {
    font-size: 0.9rem;
  }
  
  .trust-badge {
    padding: 8px 12px;
    font-size: 0.8rem;
    bottom: 15px;
    left: 15px;
  }
}

/* Financial System Section */
.financial-section {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  padding: 100px 20px;
  position: relative;
}

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

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

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

.financial-header {
  text-align: center;
}

.financial-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #FFD700;
  margin-bottom: 20px;
  position: relative;
}

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

.financial-body {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
}

.financial-image {
  position: relative;
  animation: fadeInLeft 1s ease-out;
}

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

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

.speed-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(45deg, #00E676, #4CAF50);
  color: #000000;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(0, 230, 118, 0.4);
  animation: pulseGreen 2s infinite;
}

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

.financial-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fadeInRight 1s ease-out 0.2s both;
}

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

.financial-text strong {
  color: #FFD700;
  font-weight: 700;
}

.financial-features {
  background: rgba(255, 69, 0, 0.05);
  border: 1px solid rgba(255, 69, 0, 0.2);
  border-radius: 20px;
  padding: 50px 40px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.feature-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.feature-section strong {
  color: #FF4500;
  font-weight: 700;
}

.payout-rates {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 69, 0, 0.1) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 50px 40px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

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

.payout-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #FF4500);
  border-radius: 2px;
}

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

.payout-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.payout-item:hover::before {
  left: 100%;
}

.payout-item:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.payout-icon {
  background: linear-gradient(45deg, #FFD700, #FF4500);
  color: #000000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 15px;
  position: relative;
  z-index: 1;
}

.payout-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.payout-rate {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF4500;
  display: block;
  position: relative;
  z-index: 1;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .financial-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .financial-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .financial-title {
    font-size: 2.4rem;
  }
  
  .payout-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .financial-section {
    padding: 80px 15px;
  }
  
  .financial-title {
    font-size: 2rem;
  }
  
  .financial-text p,
  .feature-section p {
    font-size: 1rem;
    text-align: left;
  }
  
  .financial-features,
  .payout-rates {
    padding: 40px 30px;
  }
  
  .payout-title {
    font-size: 1.8rem;
  }
  
  .payout-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  
  .payout-item {
    padding: 20px 15px;
  }
  
  .payout-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  
  .payout-info h4 {
    font-size: 1.1rem;
  }
  
  .payout-rate {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .financial-title {
    font-size: 1.6rem;
  }
  
  .financial-features,
  .payout-rates {
    padding: 30px 20px;
  }
  
  .payout-title {
    font-size: 1.5rem;
  }
  
  .payout-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .payout-item {
    padding: 15px 10px;
  }
  
  .payout-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .payout-info h4 {
    font-size: 1rem;
  }
  
  .payout-rate {
    font-size: 1.1rem;
  }
  
  .speed-badge {
    padding: 10px 16px;
    font-size: 0.9rem;
    top: -10px;
    right: -10px;
  }
}

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

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

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

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

.lottery-header {
  text-align: center;
}

.lottery-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #FFD700;
  margin-bottom: 20px;
  position: relative;
}

.lottery-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 4px;
  background: linear-gradient(90deg, #FFD700, #FF4500, #FFD700);
  border-radius: 2px;
}

.lottery-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.lottery-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fadeInLeft 1s ease-out;
}

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

.lottery-text strong {
  color: #FFD700;
  font-weight: 700;
}

.lottery-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.2s both;
}

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

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

.variety-badge {
  position: absolute;
  top: -12px;
  left: -12px;
  background: linear-gradient(45deg, #9C27B0, #E91E63);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(156, 39, 176, 0.4);
  animation: pulsePurple 2s infinite;
}

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

.lottery-advantages {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 69, 0, 0.08) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 50px 40px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

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

.advantages-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #FF4500);
  border-radius: 2px;
}

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

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.advantage-item:hover::before {
  left: 100%;
}

.advantage-item:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.advantage-number {
  background: linear-gradient(45deg, #FFD700, #FF4500);
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.advantage-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.advantage-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 8px;
  line-height: 1.3;
}

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

.lottery-service {
  background: rgba(255, 69, 0, 0.06);
  border: 1px solid rgba(255, 69, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

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

.service-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin: 0;
}

.service-text strong {
  color: #FF4500;
  font-weight: 700;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .lottery-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .lottery-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .lottery-title {
    font-size: 2.4rem;
  }
  
  .advantages-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .lottery-section {
    padding: 80px 15px;
  }
  
  .lottery-title {
    font-size: 2rem;
  }
  
  .lottery-text p,
  .service-text p {
    font-size: 1rem;
    text-align: left;
  }
  
  .lottery-advantages,
  .lottery-service {
    padding: 40px 30px;
  }
  
  .advantages-title {
    font-size: 1.8rem;
  }
  
  .advantages-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .advantage-item {
    padding: 20px 15px;
  }
  
  .advantage-number {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }
  
  .advantage-content h4 {
    font-size: 1.2rem;
  }
  
  .advantage-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .lottery-title {
    font-size: 1.6rem;
  }
  
  .lottery-advantages,
  .lottery-service {
    padding: 30px 20px;
  }
  
  .advantages-title {
    font-size: 1.5rem;
  }
  
  .advantage-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .advantage-number {
    align-self: center;
  }
  
  .advantage-content h4 {
    font-size: 1.1rem;
  }
  
  .advantage-content p {
    font-size: 0.9rem;
  }
  
  .variety-badge {
    padding: 10px 16px;
    font-size: 0.9rem;
    top: -8px;
    left: -8px;
  }
}

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

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

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

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

.access-header {
  text-align: center;
}

.access-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #FFD700;
  margin-bottom: 20px;
  position: relative;
}

.access-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, #FF4500, #FFD700, #FF4500);
  border-radius: 2px;
}

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

.access-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fadeInLeft 1s ease-out;
}

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

.access-text strong {
  color: #FFD700;
  font-weight: 700;
}

.access-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.2s both;
}

.access-img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.secure-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, #2196F3, #03A9F4);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
  animation: pulseBlue 2s infinite;
}

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

.access-features {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(33, 150, 243, 0.08) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 50px 40px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

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

.features-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #2196F3);
  border-radius: 2px;
}

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

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(33, 150, 243, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.feature-card:hover {
  background: rgba(33, 150, 243, 0.08);
  border-color: rgba(33, 150, 243, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.2);
}

.feature-icon {
  background: linear-gradient(45deg, #2196F3, #03A9F4);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.feature-info {
  flex: 1;
  position: relative;
  z-index: 1;
}

.feature-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2196F3;
  margin-bottom: 8px;
  line-height: 1.3;
}

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

.access-security {
  background: rgba(33, 150, 243, 0.06);
  border: 1px solid rgba(33, 150, 243, 0.2);
  border-radius: 20px;
  padding: 50px 40px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.security-content {
  max-width: 100%;
}

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .access-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .access-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .access-title {
    font-size: 2.4rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .access-section {
    padding: 80px 15px;
  }
  
  .access-title {
    font-size: 2rem;
  }
  
  .access-text p,
  .security-text p {
    font-size: 1rem;
    text-align: left;
  }
  
  .access-features,
  .access-security {
    padding: 40px 30px;
  }
  
  .features-title {
    font-size: 1.8rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .feature-info h4 {
    font-size: 1.2rem;
  }
  
  .feature-info p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .access-title {
    font-size: 1.6rem;
  }
  
  .access-features,
  .access-security {
    padding: 30px 20px;
  }
  
  .features-title {
    font-size: 1.5rem;
  }
  
  .feature-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .feature-icon {
    align-self: center;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .feature-info h4 {
    font-size: 1.1rem;
  }
  
  .feature-info p {
    font-size: 0.9rem;
  }
  
  .secure-badge {
    padding: 10px 16px;
    font-size: 0.9rem;
    bottom: 15px;
    right: 15px;
  }
}

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

.registration-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 60% 70%, rgba(76, 175, 80, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.registration-header {
  text-align: center;
}

.registration-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #FFD700;
  margin-bottom: 20px;
  position: relative;
}

.registration-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50, #FFD700, #4CAF50);
  border-radius: 2px;
}

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

.registration-image {
  position: relative;
  animation: fadeInLeft 1s ease-out;
}

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

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

.easy-badge {
  position: absolute;
  top: -12px;
  left: -12px;
  background: linear-gradient(45deg, #4CAF50, #8BC34A);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
  animation: pulseGreen 2s infinite;
}

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

.registration-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fadeInRight 1s ease-out 0.2s both;
}

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

.registration-text strong {
  color: #FFD700;
  font-weight: 700;
}

.member-benefits {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(255, 215, 0, 0.08) 100%);
  border: 2px solid rgba(76, 175, 80, 0.3);
  border-radius: 20px;
  padding: 50px 40px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

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

.benefits-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, #FFD700);
  border-radius: 2px;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
  transition: left 0.6s ease;
}

.benefit-item:hover::before {
  left: 100%;
}

.benefit-item:hover {
  background: rgba(76, 175, 80, 0.08);
  border-color: rgba(76, 175, 80, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}

.benefit-icon {
  background: linear-gradient(45deg, #4CAF50, #8BC34A);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.benefit-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.benefit-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #4CAF50;
  margin-bottom: 5px;
  line-height: 1.3;
}

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

.verification-section {
  background: rgba(76, 175, 80, 0.06);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 20px;
  padding: 40px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.verification-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.verification-content strong {
  color: #4CAF50;
  font-weight: 700;
}

.important-notes {
  background: rgba(255, 152, 0, 0.08);
  border: 2px solid rgba(255, 152, 0, 0.3);
  border-radius: 20px;
  padding: 50px 40px;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.notes-title {
  font-size: 2rem;
  font-weight: 700;
  color: #FF9800;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.notes-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #FF9800, #FFC107);
  border-radius: 2px;
}

.notes-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.warning-list {
  background: rgba(244, 67, 54, 0.1);
  border-left: 4px solid #F44336;
  border-radius: 8px;
  padding: 20px;
}

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

.warning-item i {
  color: #F44336;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

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

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

.member-guide strong {
  color: #FF9800;
  font-weight: 700;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .registration-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .registration-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .registration-title {
    font-size: 2.4rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .registration-section {
    padding: 80px 15px;
  }
  
  .registration-title {
    font-size: 2rem;
  }
  
  .registration-text p,
  .verification-content p,
  .member-guide p {
    font-size: 1rem;
    text-align: left;
  }
  
  .member-benefits,
  .verification-section,
  .important-notes {
    padding: 40px 30px;
  }
  
  .benefits-title,
  .notes-title {
    font-size: 1.8rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefit-item {
    padding: 20px 15px;
  }
  
  .benefit-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .benefit-content h4 {
    font-size: 1.2rem;
  }
  
  .benefit-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .registration-title {
    font-size: 1.6rem;
  }
  
  .member-benefits,
  .verification-section,
  .important-notes {
    padding: 30px 20px;
  }
  
  .benefits-title,
  .notes-title {
    font-size: 1.5rem;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .benefit-icon {
    align-self: center;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .benefit-content h4 {
    font-size: 1.1rem;
  }
  
  .benefit-content p {
    font-size: 0.9rem;
  }
  
  .easy-badge {
    padding: 10px 16px;
    font-size: 0.9rem;
    top: -8px;
    left: -8px;
  }
  
  .warning-item {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .warning-list {
    padding: 15px;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  position: relative;
  margin-top: 60px;
}

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

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

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

/* Footer Brand Section */
.footer-brand {
  max-width: 100%;
}

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

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

.footer-logo-domain {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #cccccc;
  margin-left: 2px;
}

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

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

.footer-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFD700;
  font-size: 0.9rem;
}

.footer-feature i {
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

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

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

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #FFD700, #FF4500);
  border-radius: 1px;
}

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

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

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

.footer-link i {
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

/* Contact Section */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

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

.contact-item i {
  color: #FFD700;
  font-size: 1rem;
  width: 18px;
  text-align: center;
}

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

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(45deg, #FFD700, #FF4500);
  color: #000000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

/* Footer Legal */
.footer-legal {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding-top: 25px;
}

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

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

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

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

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

.footer-copyright p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 15px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-logo-domain {
    font-size: 1.1rem;
  }
  
  .footer-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px 25px;
  }
  
  .footer-legal-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-links-legal {
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 15px 15px;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-logo-domain {
    font-size: 1rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
  }
  
  .footer-features {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-links-legal {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-cta-button {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
  
  .contact-item,
  .footer-link {
    font-size: 0.9rem;
  }
}

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

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

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

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

.sticky-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.sticky-btn:active {
  transform: scale(0.95);
}

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

.sticky-btn-text {
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Individual button styles */
.sticky-btn-login {
  background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
}

.sticky-btn-register {
  background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #388E3C 0%, #2E7D32 100%);
}

.sticky-btn-credit {
  background: linear-gradient(135deg, #FFD700 0%, #FF8F00 100%);
  color: #000000;
  font-weight: 700;
  animation: pulseCredit 2s infinite;
}

.sticky-btn-credit:hover {
  background: linear-gradient(135deg, #FF8F00 0%, #F57C00 100%);
}

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

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

@media (max-width: 480px) {
  .sticky-buttons {
    border-top-width: 1px;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.75rem;
    min-height: 50px;
    gap: 3px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .sticky-btn-text {
    font-size: 0.65rem;
    line-height: 1.1;
  }
}

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

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

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

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

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

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

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

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

.login-content {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.input-error {
  color: #F44336;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.input-error.show {
  display: block;
  animation: slideDown 0.3s ease;
}

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

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

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

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

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

.remember-me input[type="checkbox"]:checked + .checkbox-custom::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;
  transition: color 0.3s ease;
}

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

/* Buttons */
.login-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(45deg, #FFD700, #FF4500);
  color: #000000;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

.divider-text {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
  color: #cccccc;
  padding: 0 15px;
  font-size: 0.9rem;
}

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

.register-btn:hover {
  background: #FFD700;
  color: #000000;
  transform: translateY(-2px);
}

/* Login Footer */
.login-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

.security-note i {
  color: #4CAF50;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 15px;
  }
  
  .login-content {
    padding: 30px 25px;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .form-options {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .login-content {
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .login-logo {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .form-input {
    padding: 12px 14px;
  }
  
  .login-btn,
  .register-btn {
    padding: 14px 20px;
  }
  
  .security-note {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .login-content {
    padding: 20px 15px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
}

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

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

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

.register-content {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
  border: 2px solid rgba(76, 175, 80, 0.2);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

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

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

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

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

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

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

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

.success-message {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4CAF50;
  font-size: 0.9rem;
  animation: slideDown 0.3s ease;
}

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

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

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

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

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

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

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

.form-input:focus {
  border-color: #4CAF50;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

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

.input-error {
  color: #F44336;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.input-error.show {
  display: block;
  animation: slideDown 0.3s ease;
}

.input-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #888888;
  font-size: 0.8rem;
  margin-top: 5px;
}

.input-hint i {
  font-size: 0.8rem;
}

/* Form Terms */
.form-terms {
  margin-bottom: 25px;
}

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

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

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(76, 175, 80, 0.3);
  border-radius: 4px;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-checkbox input[type="checkbox"]:checked + .checkbox-custom {
  background: #4CAF50;
  border-color: #4CAF50;
}

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

.terms-link,
.privacy-link {
  color: #4CAF50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms-link:hover,
.privacy-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

.divider-text {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
  color: #cccccc;
  padding: 0 15px;
  font-size: 0.9rem;
}

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

.login-btn:hover {
  background: #4CAF50;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Register Footer */
.register-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(76, 175, 80, 0.2);
}

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

.benefits-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #4CAF50;
  margin-bottom: 15px;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FFD700;
  font-size: 0.85rem;
  padding: 6px 12px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(76, 175, 80, 0.15);
  transform: translateY(-2px);
}

.benefit-item i {
  font-size: 0.9rem;
}

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

.security-note i {
  color: #4CAF50;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 15px;
  }
  
  .register-content {
    padding: 30px 25px;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .benefits-list {
    flex-direction: column;
    align-items: center;
  }
  
  .benefit-item {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .register-content {
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .register-logo {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .form-input {
    padding: 12px 14px;
  }
  
  .register-btn,
  .login-btn {
    padding: 14px 20px;
  }
  
  .security-note {
    font-size: 0.8rem;
  }
  
  .benefits-title {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .register-content {
    padding: 20px 15px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
}

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

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

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

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 40px;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  justify-content: center;
}

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
  color: #FFD700;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

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

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

.promo-section:nth-child(odd) {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
}

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

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

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

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

.promo-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 24px;
  padding: 50px 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.promo-content:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.1);
}

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

.promo-icon {
  background: linear-gradient(45deg, #FFD700, #FF4500);
  color: #000000;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

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

.promo-highlight {
  background: linear-gradient(135deg, #FFD700, #FF4500);
  color: #000000;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.promo-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
  50% { transform: scale(1.1) rotate(180deg); opacity: 0.8; }
}

.highlight-amount {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.highlight-text {
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

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

.promo-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.promo-features li i {
  color: #4CAF50;
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.promo-cta {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 30px;
}

.promo-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(45deg, #FFD700, #FF4500);
  color: #000000;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

.promo-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

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

/* Special styling for different promo types */
#new-member-promo .promo-icon {
  background: linear-gradient(45deg, #4CAF50, #8BC34A);
  color: #ffffff;
}

#new-member-promo .promo-highlight {
  background: linear-gradient(135deg, #4CAF50, #8BC34A);
  color: #ffffff;
}

#first-deposit-bonus .promo-icon {
  background: linear-gradient(45deg, #2196F3, #03A9F4);
  color: #ffffff;
}

#first-deposit-bonus .promo-highlight {
  background: linear-gradient(135deg, #2196F3, #03A9F4);
  color: #ffffff;
}

#weekly-vip-credit .promo-icon {
  background: linear-gradient(45deg, #9C27B0, #E91E63);
  color: #ffffff;
}

#weekly-vip-credit .promo-highlight {
  background: linear-gradient(135deg, #9C27B0, #E91E63);
  color: #ffffff;
}

#referral-bonus .promo-icon {
  background: linear-gradient(45deg, #FF9800, #FFC107);
  color: #000000;
}

#referral-bonus .promo-highlight {
  background: linear-gradient(135deg, #FF9800, #FFC107);
  color: #000000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .promo-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .promo-highlight {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 15px 60px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta-button {
    padding: 16px 30px;
    font-size: 1.2rem;
  }
  
  .promo-section {
    padding: 60px 15px;
  }
  
  .promo-content {
    padding: 40px 30px;
  }
  
  .promo-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .promo-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
  
  .promo-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .promo-features li {
    font-size: 1rem;
  }
  
  .highlight-amount {
    font-size: 2.4rem;
  }
  
  .highlight-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta-button {
    padding: 14px 25px;
    font-size: 1.1rem;
  }
  
  .promo-content {
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .promo-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  
  .promo-title {
    font-size: 1.5rem;
  }
  
  .promo-highlight {
    padding: 25px 20px;
  }
  
  .highlight-amount {
    font-size: 2rem;
  }
  
  .highlight-text {
    font-size: 0.9rem;
  }
  
  .promo-features li {
    font-size: 0.95rem;
  }
  
  .promo-button {
    padding: 14px 25px;
    font-size: 1.1rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-cta-button {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .promo-title {
    font-size: 1.3rem;
  }
  
  .highlight-amount {
    font-size: 1.8rem;
  }
  
  .promo-button {
    padding: 12px 20px;
    font-size: 1rem;
  }
}