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

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

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

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

a:hover {
  color: #ffed4e;
}

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

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

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

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

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

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

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

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

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

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

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

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

.hero-btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
  color: #0a0a0a;
}

.hero-btn-secondary {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.hero-btn-secondary:hover {
  background: #ffd700;
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
}

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

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

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

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

.feature-item span {
  font-size: 0.95rem;
  color: #ffffff;
}

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

.hero-image 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-image:hover img {
  transform: scale(1.02);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  padding: 15px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.2rem;
}

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

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-container {
    padding: 0 30px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-wrap: wrap;
  }
  
  .hero-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-container {
    padding: 0 20px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    justify-content: center;
    margin-bottom: 40px;
  }
  
  .hero-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .feature-item {
    justify-content: center;
    text-align: center;
  }
  
  .floating-card {
    top: 10px;
    right: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 280px;
  }
  
  .feature-item {
    padding: 12px;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
}

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

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

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

.logo a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

.logo-tagline {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.7rem;
  color: #cccccc;
  font-weight: 400;
  margin-top: -2px;
}

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

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

.nav-item {
  position: relative;
}

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

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

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

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

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

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

.mobile-menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

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

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

.mobile-logo .logo-text {
  font-size: 1.5rem;
}

.mobile-logo .logo-tagline {
  font-size: 0.6rem;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #ffd700;
  border-radius: 8px;
  color: #ffd700;
  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.1);
  transform: scale(1.05);
}

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

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

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

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

.mobile-nav-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-top: 20px;
}

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

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

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

.mobile-cta .mobile-nav-link {
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  font-weight: 700;
  text-align: center;
  justify-content: center;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mobile-cta .mobile-nav-link:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.mobile-cta .mobile-nav-link i {
  color: #0a0a0a;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 30px;
  }
  
  .nav-list {
    gap: 20px;
  }
  
  .nav-link {
    font-size: 0.95rem;
    padding: 8px 12px;
  }
  
  .cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
    height: 60px;
  }
  
  body {
    margin-top: 60px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .logo-tagline {
    font-size: 0.6rem;
  }
  
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
    height: 55px;
  }
  
  body {
    margin-top: 55px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-tagline {
    font-size: 0.55rem;
  }
  
  .mobile-menu-toggle {
    width: 35px;
    height: 35px;
  }
  
  .hamburger-line {
    width: 16px;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-nav {
    padding: 15px;
  }
  
  .mobile-nav-link {
    font-size: 1rem;
    padding: 12px;
  }
}

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

.platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

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

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

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

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

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

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

.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-decoration: none;
}

.platform-highlights {
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.highlights-title {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 25px;
  font-weight: 700;
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.highlight-item:last-child {
  border-bottom: none;
}

.highlight-item:hover {
  background: rgba(255, 215, 0, 0.05);
  padding-left: 10px;
  border-radius: 8px;
}

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

.highlight-item span {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
}

.platform-bonus-info {
  margin-bottom: 40px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 186, 0, 0.05) 100%);
  border-radius: 15px;
  border-left: 4px solid #ffd700;
}

.platform-bonus-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
}

.platform-bonus-info strong {
  color: #ffd700;
}

.platform-cta {
  text-align: left;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.platform-btn:hover::before {
  width: 100%;
}

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

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

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

.platform-image:hover img {
  transform: scale(1.02) rotateY(5deg);
}

.platform-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.stat-item i {
  font-size: 1.5rem;
  color: #ffd700;
  min-width: 24px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

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

.stat-label {
  font-size: 0.85rem;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .platform-container {
    padding: 0 30px;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .platform-title {
    font-size: 2.2rem;
  }
  
  .platform-description p {
    font-size: 1.05rem;
  }
  
  .platform-stats {
    position: static;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .platform-section {
    padding: 80px 0;
  }
  
  .platform-container {
    padding: 0 20px;
  }
  
  .platform-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .platform-description {
    margin-bottom: 40px;
  }
  
  .platform-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .platform-highlights {
    padding: 25px 20px;
    margin-bottom: 30px;
  }
  
  .highlights-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .highlight-item {
    padding: 10px 0;
  }
  
  .highlight-item span {
    font-size: 0.95rem;
  }
  
  .platform-bonus-info {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .platform-bonus-info p {
    font-size: 1rem;
  }
  
  .platform-cta {
    text-align: center;
  }
  
  .platform-btn {
    padding: 16px 30px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .platform-stats {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
  }
  
  .stat-item {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .platform-title {
    font-size: 1.6rem;
  }
  
  .platform-highlights {
    padding: 20px 15px;
  }
  
  .highlight-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 15px 0;
  }
  
  .highlight-item i {
    align-self: flex-start;
  }
  
  .platform-bonus-info {
    padding: 15px;
  }
  
  .stat-number {
    font-size: 1.1rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

/* Gameplay Section */
.gameplay-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.gameplay-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700 0%, #ffba00 100%);
  border-radius: 2px;
}

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

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

.gameplay-section-block {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.gameplay-section-block:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-5px);
}

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

.gameplay-section-block p:last-child {
  margin-bottom: 0;
}

.gameplay-section-block strong {
  color: #ffd700;
  font-weight: 700;
}

.gameplay-image {
  position: relative;
  height: fit-content;
  border-radius: 20px;
  overflow: hidden;
}

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

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

.gameplay-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
}

.game-tips {
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  animation: pulse 2s infinite;
}

.game-tips i {
  font-size: 1.1rem;
}

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

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

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

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

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

.strategy-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.1);
}

.strategy-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.strategy-content {
  flex: 1;
}

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

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

.strategy-item > i {
  font-size: 2rem;
  color: rgba(255, 215, 0, 0.3);
  flex-shrink: 0;
}

.additional-info {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 186, 0, 0.05) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.info-text {
  margin-bottom: 30px;
}

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

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

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

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

.info-text a:hover {
  color: #ffed4e;
  text-decoration: none;
}

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

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

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

.gameplay-btn:hover::before {
  width: 100%;
}

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

.gameplay-btn.primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

.gameplay-btn.secondary {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.gameplay-btn.secondary:hover {
  background: #ffd700;
  color: #0a0a0a;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .gameplay-container {
    padding: 0 30px;
  }
  
  .gameplay-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .gameplay-title {
    font-size: 2.2rem;
  }
  
  .strategy-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .additional-info {
    padding: 35px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .gameplay-section {
    padding: 80px 0;
  }
  
  .gameplay-container {
    padding: 0 20px;
  }
  
  .gameplay-header {
    margin-bottom: 50px;
  }
  
  .gameplay-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .gameplay-content {
    margin-bottom: 60px;
  }
  
  .gameplay-section-block {
    padding: 25px 20px;
  }
  
  .gameplay-section-block p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .strategy-title {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
  
  .strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .strategy-item {
    padding: 25px 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .strategy-item > i {
    order: -1;
    font-size: 1.5rem;
  }
  
  .additional-info {
    padding: 30px 20px;
  }
  
  .info-text p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .gameplay-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .game-tips {
    position: static;
    margin: 20px 0;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .gameplay-title {
    font-size: 1.6rem;
  }
  
  .gameplay-section-block {
    padding: 20px 15px;
  }
  
  .strategy-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .strategy-content h4 {
    font-size: 1.1rem;
  }
  
  .strategy-content p {
    font-size: 0.95rem;
  }
  
  .additional-info {
    padding: 25px 15px;
  }
}

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

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

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

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

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

.access-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700 0%, #ffba00 100%);
  border-radius: 2px;
}

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

.access-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

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

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

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

.security-badge,
.devices-badge {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: #ffd700;
  padding: 10px 15px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

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

.access-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.access-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

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

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

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

.wallet-info {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 186, 0, 0.05) 100%);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #ffd700;
}

.wallet-section h4 {
  color: #ffd700;
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wallet-section h4 i {
  font-size: 1.2rem;
}

.wallet-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
}

.wallet-section strong {
  color: #ffd700;
}

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

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

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

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

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

.step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
}

.step-item:hover::before {
  opacity: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step-icon i {
  font-size: 1.8rem;
}

.step-content h4 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.step-content p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

.advanced-features {
  background: rgba(255, 255, 255, 0.05);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  text-align: center;
}

.features-text h3 {
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 30px;
  font-weight: 700;
}

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

.features-text p:last-child {
  margin-bottom: 40px;
}

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

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

.features-text a:hover {
  color: #ffed4e;
  text-decoration: none;
}

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

.access-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.access-btn:hover::before {
  width: 100%;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .access-container {
    padding: 0 30px;
  }
  
  .access-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .access-title {
    font-size: 2.2rem;
  }
  
  .steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .advanced-features {
    padding: 40px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .access-section {
    padding: 80px 0;
  }
  
  .access-container {
    padding: 0 20px;
  }
  
  .access-header {
    margin-bottom: 50px;
  }
  
  .access-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .access-content {
    margin-bottom: 60px;
  }
  
  .access-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 15px;
  }
  
  .access-info {
    padding: 25px 20px;
  }
  
  .access-info p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .wallet-info {
    padding: 25px 20px;
  }
  
  .wallet-section h4 {
    font-size: 1.2rem;
  }
  
  .wallet-section p {
    font-size: 1rem;
  }
  
  .steps-title {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .step-item {
    padding: 25px 20px;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .step-icon i {
    font-size: 1.5rem;
  }
  
  .step-content h4 {
    font-size: 1.1rem;
  }
  
  .step-content p {
    font-size: 0.95rem;
  }
  
  .advanced-features {
    padding: 30px 20px;
  }
  
  .features-text h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
  
  .features-text p {
    font-size: 1rem;
    text-align: center;
  }
  
  .access-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .access-title {
    font-size: 1.6rem;
  }
  
  .access-badges {
    flex-direction: column;
  }
  
  .security-badge,
  .devices-badge {
    font-size: 0.85rem;
    padding: 8px 12px;
  }
  
  .access-info {
    padding: 20px 15px;
  }
  
  .wallet-info {
    padding: 20px 15px;
  }
  
  .step-item {
    padding: 20px 15px;
  }
  
  .advanced-features {
    padding: 25px 15px;
  }
  
  .features-text h3 {
    font-size: 1.3rem;
  }
}

/* PG Soft Section */
.pg-section {
  background: linear-gradient(135deg, #0f172a 0%, #1a202c 50%, #2d3748 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.pg-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700 0%, #ffba00 100%);
  border-radius: 2px;
}

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

.pg-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pg-intro {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.pg-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 25px;
}

.pg-intro p:last-child {
  margin-bottom: 0;
}

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

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

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

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

.feature-card i {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 15px;
  display: block;
}

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

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

.pg-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

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

.pg-image:hover img {
  transform: scale(1.02) rotateY(-5deg);
}

.pg-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
}

.pg-badge {
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

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

.popular-games {
  margin-bottom: 80px;
}

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

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

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

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

.game-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.1);
}

.game-item:hover::before {
  opacity: 1;
}

.game-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

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

.game-info h4 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 700;
}

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

.game-item > i {
  font-size: 2rem;
  color: rgba(255, 215, 0, 0.3);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.pg-details {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 186, 0, 0.05) 100%);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.details-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.details-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 25px;
}

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

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

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

.details-text a:hover {
  color: #ffed4e;
  text-decoration: none;
}

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

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

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

.pg-btn:hover::before {
  width: 100%;
}

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

.pg-btn.primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

.pg-btn.secondary {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.pg-btn.secondary:hover {
  background: #ffd700;
  color: #0a0a0a;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

/* Animations */
@keyframes glow {
  0% {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  }
  100% {
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
  }
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .pg-container {
    padding: 0 30px;
  }
  
  .pg-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .pg-title {
    font-size: 2.2rem;
  }
  
  .pg-features {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .pg-details {
    padding: 40px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .pg-section {
    padding: 80px 0;
  }
  
  .pg-container {
    padding: 0 20px;
  }
  
  .pg-header {
    margin-bottom: 50px;
  }
  
  .pg-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .pg-content {
    margin-bottom: 60px;
  }
  
  .pg-intro {
    padding: 25px 20px;
  }
  
  .pg-intro p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .pg-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
  
  .pg-overlay {
    position: static;
    margin-top: 15px;
    display: flex;
    justify-content: center;
  }
  
  .games-title {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .game-item {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .game-item > i {
    order: -1;
    font-size: 1.5rem;
  }
  
  .pg-details {
    padding: 30px 20px;
  }
  
  .details-text p {
    font-size: 1rem;
  }
  
  .cta-section {
    flex-direction: column;
    align-items: center;
  }
  
  .pg-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .pg-title {
    font-size: 1.6rem;
  }
  
  .pg-intro {
    padding: 20px 15px;
  }
  
  .feature-card {
    padding: 15px;
  }
  
  .feature-card i {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .game-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .game-info h4 {
    font-size: 1.1rem;
  }
  
  .game-info p {
    font-size: 0.95rem;
  }
  
  .pg-details {
    padding: 25px 15px;
  }
}

/* Experience Section */
.experience-section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.experience-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700 0%, #ffba00 100%);
  border-radius: 2px;
}

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

.experience-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

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

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

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

.time-badge,
.unlimited-badge {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: #ffd700;
  padding: 10px 15px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 215, 0, 0.3);
  animation: fadeInLeft 0.8s ease-out;
}

.unlimited-badge {
  animation-delay: 0.2s;
}

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

.experience-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.experience-description {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

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

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

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

.service-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.service-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(5px);
}

.service-item i {
  font-size: 1.8rem;
  color: #ffd700;
  min-width: 30px;
}

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

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

.support-services {
  margin-bottom: 80px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 186, 0, 0.05) 100%);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

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

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

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

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

.channel-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
}

.channel-item:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: scale(1.05);
}

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

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

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

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

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

.security-block {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.security-block:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-5px);
}

.security-block h4 {
  font-size: 1.3rem;
  color: #ffd700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.security-block h4 i {
  font-size: 1.2rem;
}

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

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

.experience-cta {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 186, 0, 0.08) 100%);
  padding: 60px 50px;
  border-radius: 25px;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

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

.cta-content p {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

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

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

.exp-btn:hover::before {
  width: 100%;
}

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

.exp-btn.primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

.exp-btn.secondary {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.exp-btn.secondary:hover {
  background: #ffd700;
  color: #0a0a0a;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .experience-container {
    padding: 0 30px;
  }
  
  .experience-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .experience-title {
    font-size: 2.2rem;
  }
  
  .support-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .support-channels {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .security-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .support-services {
    padding: 40px;
  }
  
  .experience-cta {
    padding: 50px 40px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .experience-section {
    padding: 80px 0;
  }
  
  .experience-container {
    padding: 0 20px;
  }
  
  .experience-header {
    margin-bottom: 50px;
  }
  
  .experience-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .experience-content {
    margin-bottom: 60px;
  }
  
  .experience-overlay {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 15px;
  }
  
  .experience-description {
    padding: 25px 20px;
  }
  
  .experience-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .service-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .support-services {
    padding: 30px 20px;
  }
  
  .support-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  .support-channels {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .security-title {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
  
  .security-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .security-block {
    padding: 25px 20px;
  }
  
  .security-block h4 {
    font-size: 1.2rem;
  }
  
  .security-block p {
    font-size: 0.95rem;
  }
  
  .experience-cta {
    padding: 40px 25px;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .exp-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .experience-title {
    font-size: 1.6rem;
  }
  
  .experience-overlay {
    flex-direction: column;
  }
  
  .time-badge,
  .unlimited-badge {
    font-size: 0.85rem;
    padding: 8px 12px;
  }
  
  .experience-description {
    padding: 20px 15px;
  }
  
  .service-item {
    padding: 15px;
  }
  
  .support-services {
    padding: 25px 15px;
  }
  
  .support-channels {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .channel-item {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .security-block {
    padding: 20px 15px;
  }
  
  .experience-cta {
    padding: 30px 20px;
  }
  
  .cta-content h3 {
    font-size: 1.3rem;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

/* Footer Brand Section */
.footer-brand {
  padding-right: 20px;
}

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

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

.footer-logo-tagline {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.85rem;
  color: #cccccc;
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

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

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

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

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

/* Footer Links Sections */
.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  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, #ffba00);
  border-radius: 1px;
}

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

.footer-links li {
  transition: transform 0.2s ease;
}

.footer-links li:hover {
  transform: translateX(5px);
}

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

.footer-links a:hover {
  color: #ffd700;
}

.footer-links a i {
  font-size: 0.9rem;
  min-width: 16px;
  opacity: 0.7;
}

.footer-links a:hover i {
  opacity: 1;
  color: #ffd700;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(45deg, #ffd700, #ffba00);
  transition: width 0.3s ease;
  border-radius: 50%;
}

.social-link:hover {
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.social-link:hover::before {
  width: 100%;
}

.social-link i {
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

/* Payment Methods */
.payment-methods {
  margin-top: 20px;
}

.payment-methods h5 {
  font-size: 1rem;
  color: #ffd700;
  margin-bottom: 12px;
  font-weight: 600;
}

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

.payment-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #cccccc;
}

.payment-icon i {
  color: #ffd700;
  font-size: 1rem;
  min-width: 16px;
}

/* Footer Bottom */
.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: center;
  gap: 30px;
}

.footer-copyright {
  flex: 1;
}

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

.footer-copyright p:first-child {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-warning {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem !important;
  opacity: 0.8;
}

.footer-warning i {
  color: #ffd700;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

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

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

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

.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  color: #0a0a0a;
}

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

.footer-btn i {
  font-size: 1rem;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-section:first-child {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }
  
  .footer-brand {
    padding-right: 0;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .main-footer {
    padding-top: 50px;
  }
  
  .footer-container {
    padding: 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-section:first-child {
    grid-column: auto;
    margin-bottom: 10px;
  }
  
  .footer-logo-text {
    font-size: 1.7rem;
  }
  
  .footer-logo-tagline {
    font-size: 0.8rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .social-links {
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .payment-icons {
    align-items: center;
    text-align: center;
  }
  
  .footer-bottom {
    padding: 25px 0;
  }
  
  .footer-warning {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
  
  .footer-warning i {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding-top: 40px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  .footer-logo-text {
    font-size: 1.5rem;
  }
  
  .footer-logo-tagline {
    font-size: 0.75rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .social-link i {
    font-size: 1rem;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
  
  .footer-warning {
    font-size: 0.8rem !important;
  }
  
  .footer-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }
}

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

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

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

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 186, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.sticky-btn span {
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.sticky-btn:hover,
.sticky-btn:active {
  color: #ffd700;
  transform: translateY(-2px);
}

.sticky-btn:hover i,
.sticky-btn:active i {
  color: #ffd700;
  transform: scale(1.1);
}

/* Button 1 - Login */
.sticky-btn-1 {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
}

.sticky-btn-1:hover,
.sticky-btn-1:active {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.2) 0%, rgba(0, 123, 255, 0.1) 100%);
}

/* Button 2 - Register */
.sticky-btn-2 {
  background: linear-gradient(135deg, rgba(40, 199, 111, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
}

.sticky-btn-2:hover,
.sticky-btn-2:active {
  background: linear-gradient(135deg, rgba(40, 199, 111, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
}

/* Button 3 - Free Credit */
.sticky-btn-3 {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 186, 0, 0.08) 100%);
  position: relative;
}

.sticky-btn-3::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, #ff4757, #ff3742);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.sticky-btn-3:hover,
.sticky-btn-3:active {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 186, 0, 0.15) 100%);
}

/* Pulse animation for free credit button */
@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

/* Add bottom padding to body to prevent content from being hidden behind sticky buttons */
body {
  padding-bottom: 60px;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.8rem;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .sticky-buttons {
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.2);
  }
  
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.75rem;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 3px;
  }
  
  .sticky-btn span {
    font-size: 0.65rem;
  }
  
  body {
    padding-bottom: 55px;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 6px 3px;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 0.6rem;
    line-height: 1.1;
  }
  
  .sticky-btn-3::after {
    width: 6px;
    height: 6px;
    top: 1px;
    right: 1px;
  }
  
  body {
    padding-bottom: 50px;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .sticky-btn span {
    font-size: 0.55rem;
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .sticky-btn-1 span {
    max-width: 60px;
  }
  
  .sticky-btn-2 span {
    max-width: 65px;
  }
  
  .sticky-btn-3 span {
    max-width: 70px;
  }
}

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

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

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

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

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

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

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

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

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.error-message {
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.1) 0%, rgba(255, 55, 66, 0.05) 100%);
  border: 1px solid rgba(255, 71, 87, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: shake 0.5s ease-in-out;
}

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

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

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

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

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

.form-label i {
  color: #ffd700;
  font-size: 0.9rem;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 15px;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
  font-family: 'Sarabun', sans-serif;
}

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

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

.form-input:valid {
  border-color: rgba(40, 199, 111, 0.5);
}

.form-input.error {
  border-color: #ff4757;
  background: rgba(255, 71, 87, 0.05);
}

.password-wrapper {
  position: relative;
}

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

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

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

.input-error {
  color: #ff8a94;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  min-height: 18px;
}

.input-error:before {
  content: '⚠';
  color: #ff4757;
}

.login-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

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

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

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

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

.login-btn i {
  font-size: 1.1rem;
}

.btn-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-btn {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 12px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.register-btn:hover {
  background: #ffd700;
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.register-btn i {
  font-size: 1rem;
}

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

.security-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #cccccc;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

.login-note i {
  color: #ffd700;
  font-size: 0.8rem;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .login-section {
    padding: 30px 15px;
  }
  
  .login-card {
    padding: 40px;
    max-width: 420px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 15px;
    min-height: calc(100vh - 60px);
  }
  
  .login-card {
    padding: 30px 25px;
    max-width: 100%;
    margin: 0 10px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .login-btn {
    padding: 14px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px;
    font-size: 0.95rem;
  }
  
  .security-badges {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .security-badge {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
  
  .login-note {
    font-size: 0.8rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 15px 10px;
    min-height: calc(100vh - 50px);
  }
  
  .login-card {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .login-logo {
    margin-bottom: 30px;
  }
  
  .logo-image {
    width: 50px;
    height: 50px;
  }
  
  .login-title {
    font-size: 1.2rem;
  }
  
  .login-subtitle {
    font-size: 0.85rem;
  }
  
  .form-group {
    gap: 6px;
  }
  
  .form-label {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 10px;
  }
  
  .login-btn {
    padding: 12px;
  }
  
  .register-btn {
    padding: 10px;
  }
  
  .login-footer {
    margin-top: 25px;
  }
  
  .security-badge {
    font-size: 0.75rem;
    padding: 5px 8px;
  }
  
  .login-note {
    font-size: 0.75rem;
  }
}

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

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

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

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

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

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

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

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

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.register-subtitle {
  font-size: 0.95rem;
  color: #cccccc;
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
}

.success-message {
  background: linear-gradient(135deg, rgba(40, 199, 111, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  border: 1px solid rgba(40, 199, 111, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn 0.5s ease-in-out;
}

.success-message i {
  color: #28c76f;
  font-size: 1.1rem;
}

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

.error-message {
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.1) 0%, rgba(255, 55, 66, 0.05) 100%);
  border: 1px solid rgba(255, 71, 87, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: shake 0.5s ease-in-out;
}

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

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

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

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

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

.form-label i {
  color: #ffd700;
  font-size: 0.9rem;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 15px;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
  font-family: 'Sarabun', sans-serif;
}

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

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

.form-input:valid {
  border-color: rgba(40, 199, 111, 0.5);
}

.form-input.error {
  border-color: #ff4757;
  background: rgba(255, 71, 87, 0.05);
}

.input-error {
  color: #ff8a94;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  min-height: 18px;
}

.input-error:before {
  content: '⚠';
  color: #ff4757;
}

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

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

.register-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

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

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

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

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

.register-btn i {
  font-size: 1.1rem;
}

.btn-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-btn {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 12px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.login-btn:hover {
  background: #ffd700;
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.login-btn i {
  font-size: 1rem;
}

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

.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #ffffff;
  background: rgba(255, 215, 0, 0.1);
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

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

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

.terms-notice {
  font-size: 0.8rem;
  color: #888888;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin: 0;
  line-height: 1.4;
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}

.terms-notice i {
  color: #ffd700;
  font-size: 0.75rem;
  margin-top: 2px;
  flex-shrink: 0;
}

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .register-section {
    padding: 30px 15px;
  }
  
  .register-card {
    padding: 40px;
    max-width: 420px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 15px;
    min-height: calc(100vh - 60px);
  }
  
  .register-card {
    padding: 30px 25px;
    max-width: 100%;
    margin: 0 10px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .register-btn {
    padding: 14px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 12px;
    font-size: 0.95rem;
  }
  
  .features-list {
    gap: 10px;
  }
  
  .feature-item {
    font-size: 0.85rem;
    padding: 8px 12px;
  }
  
  .terms-notice {
    font-size: 0.75rem;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 15px 10px;
    min-height: calc(100vh - 50px);
  }
  
  .register-card {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .register-logo {
    margin-bottom: 30px;
  }
  
  .logo-image {
    width: 50px;
    height: 50px;
  }
  
  .register-title {
    font-size: 1.2rem;
  }
  
  .register-subtitle {
    font-size: 0.85rem;
  }
  
  .form-group {
    gap: 6px;
  }
  
  .form-label {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 10px;
  }
  
  .register-btn {
    padding: 12px;
  }
  
  .login-btn {
    padding: 10px;
  }
  
  .register-footer {
    margin-top: 25px;
  }
  
  .feature-item {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
  
  .terms-notice {
    font-size: 0.7rem;
    padding: 10px;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out;
}

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

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.4s both;
  position: relative;
  overflow: hidden;
}

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

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

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

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

/* Promotion Sections */
.promotion-section {
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  padding: 80px 0;
  position: relative;
}

.promotion-section:nth-child(even) {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
}

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

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

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

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

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

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 50px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

.promotion-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.promotion-icon i {
  font-size: 2.5rem;
  color: #0a0a0a;
}

.promotion-details {
  flex: 1;
  position: relative;
  z-index: 1;
}

.promotion-list {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
}

.promotion-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
}

.promotion-list li:last-child {
  margin-bottom: 0;
}

.promotion-list li i {
  color: #28c76f;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.promotion-code {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.code-label {
  color: #cccccc;
  font-weight: 600;
}

.code-value {
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.bonus-highlight {
  background: linear-gradient(135deg, rgba(40, 199, 111, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  border: 1px solid rgba(40, 199, 111, 0.3);
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 25px;
  text-align: center;
}

.bonus-text {
  display: block;
  color: #28c76f;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.bonus-amount {
  display: block;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
}

.vip-badge {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.vip-badge i {
  color: #ffc107;
  font-size: 1.2rem;
}

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

.referral-reward {
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, rgba(123, 31, 162, 0.05) 100%);
  border: 1px solid rgba(156, 39, 176, 0.3);
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 25px;
  text-align: center;
}

.reward-text {
  display: block;
  color: #ab47bc;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.reward-amount {
  display: block;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
}

.promotion-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

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

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

/* Summary Section */
.summary-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.summary-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.summary-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.summary-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  position: relative;
}

.summary-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700 0%, #ffba00 100%);
  border-radius: 2px;
}

.summary-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 40px;
}

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

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

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

.security-item i {
  font-size: 2rem;
  color: #ffd700;
}

.security-item span {
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}

.summary-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffba00 100%);
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-container,
  .promotion-container,
  .summary-container {
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
  
  .promotion-card {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .promotion-icon {
    margin: 0 auto;
  }
  
  .security-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .promotion-section,
  .summary-section {
    padding: 60px 0;
  }
  
  .hero-container,
  .promotion-container,
  .summary-container {
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-cta-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .promotion-header {
    margin-bottom: 40px;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .promotion-card {
    padding: 30px 25px;
  }
  
  .promotion-icon {
    width: 80px;
    height: 80px;
  }
  
  .promotion-icon i {
    font-size: 2rem;
  }
  
  .promotion-list li {
    font-size: 1rem;
  }
  
  .promotion-btn {
    padding: 12px 24px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .summary-title {
    font-size: 2rem;
  }
  
  .summary-text {
    font-size: 1.1rem;
  }
  
  .security-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .security-item {
    padding: 20px 15px;
  }
  
  .summary-cta-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .promotion-card {
    padding: 25px 20px;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
  }
  
  .promotion-icon i {
    font-size: 1.8rem;
  }
  
  .promotion-list li {
    font-size: 0.95rem;
  }
  
  .promotion-code,
  .bonus-highlight,
  .vip-badge,
  .referral-reward {
    padding: 12px 15px;
  }
  
  .summary-title {
    font-size: 1.6rem;
  }
  
  .summary-text {
    font-size: 1rem;
  }
  
  .security-item {
    padding: 15px 10px;
  }
  
  .security-item i {
    font-size: 1.5rem;
  }
  
  .security-item span {
    font-size: 0.9rem;
  }
  
  .summary-cta-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}