/* RESET & BODY */

body {
    background: linear-gradient(to bottom, #000000 0%, #ffce00 100%);
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    display: block;
    
        background: url('https://imgku.app/cakar-web-depanbru') no-repeat center center;
    background-size: cover;
    background-attachment: fixed ;
}
  :root {
      --tg-red: #e02424;
      --tg-red-d: #c81e1e;
      --tg-green: #16a34a;
      --tg-gray: #666;
      font-family: "Inter", Arial, sans-serif;
  }

  .ttg-hdr {
      max-width: 1200px;
      margin: 30px auto 0;
      padding: 0 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
  }

  /* Animated heading */
  @keyframes ttg-slideHue {
      0% {
          background-position: 0% 50%;
      }

      100% {
          background-position: 200% 50%;
      }
  }

  .ttg-hdg {
      font-size: clamp(1.8rem, 5vw, 2.4rem);
      font-weight: 900;
      margin: 0;
      line-height: 1.1;
      background: linear-gradient(45deg, #000000, #000000);
      background-size: 200% 200%;
      background-clip: text;
      color: #fff;
      animation: ttg-slideHue 4s linear infinite;
      white-space: nowrap;
  }

  /* Search box */
  .ttg-srch input[type="search"] {
      border: 2px solid #ffe300;
      border-radius: 30px;
      padding: 8px 14px;
      min-width: 230px;
      font-size: 1rem;
      transition: box-shadow .25s;
      outline: none;
      background: #fff;
      color: black;

  }

  .ttg-srch input[type="search"]:focus {
      box-shadow: 0 0 0 4px rgba(224, 36, 36, .25);
  }

  /* Separator */
  .ttg-sep {
      border: none;
      border-top: 4px solid #ffd900;
      max-width: 1200px;
      margin: 20px auto;
  }

  .ttg-grid {
      max-width: 1200px;
      margin: 0 auto 40px;
      padding: 0 16px;
      display: grid;
      gap: 22px;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

.ttg-card {
  background: linear-gradient(2deg, #ffb300, #ffdc00);
  border: 2px solid #fbff00;
  border-radius: 12px;
  box-shadow: 6px 0px 14px -4px rgb(0 0 0);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s, box-shadow .25s;
}

  .ttg-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 20px rgba(0, 0, 0, .15);
  }

  .ttg-card__title {
      font-size: 1.15rem;
      font-weight: 700;
      color: #000000;
      text-align: center;
      margin-bottom: 4px;
      border-bottom: 2px dashed var(--tg-red);
      padding-bottom: 6px;
  }

  .ttg-card__row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
  }

  .ttg-card__label {
      color:#000000;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 4px;
  }

  .ttg-card__label svg {
      width: 14px;
      height: 14px;
  }

.ttg-card__value {
  font-weight: 700;
  color: #000000;
}

.ttg-card__value--tutup {
  color: #ff0000;
}

  div#togel-box {
      width: 840px;
      background: #000000;
  }

  .ttg-card__value--buka {
          color: #008330;

  }

.ttg-card__site a {
    border: 2px solid #ffc300;
    display: block;
    margin-top: 8px;
    text-align: center;
    background: linear-gradient(to bottom, #f68d00 0%, #ffd800 50%);
    color: #000000;
    padding: 6px 0;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0px 0px 10px 0px black;
    text-transform: uppercase;
}

  .ttg-card__site a:hover {
      background: #9e8500;
color:white;
  }

/* BUTTON LOGIN */
.btn-login {
    display: inline-block;
    padding: 8px 16px;
    background: #ffcc00;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.btn-login:hover {
    background: #ffaa00;
}


/* MOBILE */
@media (max-width: 768px) {
    .ttg-hdr {
        flex-direction: column;
        text-align: center;
    }

    .btn-login {
        width: 100%;
        padding: 12px;
    }

    .ttg-grid {
        grid-template-columns: 1fr;
    }
}