/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 21 2026 | 11:25:35 */
  .type-banner {
    width: 100%;
    margin: 48px auto;
    background: #070a10;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    box-shadow: 0 26px 90px rgba(0,0,0,0.78);
    overflow: hidden;
    color: #eef4ff;
    position: relative;
  }

  .type-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(900px 260px at 15% 15%, rgba(0, 195, 255, 0.16), transparent 60%),
      radial-gradient(760px 300px at 95% 120%, rgba(255, 209, 102, 0.12), transparent 58%);
    pointer-events: none;
  }

  .type-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 18px;
    padding: 26px;
    align-items: center;
  }

  .type-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
  }

  .type-head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
  }

  .type-mark {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 900;
    color: rgba(238,244,255,0.72);
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
  }

  .type-brand {
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 900;
    color: rgba(238,244,255,0.86);
  }

  .type-title {
    font-size: 2.15rem;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #f6f7ff;
  }

  .type-title span {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    background: rgba(0,195,255,0.14);
    border: 1px solid rgba(0,195,255,0.22);
    color: #bfefff;
    font-weight: 900;
  }

  .type-sub {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(238,244,255,0.78);
    max-width: 74ch;
  }

  .type-right {
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .type-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0b1220;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 18px 44px rgba(0,0,0,0.40);
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    width: 100%;
  }

  .type-btn:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 22px 58px rgba(0,0,0,0.48);
  }

  .type-btn svg {
    width: 16px;
    height: 16px;
  }

  .type-note {
    font-size: 12px;
    text-align: center;
    color: rgba(238,244,255,0.64);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    font-weight: 800;
  }

  @media (max-width: 980px) {
    .type-inner {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 20px;
    }

    .type-head {
      justify-content: center;
    }

    .type-right {
      width: 100%;
    }

    .type-title {
      font-size: 1.6rem;
    }
  }




:root{
  --tbl-bg: #ffffff;
  --tbl-bg-2: #fafafa;
  --tbl-head: #f1f3f5;
  --tbl-border: #e5e7eb;
  --tbl-border-soft: #edf0f2;
  --tbl-text: #111827;
  --tbl-text-dim: #4b5563;
  --tbl-accent: #2563eb;
  --tbl-radius: 14px;
  --tbl-pad-y: 12px;
  --tbl-pad-x: 14px;
}

table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--tbl-bg);
  border: 1px solid var(--tbl-border);
  border-radius: var(--tbl-radius);
  overflow: hidden;
  color: var(--tbl-text);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

caption{
  caption-side: top;
  padding: 12px 14px;
  color: var(--tbl-text-dim);
  font-weight: 600;
  text-align: left;
}

thead th{
  background: linear-gradient(180deg, #f8fafc, var(--tbl-head));
  color: var(--tbl-text);
  font-weight: 700;
  border-bottom: 1px solid var(--tbl-border);
}

th, td{
  padding: var(--tbl-pad-y) var(--tbl-pad-x);
  text-align: left;
  vertical-align: middle;
  border-right: 1px solid var(--tbl-border-soft);
}

th:last-child,
td:last-child{
  border-right: 0;
}

tbody td{
  border-bottom: 1px solid var(--tbl-border-soft);
}

tbody tr:nth-child(even){
  background: var(--tbl-bg-2);
}

tbody tr:hover{
  background: rgba(37,99,235,.06);
}

tbody tr:hover td{
  border-bottom-color: rgba(37,99,235,.18);
}

tbody tr:last-child td{
  border-bottom: 0;
}

table a{
  color: var(--tbl-accent);
  text-decoration: none;
}

table a:hover{
  text-decoration: underline;
}

@media (max-width: 820px){
  table{
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  th, td{
    white-space: nowrap;
  }
}

