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

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

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

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

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

/* Container Styles */
.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 25%, #415a77 50%, #1b263b 75%, #0d1b2a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

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

.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-size: 2.5rem;
  color: #ffc107;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
  color: #e9ecef;
  margin-bottom: 36px;
  line-height: 1.7;
}

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

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

.btn-primary {
  background: linear-gradient(45deg, #ffc107, #ffb300);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #ffb300, #ffa000);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.btn-secondary:hover {
  background: #ffc107;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

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

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

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

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

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

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

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #ffc107, #ffb300);
  padding: 4px;
}

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-container {
    padding: 0 16px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 12px;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 1rem;
    min-width: 140px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .feature-item {
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 12px;
  }
  
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .feature-item {
    justify-content: center;
  }
}

/* Header Styles */
.main-header {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #0d1b2a 100%);
  border-bottom: 2px solid rgba(255, 193, 7, 0.3);
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffc107;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

.logo-text:hover {
  color: #ffb300;
}

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

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

.nav-item {
  margin: 0;
}

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

.nav-link:hover {
  color: #ffc107;
  background: rgba(255, 193, 7, 0.1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ffc107;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

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

.btn-cta {
  background: linear-gradient(45deg, #ffc107, #ffb300);
  color: #000;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta:hover {
  background: linear-gradient(45deg, #ffb300, #ffa000);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.mobile-menu-toggle {
  display: none;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s ease;
}

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

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

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

.hamburger-btn.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: 1001;
  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: 320px;
  height: 100vh;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #0d1b2a 100%);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  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: 20px 24px;
  border-bottom: 2px solid rgba(255, 193, 7, 0.2);
}

.mobile-logo {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffc107;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.mobile-menu-close:hover {
  background: rgba(255, 193, 7, 0.1);
  color: #ffb300;
}

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

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

.mobile-nav-item {
  margin-bottom: 8px;
}

.mobile-nav-item.mobile-cta {
  margin-top: 24px;
  padding: 0 24px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav-link:hover {
  background: rgba(255, 193, 7, 0.1);
  border-left-color: #ffc107;
  color: #ffc107;
}

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

.btn-mobile-cta {
  background: linear-gradient(45deg, #ffc107, #ffb300);
  color: #000;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
  transition: all 0.3s ease;
  justify-content: center;
  border-left: none !important;
}

.btn-mobile-cta:hover {
  background: linear-gradient(45deg, #ffb300, #ffa000);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
  color: #000;
}

/* Adjust body padding for fixed header */
body {
  padding-top: 80px;
}

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

/* Mobile Styles */
@media (max-width: 768px) {
  .main-header {
    padding: 12px 0;
  }
  
  .header-container {
    padding: 0 16px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .header-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    width: 280px;
  }
  
  .mobile-menu-header {
    padding: 16px 20px;
  }
  
  .mobile-logo {
    font-size: 1.3rem;
  }
  
  .mobile-nav-link {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .btn-mobile-cta {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  body {
    padding-top: 70px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 12px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-menu {
    width: 100vw;
  }
  
  .mobile-menu-header {
    padding: 16px;
  }
  
  .mobile-nav-link {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .mobile-nav-item.mobile-cta {
    padding: 0 16px;
  }
  
  .btn-mobile-cta {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  body {
    padding-top: 65px;
  }
}

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

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

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

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

.platform-title {
  font-size: 2.2rem;
  color: #ffc107;
  margin-bottom: 32px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

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

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

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

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

.highlight-item:hover {
  padding-left: 12px;
  border-left: 3px solid #ffc107;
}

.highlight-item i {
  color: #ffc107;
  font-size: 1.4rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

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

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

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

.platform-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  border: 3px solid rgba(255, 193, 7, 0.3);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .platform-container {
    padding: 0 16px;
  }
  
  .platform-content {
    gap: 40px;
  }
  
  .platform-title {
    font-size: 2rem;
  }
  
  .platform-description p {
    font-size: 1rem;
  }
  
  .highlight-item span {
    font-size: 0.95rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .platform-section {
    padding: 60px 0;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  
  .platform-title {
    font-size: 1.8rem;
    margin-bottom: 28px;
    text-align: center;
  }
  
  .platform-description {
    margin-bottom: 32px;
  }
  
  .platform-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .platform-highlights {
    margin-bottom: 32px;
  }
  
  .highlight-item {
    padding: 12px 0;
    gap: 12px;
  }
  
  .highlight-item i {
    font-size: 1.2rem;
    width: 20px;
  }
  
  .highlight-item span {
    font-size: 0.9rem;
  }
  
  .platform-cta {
    justify-content: center;
  }
  
  .platform-image {
    order: -1;
  }
}

@media (max-width: 480px) {
  .platform-container {
    padding: 0 12px;
  }
  
  .platform-section {
    padding: 40px 0;
  }
  
  .platform-title {
    font-size: 1.6rem;
  }
  
  .platform-description p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .highlight-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
  }
  
  .highlight-item span {
    font-size: 0.85rem;
  }
}

/* System Analysis Section */
.system-section {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 25%, #0d1b2a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.system-title {
  font-size: 2.2rem;
  color: #ffc107;
  margin-bottom: 32px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

.system-description strong {
  color: #dc3545;
  font-weight: 700;
}

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

.system-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  border: 3px solid rgba(220, 53, 69, 0.3);
}

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

.warning-alerts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.alert {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid;
  transition: all 0.3s ease;
}

.alert-warning {
  background: rgba(255, 193, 7, 0.1);
  border-left-color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.alert-warning:hover {
  background: rgba(255, 193, 7, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2);
}

.alert-info {
  background: rgba(220, 53, 69, 0.1);
  border-left-color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.alert-info:hover {
  background: rgba(220, 53, 69, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.2);
}

.alert i {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.alert-warning i {
  color: #ffc107;
}

.alert-info i {
  color: #dc3545;
}

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

.alert-content p {
  font-size: 0.95rem;
  color: #e9ecef;
  margin: 0;
  line-height: 1.6;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .system-container {
    padding: 0 16px;
  }
  
  .system-content {
    gap: 40px;
  }
  
  .system-title {
    font-size: 2rem;
  }
  
  .system-description p {
    font-size: 1rem;
  }
  
  .warning-alerts {
    gap: 16px;
  }
  
  .alert {
    padding: 16px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .system-section {
    padding: 60px 0;
  }
  
  .system-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .system-title {
    font-size: 1.8rem;
    margin-bottom: 28px;
    text-align: center;
  }
  
  .system-description {
    margin-bottom: 32px;
  }
  
  .system-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .warning-alerts {
    gap: 16px;
  }
  
  .alert {
    padding: 16px;
    gap: 12px;
  }
  
  .alert i {
    font-size: 1.3rem;
  }
  
  .alert-content h4 {
    font-size: 1rem;
  }
  
  .alert-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .system-container {
    padding: 0 12px;
  }
  
  .system-section {
    padding: 40px 0;
  }
  
  .system-title {
    font-size: 1.6rem;
  }
  
  .system-description p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .alert {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 16px 12px;
  }
  
  .alert i {
    margin-top: 0;
  }
  
  .alert-content h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  
  .alert-content p {
    font-size: 0.85rem;
  }
}

/* Website Center Section */
.website-section {
  background: linear-gradient(135deg, #1b263b 0%, #415a77 50%, #1b263b 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.website-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 40% 20%, rgba(65, 90, 119, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.website-title {
  font-size: 2.2rem;
  color: #ffc107;
  margin-bottom: 32px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

.website-description strong {
  color: #ffc107;
  font-weight: 700;
}

.website-description a {
  color: #17a2b8;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.website-description a:hover {
  color: #138496;
}

.website-features {
  margin-bottom: 40px;
}

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

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

.feature-card:hover {
  background: rgba(255, 193, 7, 0.1);
  border-color: rgba(255, 193, 7, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

.website-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  border: 3px solid rgba(255, 193, 7, 0.3);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .website-container {
    padding: 0 16px;
  }
  
  .website-content {
    gap: 40px;
  }
  
  .website-title {
    font-size: 2rem;
  }
  
  .website-description p {
    font-size: 1rem;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .feature-card {
    padding: 20px 16px;
  }
  
  .feature-card i {
    font-size: 2.2rem;
  }
  
  .feature-card h4 {
    font-size: 1rem;
  }
  
  .feature-card p {
    font-size: 0.85rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .website-section {
    padding: 60px 0;
  }
  
  .website-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  
  .website-title {
    font-size: 1.8rem;
    margin-bottom: 28px;
    text-align: center;
  }
  
  .website-description {
    margin-bottom: 32px;
  }
  
  .website-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .feature-card {
    padding: 20px;
    text-align: center;
  }
  
  .feature-card i {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .feature-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .feature-card p {
    font-size: 0.85rem;
  }
  
  .website-cta {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .website-container {
    padding: 0 12px;
  }
  
  .website-section {
    padding: 40px 0;
  }
  
  .website-title {
    font-size: 1.6rem;
  }
  
  .website-description p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .feature-card {
    padding: 16px;
  }
  
  .feature-card i {
    font-size: 1.8rem;
  }
  
  .feature-card h4 {
    font-size: 0.95rem;
  }
  
  .feature-card p {
    font-size: 0.8rem;
  }
}

/* Pantip Reviews Section */
.pantip-section {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 25%, #415a77 50%, #1b263b 75%, #0d1b2a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pantip-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(23, 162, 184, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.pantip-title {
  font-size: 2.2rem;
  color: #ffc107;
  margin-bottom: 32px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

.pantip-description strong {
  color: #17a2b8;
  font-weight: 700;
}

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

.pantip-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  border: 3px solid rgba(23, 162, 184, 0.3);
}

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

.review-categories {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.review-positive,
.review-negative {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid;
  transition: all 0.3s ease;
}

.review-positive {
  border-left-color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.review-positive:hover {
  background: rgba(40, 167, 69, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.2);
}

.review-negative {
  border-left-color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.review-negative:hover {
  background: rgba(255, 193, 7, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-header i {
  font-size: 1.3rem;
}

.review-positive .review-header i {
  color: #28a745;
}

.review-negative .review-header i {
  color: #ffc107;
}

.review-header h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0;
  font-weight: 700;
}

.review-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.review-categories li {
  font-size: 0.95rem;
  color: #ced4da;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.review-categories li:last-child {
  margin-bottom: 0;
}

.review-categories li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #17a2b8;
  font-weight: bold;
}

.pantip-conclusion {
  margin-top: 32px;
}

.conclusion-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(23, 162, 184, 0.1);
  border: 1px solid rgba(23, 162, 184, 0.3);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.conclusion-card:hover {
  background: rgba(23, 162, 184, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(23, 162, 184, 0.2);
}

.conclusion-card i {
  font-size: 1.5rem;
  color: #17a2b8;
  flex-shrink: 0;
  margin-top: 4px;
}

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

.conclusion-content p {
  font-size: 0.95rem;
  color: #e9ecef;
  margin: 0;
  line-height: 1.6;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .pantip-container {
    padding: 0 16px;
  }
  
  .pantip-content {
    gap: 40px;
  }
  
  .pantip-title {
    font-size: 2rem;
  }
  
  .pantip-description p {
    font-size: 1rem;
  }
  
  .review-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .review-positive,
  .review-negative {
    padding: 20px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .pantip-section {
    padding: 60px 0;
  }
  
  .pantip-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pantip-title {
    font-size: 1.8rem;
    margin-bottom: 28px;
    text-align: center;
  }
  
  .pantip-description {
    margin-bottom: 32px;
  }
  
  .pantip-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .review-categories {
    margin-bottom: 32px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .review-positive,
  .review-negative {
    padding: 20px 16px;
  }
  
  .review-header {
    gap: 10px;
    margin-bottom: 12px;
  }
  
  .review-header i {
    font-size: 1.2rem;
  }
  
  .review-header h4 {
    font-size: 1rem;
  }
  
  .review-categories li {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .conclusion-card {
    padding: 20px 16px;
    gap: 12px;
  }
  
  .conclusion-card i {
    font-size: 1.3rem;
  }
  
  .conclusion-content h4 {
    font-size: 1rem;
  }
  
  .conclusion-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .pantip-container {
    padding: 0 12px;
  }
  
  .pantip-section {
    padding: 40px 0;
  }
  
  .pantip-title {
    font-size: 1.6rem;
  }
  
  .pantip-description p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .review-positive,
  .review-negative {
    padding: 16px 12px;
  }
  
  .review-categories li {
    font-size: 0.85rem;
    padding-left: 16px;
  }
  
  .conclusion-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
  }
  
  .conclusion-card i {
    margin-top: 0;
    margin-bottom: 8px;
  }
  
  .conclusion-content h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  
  .conclusion-content p {
    font-size: 0.85rem;
  }
}

/* Registration Guide Section */
.registration-section {
  background: linear-gradient(135deg, #1b263b 0%, #0d1b2a 50%, #1b263b 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.registration-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(40, 167, 69, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.registration-title {
  font-size: 2.2rem;
  color: #ffc107;
  margin-bottom: 32px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

.registration-description strong {
  color: #28a745;
  font-weight: 700;
}

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

.link-highlight:hover {
  color: #ffb300;
  text-decoration: none;
}

.registration-steps {
  margin-bottom: 40px;
}

.registration-steps h3 {
  font-size: 1.5rem;
  color: #28a745;
  margin-bottom: 24px;
  text-align: center;
}

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

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

.step-item:hover {
  background: rgba(40, 167, 69, 0.1);
  border-color: rgba(40, 167, 69, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.2);
}

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

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

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

.safety-tips {
  margin-bottom: 40px;
}

.safety-tips h3 {
  font-size: 1.5rem;
  color: #ffc107;
  margin-bottom: 24px;
  text-align: center;
}

.tips-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.tip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 8px;
  border-left: 4px solid #ffc107;
  transition: all 0.3s ease;
}

.tip-item:hover {
  background: rgba(255, 193, 7, 0.15);
  transform: translateX(8px);
}

.tip-item i {
  color: #ffc107;
  font-size: 1.3rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

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

.registration-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.2rem;
  min-width: 200px;
}

.registration-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 100px;
}

.registration-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  border: 3px solid rgba(40, 167, 69, 0.3);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .registration-container {
    padding: 0 16px;
  }
  
  .registration-content {
    gap: 40px;
  }
  
  .registration-title {
    font-size: 2rem;
  }
  
  .registration-description p {
    font-size: 1rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .step-item {
    padding: 16px;
  }
  
  .registration-image {
    position: relative;
    top: auto;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .registration-section {
    padding: 60px 0;
  }
  
  .registration-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .registration-title {
    font-size: 1.8rem;
    margin-bottom: 28px;
    text-align: center;
  }
  
  .registration-description {
    margin-bottom: 32px;
  }
  
  .registration-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .registration-steps {
    margin-bottom: 32px;
  }
  
  .registration-steps h3 {
    font-size: 1.3rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .step-item {
    padding: 16px;
    gap: 12px;
  }
  
  .step-number {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  
  .step-content h4 {
    font-size: 1rem;
  }
  
  .step-content p {
    font-size: 0.85rem;
  }
  
  .safety-tips h3 {
    font-size: 1.3rem;
  }
  
  .tip-item {
    padding: 14px 16px;
    gap: 12px;
  }
  
  .tip-item i {
    font-size: 1.2rem;
    width: 20px;
  }
  
  .tip-item span {
    font-size: 0.9rem;
  }
  
  .btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .registration-container {
    padding: 0 12px;
  }
  
  .registration-section {
    padding: 40px 0;
  }
  
  .registration-title {
    font-size: 1.6rem;
  }
  
  .registration-description p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .registration-steps h3,
  .safety-tips h3 {
    font-size: 1.2rem;
  }
  
  .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
  }
  
  .step-number {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .step-content h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  
  .step-content p {
    font-size: 0.8rem;
  }
  
  .tip-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px;
  }
  
  .tip-item i {
    margin-bottom: 8px;
  }
  
  .tip-item span {
    font-size: 0.85rem;
  }
  
  .btn-large {
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 25%, #0d1b2a 100%);
  border-top: 3px solid #ffc107;
  padding: 60px 0 20px;
  margin-top: 80px;
  position: relative;
}

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

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

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

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

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffc107;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 16px;
  display: inline-block;
}

.footer-description {
  font-size: 1rem;
  color: #ced4da;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 350px;
}

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

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

.contact-item i {
  color: #ffc107;
  font-size: 1.1rem;
  width: 18px;
  text-align: center;
}

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

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

.footer-link:hover {
  color: #ffc107;
  padding-left: 8px;
}

.footer-link i {
  font-size: 1rem;
  width: 16px;
  text-align: center;
  transition: color 0.3s ease;
}

.footer-link:hover i {
  color: #ffc107;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.3), transparent);
  margin: 40px 0 30px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.footer-disclaimer {
  font-size: 0.8rem !important;
  color: #adb5bd !important;
  font-style: italic;
}

.footer-security {
  display: flex;
  justify-content: flex-end;
}

.security-badges {
  display: flex;
  gap: 20px;
}

.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.security-badge:hover {
  background: rgba(255, 193, 7, 0.1);
  border-color: rgba(255, 193, 7, 0.4);
  transform: translateY(-2px);
}

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

.security-badge span {
  color: #e9ecef;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 16px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    gap: 30px;
  }
  
  .security-badges {
    gap: 16px;
  }
  
  .security-badge {
    padding: 10px 12px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .main-footer {
    padding: 40px 0 20px;
    margin-top: 60px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-brand {
    order: -1;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-description {
    max-width: none;
    margin: 0 auto 20px;
    text-align: center;
  }
  
  .footer-contact {
    justify-content: center;
    align-items: center;
  }
  
  .footer-title {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .footer-nav {
    align-items: center;
  }
  
  .footer-link {
    justify-content: center;
  }
  
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  
  .footer-security {
    justify-content: center;
  }
  
  .security-badges {
    gap: 12px;
  }
  
  .security-badge {
    padding: 8px 10px;
  }
  
  .security-badge i {
    font-size: 1.1rem;
  }
  
  .security-badge span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 12px;
  }
  
  .main-footer {
    padding: 32px 0 16px;
  }
  
  .footer-content {
    gap: 24px;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  
  .footer-nav {
    gap: 8px;
  }
  
  .footer-link {
    font-size: 0.9rem;
    padding: 4px 0;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
  
  .footer-disclaimer {
    font-size: 0.75rem !important;
  }
  
  .security-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  .security-badge {
    padding: 8px;
    flex: 1;
    min-width: 80px;
  }
  
  .security-badge i {
    font-size: 1rem;
  }
  
  .security-badge span {
    font-size: 0.7rem;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

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

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

.sticky-btn-login {
  background: linear-gradient(135deg, #17a2b8, #138496);
  color: #ffffff;
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #138496, #117a8b);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(23, 162, 184, 0.4);
}

.sticky-btn-register {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #ffffff;
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #218838, #1e7e34);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.sticky-btn-credit {
  background: linear-gradient(135deg, #ffc107, #ffb300);
  color: #000;
  font-weight: 700;
}

.sticky-btn-credit:hover {
  background: linear-gradient(135deg, #ffb300, #ffa000);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

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

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

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

.sticky-btn:hover span {
  font-weight: 700;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .sticky-btn {
    padding: 14px 10px;
  }
  
  .sticky-btn i {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }
  
  .sticky-btn span {
    font-size: 0.9rem;
  }
  
  body {
    padding-bottom: 75px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 12px 8px;
    min-height: 65px;
  }
  
  .sticky-btn i {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }
  
  .sticky-btn span {
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .sticky-btn:hover span {
    font-weight: 700;
  }
  
  body {
    padding-bottom: 65px;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 10px 6px;
    min-height: 60px;
  }
  
  .sticky-btn i {
    font-size: 1.3rem;
    margin-bottom: 4px;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
    line-height: 1.1;
  }
  
  body {
    padding-bottom: 60px;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .sticky-btn {
    padding: 8px 4px;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 3px;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
  }
  
  body {
    padding-bottom: 55px;
  }
}

/* Login Section */
.login-section {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 25%, #415a77 50%, #1b263b 75%, #0d1b2a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 20px;
  position: relative;
  overflow: hidden;
}

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

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

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

.login-card:hover {
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

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

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

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

.login-title {
  font-size: 2rem;
  color: #ffc107;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 24px;
  display: none;
  align-items: center;
  gap: 8px;
  animation: slideDown 0.3s ease;
}

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

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

.error-text {
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: 600;
}

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

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

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

.form-label i {
  color: #ffc107;
  font-size: 1.1rem;
  width: 18px;
  text-align: center;
}

.form-input {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 193, 7, 0.2);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
  outline: none;
}

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

.form-input:focus {
  border-color: #ffc107;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

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

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

.password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #adb5bd;
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s ease;
}

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

.input-error {
  font-size: 0.85rem;
  color: #dc3545;
  font-weight: 500;
  display: none;
  margin-left: 4px;
}

.input-error.show {
  display: block;
  animation: slideDown 0.3s ease;
}

.login-btn {
  background: linear-gradient(45deg, #ffc107, #ffb300);
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.login-btn:hover {
  background: linear-gradient(45deg, #ffb300, #ffa000);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

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

.login-btn.loading {
  pointer-events: none;
}

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

.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-top: 2px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
}

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

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

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

.form-divider span {
  background: rgba(255, 255, 255, 0.05);
  color: #ced4da;
  padding: 0 16px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

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

.register-btn:hover {
  background: #ffc107;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

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

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

.security-info i {
  color: #28a745;
}

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .login-section {
    padding: 90px 16px 20px;
  }
  
  .login-card {
    max-width: 420px;
    padding: 32px;
  }
  
  .logo-img {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .login-section {
    padding: 80px 12px 20px;
    min-height: calc(100vh - 65px);
  }
  
  .login-card {
    max-width: 100%;
    padding: 28px 24px;
    margin: 0 auto;
  }
  
  .logo-img {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 14px 16px;
  }
  
  .password-toggle {
    right: 12px;
  }
  
  .login-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 70px 8px 20px;
  }
  
  .login-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  
  .login-header {
    margin-bottom: 28px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  
  .security-info {
    font-size: 0.85rem;
  }
}

/* Register Section */
.register-section {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 25%, #415a77 50%, #1b263b 75%, #0d1b2a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 20px;
  position: relative;
  overflow: hidden;
}

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

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

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

.register-card:hover {
  border-color: rgba(40, 167, 69, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.register-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

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

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

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

.register-title {
  font-size: 2rem;
  color: #28a745;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.success-message {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 24px;
  display: none;
  align-items: center;
  gap: 8px;
  animation: slideDown 0.3s ease;
}

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

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

.success-text {
  color: #28a745;
  font-size: 0.9rem;
  font-weight: 600;
}

.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 24px;
  display: none;
  align-items: center;
  gap: 8px;
  animation: slideDown 0.3s ease;
}

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

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

.error-text {
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: 600;
}

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

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

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

.form-label i {
  color: #28a745;
  font-size: 1.1rem;
  width: 18px;
  text-align: center;
}

.form-input {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(40, 167, 69, 0.2);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
  outline: none;
}

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

.form-input:focus {
  border-color: #28a745;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

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

.input-error {
  font-size: 0.85rem;
  color: #dc3545;
  font-weight: 500;
  display: none;
  margin-left: 4px;
}

.input-error.show {
  display: block;
  animation: slideDown 0.3s ease;
}

.register-btn {
  background: linear-gradient(45deg, #28a745, #20c997);
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.register-btn:hover {
  background: linear-gradient(45deg, #218838, #1e7e34);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

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

.register-btn.loading {
  pointer-events: none;
}

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

.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
}

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

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

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

.form-divider span {
  background: rgba(255, 255, 255, 0.05);
  color: #ced4da;
  padding: 0 16px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.login-btn {
  background: transparent;
  border: 2px solid #28a745;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: #28a745;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.login-btn:hover {
  background: #28a745;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

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

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

.security-info i {
  color: #28a745;
}

.terms-info i {
  color: #ffc107;
}

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .register-section {
    padding: 90px 16px 20px;
  }
  
  .register-card {
    max-width: 420px;
    padding: 32px;
  }
  
  .logo-img {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .register-section {
    padding: 80px 12px 20px;
    min-height: calc(100vh - 65px);
  }
  
  .register-card {
    max-width: 100%;
    padding: 28px 24px;
    margin: 0 auto;
  }
  
  .logo-img {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 14px 16px;
  }
  
  .register-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .register-footer {
    gap: 10px;
  }
  
  .security-info,
  .terms-info {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 70px 8px 20px;
  }
  
  .register-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  
  .register-header {
    margin-bottom: 28px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  
  .security-info,
  .terms-info {
    font-size: 0.75rem;
    flex-direction: column;
    gap: 4px;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 25%, #415a77 50%, #1b263b 75%, #0d1b2a 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

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

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

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  color: #ffc107;
  margin-bottom: 40px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-hero {
  background: linear-gradient(45deg, #ffc107, #ffb300);
  color: #000;
  padding: 20px 40px;
  border-radius: 30px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-hero:hover {
  background: linear-gradient(45deg, #ffb300, #ffa000);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 193, 7, 0.6);
}

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

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

.promotion-section.promotion-alt {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #0d1b2a 100%);
}

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

.promotion-section.promotion-alt::before {
  background: radial-gradient(ellipse at 30% 70%, rgba(23, 162, 184, 0.08) 0%, transparent 70%);
}

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

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

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

.promotion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.promotion-title {
  font-size: 2rem;
  color: #ffc107;
  margin: 0;
  flex: 1;
  min-width: 250px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promotion-amount {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
  min-width: 120px;
}

.promotion-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.promotion-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.promotion-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.1);
  border-radius: 12px;
  border-left: 4px solid #28a745;
  transition: all 0.3s ease;
}

.promotion-item:hover {
  background: rgba(40, 167, 69, 0.1);
  border-color: rgba(40, 167, 69, 0.3);
  transform: translateX(8px);
}

.promotion-item i {
  color: #28a745;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.promotion-item span {
  color: #e9ecef;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

.promotion-cta {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.btn-promotion {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-promotion:hover {
  background: linear-gradient(45deg, #218838, #1e7e34);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-container,
  .promotion-container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .btn-hero {
    padding: 18px 36px;
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-card {
    padding: 32px;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-amount {
    font-size: 1.6rem;
    padding: 14px 20px;
  }
  
  .promotion-list {
    grid-template-columns: 1fr;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 40px;
  }
  
  .hero-container,
  .promotion-container {
    padding: 0 12px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 32px;
  }
  
  .btn-hero {
    padding: 16px 28px;
    font-size: 1.1rem;
    gap: 8px;
  }
  
  .btn-hero i {
    font-size: 1.3rem;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-card {
    padding: 24px;
  }
  
  .promotion-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    margin-bottom: 24px;
  }
  
  .promotion-title {
    font-size: 1.5rem;
    min-width: auto;
    text-align: center;
  }
  
  .promotion-amount {
    font-size: 1.4rem;
    padding: 12px 18px;
    min-width: auto;
  }
  
  .promotion-list {
    gap: 16px;
  }
  
  .promotion-item {
    padding: 14px 16px;
    gap: 12px;
  }
  
  .promotion-item i {
    font-size: 1.1rem;
    width: 20px;
  }
  
  .promotion-item span {
    font-size: 0.95rem;
  }
  
  .btn-promotion {
    padding: 14px 24px;
    font-size: 1.1rem;
    gap: 8px;
  }
  
  .btn-promotion i {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }
  
  .btn-hero {
    padding: 14px 24px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .promotion-card {
    padding: 20px 16px;
  }
  
  .promotion-title {
    font-size: 1.3rem;
  }
  
  .promotion-amount {
    font-size: 1.2rem;
    padding: 10px 16px;
  }
  
  .promotion-item {
    padding: 12px 14px;
    gap: 10px;
  }
  
  .promotion-item span {
    font-size: 0.9rem;
  }
  
  .btn-promotion {
    padding: 12px 20px;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
}