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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  justify-content: center;
  min-width: 160px;
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #ff5722, #ff7043);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
}

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

.btn-secondary:hover {
  background: #ff6b35;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

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

.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" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  opacity: 0.1;
}

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

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

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  margin-top: 1rem;
  border-radius: 2px;
}

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

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

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

.feature-item i {
  font-size: 1.25rem;
  color: #ff6b35;
  min-width: 20px;
}

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

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .hero-text {
    order: 2;
  }
  
  .hero-image {
    order: 1;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-title::after {
    margin: 1rem auto 0;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 10px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    padding: 1rem;
    min-width: auto;
  }
  
  .feature-item {
    padding: 0.75rem;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.95));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo a {
  text-decoration: none;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.nav-link {
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ff6b35;
}

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

.btn-cta {
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
}

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

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

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

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

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

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

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

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

.mobile-logo {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #ff6b35;
}

.mobile-nav {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.mobile-nav-link {
  display: block;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  transition: width 0.3s ease;
}

.mobile-nav-link:hover {
  color: #ff6b35;
  padding-left: 1rem;
}

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

.btn-mobile-cta {
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  color: #ffffff;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
  margin-top: 1rem;
}

.btn-mobile-cta:hover {
  background: linear-gradient(45deg, #ff5722, #ff7043);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

/* Responsive Design */
@media (max-width: 870px) {
  .nav-desktop {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-container {
    padding: 0 15px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .mobile-menu {
    max-width: 350px;
  }
  
  .mobile-nav {
    padding: 1.5rem;
  }
  
  .mobile-menu-header {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 0.75rem 0;
  }
  
  .header-container {
    padding: 0 10px;
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
  
  .mobile-menu {
    max-width: 100%;
  }
  
  .mobile-nav {
    padding: 1rem;
  }
  
  .mobile-menu-header {
    padding: 1rem;
  }
  
  .mobile-logo {
    font-size: 1.25rem;
  }
}

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

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

@media (max-width: 480px) {
  body {
    padding-top: 65px;
  }
}

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

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

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

.about-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
}

.about-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  margin-top: 1rem;
  border-radius: 2px;
}

.about-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.about-description strong {
  color: #ff6b35;
  font-weight: 700;
}

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

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

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 0;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.1), rgba(255, 142, 83, 0.05));
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

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

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

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

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 350px;
    gap: 3rem;
  }
  
  .about-title {
    font-size: 2.25rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 15px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .about-text {
    order: 2;
  }
  
  .about-image {
    order: 1;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .about-title::after {
    margin: 1rem auto 0;
  }
  
  .about-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 10px;
  }
  
  .about-title {
    font-size: 1.75rem;
  }
  
  .about-description p {
    font-size: 0.95rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-card {
    padding: 1.25rem;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .feature-icon i {
    font-size: 1.25rem;
  }
}

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

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

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

.login-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

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

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

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

.login-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.login-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
}

.login-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  margin-top: 1rem;
  border-radius: 2px;
}

.login-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.login-description a {
  color: #ff6b35;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.login-description a:hover {
  color: #ff8e53;
}

.login-cta {
  margin-top: 1rem;
}

.login-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.login-feature {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.login-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  transition: left 0.5s ease;
}

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

.login-feature:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.1), rgba(255, 142, 83, 0.05));
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.login-feature .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.login-feature:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

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

.login-feature h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .login-content {
    grid-template-columns: 350px 1fr;
    gap: 3rem;
  }
  
  .login-title {
    font-size: 2.25rem;
  }
  
  .login-features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .login-section {
    padding: 60px 15px;
  }
  
  .login-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .login-image {
    order: 1;
  }
  
  .login-text {
    order: 2;
  }
  
  .login-title {
    font-size: 2rem;
  }
  
  .login-title::after {
    margin: 1rem auto 0;
  }
  
  .login-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .login-features {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
  }
  
  .login-feature {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 40px 10px;
  }
  
  .login-title {
    font-size: 1.75rem;
  }
  
  .login-description p {
    font-size: 0.95rem;
  }
  
  .login-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .login-feature {
    padding: 1.25rem;
  }
  
  .login-feature h3 {
    font-size: 1.1rem;
  }
  
  .login-feature p {
    font-size: 0.9rem;
  }
  
  .login-feature .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .login-feature .feature-icon i {
    font-size: 1.25rem;
  }
}

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

.community-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(255, 142, 83, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.community-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.community-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.community-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
}

.community-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  margin-top: 1rem;
  border-radius: 2px;
}

.community-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.community-description strong {
  color: #ff6b35;
  font-weight: 700;
}

.community-description a {
  color: #ff6b35;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.community-description a:hover {
  color: #ff8e53;
}

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

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

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

.pantip-topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.topic-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.topic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  transition: left 0.5s ease;
}

.topic-card:hover::before {
  left: 0;
}

.topic-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.1), rgba(255, 142, 83, 0.05));
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.topic-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.topic-card:hover .topic-icon {
  transform: scale(1.1) rotate(5deg);
}

.topic-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.topic-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.topic-card p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .community-content {
    grid-template-columns: 1fr 350px;
    gap: 3rem;
  }
  
  .community-title {
    font-size: 2.25rem;
  }
  
  .pantip-topics {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .community-section {
    padding: 60px 15px;
  }
  
  .community-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .community-text {
    order: 2;
  }
  
  .community-image {
    order: 1;
  }
  
  .community-title {
    font-size: 2rem;
  }
  
  .community-title::after {
    margin: 1rem auto 0;
  }
  
  .community-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .pantip-topics {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
  }
  
  .topic-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .community-section {
    padding: 40px 10px;
  }
  
  .community-title {
    font-size: 1.75rem;
  }
  
  .community-description p {
    font-size: 0.95rem;
  }
  
  .pantip-topics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .topic-card {
    padding: 1.25rem;
  }
  
  .topic-card h3 {
    font-size: 1.1rem;
  }
  
  .topic-card p {
    font-size: 0.9rem;
  }
  
  .topic-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .topic-icon i {
    font-size: 1.25rem;
  }
}

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

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 142, 83, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.reviews-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

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

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

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

.reviews-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reviews-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
}

.reviews-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  margin-top: 1rem;
  border-radius: 2px;
}

.reviews-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.review-highlights {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
}

.highlights-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.highlights-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.05), rgba(255, 142, 83, 0.02));
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  transition: left 0.5s ease;
}

.highlight-item:hover::before {
  left: 0;
}

.highlight-item:hover {
  transform: translateX(10px);
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.08), rgba(255, 142, 83, 0.04));
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.15);
}

.highlight-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.highlight-item:hover .highlight-number {
  transform: scale(1.1) rotate(5deg);
}

.highlight-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .reviews-content {
    grid-template-columns: 350px 1fr;
    gap: 3rem;
  }
  
  .reviews-title {
    font-size: 2.25rem;
  }
  
  .review-highlights {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 15px;
  }
  
  .reviews-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .reviews-image {
    order: 1;
  }
  
  .reviews-text {
    order: 2;
  }
  
  .reviews-title {
    font-size: 2rem;
  }
  
  .reviews-title::after {
    margin: 1rem auto 0;
  }
  
  .reviews-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .review-highlights {
    padding: 2rem;
  }
  
  .highlights-title {
    font-size: 1.75rem;
  }
  
  .highlight-item {
    gap: 1.5rem;
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .reviews-section {
    padding: 40px 10px;
  }
  
  .reviews-title {
    font-size: 1.75rem;
  }
  
  .reviews-description p {
    font-size: 0.95rem;
  }
  
  .review-highlights {
    padding: 1.5rem;
  }
  
  .highlights-title {
    font-size: 1.5rem;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
  }
  
  .highlight-item:hover {
    transform: translateY(-5px);
  }
  
  .highlight-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .highlight-content h4 {
    font-size: 1.1rem;
  }
  
  .highlight-content p {
    font-size: 0.9rem;
  }
}

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

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

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

.signup-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.signup-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.signup-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
}

.signup-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  margin-top: 1rem;
  border-radius: 2px;
}

.signup-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.signup-description strong {
  color: #ff6b35;
  font-weight: 700;
}

.signup-description a {
  color: #ff6b35;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.signup-description a:hover {
  color: #ff8e53;
}

.signup-cta {
  margin-top: 1.5rem;
}

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

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

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

.signup-steps {
  margin-top: 4rem;
}

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

.steps-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  margin: 1rem auto 0;
  border-radius: 2px;
}

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

.step-item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  transition: left 0.5s ease;
}

.step-item:hover::before {
  left: 0;
}

.step-item:hover {
  transform: translateY(-10px);
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.1), rgba(255, 142, 83, 0.05));
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.step-number {
  position: absolute;
  top: -10px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.2), rgba(255, 142, 83, 0.1));
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.step-item:hover .step-icon {
  transform: scale(1.1) rotate(10deg);
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.3), rgba(255, 142, 83, 0.15));
  border-color: rgba(255, 107, 53, 0.5);
}

.step-icon i {
  font-size: 1.5rem;
  color: #ff6b35;
}

.step-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .signup-content {
    grid-template-columns: 1fr 350px;
    gap: 3rem;
  }
  
  .signup-title {
    font-size: 2.25rem;
  }
  
  .steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .signup-section {
    padding: 60px 15px;
  }
  
  .signup-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .signup-text {
    order: 2;
  }
  
  .signup-image {
    order: 1;
  }
  
  .signup-title {
    font-size: 2rem;
  }
  
  .signup-title::after {
    margin: 1rem auto 0;
  }
  
  .signup-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .steps-title {
    font-size: 1.75rem;
  }
  
  .steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
  }
  
  .step-item {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .signup-section {
    padding: 40px 10px;
  }
  
  .signup-title {
    font-size: 1.75rem;
  }
  
  .signup-description p {
    font-size: 0.95rem;
  }
  
  .steps-title {
    font-size: 1.5rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .step-item {
    padding: 1.25rem 1rem;
  }
  
  .step-item h4 {
    font-size: 1rem;
  }
  
  .step-item p {
    font-size: 0.85rem;
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .step-icon i {
    font-size: 1.25rem;
  }
  
  .step-number {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
    top: -8px;
    right: 12px;
  }
}

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

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 75% 75%, rgba(255, 142, 83, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-tagline {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.contact-item i {
  color: #ff6b35;
  width: 16px;
  text-align: center;
}

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

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

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

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

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

.footer-social {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.social-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.1), rgba(255, 142, 83, 0.05));
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: linear-gradient(145deg, #ff6b35, #ff8e53);
  border-color: #ff6b35;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.footer-certifications {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cert-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 8px;
  font-size: 0.9rem;
  color: #cccccc;
  transition: all 0.3s ease;
}

.cert-item:hover {
  border-color: rgba(255, 107, 53, 0.3);
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.05), rgba(255, 142, 83, 0.02));
}

.cert-item i {
  color: #ff6b35;
  font-size: 1.1rem;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

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

.footer-disclaimer {
  padding: 1rem;
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.05), rgba(255, 142, 83, 0.02));
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 8px;
}

.disclaimer-text {
  font-size: 0.85rem;
  color: #999999;
  line-height: 1.4;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  
  .footer-certifications {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 15px 20px;
  }
  
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-logo-text {
    font-size: 1.75rem;
  }
  
  .social-links {
    gap: 1rem;
  }
  
  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .footer-certifications {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
  }
  
  .cert-item {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 10px 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-logo-text {
    font-size: 1.5rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links {
    align-items: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .social-links {
    gap: 0.75rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .footer-certifications {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .cert-item {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
  
  .footer-bottom {
    gap: 1rem;
  }
  
  .disclaimer-text {
    font-size: 0.8rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 1001;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.95));
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  padding: 0;
}

.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: 'Sarabun', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 60px;
  gap: 4px;
}

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

.sticky-btn span {
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.2;
}

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  transition: left 0.3s ease;
}

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

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

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

/* Individual button styles */
.sticky-btn-login {
  background: linear-gradient(135deg, #2196F3, #1976D2);
}

.sticky-btn-login::before {
  background: linear-gradient(90deg, #1976D2, #0D47A1);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #1976D2, #0D47A1);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.sticky-btn-register {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.sticky-btn-register::before {
  background: linear-gradient(90deg, #2E7D32, #1B5E20);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #2E7D32, #1B5E20);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.sticky-btn-bonus {
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
}

.sticky-btn-bonus::before {
  background: linear-gradient(90deg, #ff5722, #ff7043);
}

.sticky-btn-bonus:hover {
  background: linear-gradient(135deg, #ff5722, #ff7043);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

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

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.75rem;
    min-height: 50px;
    gap: 2px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
  }
}

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

/* Ensure sticky buttons don't interfere with footer */
body {
  padding-bottom: 60px;
}

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

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

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

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

.login-page-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 142, 83, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
  animation: backgroundPulse 8s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.7;
  }
}

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

.login-form-wrapper {
  width: 100%;
  max-width: 450px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  overflow: hidden;
}

.login-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #ff8e53, #ff6b35);
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

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

.login-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
  transition: transform 0.3s ease;
}

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

.login-form-container {
  text-align: center;
}

.login-form-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.login-form-subtitle {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.error-message {
  background: linear-gradient(145deg, rgba(244, 67, 54, 0.1), rgba(244, 67, 54, 0.05));
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #ff5722;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  display: none;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  animation: slideDown 0.3s ease-out;
}

.error-message.show {
  display: flex;
}

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

.login-form {
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

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

.form-label i {
  color: #ff6b35;
  width: 16px;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-input:valid {
  border-color: #4caf50;
}

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

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

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #cccccc;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

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

.error-field {
  display: block;
  color: #ff5722;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.error-field.show {
  opacity: 1;
  transform: translateY(0);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-login {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Sarabun', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

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

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

.btn-login:hover {
  background: linear-gradient(45deg, #ff5722, #ff7043);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

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

.loading-spinner {
  display: none;
}

.btn-login.loading .loading-spinner {
  display: block;
}

.btn-login.loading span {
  display: none;
}

.btn-register {
  width: 100%;
  padding: 1rem;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ff6b35;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Sarabun', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.btn-register:hover {
  background: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.form-links {
  text-align: center;
  margin-top: 1.5rem;
}

.forgot-link {
  color: #ff6b35;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: #ff8e53;
  text-decoration: underline;
}

.login-security {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  gap: 1rem;
}

.security-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #cccccc;
  text-align: center;
  flex: 1;
}

.security-item i {
  color: #ff6b35;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-page-section {
    padding: 80px 15px 60px;
  }
  
  .login-form-wrapper {
    max-width: 400px;
    padding: 2rem;
  }
  
  .login-form-title {
    font-size: 1.5rem;
  }
  
  .login-form-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 0.875rem 1rem;
  }
  
  .btn-login {
    padding: 1.125rem;
    font-size: 1rem;
  }
  
  .login-security {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .security-item {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .login-page-section {
    padding: 60px 10px 50px;
  }
  
  .login-form-wrapper {
    max-width: 100%;
    padding: 1.5rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-form-title {
    font-size: 1.25rem;
  }
  
  .login-form-subtitle {
    font-size: 0.85rem;
  }
  
  .form-input {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  
  .btn-login {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .btn-register {
    padding: 0.875rem;
    font-size: 0.9rem;
  }
  
  .security-item {
    font-size: 0.75rem;
  }
}

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

.register-page-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 142, 83, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
  animation: backgroundPulse 8s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.7;
  }
}

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

.register-form-wrapper {
  width: 100%;
  max-width: 450px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  overflow: hidden;
}

.register-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #4caf50, #ff8e53);
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

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

.register-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
  transition: transform 0.3s ease;
}

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

.register-form-container {
  text-align: center;
}

.register-form-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.register-form-subtitle {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.error-message {
  background: linear-gradient(145deg, rgba(244, 67, 54, 0.1), rgba(244, 67, 54, 0.05));
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #ff5722;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  display: none;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  animation: slideDown 0.3s ease-out;
}

.error-message.show {
  display: flex;
}

.success-message {
  background: linear-gradient(145deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  display: none;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  animation: slideDown 0.3s ease-out;
}

.success-message.show {
  display: flex;
}

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

.register-form {
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

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

.form-label i {
  color: #ff6b35;
  width: 16px;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-input:valid {
  border-color: #4caf50;
}

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

.error-field {
  display: block;
  color: #ff5722;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.error-field.show {
  opacity: 1;
  transform: translateY(0);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-register {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(45deg, #4caf50, #66bb6a);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Sarabun', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

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

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

.btn-register:hover {
  background: linear-gradient(45deg, #388e3c, #4caf50);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

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

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

.loading-spinner {
  display: none;
}

.btn-register.loading .loading-spinner {
  display: block;
}

.btn-register.loading span {
  display: none;
}

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

.btn-login:hover {
  background: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.form-terms {
  margin-top: 1.5rem;
  text-align: center;
}

.terms-text {
  font-size: 0.85rem;
  color: #cccccc;
  line-height: 1.4;
  margin: 0;
}

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

.terms-link:hover {
  color: #ff8e53;
  text-decoration: underline;
}

.register-benefits {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.benefits-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #cccccc;
  padding: 0.5rem;
  background: rgba(76, 175, 80, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(76, 175, 80, 0.1);
  transform: translateX(5px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .register-page-section {
    padding: 80px 15px 60px;
  }
  
  .register-form-wrapper {
    max-width: 400px;
    padding: 2rem;
  }
  
  .register-form-title {
    font-size: 1.5rem;
  }
  
  .register-form-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 0.875rem 1rem;
  }
  
  .btn-register {
    padding: 1.125rem;
    font-size: 1rem;
  }
  
  .benefits-list {
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .register-page-section {
    padding: 60px 10px 50px;
  }
  
  .register-form-wrapper {
    max-width: 100%;
    padding: 1.5rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-form-title {
    font-size: 1.25rem;
  }
  
  .register-form-subtitle {
    font-size: 0.85rem;
  }
  
  .form-input {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  
  .btn-register {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .btn-login {
    padding: 0.875rem;
    font-size: 0.9rem;
  }
  
  .benefits-title {
    font-size: 1rem;
  }
  
  .benefit-item {
    font-size: 0.85rem;
    padding: 0.375rem;
  }
  
  .terms-text {
    font-size: 0.8rem;
  }
}

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

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

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

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}

.hero-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 4px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
}

.hero-cta {
  margin-top: 1rem;
}

.btn-hero {
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  color: #ffffff;
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

.btn-hero:hover {
  background: linear-gradient(45deg, #ff5722, #ff7043);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
}

/* Promotion Sections */
.promotion-section {
  padding: 40px 20px;
}

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

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

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

.promotion-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.promotion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #ff8e53, #ff6b35);
  background-size: 200% 100%;
  animation: gradientMove 3s linear infinite;
}

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

.promotion-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.1), rgba(255, 142, 83, 0.05));
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.promotion-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.promotion-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.promotion-card:hover .promotion-icon {
  transform: scale(1.1) rotate(5deg);
}

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

.promotion-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.promotion-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.promotion-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.promotion-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.6;
  padding: 1rem;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 10px;
  border-left: 3px solid #ff6b35;
  transition: all 0.3s ease;
}

.promotion-list li:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateX(10px);
}

.promotion-list li i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.promotion-cta {
  text-align: center;
  margin-top: 1rem;
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  color: #ffffff;
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary:hover {
  background: linear-gradient(45deg, #ff5722, #ff7043);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .btn-hero {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
  }
  
  .promotion-card {
    padding: 2.5rem;
  }
  
  .promotion-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .hero-promotion-section {
    padding: 80px 15px 40px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn-hero {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 30px 15px;
  }
  
  .promotion-card {
    padding: 2rem;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.5rem;
  }
  
  .promotion-title {
    font-size: 1.5rem;
  }
  
  .promotion-list li {
    font-size: 1rem;
    padding: 0.75rem;
  }
  
  .btn-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-promotion-section {
    padding: 60px 10px 30px;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-title::after {
    width: 80px;
    height: 3px;
    margin: 1rem auto 0;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .btn-hero {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
  
  .promotion-section {
    padding: 20px 10px;
  }
  
  .promotion-card {
    padding: 1.5rem;
  }
  
  .promotion-header {
    margin-bottom: 2rem;
  }
  
  .promotion-icon {
    width: 50px;
    height: 50px;
  }
  
  .promotion-icon i {
    font-size: 1.25rem;
  }
  
  .promotion-title {
    font-size: 1.25rem;
  }
  
  .promotion-list li {
    font-size: 0.9rem;
    padding: 0.625rem;
    gap: 0.75rem;
  }
  
  .promotion-list li i {
    font-size: 1rem;
  }
  
  .btn-primary {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}