.deposkuyy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    font-family: "Montserrat", sans-serif;
    animation: fadeIn 1s ease-in-out;
}

    .card {
      flex: 1 1 500px;
	  width: auto;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      transform: translateY(0);
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(138, 43, 226, 0.2);
    }

    label {
      display: block;
      margin-bottom: 6px;
      font-weight: 500;
      color: #333;
    }

    input {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      margin-bottom: 15px;
      font-size: 15px;
      transition: 0.25s ease;
    }

    input:focus {
      border-color: #8e24aa;
      outline: none;
      box-shadow: 0 0 8px rgba(142, 36, 170, 0.3);
      transform: scale(1.02);
    }

    .note {
      font-size: 13px;
      color: #d32f2f;
      margin-bottom: 20px;
      line-height: 1.5;
      background: #fce4ec;
      padding: 10px;
      border-radius: 8px;
    }

    .btn-group {
      display: flex;
      justify-content: space-between;
      gap: 10px;
    }

    button {
      flex: 1;
      background: linear-gradient(90deg, #8e24aa, #7b1fa2);
      color: white;
      border: none;
      padding: 12px;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.3s;
      font-weight: 500;
    }

    button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(142, 36, 170, 0.3);
    }

    .result-section {
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .placeholder {
      font-weight: 500;
      animation: fadeIn 0.8s ease-in-out;
      margin-top: 30px;
    }

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

    .result-table {
      width: 100%;
      margin-top: 20px;
      border-collapse: collapse;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.6s ease;
    }

    .result-table.active {
      opacity: 1;
      transform: translateY(0);
    }

    .result-table td {
      padding: 12px 8px;
      border-bottom: 1px solid #eee;
    }

    .result-table td:first-child {
      font-weight: 500;
      color: #444;
      text-align: left;
    }

    .result-table td:last-child {
      text-align: right;
    }

    .highlight {
      color: #6a1b9a;
      font-weight: bold;
      font-size: 18px;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      body {
        padding: 20px;
      }
      .deposkuyy {
        flex-direction: column;
      }
 
    }
