body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Ganti height dengan min-height */
  background-color: #7b1515;
  background-image: url('../img/new/g4.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

  .hero-section {
    /* display: flex; */
    align-items: center;
    /* justify-content: space-between; */
  }

  .hero-content {
    /* display: flex; */
    /* max-width: 50%; */
  }

  .hero-content h1 {
    font-size: 3rem;
    color: #333333;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 1.2rem;
    color: #555555;
    margin-bottom: 30px;
  }

  .hero-content button {
    margin-right: 10px;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .hero-content .btn-primary {
    background-color: #f3f3f3;
    color: #984f0a;
    border-radius: 8px;
  }

  .hero-content .btn-primary:hover {
    color: #fff;
    background-color: #F4953F;
  }

  .hero-content .btn-teta {
    background-color: #500202;
    color: #f3f3f3;
    border-radius: 8px;
    margin-right: 8px;
  }

  .hero-content .btn-teta:hover {
    color: #500202;
    background-color: #f3f3f3;
  }

  .hero-content .btn-alpha {
    background-color: #F4953F;
    color: #f3f3f3;
    border-radius: 8px;
  }

  .hero-content .btn-alpha:hover {
    color: #984f0a;
    background-color: #f3f3f3;
  }

  .hero-content .btn-secondary {
    background-color: #6c757d;
    color: #ffffff;
    border-radius: 8px;
  }

  .hero-content .btn-secondary:hover {
    background-color: #495057;
  }

  .hero-image {
    text-align: center;
  }

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

  .hero-image .btn-beta {
    gap: 9px;
    padding: 8px 20px;
    background-color: #f3f3f3;
    color: #984f0a;
    border-radius: 8px;
  }

  .hero-image .btn-beta:hover {
    color: #fff;
    background-color: #F4953F;
  }

  .hero-primary {
    color: #ffb671;
  }

  .btn-dark {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #1d1b1b;
    color: #ffffff;
    border-radius: 8px;
    padding: 10px 20px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
  }

  .btn-dark svg {
    flex-shrink: 0;
  }

  .visitor-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
  }

  .visitor-count {
    font-size: 14px;
    font-weight: 400;
  }

  .visitor-count span {
    font-weight: bold;
    color: #ffc107;
  }

  .lyo-1 {
    padding-top: 10px;
  }

  .lyo-2 {
    padding-top: 15px;
  }

  .font-heading-custom {
    font-size: 70px;
  }

  .lyo-0 {
    display: flex;
  }

  /* Styling untuk elemen ketikan */
  .typewrite>.wrap {
    /* display: inline-block; */
    position: relative;
  }

  /* Styling untuk cursor '|' */
  .typewrite>.wrap::after {
    content: '';
    position: absolute;
    right: -0.1em;
    /* Posisi di ujung kanan teks */
    animation: blink 0.7s step-end infinite;
    /* Animasi berkedip */
    color: red;
    /* Warna cursor */
    font-weight: bold;
    /* Agar terlihat lebih tegas */
  }

  /* Animasi berkedip */
  @keyframes blink {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }
  
  .card {
    margin: 10px;
  }

  .card-header {
    font-weight: bold;
    border: none;
    color: #c1650f;
    background-color: transparent;
  }

  .card-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;

    /* Background with opacity and blur effect */
    background-color: rgba(255, 255, 255, 0.479);
    /* Putih dengan transparansi */
    backdrop-filter: blur(10px);
    /* Efek blur */
    -webkit-backdrop-filter: blur(10px);
    /* Support untuk Safari */
    border-radius: 8px;
    /* Menambahkan sudut membulat */
  }

  .announcement {
    margin-bottom: 10px;
    padding: 15px;
    border: 2px solid #7b6715;
    border-radius: 8px;
    background-color: #f9f9f9;
  }

  .announcement-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
  }

  .announcement-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
  }

  .announcement-description {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
  }

  /* Gaya dasar untuk elemen yang disembunyikan */
  .d-1,
  .d-2,
  .d-3 {
    display: none;
    /* Tidak ditampilkan secara default */
    opacity: 0;
    /* Tidak terlihat */
    transform: translateY(20px);
    /* Geser ke bawah */
    transition: opacity 0.5s ease, transform 0.5s ease;
    /* Transisi animasi */
  }

  /* Gaya untuk elemen yang aktif (ditampilkan) */
  .active {
    display: block;
    /* Tampilkan elemen */
    opacity: 1;
    /* Muncul sepenuhnya */
    transform: translateY(0);
    /* Geser ke posisi awal */
  }
