html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #00d4ff;
  --secondary-color: #f8fafc;
  --background-light: #f8fafc;
  --text-muted: #6b7280;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body {
  font-family: "Inter", sans-serif;
  background: var(--background-light);

  line-height: 1.6;
}

.update-hero {
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95),
      rgba(183, 216, 253, 0.85)
    ),
    url("{{ asset("assets/img/hero-img.png") }}") center center / cover
      no-repeat;
  padding: 80px 0;
  text-align: center;
  color: #1a1a2e;
  border-radius: 0 0 20px 20px;
}

.update-hero h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.update-hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 20px;
  opacity: 0.9;
}

.btn-get-started {
  background: #193a44;

  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-get-started:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

.section {
  padding: 60px 0;
}

.section-title h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 2rem;

  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.step-item,
.note-item {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step-item:hover,
.note-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.step-item i,
.note-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.step-item h4,
.note-item h4 {
  font-weight: 600;

  margin-bottom: 10px;
}

pre code {
  background: #f1f5f9;
  padding: 15px;
  border-radius: 8px;
  font-size: 0.95rem;

  overflow-x: auto;
}

.note-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.settings-gallery img {
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

.support-section {
  background: #fff;
  padding: 50px 0;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  margin: 40px 0;
}

.support-section .btn-get-started {
  background: var(--primary-color);
  color: #fff;
}

.support-section .btn-get-started:hover {
  background: #00aaff;
}

.footer {
  background: var(--secondary-color);
  color: #1a1a2e;
  padding: 30px 0;
}

.footer a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #1a1a2e;
}

.social-links a {
  font-size: 1.5rem;
  margin: 0 10px;
  color: #1a1a2e;
  opacity: 0.7;
}

.social-links a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .update-hero h1 {
    font-size: 1.8rem;
  }

  .update-hero p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .note-item {
    flex-direction: column;
  }
}
#preloader {
  display: none !important;
}
