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

body {
  font-family: 'Sarabun', sans-serif;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>')
  opacity: 0.1;
  z-index: 1;
}

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

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

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

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

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  border-color: #ff6b35;
}

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

.btn-secondary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #ffffff;
  border-color: #667eea;
}

.btn-secondary:hover {
  background: linear-gradient(45deg, #5a6fd8, #6a4190);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-accent {
  background: linear-gradient(45deg, #11998e, #38ef7d);
  color: #ffffff;
  border-color: #11998e;
}

.btn-accent:hover {
  background: linear-gradient(45deg, #0e8378, #32d96c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 153, 142, 0.4);
}

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

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

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

.hero-badge i {
  font-size: 1.1rem;
}

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

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

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

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 30px;
  }
  
  .feature-item {
    justify-content: center;
    padding: 10px;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 12px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-features {
    gap: 10px;
    margin-bottom: 25px;
  }
  
  .feature-item {
    padding: 8px;
    font-size: 0.9rem;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn {
    width: 100%;
    padding: 14px 20px;
  }
  
  .hero-badge {
    top: -10px;
    right: -10px;
    padding: 8px 15px;
    font-size: 0.8rem;
  }
}

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

.main-header.scrolled {
  background: rgba(15, 15, 35, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  min-height: 70px;
}

.logo {
  flex-shrink: 0;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  background: linear-gradient(45deg, #ffd700, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

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

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

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

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 25px;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  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;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  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: -100%;
  width: 300px;
  height: 100%;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
  right: 0;
}

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

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

.mobile-menu-close {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
}

.mobile-nav {
  padding: 20px 0;
}

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

.mobile-nav-list li {
  margin-bottom: 5px;
}

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

.mobile-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 107, 53, 0.1);
  transition: width 0.3s ease;
  z-index: -1;
}

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

.mobile-nav-link:hover {
  color: #ff6b35;
  border-left-color: #ff6b35;
  transform: translateX(5px);
}

.mobile-cta {
  margin-top: 20px;
  padding: 0 20px;
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .header-content {
    padding: 12px 0;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .nav-list {
    gap: 20px;
  }
  
  .nav-link {
    font-size: 0.95rem;
    padding: 6px 14px;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .header-content {
    min-height: 60px;
    padding: 10px 0;
  }
  
  .mobile-menu {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .header-content {
    min-height: 55px;
    padding: 8px 0;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .mobile-menu-toggle {
    width: 35px;
    height: 35px;
  }
  
  .hamburger-line {
    width: 20px;
    height: 2px;
  }
  
  .mobile-menu {
    width: 260px;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-logo {
    font-size: 1.1rem;
  }
  
  .mobile-menu-close {
    width: 30px;
    height: 30px;
  }
  
  .mobile-nav-link {
    padding: 12px 15px;
    font-size: 1rem;
  }
  
  .mobile-cta {
    padding: 0 15px;
  }
  
  .mobile-cta-button {
    padding: 12px 15px;
    font-size: 1rem;
  }
}

/* Registration Section Styles */
.registration-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0f0f23 100%);
  position: relative;
}

.registration-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.registration-section .container {
  position: relative;
  z-index: 2;
}

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

.section-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.registration-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 60px;
}

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

.text-block {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.text-block:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.text-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e8e8e8;
  margin: 0;
}

.text-block strong {
  color: #ffd700;
  font-weight: 600;
}

.registration-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.guide-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.security-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  background: linear-gradient(45deg, #11998e, #38ef7d);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(17, 153, 142, 0.4);
  animation: pulse 2s infinite;
}

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

.important-info {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
}

.info-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}

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

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

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

.info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.info-icon i {
  font-size: 1.3rem;
  color: #ffffff;
}

.info-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .registration-content {
    gap: 40px;
  }
  
  .important-info {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .registration-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
    line-height: 1.4;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .registration-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .registration-image {
    order: -1;
  }
  
  .text-block {
    padding: 20px;
  }
  
  .text-block p {
    font-size: 1rem;
  }
  
  .info-title {
    font-size: 1.5rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .important-info {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .registration-section {
    padding: 40px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .registration-content {
    margin-bottom: 40px;
  }
  
  .text-block {
    padding: 18px;
  }
  
  .text-block p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .security-badge {
    top: -10px;
    left: -10px;
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  .important-info {
    padding: 20px;
  }
  
  .info-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .info-item {
    padding: 15px;
    gap: 12px;
  }
  
  .info-icon {
    width: 45px;
    height: 45px;
  }
  
  .info-icon i {
    font-size: 1.1rem;
  }
  
  .info-content h4 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .info-content p {
    font-size: 0.9rem;
  }
}

/* Auto Registration Section Styles */
.auto-registration-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
}

.auto-registration-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  z-index: 1;
}

.auto-registration-section .container {
  position: relative;
  z-index: 2;
}

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

.auto-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auto-text .text-block {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.auto-text .text-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  transition: left 0.5s ease;
}

.auto-text .text-block:hover::before {
  left: 100%;
}

.auto-text .text-block:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
  border-color: rgba(255, 215, 0, 0.3);
}

.auto-text .text-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e8e8e8;
  margin: 0;
}

.auto-text .text-block strong {
  color: #ffd700;
  font-weight: 600;
}

.auto-text .text-block a {
  color: #ff6b35;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.auto-text .text-block a:hover {
  color: #ffd700;
  border-bottom-color: #ffd700;
}

.auto-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.auto-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.feature-card h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

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

.cta-section {
  background: linear-gradient(45deg, #ff6b35, #f7931e, #667eea);
  padding: 50px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.cta-buttons .btn {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cta-buttons .btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .auto-content {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .feature-card {
    padding: 15px;
  }
  
  .cta-content h3 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .auto-registration-section {
    padding: 60px 0;
  }
  
  .auto-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .auto-features {
    order: -1;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .auto-text .text-block {
    padding: 20px;
  }
  
  .auto-text .text-block p {
    font-size: 1rem;
  }
  
  .cta-section {
    padding: 40px 30px;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .auto-registration-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    padding: 18px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
  }
  
  .feature-icon i {
    font-size: 1.2rem;
  }
  
  .auto-text .text-block {
    padding: 18px;
  }
  
  .auto-text .text-block p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .cta-section {
    padding: 30px 20px;
    margin: 0 10px;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  
  .cta-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}

/* Pantip Reviews Section Styles */
.pantip-reviews-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0f0f23 100%);
  position: relative;
}

.pantip-reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="25" height="25" patternUnits="userSpaceOnUse"><polygon points="12.5,2 15.5,8.5 22.5,8.5 17,13 18.5,20 12.5,16.5 6.5,20 8,13 2.5,8.5 9.5,8.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
  z-index: 1;
}

.pantip-reviews-section .container {
  position: relative;
  z-index: 2;
}

.pantip-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.pantip-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pantip-text .text-block {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
}

.pantip-text .text-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #ffd700);
  transition: width 0.3s ease;
}

.pantip-text .text-block:hover::after {
  width: 100%;
}

.pantip-text .text-block:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pantip-text .text-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e8e8e8;
  margin: 0;
}

.pantip-text .text-block strong {
  color: #ffd700;
  font-weight: 600;
}

.pantip-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pantip-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.review-highlights {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
}

.review-highlights h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  text-align: center;
}

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.highlight-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.highlight-icon i {
  font-size: 1.1rem;
  color: #ffffff;
}

.highlight-text strong {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  display: block;
  margin-bottom: 5px;
}

.highlight-text p {
  font-size: 0.9rem;
  color: #c0c0c0;
  line-height: 1.4;
  margin: 0;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.trust-number {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.trust-item p {
  font-size: 0.85rem;
  color: #c0c0c0;
  line-height: 1.3;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pantip-content {
    gap: 40px;
  }
  
  .review-highlights {
    padding: 25px;
  }
  
  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .trust-item {
    padding: 15px;
  }
  
  .trust-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .pantip-reviews-section {
    padding: 60px 0;
  }
  
  .pantip-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pantip-sidebar {
    order: -1;
  }
  
  .pantip-text .text-block {
    padding: 20px;
  }
  
  .pantip-text .text-block p {
    font-size: 1rem;
  }
  
  .review-highlights {
    padding: 20px;
  }
  
  .review-highlights h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .highlight-item {
    gap: 12px;
  }
  
  .highlight-icon {
    width: 35px;
    height: 35px;
  }
  
  .highlight-icon i {
    font-size: 1rem;
  }
  
  .trust-indicators {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .pantip-reviews-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .pantip-text .text-block {
    padding: 18px;
  }
  
  .pantip-text .text-block p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .review-highlights {
    padding: 18px;
  }
  
  .review-highlights h3 {
    font-size: 1.1rem;
    margin-bottom: 18px;
  }
  
  .highlight-list {
    gap: 15px;
  }
  
  .highlight-item {
    gap: 10px;
  }
  
  .highlight-icon {
    width: 32px;
    height: 32px;
  }
  
  .highlight-icon i {
    font-size: 0.9rem;
  }
  
  .highlight-text strong {
    font-size: 0.9rem;
  }
  
  .highlight-text p {
    font-size: 0.85rem;
  }
  
  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .trust-item {
    padding: 12px;
  }
  
  .trust-number {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }
  
  .trust-item p {
    font-size: 0.8rem;
  }
}

/* Reliability Section Styles */
.reliability-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
}

.reliability-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 75% 75%, rgba(102, 126, 234, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
  z-index: 1;
}

.reliability-section .container {
  position: relative;
  z-index: 2;
}

.reliability-content {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.reliability-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reliability-text .text-block {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reliability-text .text-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0%;
  background: linear-gradient(180deg, #11998e, #38ef7d);
  transition: height 0.3s ease;
}

.reliability-text .text-block:hover::before {
  height: 100%;
}

.reliability-text .text-block:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
  border-color: rgba(17, 153, 142, 0.3);
}

.reliability-text .text-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e8e8e8;
  margin: 0;
}

.reliability-text .text-block strong {
  color: #ffd700;
  font-weight: 600;
}

.reliability-text .text-block a {
  color: #11998e;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.reliability-text .text-block a:hover {
  color: #38ef7d;
  border-bottom-color: #38ef7d;
}

.reliability-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.reliability-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.security-features,
.audit-info,
.verification-steps {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
}

.security-features h3,
.audit-info h3,
.verification-steps h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

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

.security-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.security-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.3);
}

.security-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #11998e, #38ef7d);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 3px 10px rgba(17, 153, 142, 0.3);
}

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

.security-card h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.security-card p {
  font-size: 0.85rem;
  color: #c0c0c0;
  line-height: 1.3;
  margin: 0;
}

.audit-list,
.step-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.audit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.audit-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 107, 53, 0.3);
}

.audit-item i {
  color: #ff6b35;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.audit-item span {
  font-size: 0.95rem;
  color: #e8e8e8;
  font-weight: 500;
}

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

.step-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(5px);
}

.step-number {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.step-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .reliability-content {
    gap: 40px;
  }
  
  .security-features,
  .audit-info,
  .verification-steps {
    padding: 20px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .reliability-section {
    padding: 60px 0;
  }
  
  .reliability-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .reliability-features {
    order: -1;
  }
  
  .reliability-text .text-block {
    padding: 20px;
  }
  
  .reliability-text .text-block p {
    font-size: 1rem;
  }
  
  .security-features h3,
  .audit-info h3,
  .verification-steps h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .security-card {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .reliability-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .reliability-text .text-block {
    padding: 18px;
  }
  
  .reliability-text .text-block p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .security-features,
  .audit-info,
  .verification-steps {
    padding: 18px;
  }
  
  .security-features h3,
  .audit-info h3,
  .verification-steps h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .security-card {
    padding: 12px;
  }
  
  .security-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
  
  .security-icon i {
    font-size: 1.1rem;
  }
  
  .security-card h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
  }
  
  .security-card p {
    font-size: 0.8rem;
  }
  
  .audit-item,
  .step-item {
    padding: 10px;
    gap: 10px;
  }
  
  .audit-item i {
    font-size: 1rem;
  }
  
  .audit-item span {
    font-size: 0.9rem;
  }
  
  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .step-content h4 {
    font-size: 0.95rem;
  }
  
  .step-content p {
    font-size: 0.85rem;
  }
}

/* Website Guide Section Styles */
.website-guide-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0f0f23 100%);
  position: relative;
}

.website-guide-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20,10 L30,10 M10,20 L30,20 M20,30 L30,30" stroke="%23ffffff" stroke-width="0.5" opacity="0.1" fill="none"/><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
  z-index: 1;
}

.website-guide-section .container {
  position: relative;
  z-index: 2;
}

.website-content {
  display: grid;
  grid-template-columns: 1.6fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.website-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.website-text .text-block {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.website-text .text-block::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: width 0.3s ease;
}

.website-text .text-block:hover::before {
  width: 100%;
}

.website-text .text-block:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.website-text .text-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e8e8e8;
  margin: 0;
}

.website-text .text-block strong {
  color: #ffd700;
  font-weight: 600;
}

.website-text .text-block a {
  color: #667eea;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  font-weight: 600;
}

.website-text .text-block a:hover {
  color: #764ba2;
  border-bottom-color: #764ba2;
}

.website-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.website-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.features-showcase,
.device-compatibility,
.access-methods {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
}

.features-showcase h3,
.device-compatibility h3,
.access-methods h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

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

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

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

.showcase-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

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

.showcase-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

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

.device-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.device-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.device-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: rgba(102, 126, 234, 0.3);
}

.device-item i {
  font-size: 2.5rem;
  color: #667eea;
  margin-bottom: 12px;
  display: block;
}

.device-item h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.device-item p {
  font-size: 0.85rem;
  color: #c0c0c0;
  margin: 0;
}

.access-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.access-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.access-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #11998e, #38ef7d);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(17, 153, 142, 0.3);
}

.access-icon i {
  font-size: 1.1rem;
  color: #ffffff;
}

.access-info h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
}

.access-info p {
  font-size: 0.9rem;
  color: #c0c0c0;
  margin: 0;
}

.quick-start-guide {
  background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
  padding: 50px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.quick-start-guide::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 25s linear infinite;
}

.guide-header {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.guide-header h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.guide-header p {
  font-size: 1.1rem;
  color: #ffffff;
  opacity: 0.9;
  margin: 0;
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.guide-step {
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.guide-step:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.step-info h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.step-info p {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 5px;
  font-weight: 600;
}

.step-info span {
  font-size: 0.9rem;
  color: #ffffff;
  opacity: 0.8;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .website-content {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .features-showcase,
  .device-compatibility,
  .access-methods {
    padding: 20px;
  }
  
  .guide-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .quick-start-guide {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .website-guide-section {
    padding: 60px 0;
  }
  
  .website-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .website-features {
    order: -1;
  }
  
  .website-text .text-block {
    padding: 20px;
  }
  
  .website-text .text-block p {
    font-size: 1rem;
  }
  
  .device-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .device-item {
    padding: 15px;
  }
  
  .device-item i {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .guide-header h3 {
    font-size: 1.8rem;
  }
  
  .guide-steps {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .website-guide-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .website-text .text-block {
    padding: 18px;
  }
  
  .website-text .text-block p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .features-showcase,
  .device-compatibility,
  .access-methods {
    padding: 18px;
  }
  
  .features-showcase h3,
  .device-compatibility h3,
  .access-methods h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .showcase-item,
  .access-item {
    padding: 12px;
    gap: 12px;
  }
  
  .showcase-icon,
  .access-icon {
    width: 40px;
    height: 40px;
  }
  
  .showcase-icon i,
  .access-icon i {
    font-size: 1.1rem;
  }
  
  .showcase-content h4,
  .access-info h4 {
    font-size: 0.95rem;
  }
  
  .showcase-content p,
  .access-info p {
    font-size: 0.85rem;
  }
  
  .device-item {
    padding: 12px;
  }
  
  .device-item i {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .device-item h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
  }
  
  .device-item p {
    font-size: 0.8rem;
  }
  
  .quick-start-guide {
    padding: 30px 20px;
    margin: 0 10px;
  }
  
  .guide-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  
  .guide-header p {
    font-size: 1rem;
  }
  
  .guide-step {
    padding: 20px 15px;
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
  
  .step-icon i {
    font-size: 1.5rem;
  }
  
  .step-info h4 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .step-info p {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  
  .step-info span {
    font-size: 0.85rem;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  padding: 60px 0 0;
  margin-top: 80px;
  position: relative;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
  z-index: 1;
}

.main-footer .container {
  position: relative;
  z-index: 2;
}

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

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

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

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

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  background: linear-gradient(45deg, #ffd700, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-description {
  color: #c0c0c0;
  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: #e8e8e8;
  font-size: 0.95rem;
}

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

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

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

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

.footer-link {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.95rem;
  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: #ff6b35;
  transition: width 0.3s ease;
}

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

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

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

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
  border-color: transparent;
}

.social-link i {
  font-size: 1.2rem;
}

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

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(17, 153, 142, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(17, 153, 142, 0.2);
}

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

.security-badge span {
  color: #e8e8e8;
  font-size: 0.85rem;
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

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

.payment-methods {
  display: flex;
  align-items: center;
  gap: 15px;
}

.payment-text {
  color: #c0c0c0;
  font-size: 0.9rem;
  font-weight: 500;
}

.payment-icons {
  display: flex;
  gap: 10px;
}

.payment-icons i {
  font-size: 1.5rem;
  color: #667eea;
  transition: all 0.3s ease;
}

.payment-icons i:hover {
  color: #ffd700;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
  }
  
  .footer-services {
    display: none;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 40px 0 0;
    margin-top: 60px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-services {
    display: block;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
    max-width: 400px;
    margin: 0 auto 25px;
  }
  
  .footer-contact {
    align-items: center;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .footer-title {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-menu {
    align-items: center;
    max-width: 200px;
    margin: 0 auto;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-security {
    align-items: center;
    max-width: 200px;
    margin: 0 auto;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .payment-methods {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 30px 0 0;
    margin-top: 40px;
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .footer-logo-text {
    font-size: 1.4rem;
  }
  
  .footer-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .social-link i {
    font-size: 1.1rem;
  }
  
  .security-badge {
    padding: 6px 10px;
  }
  
  .security-badge i {
    font-size: 0.8rem;
  }
  
  .security-badge span {
    font-size: 0.8rem;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .payment-text {
    font-size: 0.85rem;
  }
  
  .payment-icons i {
    font-size: 1.3rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 999;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

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

/* Individual button colors */
.sticky-login {
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.sticky-login:hover {
  background: linear-gradient(180deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-2px);
}

.sticky-login:hover i {
  transform: scale(1.1);
  color: #ffffff;
}

.sticky-register {
  background: linear-gradient(180deg, #ff6b35 0%, #f7931e 100%);
}

.sticky-register:hover {
  background: linear-gradient(180deg, #e55a2b 0%, #e8851a 100%);
  transform: translateY(-2px);
}

.sticky-register:hover i {
  transform: scale(1.1);
  color: #ffffff;
}

.sticky-credit {
  background: linear-gradient(180deg, #11998e 0%, #38ef7d 100%);
}

.sticky-credit:hover {
  background: linear-gradient(180deg, #0e8378 0%, #32d96c 100%);
  transform: translateY(-2px);
}

.sticky-credit:hover i {
  transform: scale(1.1);
  color: #ffffff;
}

/* Animation for attention */
.sticky-credit {
  animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(56, 239, 125, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(56, 239, 125, 0.6), 0 0 30px rgba(56, 239, 125, 0.4);
  }
}

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

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.75rem;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
    line-height: 1.1;
  }
}

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

/* Ensure content doesn't get hidden behind sticky buttons */
body {
  padding-bottom: 65px;
}

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

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

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

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  z-index: 1;
}

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

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.login-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.login-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="login-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23login-pattern)"/></svg>');
  z-index: 1;
}

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

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

.login-logo {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

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

.login-subtitle {
  font-size: 1rem;
  color: #c0c0c0;
  text-align: center;
  margin-bottom: 30px;
}

.error-message {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 10px;
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

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

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

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

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

.form-label {
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
}

.input-wrapper {
  position: relative;
}

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

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

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

.form-input:valid {
  border-color: #11998e;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0a0a0;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.form-input:focus + .input-icon,
.form-input:focus ~ .input-icon {
  color: #ff6b35;
}

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

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

.login-btn {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

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

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

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

.btn-text {
  transition: opacity 0.3s ease;
}

.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.login-btn.loading .btn-text {
  opacity: 0;
}

.login-btn.loading .loading-spinner {
  opacity: 1;
}

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

.register-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ff6b35;
  transform: translateY(-2px);
}

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

.login-security {
  margin-top: 25px;
  text-align: center;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: rgba(17, 153, 142, 0.1);
  border: 1px solid rgba(17, 153, 142, 0.3);
  border-radius: 20px;
  color: #11998e;
  font-size: 0.85rem;
  font-weight: 500;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 80px 0 30px;
  }
  
  .login-form-wrapper {
    padding: 30px 25px;
    margin: 0 20px;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 14px 40px 14px 40px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 14px 18px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 11px 18px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 70px 0 25px;
  }
  
  .login-form-wrapper {
    padding: 25px 20px;
    margin: 0 15px;
    border-radius: 20px;
  }
  
  .logo-container {
    margin-bottom: 25px;
  }
  
  .login-logo {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  
  .form-label {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 12px 35px 12px 35px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 1rem;
  }
  
  .password-toggle {
    right: 12px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    gap: 8px;
  }
  
  .error-message {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
  
  .security-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .security-badge i {
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .login-form-wrapper {
    padding: 20px 15px;
    margin: 0 10px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .form-input {
    padding: 11px 32px 11px 32px;
    font-size: 0.85rem;
  }
  
  .input-icon {
    left: 10px;
    font-size: 0.9rem;
  }
  
  .password-toggle {
    right: 10px;
    font-size: 0.9rem;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 25%, rgba(17, 153, 142, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
  z-index: 1;
}

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

.register-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.register-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.register-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="register-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23register-pattern)"/></svg>');
  z-index: 1;
}

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

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

.register-logo {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

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

.register-subtitle {
  font-size: 1rem;
  color: #c0c0c0;
  text-align: center;
  margin-bottom: 30px;
}

.error-message,
.success-message {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #ff6b6b;
}

.success-message {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
}

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

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

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

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

.form-label {
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
}

.input-wrapper {
  position: relative;
}

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

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

.form-input:focus {
  outline: none;
  border-color: #11998e;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(17, 153, 142, 0.2);
}

.form-input:valid {
  border-color: #28a745;
}

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

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0a0a0;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.form-input:focus ~ .input-icon {
  color: #11998e;
}

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

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

.register-btn {
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(45deg, #11998e, #38ef7d);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.register-btn:hover {
  background: linear-gradient(45deg, #0e8378, #32d96c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 153, 142, 0.4);
}

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

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

.btn-text {
  transition: opacity 0.3s ease;
}

.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.register-btn.loading .btn-text {
  opacity: 0;
}

.register-btn.loading .loading-spinner {
  opacity: 1;
}

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

.login-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: #11998e;
  transform: translateY(-2px);
}

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

.register-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.register-security {
  margin-top: 20px;
  text-align: center;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 80px 0 30px;
  }
  
  .register-form-wrapper {
    padding: 30px 25px;
    margin: 0 20px;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 15px 45px 15px 45px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 15px 18px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 11px 18px;
    font-size: 0.95rem;
  }
  
  .register-features {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 70px 0 25px;
  }
  
  .register-form-wrapper {
    padding: 25px 20px;
    margin: 0 15px;
    border-radius: 20px;
  }
  
  .logo-container {
    margin-bottom: 25px;
  }
  
  .register-logo {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  
  .form-label {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 14px 40px 14px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 14px;
    font-size: 1.1rem;
  }
  
  .register-btn {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    gap: 8px;
  }
  
  .error-message,
  .success-message {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
  
  .register-features {
    padding: 15px;
    margin-top: 20px;
  }
  
  .feature-item {
    font-size: 0.85rem;
  }
  
  .security-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .security-badge i {
    font-size: 0.9rem;
  }
  
  .input-hint {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .register-form-wrapper {
    padding: 20px 15px;
    margin: 0 10px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .form-input {
    padding: 13px 38px 13px 38px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 1rem;
  }
  
  .register-features {
    padding: 12px;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(102, 126, 234, 0.1) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  background: linear-gradient(45deg, #ffd700, #ff6b35, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease-in-out infinite;
}

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

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

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4), 0 0 30px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6), 0 0 50px rgba(255, 215, 0, 0.5);
  }
}

.hero-cta-btn:hover {
  background: linear-gradient(45deg, #e55a2b, #e8851a, #e6c200);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.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, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
}

.promotion-section:nth-child(odd) {
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0f0f23 100%);
}

.promotion-alt {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="promo-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23promo-pattern)"/></svg>');
  z-index: 1;
}

.promotion-section .container {
  position: relative;
  z-index: 2;
}

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

.promotion-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

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

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 700px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

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

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.card-header i {
  font-size: 2.5rem;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.card-body {
  margin-bottom: 30px;
}

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

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.benefit-list li:hover {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: #ff6b35;
  transform: translateX(5px);
}

.benefit-list li i {
  color: #11998e;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.benefit-list li span {
  color: #e8e8e8;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
}

.card-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.promotion-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(45deg, #11998e, #38ef7d);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 25px;
  box-shadow: 0 6px 20px rgba(17, 153, 142, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promotion-btn:hover {
  background: linear-gradient(45deg, #0e8378, #32d96c);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(17, 153, 142, 0.4);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-cta-btn {
    padding: 18px 35px;
    font-size: 1.2rem;
  }
  
  .promotion-title {
    font-size: 2.2rem;
  }
  
  .promotion-card {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 35px;
  }
  
  .hero-cta-btn {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-header {
    margin-bottom: 40px;
  }
  
  .promotion-title {
    font-size: 2rem;
    line-height: 1.4;
  }
  
  .promotion-card {
    padding: 30px 25px;
    margin: 0 20px;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .card-header i {
    font-size: 2.2rem;
  }
  
  .card-header h3 {
    font-size: 1.6rem;
  }
  
  .benefit-list li {
    padding: 10px;
  }
  
  .benefit-list li span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 0 50px;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.4;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-cta-btn {
    padding: 14px 25px;
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 40px 0;
  }
  
  .promotion-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .promotion-card {
    padding: 25px 20px;
    margin: 0 15px;
  }
  
  .card-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
  }
  
  .card-header i {
    font-size: 2rem;
  }
  
  .card-header h3 {
    font-size: 1.4rem;
  }
  
  .card-body {
    margin-bottom: 25px;
  }
  
  .benefit-list {
    gap: 12px;
  }
  
  .benefit-list li {
    padding: 8px;
    gap: 10px;
  }
  
  .benefit-list li i {
    font-size: 1.1rem;
  }
  
  .benefit-list li span {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .promotion-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .promotion-btn i {
    font-size: 1.1rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .promotion-card {
    padding: 20px 15px;
    margin: 0 10px;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .card-header h3 {
    font-size: 1.2rem;
  }
  
  .benefit-list li span {
    font-size: 0.9rem;
  }
}