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

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

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

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

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

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  outline: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

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

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

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

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

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

.image-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
}

.overlay-content 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);
  }
}

/* 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;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    justify-content: center;
    margin-bottom: 40px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-item {
    padding: 12px 16px;
    justify-content: center;
  }
  
  .image-overlay {
    position: static;
    margin: 20px auto 0;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 16px 24px;
  }
  
  .feature-item {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
}

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

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

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

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

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

.logo-link:hover .logo-text {
  background: linear-gradient(135deg, #f7931e, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
}

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

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

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

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

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

.cta-button:hover {
  background: linear-gradient(135deg, #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: space-between;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

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

.mobile-menu-toggle:hover .hamburger-line {
  background: #ff6b35;
}

.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.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

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

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

.mobile-menu-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 400px;
}

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

.mobile-nav-item:last-child {
  margin-bottom: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 25px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 500;
}

.mobile-nav-link:hover {
  background: rgba(255, 107, 53, 0.15);
  color: #ff6b35;
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

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

.mobile-cta-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 25px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-list {
    gap: 20px;
  }
  
  .nav-link {
    font-size: 0.95rem;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

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

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
    height: 55px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .mobile-menu-toggle {
    width: 25px;
    height: 20px;
  }
  
  .hamburger-line {
    height: 2px;
  }
  
  .mobile-menu-content {
    padding: 15px;
  }
  
  .mobile-nav-link {
    padding: 15px 20px;
    font-size: 1rem;
  }
  
  .mobile-cta-button {
    padding: 15px 20px;
    font-size: 1rem;
  }
}

/* About Service Section Styles */
.about-service-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
  position: relative;
}

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

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

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

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

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

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

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

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

.feature-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

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

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

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

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

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

.highlight-item span strong {
  color: #ff6b35;
}

.about-conclusion {
  padding: 25px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
}

.about-conclusion p {
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
  text-align: justify;
}

.about-conclusion strong {
  color: #ff6b35;
  font-weight: 600;
}

.about-image {
  position: relative;
  text-align: center;
}

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

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

.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

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

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

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

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .about-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-service-section {
    padding: 80px 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .about-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .feature-highlights {
    padding: 25px 20px;
  }
  
  .highlight-item {
    padding: 12px 0;
  }
  
  .highlight-item span {
    font-size: 0.95rem;
  }
  
  .about-conclusion {
    padding: 20px;
  }
  
  .about-conclusion p {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.7rem;
    line-height: 1.4;
  }
  
  .about-description p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .feature-highlights {
    padding: 20px 15px;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px 0;
  }
  
  .highlight-item span {
    font-size: 0.9rem;
    text-align: center;
  }
  
  .about-conclusion {
    padding: 18px;
  }
  
  .about-conclusion p {
    font-size: 0.95rem;
  }
  
  .stat-item {
    padding: 12px 15px;
  }
  
  .stat-item i {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

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

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

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

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

.security-image {
  position: relative;
  text-align: center;
}

.security-img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 2px solid rgba(255, 107, 53, 0.2);
}

.security-img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
}

.security-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  padding: 12px 25px;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

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

.security-text .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffffff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.security-description strong {
  color: #ff6b35;
  font-weight: 600;
}

.security-checklist {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.15);
}

.checklist-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checklist-title::before {
  content: '';
  width: 4px;
  height: 25px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.checklist-items {
  display: grid;
  gap: 15px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 8px;
  border-left: 3px solid #ff6b35;
  transition: all 0.3s ease;
}

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

.check-item i {
  font-size: 1.2rem;
  color: #ff6b35;
  margin-top: 2px;
  min-width: 20px;
}

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

.check-item span strong {
  color: #ff6b35;
  font-weight: 600;
}

.security-warning {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
  border-radius: 12px;
  border-left: 4px solid #ffc107;
  position: relative;
}

.security-warning::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 193, 7, 0.02);
  border-radius: 12px;
  pointer-events: none;
}

.security-warning > i {
  font-size: 1.5rem;
  color: #ffc107;
  margin-top: 2px;
  min-width: 24px;
}

.warning-content h4 {
  font-size: 1.2rem;
  color: #ffc107;
  margin-bottom: 10px;
  font-weight: 600;
}

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

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

.warning-content a:hover {
  color: #f7931e;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .security-content {
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
  }
  
  .security-text .section-title {
    font-size: 2rem;
  }
  
  .security-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .security-trust-section {
    padding: 80px 0;
  }
  
  .security-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .security-text .section-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .security-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .security-checklist {
    padding: 25px 20px;
  }
  
  .checklist-title {
    font-size: 1.2rem;
    text-align: center;
    justify-content: center;
  }
  
  .check-item {
    padding: 12px;
  }
  
  .check-item span {
    font-size: 0.95rem;
  }
  
  .security-warning {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    text-align: center;
  }
  
  .security-warning > i {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .security-container {
    padding: 0 15px;
  }
  
  .security-text .section-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .security-description p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .security-checklist {
    padding: 20px 15px;
  }
  
  .checklist-title {
    font-size: 1.1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .checklist-title::before {
    width: 30px;
    height: 4px;
  }
  
  .check-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px 10px;
  }
  
  .check-item span {
    font-size: 0.9rem;
    text-align: center;
  }
  
  .security-warning {
    padding: 18px;
  }
  
  .warning-content h4 {
    font-size: 1.1rem;
  }
  
  .warning-content p {
    font-size: 0.95rem;
  }
  
  .security-badge {
    font-size: 0.85rem;
    padding: 10px 20px;
  }
}

/* Services Rates Section Styles */
.services-rates-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
  position: relative;
}

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

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

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

.services-text .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffffff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.services-description p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

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

.services-description strong {
  color: #ff6b35;
  font-weight: 600;
}

.lottery-rates {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  position: relative;
  overflow: hidden;
}

.lottery-rates::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
}

.rates-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rates-title::before {
  content: '';
  width: 4px;
  height: 28px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.rates-list {
  display: grid;
  gap: 15px;
}

.rate-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.08));
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rate-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #ff6b35, #f7931e);
}

.rate-item:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.rate-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
  min-width: 40px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.rate-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rate-type {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.rate-amount {
  font-size: 1rem;
  color: #ff6b35;
  font-weight: 500;
}

.rate-item > i {
  font-size: 1.5rem;
  color: #ff6b35;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.rate-item:hover > i {
  opacity: 1;
  transform: scale(1.1);
}

.additional-content {
  margin-top: 40px;
}

.additional-content p {
  font-size: 1.05rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.additional-content p:last-child {
  margin-bottom: 0;
}

.additional-content strong {
  color: #ff6b35;
  font-weight: 600;
}

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

.additional-content a:hover {
  color: #f7931e;
  text-decoration: none;
}

.services-image {
  position: relative;
  text-align: center;
}

.services-img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

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

.service-features {
  display: grid;
  gap: 15px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.feature-card i {
  font-size: 2rem;
  color: #ff6b35;
  min-width: 32px;
}

.feature-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}

.feature-desc {
  font-size: 0.95rem;
  color: #ff6b35;
  font-weight: 500;
  margin-top: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-content {
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
  }
  
  .services-text .section-title {
    font-size: 2.1rem;
  }
  
  .services-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .services-rates-section {
    padding: 80px 0;
  }
  
  .services-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-text .section-title {
    font-size: 1.9rem;
    text-align: center;
  }
  
  .services-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .lottery-rates {
    padding: 25px 20px;
  }
  
  .rates-title {
    font-size: 1.3rem;
    justify-content: center;
  }
  
  .rate-item {
    padding: 15px;
    gap: 15px;
  }
  
  .rate-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    min-width: 35px;
  }
  
  .rate-type {
    font-size: 1rem;
  }
  
  .rate-amount {
    font-size: 0.95rem;
  }
  
  .additional-content p {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .services-container {
    padding: 0 15px;
  }
  
  .services-text .section-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .services-description p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .lottery-rates {
    padding: 20px 15px;
  }
  
  .rates-title {
    font-size: 1.2rem;
    flex-direction: column;
    text-align: center;
  }
  
  .rates-title::before {
    width: 30px;
    height: 4px;
  }
  
  .rate-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 18px 15px;
  }
  
  .rate-item > i {
    order: -1;
    font-size: 1.2rem;
  }
  
  .rate-info {
    text-align: center;
  }
  
  .rate-type {
    font-size: 0.95rem;
  }
  
  .rate-amount {
    font-size: 0.9rem;
  }
  
  .additional-content p {
    font-size: 0.95rem;
  }
  
  .feature-card {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .feature-content {
    text-align: center;
  }
  
  .feature-card i {
    font-size: 1.5rem;
  }
  
  .feature-title {
    font-size: 1rem;
  }
  
  .feature-desc {
    font-size: 0.9rem;
  }
}

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

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

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

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

.comparison-image {
  position: relative;
  text-align: center;
}

.comparison-img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 2px solid rgba(255, 107, 53, 0.2);
}

.comparison-img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
}

.comparison-badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  padding: 12px 25px;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

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

.comparison-text .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffffff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.comparison-description p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

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

.comparison-description strong {
  color: #ff6b35;
  font-weight: 600;
}

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

.comparison-description a:hover {
  color: #f7931e;
  text-decoration: none;
}

.comparison-points {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.15);
  position: relative;
  overflow: hidden;
}

.comparison-points::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
}

.points-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.points-title::before {
  content: '';
  width: 4px;
  height: 25px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.points-grid {
  display: grid;
  gap: 20px;
}

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.08));
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-left: 4px solid #ff6b35;
  transition: all 0.3s ease;
}

.point-item:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.point-item i {
  font-size: 1.5rem;
  color: #ff6b35;
  margin-top: 2px;
  min-width: 24px;
}

.point-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.point-content .point-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.point-content .point-desc {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.4;
}

.comparison-conclusion {
  padding: 25px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
  position: relative;
}

.comparison-conclusion::before {
  content: '';
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: 'Font Awesome 6 Free';
  content: '\f4ad';
  font-weight: 900;
  font-size: 3rem;
  color: rgba(255, 107, 53, 0.1);
  pointer-events: none;
}

.comparison-conclusion p {
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
  position: relative;
  z-index: 1;
}

.comparison-conclusion p:last-child {
  margin-bottom: 0;
}

.comparison-conclusion strong {
  color: #ff6b35;
  font-weight: 600;
}

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

.comparison-conclusion a:hover {
  color: #f7931e;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .comparison-content {
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
  }
  
  .comparison-text .section-title {
    font-size: 2rem;
  }
  
  .comparison-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .comparison-section {
    padding: 80px 0;
  }
  
  .comparison-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .comparison-text .section-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .comparison-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .comparison-points {
    padding: 25px 20px;
  }
  
  .points-title {
    font-size: 1.2rem;
    justify-content: center;
  }
  
  .point-item {
    padding: 15px;
    gap: 15px;
  }
  
  .point-content .point-title {
    font-size: 1rem;
  }
  
  .point-content .point-desc {
    font-size: 0.95rem;
  }
  
  .comparison-conclusion {
    padding: 20px;
  }
  
  .comparison-conclusion p {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .comparison-container {
    padding: 0 15px;
  }
  
  .comparison-text .section-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .comparison-description p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .comparison-points {
    padding: 20px 15px;
  }
  
  .points-title {
    font-size: 1.1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .points-title::before {
    width: 30px;
    height: 4px;
  }
  
  .point-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 18px 15px;
  }
  
  .point-content {
    text-align: center;
  }
  
  .point-content .point-title {
    font-size: 0.95rem;
  }
  
  .point-content .point-desc {
    font-size: 0.9rem;
  }
  
  .comparison-conclusion {
    padding: 18px;
  }
  
  .comparison-conclusion::before {
    display: none;
  }
  
  .comparison-conclusion p {
    font-size: 0.95rem;
  }
  
  .comparison-badge {
    font-size: 0.85rem;
    padding: 10px 20px;
    position: static;
    margin: 20px auto 0;
  }
}

/* Fraud Check Section Styles */
.fraud-check-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
  position: relative;
}

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

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

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

.fraud-text .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffffff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.fraud-description p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

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

.fraud-description strong {
  color: #ff6b35;
  font-weight: 600;
}

.trust-factors {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.15);
}

.factors-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.factors-title::before {
  content: '';
  width: 4px;
  height: 25px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.factors-grid {
  display: grid;
  gap: 20px;
}

.factor-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.08));
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-left: 4px solid #ff6b35;
  transition: all 0.3s ease;
}

.factor-item:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.factor-item i {
  font-size: 1.5rem;
  color: #ff6b35;
  margin-top: 2px;
  min-width: 24px;
}

.factor-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.factor-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.factor-desc {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.4;
}

.factor-desc strong {
  color: #ff6b35;
  font-weight: 600;
}

.verification-steps {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.15);
  position: relative;
  overflow: hidden;
}

.verification-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
}

.steps-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.steps-title::before {
  content: '';
  width: 4px;
  height: 25px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.steps-list {
  display: grid;
  gap: 15px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.step-item:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.15);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  min-width: 35px;
  box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.step-desc {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.4;
}

.expert-advice {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.1), rgba(46, 125, 50, 0.1));
  border-radius: 12px;
  border-left: 4px solid #4caf50;
  position: relative;
}

.expert-advice > i {
  font-size: 1.8rem;
  color: #4caf50;
  margin-top: 2px;
  min-width: 28px;
}

.advice-content h4 {
  font-size: 1.2rem;
  color: #4caf50;
  margin-bottom: 10px;
  font-weight: 600;
}

.advice-content p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

.advice-content strong {
  color: #ff6b35;
  font-weight: 600;
}

.fraud-image {
  position: relative;
  text-align: center;
}

.fraud-img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
  border: 2px solid rgba(255, 107, 53, 0.2);
}

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

.trust-indicators {
  display: grid;
  gap: 15px;
}

.indicator-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

.indicator-item i {
  font-size: 1.5rem;
  color: #4caf50;
  min-width: 24px;
}

.indicator-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.indicator-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}

.indicator-desc {
  font-size: 0.9rem;
  color: #4caf50;
  font-weight: 500;
  margin-top: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .fraud-content {
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
  }
  
  .fraud-text .section-title {
    font-size: 2.1rem;
  }
  
  .fraud-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .fraud-check-section {
    padding: 80px 0;
  }
  
  .fraud-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .fraud-text .section-title {
    font-size: 1.9rem;
    text-align: center;
  }
  
  .fraud-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .trust-factors {
    padding: 25px 20px;
  }
  
  .factors-title {
    font-size: 1.2rem;
    justify-content: center;
  }
  
  .factor-item {
    padding: 15px;
    gap: 15px;
  }
  
  .verification-steps {
    padding: 25px 20px;
  }
  
  .steps-title {
    font-size: 1.2rem;
    justify-content: center;
  }
  
  .step-item {
    padding: 15px;
    gap: 15px;
  }
  
  .expert-advice {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    text-align: center;
  }
  
  .expert-advice > i {
    align-self: center;
  }
  
  .advice-content p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .fraud-container {
    padding: 0 15px;
  }
  
  .fraud-text .section-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .fraud-description p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .trust-factors {
    padding: 20px 15px;
  }
  
  .factors-title {
    font-size: 1.1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .factors-title::before {
    width: 30px;
    height: 4px;
  }
  
  .factor-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 18px 15px;
  }
  
  .verification-steps {
    padding: 20px 15px;
  }
  
  .steps-title {
    font-size: 1.1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .steps-title::before {
    width: 30px;
    height: 4px;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 18px 15px;
  }
  
  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    min-width: 30px;
  }
  
  .step-title {
    font-size: 1rem;
  }
  
  .step-desc {
    font-size: 0.9rem;
  }
  
  .expert-advice {
    padding: 18px;
  }
  
  .expert-advice > i {
    font-size: 1.5rem;
  }
  
  .advice-content h4 {
    font-size: 1.1rem;
  }
  
  .advice-content p {
    font-size: 0.95rem;
  }
  
  .indicator-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .indicator-info {
    text-align: center;
  }
  
  .indicator-title {
    font-size: 0.95rem;
  }
  
  .indicator-desc {
    font-size: 0.85rem;
  }
}

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

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

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px 0;
  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-brand .footer-logo {
  margin-bottom: 20px;
}

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

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

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

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

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

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6b35;
  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(135deg, #ff6b35, #f7931e);
  border-radius: 1px;
}

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

.footer-links li {
  position: relative;
}

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

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

.footer-links a i {
  font-size: 0.9rem;
  color: #ff6b35;
  min-width: 16px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 40px;
  flex-wrap: wrap;
  gap: 20px;
}

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

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

.badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 15px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.badge-item:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: translateY(-2px);
}

.badge-item i {
  font-size: 0.9rem;
  color: #ff6b35;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
  }
  
  .footer-legal {
    grid-column: 1 / -1;
    margin-top: 20px;
  }
  
  .footer-legal .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 50px 15px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-description {
    text-align: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-title {
    text-align: center;
    font-size: 1.1rem;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links {
    align-items: center;
  }
  
  .footer-links a {
    justify-content: center;
  }
  
  .footer-legal .footer-links {
    grid-template-columns: 1fr;
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-badges {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 40px 15px 0;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  .footer-logo-text {
    font-size: 1.5rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  
  .footer-title {
    font-size: 1rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
    padding: 10px 0;
  }
  
  .footer-badges {
    gap: 8px;
  }
  
  .badge-item {
    padding: 6px 12px;
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
  
  .badge-item span {
    font-size: 0.8rem;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
    text-align: center;
  }
}

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

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

.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-login {
  background: linear-gradient(135deg, #2196f3, #1976d2);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #1976d2, #1565c0);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.sticky-btn-register {
  background: linear-gradient(135deg, #4caf50, #388e3c);
}

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

.sticky-btn-credit {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  position: relative;
}

.sticky-btn-credit::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.sticky-btn-credit:hover {
  background: linear-gradient(135deg, #e55a2b, #e8851a);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

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

.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.8rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: all 0.3s ease;
}

.sticky-btn:hover span {
  color: #ffffff;
}

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

@media (max-width: 480px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
    line-height: 1.1;
  }
  
  .sticky-btn-credit::after {
    width: 10px;
    height: 10px;
    top: -1px;
    right: -1px;
  }
}

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

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

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

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

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

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

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

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

.login-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transition: all 0.3s ease;
}

.login-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 107, 53, 0.3) inset;
}

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

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

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(255, 107, 53, 0.3));
  transition: transform 0.3s ease;
}

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

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

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

.login-form-container {
  margin-bottom: 30px;
}

.error-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 8px;
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-bottom: 20px;
  animation: shake 0.5s ease-in-out;
}

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

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

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

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

.form-label i {
  font-size: 0.9rem;
  color: #ff6b35;
  min-width: 16px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

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

.form-input.valid {
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.form-input.invalid {
  border-color: #f44336;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

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

.password-input {
  padding-right: 50px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.password-toggle:hover {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
}

.input-feedback {
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 16px;
  transition: all 0.3s ease;
}

.input-feedback.success {
  color: #4caf50;
}

.input-feedback.error {
  color: #f44336;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #cccccc;
  position: relative;
}

.checkbox-container input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-color: #ff6b35;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.forgot-link {
  color: #ff6b35;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.login-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.btn-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

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

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

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

.security-info {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #cccccc;
}

.security-item i {
  color: #4caf50;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 15px;
    min-height: calc(100vh - 60px);
  }
  
  .login-card {
    padding: 30px 25px;
    border-radius: 15px;
  }
  
  .login-title {
    font-size: 1.7rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .security-info {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 15px 10px;
    min-height: calc(100vh - 50px);
  }
  
  .login-card {
    padding: 25px 20px;
    border-radius: 12px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .password-input {
    padding-right: 45px;
  }
  
  .login-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .security-info {
    flex-direction: column;
    gap: 10px;
  }
}

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

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

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

.register-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transition: all 0.3s ease;
}

.register-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 107, 53, 0.3) inset;
}

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

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

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(255, 107, 53, 0.3));
  transition: transform 0.3s ease;
}

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

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

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

.register-form-container {
  margin-bottom: 30px;
}

.error-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 8px;
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-bottom: 20px;
  animation: shake 0.5s ease-in-out;
}

.success-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 8px;
  color: #4caf50;
  font-size: 0.9rem;
  margin-bottom: 20px;
  animation: slideIn 0.5s ease-in-out;
}

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

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

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

.error-message i {
  color: #f44336;
}

.success-message i {
  color: #4caf50;
}

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

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

.form-label i {
  font-size: 0.9rem;
  color: #ff6b35;
  min-width: 16px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

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

.form-input.valid {
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.form-input.invalid {
  border-color: #f44336;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

.input-feedback {
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 16px;
  transition: all 0.3s ease;
}

.input-feedback.success {
  color: #4caf50;
}

.input-feedback.error {
  color: #f44336;
}

.form-terms {
  margin-bottom: 30px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
  display: none;
}

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

.checkbox-container input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-color: #ff6b35;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

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

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

.register-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

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

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

.register-btn:hover {
  background: linear-gradient(135deg, #e55a2b, #e8851a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

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

.btn-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.login-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ff6b35;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

.security-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #cccccc;
}

.security-item i {
  color: #4caf50;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 15px;
    min-height: calc(100vh - 60px);
  }
  
  .register-card {
    padding: 30px 25px;
    border-radius: 15px;
  }
  
  .register-title {
    font-size: 1.7rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .security-info {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 15px 10px;
    min-height: calc(100vh - 50px);
  }
  
  .register-card {
    padding: 25px 20px;
    border-radius: 12px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .security-info {
    flex-direction: column;
    gap: 10px;
  }
  
  .checkbox-container {
    font-size: 0.85rem;
  }
}

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

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

.hero-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

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

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.hero-description {
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.hero-cta-btn:hover {
  background: linear-gradient(135deg, #e55a2b, #e8851a);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

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

/* Promotion Section Styles */
.promotion-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  position: relative;
}

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

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

.promotion-section-alt::before {
  background: radial-gradient(ellipse at 80% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
}

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

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promotion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
}

.promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 107, 53, 0.3) inset;
}

.promotion-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.promotion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  flex-shrink: 0;
}

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

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

.promotion-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 30px;
}

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

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

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

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

.promotion-item i {
  font-size: 1.1rem;
  color: #4caf50;
  margin-top: 2px;
  min-width: 18px;
  flex-shrink: 0;
}

.promotion-item span {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.promotion-item:hover span {
  color: #ffffff;
}

.promotion-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
  border-radius: 15px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  min-width: 150px;
  text-align: center;
}

.highlight-amount {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #ff6b35;
  line-height: 1;
  margin-bottom: 5px;
}

.highlight-text {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.promotion-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.promotion-cta-btn:hover {
  background: linear-gradient(135deg, #e55a2b, #e8851a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
  
  .promotion-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .promotion-highlight {
    align-self: center;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 80px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-cta-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-card {
    padding: 30px 25px;
  }
  
  .promotion-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .promotion-title {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .promotion-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 12px 0;
  }
  
  .promotion-highlight {
    padding: 25px;
    min-width: 120px;
  }
  
  .highlight-amount {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .hero-container,
  .promotion-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .hero-cta-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-card {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .promotion-icon {
    width: 50px;
    height: 50px;
  }
  
  .promotion-icon i {
    font-size: 1.3rem;
  }
  
  .promotion-title {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  
  .promotion-item span {
    font-size: 0.95rem;
  }
  
  .promotion-highlight {
    padding: 20px;
    min-width: 100px;
  }
  
  .highlight-amount {
    font-size: 1.8rem;
  }
  
  .highlight-text {
    font-size: 0.9rem;
  }
  
  .promotion-cta-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}