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

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* Button Base Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

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

.btn-secondary {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #ffffff;
  border: 2px solid #ff6b00;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 80px 0;
  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, 107, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b00, #ffa500, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

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

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

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

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .feature-item {
    font-size: 0.9rem;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border-bottom: 2px solid rgba(255, 107, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.logo-link {
  text-decoration: none;
  color: inherit;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b00, #ffa500, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

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

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 40px;
}

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

.nav-item {
  position: relative;
}

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

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

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

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

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

.btn-cta {
  background: linear-gradient(135deg, #ff6b00, #ff8c42);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  border: none;
  cursor: pointer;
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

.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, -7px);
  background: #ff6b00;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

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

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

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

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

.mobile-nav {
  flex: 1;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.mobile-nav-item {
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav-item {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-item:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-item:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-nav-item:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu-overlay.active .mobile-nav-item:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 12px;
  display: block;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

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

.mobile-cta-item {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 107, 0, 0.2);
  text-align: center;
}

.mobile-cta-btn {
  width: 100%;
  max-width: 300px;
  justify-content: center;
  font-size: 1.1rem;
  padding: 15px 25px;
}

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

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

@media (max-width: 480px) {
  .header-container {
    height: 65px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-menu-toggle {
    width: 25px;
    height: 20px;
  }
  
  .hamburger-line {
    height: 2px;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-nav {
    padding: 20px 15px;
  }
  
  .mobile-nav-link {
    font-size: 1.2rem;
    padding: 12px 15px;
  }
}

/* Platform Section */
.platform-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 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 30% 50%, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
  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.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

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

.platform-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ff6b00, #ffa500, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.intro-text {
  font-size: 1.15rem !important;
  color: #ffffff !important;
}

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

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

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

.platform-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 0, 0.1);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(26, 26, 26, 0.8);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.2);
}

.highlight-item i {
  color: #ff6b00;
  font-size: 2rem;
  min-width: 40px;
}

.highlight-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.highlight-content p {
  font-size: 0.95rem;
  color: #cccccc;
  margin: 0;
}

.platform-cta {
  display: flex;
  justify-content: flex-start;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .platform-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .platform-title {
    font-size: 2.2rem;
  }
  
  .platform-highlights {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  
  .platform-cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 80px 0;
  }
  
  .platform-container {
    padding: 0 15px;
  }
  
  .platform-title {
    font-size: 1.8rem;
  }
  
  .platform-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .intro-text {
    font-size: 1.05rem !important;
  }
  
  .platform-highlights {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  
  .highlight-item {
    padding: 12px;
  }
  
  .highlight-item i {
    font-size: 1.5rem;
  }
  
  .highlight-content h3 {
    font-size: 1rem;
  }
  
  .highlight-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .platform-section {
    padding: 60px 0;
  }
  
  .platform-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  
  .platform-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .intro-text {
    font-size: 1rem !important;
  }
  
  .platform-highlights {
    padding: 15px;
    gap: 15px;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    padding: 15px 10px;
  }
  
  .highlight-item i {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
  }
}

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

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

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

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

.lottery-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ff6b00, #ffa500, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lottery-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.lottery-subtitle strong {
  color: #ff6b00;
  font-weight: 700;
}

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

.lottery-description {
  max-width: 100%;
}

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

.lottery-description strong {
  color: #ff6b00;
  font-weight: 700;
}

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

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

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

.lottery-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.lottery-category {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 0.9));
  border-radius: 20px;
  padding: 35px;
  border: 2px solid rgba(255, 107, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lottery-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), transparent);
  pointer-events: none;
}

.lottery-category:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.1);
}

.lottery-category.domestic {
  border-left: 4px solid #ff6b00;
}

.lottery-category.stocks {
  border-left: 4px solid #ffa500;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.category-title i {
  color: #ff6b00;
  font-size: 1.8rem;
}

.lottery-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.lottery-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
  transition: padding-left 0.3s ease;
}

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

.lottery-item:hover {
  padding-left: 10px;
}

.lottery-item i {
  color: #ff6b00;
  font-size: 1.3rem;
  margin-top: 3px;
  min-width: 20px;
}

.item-content {
  flex: 1;
}

.item-content strong {
  color: #ffffff;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .lottery-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .lottery-title {
    font-size: 2.2rem;
  }
  
  .lottery-subtitle {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .lottery-types-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .lottery-section {
    padding: 80px 0;
  }
  
  .lottery-container {
    padding: 0 15px;
  }
  
  .lottery-title {
    font-size: 1.8rem;
  }
  
  .lottery-subtitle {
    font-size: 1rem;
    text-align: left;
  }
  
  .lottery-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .lottery-types-grid {
    gap: 25px;
  }
  
  .lottery-category {
    padding: 25px;
  }
  
  .category-title {
    font-size: 1.3rem;
  }
  
  .category-title i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .lottery-section {
    padding: 60px 0;
  }
  
  .lottery-header {
    margin-bottom: 40px;
  }
  
  .lottery-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  
  .lottery-subtitle {
    font-size: 0.95rem;
  }
  
  .lottery-content {
    margin-bottom: 50px;
  }
  
  .lottery-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .lottery-category {
    padding: 20px;
  }
  
  .category-title {
    font-size: 1.2rem;
    gap: 10px;
  }
  
  .lottery-item {
    gap: 12px;
    padding: 12px 0;
  }
  
  .lottery-item i {
    font-size: 1.1rem;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
  }
}

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

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

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

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

.security-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ff6b00, #ffa500, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.security-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.security-subtitle strong {
  color: #ff6b00;
  font-weight: 700;
}

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

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

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

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

.security-description strong {
  color: #ff6b00;
  font-weight: 700;
}

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

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

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

.feature-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 0.9));
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 2px solid rgba(255, 107, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), transparent);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.15);
}

.feature-card i {
  color: #ff6b00;
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .security-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .security-title {
    font-size: 2.2rem;
  }
  
  .security-subtitle {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .security-features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .security-section {
    padding: 80px 0;
  }
  
  .security-container {
    padding: 0 15px;
  }
  
  .security-header {
    margin-bottom: 60px;
  }
  
  .security-title {
    font-size: 1.8rem;
  }
  
  .security-subtitle {
    font-size: 1rem;
    text-align: left;
  }
  
  .security-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .security-features {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px;
  }
  
  .feature-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .feature-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .security-section {
    padding: 60px 0;
  }
  
  .security-header {
    margin-bottom: 40px;
  }
  
  .security-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  
  .security-subtitle {
    font-size: 0.95rem;
  }
  
  .security-content {
    margin-bottom: 50px;
  }
  
  .security-description {
    margin-bottom: 30px;
  }
  
  .security-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .security-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-card i {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

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

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

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

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

.login-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ff6b00, #ffa500, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.login-subtitle strong {
  color: #ff6b00;
  font-weight: 700;
}

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

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

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

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

.login-description strong {
  color: #ff6b00;
  font-weight: 700;
}

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

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

.login-steps {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 0.9));
  border-radius: 20px;
  padding: 40px;
  border: 2px solid rgba(255, 107, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.login-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), transparent);
  pointer-events: none;
}

.steps-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.steps-title i {
  color: #ff6b00;
  font-size: 1.8rem;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

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

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

.step-item:hover {
  padding-left: 15px;
}

.step-item i {
  color: #ff6b00;
  font-size: 1.3rem;
  min-width: 25px;
}

.step-item span {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.5;
}

.login-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

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

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

.login-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 0.9));
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateX(10px);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.15);
}

.feature-box i {
  color: #ff6b00;
  font-size: 2rem;
  min-width: 40px;
}

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

.feature-text p {
  font-size: 0.95rem;
  color: #cccccc;
  margin: 0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .login-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .login-title {
    font-size: 2.2rem;
  }
  
  .login-subtitle {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .login-features {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .feature-box {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .login-section {
    padding: 80px 0;
  }
  
  .login-container {
    padding: 0 15px;
  }
  
  .login-header {
    margin-bottom: 60px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 1rem;
    text-align: left;
  }
  
  .login-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .login-steps {
    padding: 30px;
  }
  
  .steps-title {
    font-size: 1.3rem;
    gap: 12px;
  }
  
  .step-item {
    gap: 15px;
    padding: 12px 0;
  }
  
  .step-item i {
    font-size: 1.2rem;
  }
  
  .step-item span {
    font-size: 1rem;
  }
  
  .login-features {
    flex-direction: column;
  }
  
  .feature-box {
    padding: 15px;
  }
  
  .feature-box i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 60px 0;
  }
  
  .login-header {
    margin-bottom: 40px;
  }
  
  .login-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .login-content {
    margin-bottom: 50px;
  }
  
  .login-description {
    margin-bottom: 30px;
  }
  
  .login-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .login-steps {
    padding: 20px;
  }
  
  .steps-title {
    font-size: 1.2rem;
    gap: 10px;
  }
  
  .steps-title i {
    font-size: 1.5rem;
  }
  
  .step-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0;
  }
  
  .step-item i {
    font-size: 1.1rem;
  }
  
  .step-item span {
    font-size: 0.95rem;
  }
  
  .feature-box {
    padding: 12px;
  }
  
  .feature-text h4 {
    font-size: 1rem;
  }
  
  .feature-text p {
    font-size: 0.9rem;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
  }
}

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

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

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

.reviews-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ff6b00, #ffa500, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #e0e0e0;
  max-width: 950px;
  margin: 0 auto;
  text-align: justify;
}

.reviews-subtitle strong {
  color: #ff6b00;
  font-weight: 700;
}

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

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

.reviews-description {
  margin-bottom: 30px;
}

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

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

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

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

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

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

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

.reviews-highlights {
  margin-bottom: 60px;
}

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

.highlight-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 0.9));
  padding: 30px;
  border-radius: 15px;
  border: 2px solid rgba(255, 107, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), transparent);
  pointer-events: none;
}

.highlight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.15);
}

.highlight-card.positive {
  border-left: 4px solid #ff6b00;
}

.highlight-card.premium {
  border-left: 4px solid #ffa500;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(15, 15, 15, 0.9));
}

.highlight-card.premium::before {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), transparent);
}

.highlight-card i {
  color: #ff6b00;
  font-size: 2.5rem;
  min-width: 50px;
  position: relative;
  z-index: 2;
}

.highlight-card.premium i {
  color: #ffa500;
}

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

.card-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .reviews-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .reviews-title {
    font-size: 2.2rem;
  }
  
  .reviews-subtitle {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .highlight-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 80px 0;
  }
  
  .reviews-container {
    padding: 0 15px;
  }
  
  .reviews-header {
    margin-bottom: 60px;
  }
  
  .reviews-title {
    font-size: 1.8rem;
  }
  
  .reviews-subtitle {
    font-size: 1rem;
    text-align: left;
  }
  
  .reviews-content {
    margin-bottom: 60px;
  }
  
  .reviews-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .highlight-card {
    padding: 25px;
  }
  
  .highlight-card i {
    font-size: 2rem;
  }
  
  .card-content h3 {
    font-size: 1.1rem;
  }
  
  .card-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .reviews-section {
    padding: 60px 0;
  }
  
  .reviews-header {
    margin-bottom: 40px;
  }
  
  .reviews-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  
  .reviews-subtitle {
    font-size: 0.95rem;
  }
  
  .reviews-content {
    margin-bottom: 40px;
  }
  
  .reviews-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .reviews-highlights {
    margin-bottom: 40px;
  }
  
  .highlight-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 15px;
  }
  
  .highlight-card i {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
  
  .card-content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  
  .card-content p {
    font-size: 0.9rem;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

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

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 107, 0, 0.05) 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 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

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

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

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

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

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

.contact-item i {
  color: #ff6b00;
  font-size: 1.1rem;
  min-width: 20px;
}

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

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

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

.footer-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 5px 0;
  position: relative;
}

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

.footer-link:hover {
  color: #ff6b00;
  padding-left: 10px;
}

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

.feature-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(26, 26, 26, 0.5);
  padding: 12px 15px;
  border-radius: 8px;
  border-left: 3px solid #ff6b00;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 107, 0, 0.1);
  transform: translateX(5px);
}

.feature-item i {
  color: #ff6b00;
  font-size: 1.1rem;
  min-width: 16px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 107, 0, 0.2);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

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

.disclaimer-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffa500;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.disclaimer-text i {
  color: #ffa500;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
  }
  
  .footer-games {
    grid-column: 1 / -1;
    margin-top: 20px;
  }
  
  .footer-games .footer-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px 20px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 25px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-logo-text {
    font-size: 1.7rem;
  }
  
  .footer-description {
    max-width: 600px;
    margin: 0 auto 25px;
  }
  
  .footer-contact {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
  
  .footer-games {
    grid-column: 1 / -1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-brand {
    margin-bottom: 15px;
  }
  
  .footer-logo-text {
    font-size: 1.5rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .footer-contact {
    flex-direction: column;
    gap: 12px;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .footer-title {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-list {
    text-align: center;
  }
  
  .footer-games .footer-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
  }
  
  .feature-items {
    gap: 10px;
  }
  
  .feature-item {
    padding: 10px 12px;
    justify-content: center;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
  
  .footer-copyright p {
    font-size: 0.9rem;
  }
  
  .disclaimer-text {
    font-size: 0.85rem;
    text-align: center;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255, 107, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.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, 107, 0, 0.1), transparent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-btn:hover::before,
.sticky-btn:active::before {
  transform: translateY(0);
}

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

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

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

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

/* Individual Button Styles */
.login-btn:hover,
.login-btn:active {
  background: rgba(255, 107, 0, 0.1);
}

.register-btn:hover,
.register-btn:active {
  background: rgba(255, 140, 66, 0.1);
}

.credit-btn {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 140, 66, 0.05));
}

.credit-btn:hover,
.credit-btn:active {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 140, 66, 0.1));
  color: #ffa500;
}

.credit-btn i {
  color: #ffa500;
}

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

@media (max-width: 480px) {
  .sticky-buttons {
    border-top-width: 1px;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.8rem;
    min-height: 60px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
  }
}

@media (max-width: 360px) {
  .sticky-btn {
    padding: 6px 2px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
  }
  
  .sticky-btn span {
    font-size: 0.65rem;
  }
}

/* Add bottom padding to body to prevent content overlap */
body {
  padding-bottom: 80px;
}

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

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

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

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

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

.login-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.95));
  border-radius: 20px;
  padding: 40px;
  border: 2px solid rgba(255, 107, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), transparent);
  pointer-events: none;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

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

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

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

.error-container {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: errorSlideIn 0.3s ease;
}

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

.error-message span {
  color: #dc3545;
  font-weight: 600;
  font-size: 0.95rem;
}

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

.login-form {
  position: relative;
  z-index: 2;
}

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

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

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

.input-icon {
  position: absolute;
  left: 15px;
  color: #ff6b00;
  font-size: 1.1rem;
  z-index: 3;
}

.form-input {
  width: 100%;
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid rgba(255, 107, 0, 0.2);
  border-radius: 12px;
  padding: 15px 15px 15px 50px;
  color: #ffffff;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: #ff6b00;
  background: rgba(26, 26, 26, 0.9);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
}

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

.form-input.error {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

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

.password-toggle {
  position: absolute;
  right: 15px;
  background: transparent;
  border: none;
  color: #999999;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  z-index: 3;
}

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

.field-error {
  display: block;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 5px;
  min-height: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.login-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #ff6b00, #ff8c42);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 16px 20px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  margin-bottom: 25px;
}

.login-submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #e55a00, #ff7a35);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

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

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

.btn-loader {
  display: none;
}

.login-submit-btn.loading .btn-text,
.login-submit-btn.loading i:not(.fa-spin) {
  display: none;
}

.login-submit-btn.loading .btn-loader {
  display: block;
}

.login-footer {
  text-align: center;
  position: relative;
  z-index: 2;
}

.register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 15, 15, 0.8));
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 107, 0, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.register-btn:hover {
  background: linear-gradient(135deg, #ff6b00, #ff8c42);
  border-color: #ff6b00;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

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

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

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

.forgot-link:hover,
.support-link:hover {
  color: #ff6b00;
}

.separator {
  color: #666666;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-page-section {
    padding: 20px 15px;
  }
  
  .login-container {
    max-width: 400px;
  }
  
  .login-card {
    padding: 30px;
    border-radius: 16px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.7rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 14px 14px 14px 45px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  .login-submit-btn {
    padding: 15px 18px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .login-page-section {
    padding: 15px 10px;
  }
  
  .login-container {
    max-width: 350px;
  }
  
  .login-card {
    padding: 25px;
    border-radius: 14px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-input {
    padding: 12px 12px 12px 40px;
  }
  
  .input-icon {
    left: 12px;
    font-size: 1rem;
  }
  
  .password-toggle {
    right: 12px;
    font-size: 1rem;
  }
  
  .login-submit-btn {
    padding: 14px 16px;
    font-size: 0.95rem;
    gap: 8px;
  }
  
  .register-btn {
    padding: 12px 16px;
    font-size: 0.95rem;
    gap: 8px;
  }
  
  .login-links {
    gap: 12px;
  }
  
  .forgot-link,
  .support-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .login-container {
    max-width: 320px;
  }
  
  .login-card {
    padding: 20px;
  }
  
  .logo-image {
    width: 50px;
    height: 50px;
  }
  
  .login-title {
    font-size: 1.3rem;
  }
}

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

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

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

.register-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.95));
  border-radius: 20px;
  padding: 40px;
  border: 2px solid rgba(255, 107, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), transparent);
  pointer-events: none;
}

.register-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

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

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

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

.error-container {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: errorSlideIn 0.3s ease;
}

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

.error-message span {
  color: #dc3545;
  font-weight: 600;
  font-size: 0.95rem;
}

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

.register-form {
  position: relative;
  z-index: 2;
}

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

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

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

.input-icon {
  position: absolute;
  left: 15px;
  color: #ff6b00;
  font-size: 1.1rem;
  z-index: 3;
}

.form-input {
  width: 100%;
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid rgba(255, 107, 0, 0.2);
  border-radius: 12px;
  padding: 15px 15px 15px 50px;
  color: #ffffff;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: #ff6b00;
  background: rgba(26, 26, 26, 0.9);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
}

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

.form-input.error {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

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

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

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
  padding-left: 0;
}

.checkbox-wrapper input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

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

.checkmark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked ~ .checkmark {
  background: #ff6b00;
  border-color: #ff6b00;
}

.checkbox-wrapper input[type="checkbox"]:checked ~ .checkmark::after {
  opacity: 1;
}

.checkbox-wrapper:hover .checkmark {
  border-color: #ff6b00;
}

.checkbox-text {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.4;
  flex: 1;
}

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

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

.field-error {
  display: block;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 5px;
  min-height: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.register-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #ff6b00, #ff8c42);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 16px 20px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  margin-bottom: 25px;
}

.register-submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #e55a00, #ff7a35);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

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

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

.btn-loader {
  display: none;
}

.register-submit-btn.loading .btn-text,
.register-submit-btn.loading i:not(.fa-spin) {
  display: none;
}

.register-submit-btn.loading .btn-loader {
  display: block;
}

.register-footer {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
}

.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: transparent;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 107, 0, 0.5);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.login-btn:hover {
  background: rgba(255, 107, 0, 0.1);
  border-color: #ff6b00;
  color: #ff6b00;
  transform: translateY(-1px);
}

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

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

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

.support-link:hover,
.help-link:hover {
  color: #ff6b00;
}

.separator {
  color: #666666;
  font-size: 0.9rem;
}

.register-features {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 107, 0, 0.2);
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  color: #cccccc;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.feature-item i {
  color: #ff6b00;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.feature-item:hover i {
  transform: scale(1.1);
}

/* Success message style */
.error-message.success {
  background: rgba(40, 167, 69, 0.1);
  border-color: rgba(40, 167, 69, 0.3);
}

.error-message.success i,
.error-message.success span {
  color: #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-page-section {
    padding: 20px 15px;
  }
  
  .register-container {
    max-width: 400px;
  }
  
  .register-card {
    padding: 30px;
    border-radius: 16px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.7rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 14px 14px 14px 45px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  .register-submit-btn {
    padding: 15px 18px;
    font-size: 1rem;
  }
  
  .register-features {
    gap: 10px;
  }
  
  .feature-item {
    font-size: 0.8rem;
  }
  
  .feature-item i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .register-page-section {
    padding: 15px 10px;
  }
  
  .register-container {
    max-width: 350px;
  }
  
  .register-card {
    padding: 25px;
    border-radius: 14px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-input {
    padding: 12px 12px 12px 40px;
  }
  
  .input-icon {
    left: 12px;
    font-size: 1rem;
  }
  
  .register-submit-btn {
    padding: 14px 16px;
    font-size: 0.95rem;
    gap: 8px;
  }
  
  .login-btn {
    padding: 12px 16px;
    font-size: 0.95rem;
    gap: 8px;
  }
  
  .register-links {
    gap: 12px;
  }
  
  .support-link,
  .help-link {
    font-size: 0.85rem;
  }
  
  .register-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .feature-item {
    flex-direction: row;
    gap: 10px;
  }
}

@media (max-width: 360px) {
  .register-container {
    max-width: 320px;
  }
  
  .register-card {
    padding: 20px;
  }
  
  .logo-image {
    width: 50px;
    height: 50px;
  }
  
  .register-title {
    font-size: 1.3rem;
  }
  
  .checkbox-text {
    font-size: 0.9rem;
  }
}

/* Base Styles for Promotion Pages */
body {
  font-family: 'Sarabun', sans-serif;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.promotion-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.15) 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;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ff6b00, #ffa500, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(26, 26, 26, 0.8);
  border-radius: 15px;
  border: 2px solid rgba(255, 107, 0, 0.2);
  transition: all 0.3s ease;
  min-width: 180px;
}

.highlight-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.highlight-item i {
  color: #ff6b00;
  font-size: 2.5rem;
}

.highlight-item span {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #ff6b00, #ff8c42);
  color: #ffffff;
  padding: 20px 40px;
  border-radius: 30px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.hero-cta-btn:hover {
  background: linear-gradient(135deg, #e55a00, #ff7a35);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

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

/* Promotion Sections */
.promotion-section {
  padding: 80px 0;
  position: relative;
}

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

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

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

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

.promotion-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 0.9));
  border-radius: 25px;
  padding: 50px;
  border: 2px solid rgba(255, 107, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.promotion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), transparent);
  pointer-events: none;
}

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

.promotion-card.vip-card {
  border-color: rgba(255, 165, 0, 0.3);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.95));
}

.promotion-card.vip-card::before {
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.08), transparent);
}

.promotion-card.referral-card {
  border-color: rgba(0, 123, 255, 0.3);
}

.promotion-card.referral-card::before {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), transparent);
}

.promotion-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.promotion-icon {
  color: #ff6b00;
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.vip-card .promotion-icon {
  color: #ffa500;
}

.referral-card .promotion-icon {
  color: #007bff;
}

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

.promotion-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  position: relative;
  z-index: 2;
}

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

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

.promotion-item:hover {
  padding-left: 15px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 10px;
}

.promotion-item i {
  color: #ff6b00;
  font-size: 1.2rem;
  margin-top: 3px;
  min-width: 20px;
}

.vip-card .promotion-item i {
  color: #ffa500;
}

.referral-card .promotion-item i {
  color: #007bff;
}

.promotion-item span {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
  flex: 1;
}

.promotion-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ff6b00, #ff8c42);
  color: #ffffff;
  padding: 18px 30px;
  border-radius: 25px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  position: relative;
  z-index: 2;
}

.promotion-cta-btn:hover {
  background: linear-gradient(135deg, #e55a00, #ff7a35);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

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

.vip-btn {
  background: linear-gradient(135deg, #ffa500, #ffb84d);
}

.vip-btn:hover {
  background: linear-gradient(135deg, #e6940a, #ff9f1a);
}

.referral-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
}

.referral-btn:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-highlights {
    gap: 20px;
  }
  
  .highlight-item {
    min-width: 150px;
    padding: 15px;
  }
  
  .promotion-card {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .promotion-hero {
    padding: 100px 0 60px;
  }
  
  .hero-container,
  .promotion-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .hero-highlights {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .highlight-item {
    min-width: auto;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .hero-cta-btn {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-card {
    padding: 30px;
    border-radius: 20px;
  }
  
  .promotion-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-item {
    gap: 12px;
    padding: 12px 0;
  }
  
  .promotion-item span {
    font-size: 1rem;
  }
  
  .promotion-cta-btn {
    padding: 15px 25px;
    font-size: 1.1rem;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .promotion-hero {
    padding: 80px 0 50px;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-highlights {
    margin-bottom: 30px;
  }
  
  .highlight-item {
    padding: 12px;
  }
  
  .highlight-item i {
    font-size: 2rem;
  }
  
  .highlight-item span {
    font-size: 1rem;
  }
  
  .hero-cta-btn {
    padding: 14px 25px;
    font-size: 1rem;
    gap: 8px;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-card {
    padding: 25px;
    border-radius: 15px;
  }
  
  .promotion-header {
    margin-bottom: 30px;
  }
  
  .promotion-icon {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .promotion-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  
  .promotion-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0;
  }
  
  .promotion-item i {
    font-size: 1.1rem;
  }
  
  .promotion-item span {
    font-size: 0.95rem;
  }
  
  .promotion-cta-btn {
    padding: 12px 20px;
    font-size: 1rem;
    gap: 8px;
  }
  
  .promotion-cta-btn i {
    font-size: 1.1rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .promotion-card {
    padding: 20px;
  }
  
  .promotion-title {
    font-size: 1.3rem;
  }
}