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

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

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

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

a:hover {
  color: #ffed4e;
}

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

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

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

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

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

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

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

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: #cccccc;
  max-width: 600px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.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;
}

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

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

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

.btn-secondary {
  background: linear-gradient(45deg, #8a2be2, #9932cc);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
  color: #ffffff;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffd700;
  font-weight: 600;
}

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

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

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

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

.hero-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.9), rgba(255, 237, 78, 0.9));
  padding: 20px;
  border-radius: 15px;
  color: #000000;
  text-align: center;
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
}

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

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

.overlay-content h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.overlay-content p {
  font-size: 0.9rem;
}

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

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

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

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 15px 30px;
    min-height: 90vh;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    font-size: 1rem;
    padding: 14px 28px;
  }
  
  .hero-features {
    justify-content: center;
    gap: 20px;
  }
  
  .feature-item {
    font-size: 0.9rem;
  }
  
  .hero-overlay {
    position: static;
    margin-top: 20px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 30px 10px 20px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
}

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

.main-header.scrolled {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(26, 26, 26, 0.98));
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

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

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

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 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, #ffed4e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease-in-out infinite;
}

.logo-subtitle {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(45deg, #8a2be2, #9932cc);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.9rem;
}

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

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

.nav-link {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-cta::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;
}

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

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 5px;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
}

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

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

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

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

.desktop-only {
  display: inline-flex;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(26, 26, 26, 0.98));
  backdrop-filter: blur(20px);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow: hidden;
}

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

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

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

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.mobile-logo-subtitle {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(45deg, #8a2be2, #9932cc);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
}

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

.mobile-menu-close:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: scale(1.1);
}

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

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav-link::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;
}

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

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

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

.mobile-nav-cta {
  background: linear-gradient(45deg, #ffd700, #ffed4e) !important;
  color: #000000 !important;
  border-color: rgba(255, 215, 0, 0.5) !important;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.mobile-nav-cta:hover {
  color: #000000 !important;
  transform: translateX(10px) translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.mobile-nav-cta i {
  color: #000000 !important;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .desktop-only {
    display: none;
  }
  
  .header-content {
    height: 70px;
  }
  
  .logo-text {
    font-size: 1.8rem;
  }
  
  .logo-subtitle {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
  }
  
  .header-content {
    height: 65px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .mobile-menu-content {
    padding: 15px;
  }
  
  .mobile-nav-link {
    padding: 18px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 10px;
  }
  
  .header-content {
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .logo-subtitle {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
  
  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
  }
  
  .hamburger-line {
    width: 18px;
  }
  
  .mobile-nav-link {
    padding: 15px 18px;
    font-size: 0.95rem;
  }
  
  .mobile-menu-header {
    padding: 15px 0;
  }
  
  .mobile-logo-text {
    font-size: 1.6rem;
  }
}

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

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

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

.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: 40px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffa500);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease-in-out infinite;
}

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

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

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

.platform-description a {
  color: #ffd700;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.platform-description a:hover {
  color: #ffed4e;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

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

.feature-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(138, 43, 226, 0.1));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

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

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffd700;
}

.feature-card p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.5;
}

.platform-image {
  position: relative;
}

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

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

.image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 26, 0.9));
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.overlay-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.stat-item {
  text-align: center;
  color: #ffffff;
}

.stat-item i {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 8px;
  display: block;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 5px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .platform-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .platform-title {
    font-size: 2.2rem;
  }
  
  .platform-description p {
    text-align: center;
  }
  
  .platform-features {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 80px 15px;
  }
  
  .platform-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .platform-description {
    margin-bottom: 40px;
  }
  
  .platform-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .platform-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.25rem;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .overlay-stats {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .platform-section {
    padding: 60px 10px;
  }
  
  .platform-title {
    font-size: 1.5rem;
  }
  
  .platform-description p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .feature-card {
    padding: 15px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-icon i {
    font-size: 1.1rem;
  }
  
  .image-overlay {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 15px;
  }
  
  .stat-number {
    font-size: 1.25rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

/* Game Selection Techniques Section */
.game-techniques-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.game-techniques-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, 20, 147, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.techniques-image {
  position: relative;
}

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

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

.techniques-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  animation: pulse 2s ease-in-out infinite;
}

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

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

.techniques-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffa500);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease-in-out infinite;
}

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

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

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

.game-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.game-type-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(138, 43, 226, 0.1));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.game-type-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.05), transparent);
  transform: rotate(45deg);
  transition: all 0.3s ease;
  opacity: 0;
}

.game-type-card:hover::before {
  opacity: 1;
  transform: rotate(45deg) translate(20px, 20px);
}

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

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

.game-type-card:hover .type-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

.game-type-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffd700;
}

.game-type-card p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 15px;
}

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

.feature-tag {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

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

.cta-section .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(45deg, #8a2be2, #9932cc);
  color: #ffffff;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.cta-section .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;
}

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

.cta-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .techniques-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .techniques-title {
    font-size: 2rem;
  }
  
  .techniques-description p {
    text-align: center;
  }
  
  .game-types {
    max-width: 600px;
    margin: 0 auto 40px;
  }
}

@media (max-width: 768px) {
  .game-techniques-section {
    padding: 80px 15px;
  }
  
  .techniques-title {
    font-size: 1.7rem;
    margin-bottom: 25px;
  }
  
  .techniques-description {
    margin-bottom: 35px;
  }
  
  .techniques-description p {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  
  .game-types {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
  }
  
  .game-type-card {
    padding: 20px;
  }
  
  .type-icon {
    width: 50px;
    height: 50px;
  }
  
  .type-icon i {
    font-size: 1.25rem;
  }
  
  .game-type-card h3 {
    font-size: 1.1rem;
  }
  
  .techniques-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .game-techniques-section {
    padding: 60px 10px;
  }
  
  .techniques-title {
    font-size: 1.4rem;
  }
  
  .techniques-description p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .game-type-card {
    padding: 15px;
  }
  
  .type-icon {
    width: 45px;
    height: 45px;
  }
  
  .type-icon i {
    font-size: 1.1rem;
  }
  
  .cta-section .btn {
    padding: 14px 30px;
    font-size: 1rem;
  }
  
  .techniques-badge {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* Promotion & Bonus Strategies Section */
.promotion-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 20, 147, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.promotion-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffa500);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease-in-out infinite;
}

.promotion-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

.promotion-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.promotion-description p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #cccccc;
  text-align: justify;
}

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

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

.bonus-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(138, 43, 226, 0.1));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

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

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

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

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

.bonus-card:hover .bonus-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

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

.bonus-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffd700;
}

.bonus-card p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 15px;
}

.bonus-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(45deg, #8a2be2, #9932cc);
  padding: 8px 15px;
  border-radius: 20px;
  display: inline-block;
}

.welcome .bonus-value {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
}

.promotion-image-section {
  position: relative;
}

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

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

.floating-elements {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-bonus,
.floating-cashback {
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.9), rgba(255, 237, 78, 0.9));
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 25px;
  color: #000000;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}

.floating-cashback {
  background: linear-gradient(45deg, rgba(138, 43, 226, 0.9), rgba(153, 50, 204, 0.9));
  color: #ffffff;
  animation-delay: 1.5s;
}

.strategy-content {
  background: rgba(26, 26, 26, 0.5);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.strategy-description p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #cccccc;
  text-align: justify;
}

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

.bonus-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

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

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

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

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

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

.final-description p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #cccccc;
  text-align: justify;
}

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

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

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

.btn-credit {
  background: linear-gradient(45deg, #8a2be2, #9932cc);
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .promotion-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .promotion-title {
    font-size: 2.2rem;
  }
  
  .bonus-types {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .floating-elements {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .promotion-section {
    padding: 80px 15px;
  }
  
  .promotion-header {
    margin-bottom: 40px;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-subtitle {
    font-size: 1.1rem;
  }
  
  .bonus-types {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .bonus-card {
    padding: 25px 15px;
  }
  
  .bonus-icon {
    width: 60px;
    height: 60px;
  }
  
  .bonus-icon i {
    font-size: 1.5rem;
  }
  
  .strategy-content {
    padding: 30px 20px;
  }
  
  .bonus-steps {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .step-item {
    padding: 15px;
  }
  
  .cta-promotion {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-promotion .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .promotion-section {
    padding: 60px 10px;
  }
  
  .promotion-title {
    font-size: 1.5rem;
  }
  
  .promotion-subtitle {
    font-size: 1rem;
  }
  
  .promotion-description p,
  .strategy-description p,
  .final-description p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .strategy-content {
    padding: 20px 15px;
  }
  
  .bonus-card {
    padding: 20px 10px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .floating-bonus,
  .floating-cashback {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
}

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

.access-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(138, 43, 226, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 20, 147, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 10%, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

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

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

.access-title {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffa500);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease-in-out infinite;
}

.access-description p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #cccccc;
  text-align: justify;
}

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

.access-description a {
  color: #ffd700;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.access-description a:hover {
  color: #ffed4e;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

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

.device-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(138, 43, 226, 0.1));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.device-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.08), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.device-card:hover::before {
  opacity: 1;
  transform: rotate(45deg) translate(30px, 30px);
}

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

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

.device-card:hover .device-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

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

.device-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffd700;
}

.device-card p {
  font-size: 0.95rem;
  color: #cccccc;
  margin-bottom: 15px;
}

.device-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.device-card li {
  font-size: 0.9rem;
  color: #aaaaaa;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.device-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: bold;
}

.access-visual {
  position: relative;
}

.device-showcase {
  position: relative;
  margin-bottom: 30px;
}

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

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

.device-indicators {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.indicator {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 26, 0.9));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

.indicator.tablet {
  animation-delay: 1s;
}

.indicator.desktop {
  animation-delay: 2s;
}

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

.indicator-icon i {
  font-size: 0.8rem;
  color: #000000;
}

.access-benefits {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 12px 18px;
  color: #ffd700;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

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

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

.tech-feature {
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.tech-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
}

.tech-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(45deg, #8a2be2, #9932cc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.tech-feature:hover .tech-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(138, 43, 226, 0.3);
}

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

.tech-feature h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

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

.access-cta {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(138, 43, 226, 0.1));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 50px;
  text-align: center;
  backdrop-filter: blur(10px);
}

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

.cta-content p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .access-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .access-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .access-description p {
    text-align: center;
  }
  
  .device-features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .device-indicators {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
  
  .access-benefits {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .access-section {
    padding: 80px 15px;
  }
  
  .access-title {
    font-size: 1.7rem;
  }
  
  .device-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .tech-feature {
    padding: 30px 20px;
  }
  
  .tech-icon {
    width: 70px;
    height: 70px;
  }
  
  .tech-icon i {
    font-size: 1.7rem;
  }
  
  .access-cta {
    padding: 40px 30px;
  }
  
  .cta-content h3 {
    font-size: 1.7rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .access-section {
    padding: 60px 10px;
  }
  
  .access-title {
    font-size: 1.4rem;
  }
  
  .access-description p,
  .tech-feature p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .device-card {
    padding: 25px 15px;
  }
  
  .device-icon {
    width: 60px;
    height: 60px;
  }
  
  .device-icon i {
    font-size: 1.5rem;
  }
  
  .device-indicators {
    flex-direction: column;
    align-items: center;
  }
  
  .access-benefits {
    flex-direction: column;
    align-items: center;
  }
  
  .access-cta {
    padding: 30px 20px;
  }
  
  .cta-content h3 {
    font-size: 1.4rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
}

/* High-Level Security Section */
.security-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
}

.security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 15%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(138, 43, 226, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.02) 0%, transparent 60%);
  pointer-events: none;
}

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

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

.security-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #00ffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease-in-out infinite;
}

.security-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

.security-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.security-image {
  position: relative;
}

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

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

.security-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.security-badge {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.9));
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

.security-badge.encryption {
  animation-delay: 1s;
  border-color: rgba(0, 255, 255, 0.3);
}

.security-badge.protection {
  animation-delay: 2s;
  border-color: rgba(138, 43, 226, 0.3);
}

.security-badge i {
  color: #ffd700;
  font-size: 0.9rem;
}

.security-description p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #cccccc;
  text-align: justify;
}

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

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

.sec-feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.05), transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.sec-feature-card:hover::before {
  opacity: 1;
  transform: rotate(45deg) translate(25px, 25px);
}

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

.sec-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #00ffff, #0080ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.sec-feature-card:hover .sec-feature-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

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

.sec-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #00ffff;
}

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

.fund-protection {
  background: rgba(26, 26, 26, 0.5);
  border-radius: 25px;
  padding: 50px 40px;
  margin-bottom: 60px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.protection-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  text-align: center;
}

.protection-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #cccccc;
  text-align: justify;
}

.protection-content a {
  color: #ffd700;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.protection-content a:hover {
  color: #ffed4e;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.security-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 25px 15px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 255, 255, 0.1));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

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

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

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  display: block;
  margin-bottom: 5px;
}

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

.infrastructure-security {
  margin-bottom: 60px;
}

.infra-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  text-align: center;
}

.infra-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #cccccc;
  text-align: justify;
  max-width: 900px;
  margin: 0 auto 40px;
}

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

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

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

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

.compliance-icon i {
  font-size: 1.2rem;
  color: #ffffff;
}

.compliance-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffd700;
  margin: 0;
  line-height: 1.4;
}

.kyc-aml-section {
  background: rgba(26, 26, 26, 0.3);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 255, 0.1);
  margin-bottom: 60px;
}

.kyc-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 25px;
  text-align: center;
}

.kyc-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #cccccc;
  text-align: justify;
}

.security-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 255, 255, 0.1));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 30px;
  padding: 60px 40px;
  backdrop-filter: blur(15px);
}

.security-cta-content .cta-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  animation: pulse 2s ease-in-out infinite;
}

.security-cta-content .cta-icon i {
  font-size: 2.5rem;
  color: #000000;
}

.security-cta-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.security-cta-content p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-security {
  background: linear-gradient(45deg, #00ffff, #0080ff);
  color: #000000;
  font-size: 1.2rem;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.3);
}

.btn-security:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 255, 255, 0.4);
  color: #000000;
}

/* Responsive Design */
@media (max-width: 992px) {
  .security-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .security-title {
    font-size: 2rem;
  }
  
  .security-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .compliance-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .security-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .security-section {
    padding: 80px 15px;
  }
  
  .security-header {
    margin-bottom: 60px;
  }
  
  .security-title {
    font-size: 1.7rem;
  }
  
  .security-subtitle {
    font-size: 1.1rem;
  }
  
  .security-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .fund-protection {
    padding: 40px 25px;
  }
  
  .protection-content h3,
  .infra-content h3,
  .kyc-content h3 {
    font-size: 1.5rem;
  }
  
  .security-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .compliance-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .compliance-item {
    padding: 15px;
  }
  
  .kyc-aml-section {
    padding: 30px 20px;
  }
  
  .security-cta {
    padding: 40px 25px;
  }
  
  .security-cta-content h3 {
    font-size: 1.8rem;
  }
  
  .security-cta-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .security-section {
    padding: 60px 10px;
  }
  
  .security-title {
    font-size: 1.4rem;
  }
  
  .security-subtitle {
    font-size: 1rem;
  }
  
  .security-description p,
  .protection-content p,
  .infra-content p,
  .kyc-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .sec-feature-card {
    padding: 20px 15px;
  }
  
  .sec-feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .sec-feature-icon i {
    font-size: 1.25rem;
  }
  
  .security-badges {
    gap: 8px;
  }
  
  .security-badge {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  
  .security-cta-content .cta-icon {
    width: 80px;
    height: 80px;
  }
  
  .security-cta-content .cta-icon i {
    font-size: 2rem;
  }
  
  .security-cta-content h3 {
    font-size: 1.5rem;
  }
  
  .btn-security {
    font-size: 1.1rem;
    padding: 16px 35px;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

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

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding: 80px 0 40px;
}

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

.footer-brand {
  max-width: 400px;
}

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

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease-in-out infinite;
}

.footer-logo-subtitle {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(45deg, #8a2be2, #9932cc);
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 1rem;
}

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

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

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 8px 16px;
  color: #ffd700;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.security-badge:hover {
  background: rgba(255, 215, 0, 0.15);
  transform: translateY(-2px);
}

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

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

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

.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;
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
}

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

.footer-link:hover::before {
  width: 30px;
}

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

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

.footer-contact {
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cccccc;
  font-size: 0.95rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.3);
}

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

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

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.footer-btn::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;
}

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

.footer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
  color: #000000;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding: 30px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.footer-legal {
  flex: 1;
}

.footer-links-bottom {
  display: flex;
  gap: 25px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

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

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

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

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

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888888;
  font-size: 0.9rem;
  margin: 0;
}

.footer-copyright i {
  color: #ffd700;
}

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

.payment-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 15px;
}

.payment-methods {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #cccccc;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.payment-item:hover {
  color: #ffd700;
  transform: translateY(-2px);
}

.payment-item i {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0 30px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-payment {
    text-align: left;
  }
  
  .payment-methods {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 0 25px;
  }
  
  .footer-brand {
    text-align: center;
    margin-bottom: 15px;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-logo-text {
    font-size: 2.2rem;
  }
  
  .footer-security {
    justify-content: center;
  }
  
  .footer-title {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-menu {
    align-items: center;
  }
  
  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .contact-item {
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 250px;
  }
  
  .footer-cta {
    text-align: center;
  }
  
  .footer-links-bottom {
    justify-content: center;
    text-align: center;
  }
  
  .footer-copyright {
    justify-content: center;
    text-align: center;
  }
  
  .payment-methods {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 10px;
  }
  
  .footer-content {
    gap: 25px;
    padding: 40px 0 20px;
  }
  
  .footer-logo-text {
    font-size: 2rem;
  }
  
  .footer-logo-subtitle {
    font-size: 0.9rem;
    padding: 4px 8px;
  }
  
  .footer-description {
    font-size: 0.95rem;
    text-align: center;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
    padding: 8px 0;
  }
  
  .footer-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .footer-bottom {
    padding: 25px 0;
  }
  
  .footer-links-bottom {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
  
  .legal-link {
    font-size: 0.85rem;
  }
  
  .footer-copyright {
    font-size: 0.85rem;
  }
  
  .payment-methods {
    gap: 15px;
  }
  
  .payment-item {
    font-size: 0.75rem;
  }
  
  .payment-item i {
    font-size: 1.3rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.95));
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  padding: 10px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  border-radius: 10px;
  margin: 0 5px;
  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:hover::before {
  left: 100%;
}

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

.sticky-btn i {
  font-size: 1.2rem;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

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

.sticky-btn-login {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(153, 50, 204, 0.9));
  color: #ffffff;
  border: 1px solid rgba(138, 43, 226, 0.5);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, rgba(138, 43, 226, 1), rgba(153, 50, 204, 1));
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.sticky-btn-register {
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.9), rgba(255, 69, 0, 0.9));
  color: #ffffff;
  border: 1px solid rgba(255, 20, 147, 0.5);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, rgba(255, 20, 147, 1), rgba(255, 69, 0, 1));
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.sticky-btn-credit {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.95), rgba(255, 237, 78, 0.95));
  color: #000000;
  border: 1px solid rgba(255, 215, 0, 0.6);
  position: relative;
}

.sticky-btn-credit::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  background-size: 200% 200%;
  border-radius: 12px;
  z-index: -1;
  animation: gradient-shift 2s ease-in-out infinite;
  opacity: 0.8;
}

.sticky-btn-credit:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 1), rgba(255, 237, 78, 1));
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.sticky-btn-credit:hover::after {
  opacity: 1;
}

.sticky-btn-credit i,
.sticky-btn-credit .sticky-btn-text {
  position: relative;
  z-index: 2;
}

/* Pulse animation for credit button */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  }
}

.sticky-btn-credit {
  animation: pulse-glow 2s ease-in-out infinite;
}

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

@media (max-width: 480px) {
  .sticky-buttons {
    padding: 6px;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    margin: 0 2px;
    min-height: 50px;
    border-radius: 8px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn-text {
    font-size: 0.7rem;
    line-height: 1.1;
  }
}

@media (max-width: 375px) {
  .sticky-btn-text {
    font-size: 0.65rem;
  }
  
  .sticky-btn i {
    font-size: 0.95rem;
  }
  
  .sticky-btn {
    min-height: 45px;
  }
}

/* Ensure buttons don't interfere with content */
body {
  padding-bottom: 80px;
}

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

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

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

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

.login-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.login-box {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 50px 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.login-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffa500);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease-in-out infinite;
}

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

.login-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

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

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease-in-out infinite;
}

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

.login-form-container {
  position: relative;
}

.error-message {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.9), rgba(248, 49, 47, 0.9));
  border: 1px solid rgba(220, 53, 69, 0.5);
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 0.9rem;
  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: #ffffff;
  font-size: 1rem;
}

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

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

.form-label {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 8px;
}

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

.input-icon {
  position: absolute;
  left: 15px;
  color: #ffd700;
  font-size: 1rem;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  color: #ffffff;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

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

.form-input.error {
  border-color: rgba(220, 53, 69, 0.6);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.toggle-password {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: #cccccc;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  z-index: 2;
  padding: 5px;
}

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

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

.field-error::before {
  content: '⚠';
  display: inline-block;
}

.login-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  border: none;
  border-radius: 10px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.login-btn::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;
}

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

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

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

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

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

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.form-divider span {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
  color: #cccccc;
  padding: 0 20px;
  font-size: 0.9rem;
  position: relative;
}

.register-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(45deg, rgba(138, 43, 226, 0.8), rgba(153, 50, 204, 0.8));
  border: 1px solid rgba(138, 43, 226, 0.5);
  color: #ffffff;
  border-radius: 10px;
  font-family: 'Prompt', sans-serif;
  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: 10px;
  backdrop-filter: blur(10px);
}

.register-btn:hover {
  background: linear-gradient(45deg, rgba(138, 43, 226, 1), rgba(153, 50, 204, 1));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
  color: #ffffff;
}

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

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

.security-info i {
  color: #28a745;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 80px 15px 30px;
    min-height: calc(100vh - 60px);
  }
  
  .login-box {
    padding: 40px 30px;
    margin: 20px 0;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px 12px 12px 40px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 14px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 70px 10px 20px;
  }
  
  .login-box {
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .login-header {
    margin-bottom: 30px;
  }
  
  .login-logo {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .login-subtitle {
    font-size: 0.85rem;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-input {
    padding: 10px 10px 10px 35px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 0.9rem;
  }
  
  .toggle-password {
    right: 12px;
    font-size: 0.9rem;
  }
  
  .login-btn,
  .register-btn {
    padding: 12px;
    font-size: 0.95rem;
  }
  
  .security-info {
    font-size: 0.8rem;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 10%, rgba(255, 20, 147, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.register-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.register-box {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 50px 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.register-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffa500);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease-in-out infinite;
}

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

.register-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

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

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease-in-out infinite;
}

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

.register-form-container {
  position: relative;
}

.error-message {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.9), rgba(248, 49, 47, 0.9));
  border: 1px solid rgba(220, 53, 69, 0.5);
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 0.9rem;
  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: #ffffff;
  font-size: 1rem;
}

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

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

.form-label {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.input-icon {
  position: absolute;
  left: 15px;
  color: #ffd700;
  font-size: 1rem;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  color: #ffffff;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

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

.form-input.error {
  border-color: rgba(220, 53, 69, 0.6);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.field-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-bottom: 5px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.field-error::before {
  content: '⚠';
  display: inline-block;
}

.input-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888888;
  font-size: 0.8rem;
  padding: 5px 0;
}

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

.register-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  border: none;
  border-radius: 10px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.register-btn::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;
}

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

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

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

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

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

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.form-divider span {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
  color: #cccccc;
  padding: 0 20px;
  font-size: 0.9rem;
  position: relative;
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 2px solid rgba(138, 43, 226, 0.6);
  color: #ffffff;
  border-radius: 10px;
  font-family: 'Prompt', sans-serif;
  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: 10px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.login-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(138, 43, 226, 0.1), rgba(153, 50, 204, 0.1));
  transition: left 0.3s ease;
}

.login-btn:hover::before {
  left: 0;
}

.login-btn:hover {
  border-color: rgba(138, 43, 226, 1);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.2);
}

.register-footer {
  margin-top: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.security-info,
.terms-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #888888;
  font-size: 0.8rem;
  line-height: 1.4;
}

.security-info i {
  color: #28a745;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.terms-info i {
  color: #ffd700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 80px 15px 30px;
    min-height: calc(100vh - 60px);
  }
  
  .register-box {
    padding: 40px 30px;
    margin: 20px 0;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px 12px 12px 40px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 14px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 12px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 70px 10px 20px;
  }
  
  .register-box {
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .register-header {
    margin-bottom: 30px;
  }
  
  .register-logo {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .register-subtitle {
    font-size: 0.85rem;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-input {
    padding: 10px 10px 10px 35px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 0.9rem;
  }
  
  .register-btn,
  .login-btn {
    padding: 12px;
    font-size: 0.95rem;
  }
  
  .security-info,
  .terms-info {
    font-size: 0.75rem;
    text-align: center;
  }
  
  .input-hint {
    font-size: 0.75rem;
  }
}

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

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

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

.hero-content {
  margin: 0 auto;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffa500);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease-in-out infinite;
}

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

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

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 50px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-hero::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;
}

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

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
  color: #000000;
}

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

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

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

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

.promotion-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.8));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.4);
}

.promotion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffa500);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease-in-out infinite;
}

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

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

.promotion-card:hover .promotion-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

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

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

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

.promotion-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(138, 43, 226, 0.1));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  text-align: center;
  min-width: 180px;
}

.highlight-amount {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  display: block;
}

.highlight-text {
  color: #cccccc;
  font-size: 1rem;
  font-weight: 600;
}

.promotion-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.promotion-features li {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.promotion-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: bold;
  font-size: 1.2rem;
}

.promotion-cta {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-promotion {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: linear-gradient(45deg, #8a2be2, #9932cc);
  color: #ffffff;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-promotion::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;
}

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

.btn-promotion:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(138, 43, 226, 0.4);
  color: #ffffff;
}

/* Special Birthday Promotion */
#birthday-promotion .promotion-icon {
  background: linear-gradient(45deg, #ff69b4, #ff1493);
}

#birthday-promotion .promotion-highlight {
  border-color: rgba(255, 20, 147, 0.3);
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(138, 43, 226, 0.1));
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
  
  .promotion-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .promotion-header {
    justify-content: center;
    text-align: center;
  }
  
  .promotion-highlight {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 15px 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .btn-hero {
    padding: 16px 40px;
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 50px 15px;
  }
  
  .promotion-card {
    padding: 40px 25px;
  }
  
  .promotion-header {
    flex-direction: column;
    gap: 15px;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
  }
  
  .promotion-icon i {
    font-size: 1.7rem;
  }
  
  .promotion-title {
    font-size: 1.7rem;
    text-align: center;
  }
  
  .promotion-features li {
    font-size: 1rem;
  }
  
  .highlight-amount {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 10px 50px;
  }
  
  .hero-title {
    font-size: 1.7rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .btn-hero {
    padding: 14px 30px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 40px 10px;
  }
  
  .promotion-card {
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.5rem;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .promotion-features li {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  
  .promotion-highlight {
    padding: 25px 20px;
    min-width: 150px;
  }
  
  .highlight-amount {
    font-size: 2rem;
  }
  
  .btn-promotion {
    padding: 14px 25px;
    font-size: 1rem;
  }
}