* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: #111;
  color: #fff;
  font-family: "Inter", sans-serif;
}

body.modal-open {
  overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background: linear-gradient(180deg, #151515 0%, #101010 100%);
}

.noise {
    display: none; /* Removed for performance */
}

.external-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .68);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.external-modal.active {
  opacity: 1;
  visibility: visible;
}

.external-modal-panel {
  position: relative;
  width: min(100%, 430px);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(31, 31, 31, .98), rgba(15, 15, 15, .98));
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(10px) scale(.98);
  transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1);
}

.external-modal.active .external-modal-panel {
  transform: translateY(0) scale(1);
}

.external-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.external-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 23px;
}

.external-modal h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.15;
}

.external-modal p {
  color: #a8a8a8;
  font-size: 1rem;
  line-height: 1.65;
}

.external-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

.external-cancel-btn,
.external-continue-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.external-cancel-btn {
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.external-continue-btn {
  border: 0;
  background: #fff;
  color: #111;
}

.container {
    width: min(94%, 1120px);
    max-width: 1120px;
    margin: auto;
}

.hero {
  padding: 72px 0 18px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: #777;
  font-size: .92rem;
  font-weight: 600;
}

.breadcrumb a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color .2s ease;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span:last-child {
  min-width: 0;
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-card {
    display: grid;
    grid-template-columns: minmax(250px, 340px) 1fr;
    gap: 30px;
    position: relative;
}

.site-side,
.hero-content {
  position: relative;
  z-index: 2;
}

.site-side {
  position: relative;
}

.site-image-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 2 / 3;
    min-height: 430px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    background: #050505;
}

.site-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-trusted-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 6;
  display: none;
  align-items: center;
  justify-content: center;
  height: 21px;
  min-width: 64px;
  padding: 0 11px;
  border: 1px solid #23c9ff;
  border-radius: 999px;
  background: rgba(4, 36, 55, .82);
  color: #69dcff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .8px;
  line-height: 1;
  text-transform: uppercase;
}

.detail-trusted-badge.active {
  display: inline-flex;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 4px;
}

.detail-report-flag {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-bottom: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #7890a7;
  font-size: 27px;
  line-height: 1;
  text-decoration: none;
  transition: transform .25s ease, color .25s ease;
}

.detail-report-flag:hover {
  transform: translateY(-1px);
  color: #e8f4ff;
}

.subtitle {
    margin-bottom: 16px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.site-title {
    margin-bottom: 16px;
    color: #fff;
    font-size: clamp(2.35rem, 5vw, 3.9rem);
    font-weight: 800;
    line-height: 1.05;
}

.meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 15px;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #f2f2f2;
    font-size: .88rem;
    font-weight: 700;
    text-transform: capitalize;
}

.verified {
    background: #24c75d;
    color: #fff;
}

.site-description {
    max-width: 720px;
    margin-top: 52px;
    color: #9a9a9a;
    font-size: 1.22rem;
    line-height: 1.55;
}

.button-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 15px 24px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition: background .25s ease, transform .25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn.primary-btn {
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, #1d4a8f, #082b73);
    border: none;
    border-radius: 999px;
    padding: 0;
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn.primary-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.btn.primary-btn:hover {
    transform: translateY(-4px);
    background: linear-gradient(to bottom, #245cb1, #0a358c);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(29, 74, 143, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn.primary-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.1s ease;
}

.grid-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 18px 0 88px;
}

.info-card {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, .075);
    background: transparent;
}

.info-title {
    margin-bottom: 16px;
    color: #9a9a9a;
    font-size: 1rem;
    font-weight: 700;
}

.tags,
.list {
    display: flex;
    flex-direction: column;
}

.tags {
    gap: 0;
}

.list {
    gap: 8px;
}

.tag,
.list-item {
    padding: 3px 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.55;
}

.label {
    color: #9a9a9a;
    font-weight: 700;
}

.empty {
    opacity: .7;
    font-style: italic;
}

.info-title {
    margin-bottom: 14px;
    color: #9ccfff;
    font-size: 1.04rem;
}

.subtitle {
    margin-bottom: 14px;
    color: #9ccfff;
    font-size: .78rem;
    letter-spacing: 2.4px;
}

@media (max-width: 950px) {
    .hero {
        padding-top: 54px;
    }

    .hero-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-image-box {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }

    .site-description {
        margin-top: 28px;
    }
}

@media (max-width: 650px) {
    body::before { background: #0f1012; }

    .container {
        width: min(100% - 24px, 460px);
    }

  .hero {
    padding: 42px 0 14px;
  }

  .breadcrumb {
    gap: 7px;
    margin-bottom: 20px;
    font-size: .82rem;
  }

  .external-modal {
    align-items: flex-end;
    padding: 14px;
  }

  .external-modal-panel {
    padding: 26px 20px 20px;
    border-radius: 12px;
  }

  .external-modal h2 {
    font-size: 1.35rem;
  }

  .external-modal-actions {
    grid-template-columns: 1fr;
  }

    .hero-card {
        gap: 22px;
    }

  .site-image-box {
    aspect-ratio: 16 / 11;
    min-height: 0;
        padding: 22px;
        border-radius: 8px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .36);
  }

  .detail-trusted-badge {
    top: 10px;
    right: 10px;
    height: 19px;
    min-width: 58px;
    padding: 0 9px;
    font-size: 8px;
  }

  .hero-content {
    padding-top: 0;
  }

  .detail-report-flag {
    align-self: flex-start;
    width: 24px;
    height: 24px;
    margin-bottom: 18px;
    font-size: 25px;
  }


    .site-title {
        margin-bottom: 14px;
        font-size: clamp(2.2rem, 11vw, 3rem);
        line-height: 1.03;
    }

    .meta-badges {
        gap: 9px;
        margin-bottom: 22px;
    }

    .badge {
        min-height: 38px;
        padding: 9px 14px;
        font-size: .86rem;
    }

    .site-description {
        margin-top: 0;
        color: #b8b8b8;
        font-size: 1.02rem;
        line-height: 1.75;
    }

    .button-wrap {
        width: 100%;
        margin-top: 28px;
    }

    .btn {
        width: 100%;
        min-height: 58px;
        padding: 14px 18px;
        border-radius: 10px;
    }



  .grid-section {
    padding: 12px 0 58px;
  }

    .info-card {
        padding: 24px 0;
    }



    .tag,
    .list-item {
        font-size: .98rem;
        line-height: 1.65;
    }
}

@media (max-width: 430px) {
    .container {
        width: calc(100% - 22px);
    }

    .hero {
        padding-top: 34px;
    }

    .site-image-box {
        aspect-ratio: 16 / 12.5;
        padding: 18px;
    }

    .subtitle {
        font-size: .72rem;
        letter-spacing: 2px;
    }

    .site-title {
        font-size: clamp(2rem, 12vw, 2.65rem);
    }

    .badge {
        min-height: 36px;
        padding: 8px 12px;
        font-size: .82rem;
    }

    .site-description {
        font-size: 1rem;
    }
}
