@charset "UTF-8";
/* =============================================
   FINGERPRINT COMPONENT
   ============================================= */
.fp-root {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 25px; }

/* ---- Main card ---- */
.fp-card {
  width: 100%;
  background: #2360B9;
  border: 3px solid #E8EDFF33;
  border-radius: 35px;
  padding: 25px 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 0; }

/* =============================================
   LEFT PANEL
   ============================================= */
.fp-left {
  width: 100%;
  padding-right: 0;
  padding-bottom: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px; }

/* Header */
.fp-header {
  display: flex;
  align-items: center;
  gap: 8px; }

.fp-header-icon img {
  width: 28px;
  object-fit: contain;
  /* height: 22px; */ }

.fp-header .fp-header-title {
  color: #fff;
  font-size: 15px;
  font-weight: 500; }

/* Visitor ID */
.fp-visitor-id {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 8px 0; }

.fp-visitor-icon {
  width: 22px;
  object-fit: contain; }

.fp-visitor-id span {
  color: #fff;
  font-size: 16px; }

/* IP block */
.fp-ip-block {
  display: flex;
  align-items: center;
  gap: 12px; }

.fp-ip {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap; }

.fp-flag {
  /* height: 45px; */
  /* border-radius: 5px; */
  object-fit: contain;
  flex-shrink: 0; }

/* Bullets */
.fp-bullets {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0; }

.fp-bullets li {
  color: #fff;
  font-size: 15px; }

.fp-bullets li strong {
  font-weight: 700; }

/* Divider */
.fp-left .fp-divider {
  height: 1px;
  /* background: linear-gradient(to right, rgba(230, 234, 248, 0.5), transparent); */
  background: linear-gradient(to right, transparent, rgba(230, 234, 248, 0.5), transparent); }

.fp-right .fp-divider {
  height: 1px;
  width: 100%;
  background: #E9EAEB;
  margin-bottom: -5px; }

/* Info grid */
.fp-grid {
  display: grid;
  margin: auto 0;
  grid-template-columns: 5fr 4fr; }
  @media (min-width: 1100px) {
    .fp-grid {
      grid-template-columns: 1fr 1fr; } }

.fp-info-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: fit-content; }

.fp-info-item {
  display: flex;
  align-items: center;
  gap: 8px; }

.fp-info-item .icon-os {
  width: 15px;
  object-fit: contain; }

img[src=""] {
  display: none; }

.fp-info-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  min-width: 60px;
  flex-shrink: 0; }

.fp-info-value {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: "GoogleSansBold"; }

.fp-info-item .icon-browser {
  width: 15px;
  object-fit: contain; }

/* Badges row */
.fp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 8px;
  position: relative; }

.fp-badge-item {
  display: flex;
  align-items: center;
  gap: 7px; }

.fp-badge-icon {
  /* width: 24px;
    height: 24px; */
  display: flex;
  align-items: center;
  justify-content: center; }

.fp-badge-item span {
  color: #fff;
  font-size: 14px; }

.fp-badge-item strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700; }

/* =============================================
   RIGHT PANEL
   ============================================= */
.fp-right {
  width: 100%;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px; }

/* Meta bar */
.fp-right-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px; }

.fp-updated-wrapper {
  display: flex;
  align-items: center;
  gap: 8px; }

.fp-nav-icons:not(.hidden) {
  display: flex;
  align-items: center; }

.fp-updated {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 30px; }

.fp-dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0; }

.fp-dot-red {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff0000;
  flex-shrink: 0; }

@keyframes fpPulse {
  0%,
  100% {
    opacity: 1; }
  50% {
    opacity: 0.4; } }
.fp-updated span:last-child {
  color: #fff;
  font-size: 14px; }

.fp-action-icons {
  display: flex;
  align-items: center; }

.fp-nav-icon {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  height: 20px;
  width: 15px;
  display: flex;
  align-items: center; }

.fp-nav-icon.disabled {
  opacity: 0.5;
  cursor: not-allowed; }

.fp-automation-badge {
  display: flex;
  align-items: center;
  gap: 5px; }

.fp-auto-label {
  color: #D5D7DA;
  font-size: 13px; }

.fp-automation-badge strong {
  color: #fff;
  font-size: 13px;
  font-weight: 700; }

/* Cards grid */
.fp-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 16px; }

.fp-info-grid:nth-child(1) {
  padding-right: 10px; }

.fp-info-grid.use {
  padding-left: 15px;
  position: relative; }

.fp-info-grid.use::after {
  content: "";
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(230, 234, 248, 0.5), transparent);
  position: absolute;
  left: 0; }

.fp-info-grid.use .fp-info-item {
  gap: 5px;
  color: white; }

.fp-info-grid.use .fp-info-label {
  min-width: 102px; }

/* ---- Widget base ---- */
.fp-widget {
  background: #fff;
  border-radius: 24px;
  padding: 10px 25px; }

/* ---- IP Score widget ---- */
.fp-widget--score {
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding-top: 25px;
  padding-bottom: 25px; }

.fp-score-left {
  display: flex;
  align-items: center;
  gap: 14px; }

.fp-donut-wrapper {
  position: relative;
  flex-shrink: 0; }

.fp-donut {
  width: 64px;
  height: 64px; }

.fp-donut-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #F79009; }

.fp-score-text .fp-score-title {
  color: #414651;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  /* margin: 0 0 4px; */ }

.fp-score-text .fp-score-description {
  color: #58616E;
  font-size: 14px;
  line-height: 1.4;
  font-style: italic;
  max-width: 300px; }

.fp-view-more-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.fp-view-more-wrapper b {
  font-size: 16px;
  color: #717680; }

.fp-view-more {
  color: #1E4DFF;
  font-size: 12px;
  text-decoration: none;
  display: inline-block;
  margin-left: auto; }

.fp-view-more:hover {
  text-decoration: underline; }

.fp-platform-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap; }

.fp-platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1; }

.fp-platform-percent {
  height: 8px;
  width: 100%;
  background-color: #E9EAEB;
  border-radius: 4px;
  position: relative;
  max-width: 65px; }

.fp-platform-percent--active {
  border-radius: 4px;
  height: 100%;
  position: absolute;
  transition: width 0.3s ease;
  width: 100%;
  background-color: #17b26a; }

.fp-platform-logo {
  width: 32px;
  height: 32px;
  object-fit: contain; }

.fp-platform-item span {
  font-size: 16px;
  color: #58616E; }

@media (max-width: 1200px) {
  .fp-platform-item span {
    font-size: 14px; } }
@media (max-width: 992px) {
  .fp-platform-item span {
    font-size: 12px; } }
@media (max-width: 768px) {
  .fp-platform-item span {
    font-size: 14px; } }
.fp-fp-left {
  max-width: 50%; }

.fp-fp-left .fp-fp-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px;
  font-family: "GoogleSansBold"; }

.fp-fp-left .fp-fp-description {
  color: #D5D7DA;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
  font-style: italic; }

.fp-fp-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  margin-left: auto; }

@media (max-width: 567px) {
  .fp-card {
    padding: 20px 20px; }

  .fp-widget {
    padding: 15px 20px; }

  .fp-score-left {
    flex-direction: column;
    align-items: start;
    gap: 8px; } }
@media (max-width: 450px) {
  /* .fp-widget--fingerprint {
    flex-wrap: wrap;
  } */
  .fp-fp-left {
    width: 100%;
    max-width: 100%; }

  .fp-fp-right {
    margin-left: auto; } }
.fp-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  position: relative; }

.fp-bar--pos {
  position: absolute;
  bottom: 0; }

.fp-bar {
  width: 30px;
  border-radius: 6px;
  flex-shrink: 0; }

.fp-bar--active,
.fp-bar--green {
  background: #4ade80; }

.fp-bar--yellow {
  background: #F79009; }

.fp-bar--red {
  background: #F04438; }

.fp-bar--dim {
  background: #6A95F2;
  opacity: 0.2; }

.fp-fp-percent {
  color: #fff;
  font-size: 24px;
  font-weight: 700; }

/* ---- Promo widget ---- */
.fp-widget--promo {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  background: transparent;
  grid-column: 1 / -1;
  box-shadow: 0 4px 4px #0000003b;
  border: 1px solid rgba(255, 255, 255, 0.3); }

.fp-promo-logo {
  width: 55px;
  height: 45px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; }

.fp-promo-logo img {
  max-width: 100%;
  object-fit: contain; }

.fp-promo-info {
  min-width: 80px;
  margin-left: 5px; }

.fp-promo-info .fp-promo-name {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 2px; }

.fp-promo-info .fp-promo-description {
  color: #D5D7DA;
  font-size: 12px;
  margin: 0; }

.fp-promo-discount {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 15px 8px 15px;
  text-transform: uppercase;
  flex-shrink: 0;
  background-image: url("/images/bg-promo.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  min-width: 60px;
  text-align: center; }

.fp-promo-discount span {
  transform: rotate(-5deg);
  display: block; }

.fp-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: linear-gradient(to right, #FEC84B, #FF714E);
  color: #181D27;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 8px 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 1px 2px #0A0D120D;
  margin-left: auto; }

.fp-promo-btn:hover {
  background: linear-gradient(to right, #FEC84B, #FF714E); }

.fp-widget--promo-empty {
  justify-content: center; }

.fp-widget--promo-empty p {
  color: #7E8299;
  font-size: 14px; }

/* =============================================
   SEARCH BAR
   ============================================= */
.fp-search-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column; }

.fp-search-inner {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 40px;
  padding: 4px 6px 4px 40px;
  box-shadow: 0 4px 24px rgba(35, 96, 185, 0.18);
  width: 100%;
  max-width: 560px;
  gap: 8px;
  margin: auto;
  position: relative; }

.fp-search-inner svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%); }

.fp-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: #0A1048;
  background: transparent;
  min-width: 0; }

.fp-search-input::placeholder {
  color: #aab0c0; }

.fp-search-btn {
  background: #1E4DFF;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 14px;
  font-family: "GoogleSansBold";
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap; }

.fp-search-btn:hover {
  background: #163dcc; }

.fp-search-result {
  color: #F04438;
  text-align: center;
  margin: 10px 0 0; }

/* =============================================
   FOOTER NOTE
   ============================================= */
.fp-footer-note {
  color: #E9EAEB;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  width: 100%; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (min-width: 567px) {
  .fp-visitor-id span {
    font-size: 20px; }

  .fp-info-label {
    font-size: 14px; }

  .fp-info-value {
    font-size: 16px; }

  .fp-promo-btn {
    padding: 8px 14px 8px 16px;
    font-size: 14px;
    gap: 4px; } }
@media (max-width: 991px) {
  .fp-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(230, 234, 248, 0.5), transparent); } }
@media (max-width: 768px) {
  .fp-info-grid {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    /* gap: 10px 0; */ }

  .fp-info-grid .fp-divider {
    width: 100%; }

  .fp-info-item {
    width: 100%; } }
@media (max-width: 500px) {
  .fp-grid {
    grid-template-columns: 1fr;
    margin-top: 1rem; }

  .fp-info-item {
    width: 100%; }

  .fp-info-grid.use {
    padding-left: 0;
    margin-top: 10px; }

  .fp-info-grid.use::after {
    content: none; }

  .fp-info-grid .my-2 {
    display: none; } }
@media (min-width: 992px) {
  .fp-left::after {
    content: '';
    position: absolute;
    bottom: auto;
    left: auto;
    right: 0;
    top: 0;
    width: 1px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, rgba(230, 234, 248, 0.5), transparent); }

  .fp-card {
    flex-wrap: nowrap;
    padding: 25px; }

  .fp-left {
    width: 45%;
    padding-bottom: 0;
    padding-right: 25px; }

  .fp-right {
    flex: 1;
    padding-top: 0;
    padding-left: 25px; }

  .fp-ip {
    font-size: 40px; }

  .fp-ip.v6 {
    font-size: 30px; }

  /* .fp-left {
    padding-right: 25px;
  }

  .fp-card {
    padding: 28px 30px;
  }

  .fp-widget {
    padding: 15px 30px;
  } */ }
@media (min-width: 1024px) {
  .fp-left {
    width: 42%; }

  .fp-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px; }

  .fp-widget--score {
    grid-column: 1 / -1; } }
@media (min-width: 1200px) {
  .fp-left {
    width: 42%; }

  .fp-card {
    padding: 30px; }

  .fp-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px; }

  .fp-widget--score {
    grid-column: 1 / -1; } }
/* =============================================
   PLATFORM TRUST SCORE DIALOG
   ============================================= */
.fp-dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 72, 0.45);
  backdrop-filter: blur(3px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease; }

.fp-dialog-overlay.fp-dialog--open {
  opacity: 1;
  pointer-events: all; }

.fp-dialog {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 662px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(10, 16, 72, 0.25);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.22s ease;
  overflow: hidden; }

.fp-dialog-overlay.fp-dialog--open .fp-dialog {
  transform: translateY(0) scale(1); }

/* --- Header --- */
.fp-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 20px 14px;
  flex-shrink: 0;
  border-bottom: 1px solid #f0f0f0; }

.fp-dialog-title {
  font-size: 24px;
  font-weight: 700;
  color: #0A1048;
  margin: 0 0 4px;
  font-family: "GoogleSansBold"; }

.fp-dialog-subtitle {
  font-size: 14px;
  color: #0A0D12;
  margin: 0; }

.fp-dialog-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 4px;
  color: #7E8299;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.15s; }

.fp-dialog-close:hover {
  color: #0A1048; }

/* --- Body (scrollable list) --- */
.fp-dialog-body {
  overflow-y: auto;
  padding: 10px 20px;
  height: 500px;
  overflow-y: auto;
  max-height: 80vh; }

.fp-dialog-body::-webkit-scrollbar {
  width: 4px; }

.fp-dialog-body::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 4px; }

/* --- Row --- */
.fp-dialog-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #f2f2f2;
  gap: 12px; }

.fp-dialog-row:last-child {
  border-bottom: none; }

.fp-dialog-row-left {
  display: flex;
  /* align-items: center; */
  gap: 12px; }

.fp-dialog-logo {
  width: 45px;
  height: 45px;
  object-fit: contain;
  flex-shrink: 0; }

.fp-dialog-name {
  color: #414651;
  font-family: "GoogleSansMedium";
  font-size: 20px; }

/* --- Trust level badge --- */
.fp-dialog-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-family: "GoogleSansMedium";
  padding: 2px 12px;
  border-radius: 999px; }

.fp-dialog-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0; }

.fp-badge--high {
  background: #D1FAE5;
  color: #17B26A; }

.fp-badge--moderate {
  background: #FEF3C7;
  color: #D97706; }

.fp-badge--low {
  background: #FEE2E2;
  color: #F04438; }

.fp-badge--loading {
  background: #F3F4F6;
  color: #9CA3AF; }

/* --- Percent value --- */
.fp-dialog-percent {
  font-size: 30px;
  font-weight: 700;
  flex-shrink: 0;
  min-width: 46px;
  text-align: right; }

.fp-dialog-percent--loading {
  color: #D1D5DB; }

.fp-dialog-percent--high {
  color: #17B26A; }

.fp-dialog-percent--moderate {
  color: #D97706; }

.fp-dialog-percent--low {
  color: #F04438; }

/* --- Footer --- */
.fp-dialog-footer {
  padding: 14px 20px;
  border-top: 1px solid #f0f0f0;
  text-align: center;
  font-size: 20px;
  color: #717680; }

.fp-dialog-footer strong {
  color: #252B37;
  font-weight: 700; }

.banner-top {
  grid-column: 1 / -1;
  border-radius: 16px; }

/* =============================================
   HOME PAGE — HERO WRAPPER
   ============================================= */
.home-hero {
  padding-bottom: 50px; }

/* =============================================
   IP META ROW (search + feature items)
   ============================================= */
.home-ip-meta {
  margin-top: 50px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 35px 10px; }

/* ---- feature item ---- */
.features {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  row-gap: 16px; }

.feature-item {
  width: fit-content;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%; }

.feature-icon {
  height: 30px;
  min-width: 30px;
  margin-top: 3px; }

.feature-label {
  color: #fff;
  font-size: 15px;
  margin-bottom: 3px; }

.feature-value {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: "GoogleSansBold", sans-serif; }

.ip-address {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: calc(100vw - 150px); }

.feature-status {
  display: flex;
  align-items: center;
  gap: 7px; }

/* =============================================
   SECTION: YOUR DETAILED INFORMATION
   ============================================= */
.home-detail-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px 0; }

.home-section-title {
  font-size: 28px;
  color: #0A1048;
  font-weight: 700;
  text-align: center;
  font-family: "GoogleSansBold", sans-serif; }

.home-section-subtitle {
  font-size: 16px;
  font-weight: 700;
  font-family: "GoogleSansBold", sans-serif;
  color: rgba(10, 16, 72, 0.7);
  text-align: center;
  margin-top: 10px; }

/* DetailedInformation grid */
.detailed-information {
  width: 100%;
  border: 1px solid #f2f2f2;
  border-radius: 1rem;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 0 7px #d0d0d4ff;
  flex-direction: column; }

/* =============================================
   SIDEBAR TABS
   ============================================= */
.DesktopSideBar {
  display: none;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between; }

.MobileSideBar {
  display: block; }

/* tab item (desktop) */
.tab-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 12px;
  border-radius: 12px;
  gap: 10px;
  cursor: pointer; }

.tab-item:not(.tagActiveDesktop) {
  opacity: 0.8; }

.tab-icon {
  width: 20px;
  object-fit: contain; }

.tab-label {
  color: rgba(24, 28, 50, 0.8);
  font-weight: 500;
  font-size: 16px;
  flex: 1; }

.tagActiveDesktop .tab-label {
  color: white;
  font-weight: 700;
  font-family: "GoogleSansBold"; }

/* mobile tab trigger */
.mobile-tab-trigger {
  width: 100%;
  background: #0062FE;
  border-radius: 12px;
  border: 1px solid #0062FE;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  cursor: pointer; }

.mobile-tab-active-label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1; }

.mobile-tab-icon {
  width: 20px;
  height: 20px; }

.mobile-tab-icon-sm {
  width: 18px;
  height: 18px; }

.mobile-tab-name {
  font-size: 18px;
  font-weight: 600;
  color: #F4F8FF; }

.mobile-tab-arrow {
  font-size: 20px;
  color: #F4F8FF; }

/* mobile tab dropdown menu */
.mobile-tab-menu {
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  padding: 10px;
  background: #fff;
  box-shadow: 0 0 10px #23457826;
  border-radius: 1rem;
  border: 1px solid #e7e8ea;
  display: flex;
  flex-direction: column;
  gap: 10px; }

.mobile-tab-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 12px;
  border-radius: 12px;
  gap: 10px;
  cursor: pointer; }

.mobile-tab-item img {
  filter: grayscale(100%) brightness(0.3); }

.mobile-tab-item.tagActiveMobile img {
  filter: none; }

.mobile-tab-menu.hidden {
  display: none; }

.mobile-tab-label {
  color: #181C32;
  font-weight: 500;
  font-size: 16px;
  flex: 1; }

/* Active states */
.tagActiveMobile {
  background: #f4f8ff; }

.tagActiveMobile p {
  color: #0062FE;
  font-weight: 700;
  font-family: "GoogleSansBold", sans-serif; }

.detailed-information-tabs {
  width: 100%; }

/* =============================================
   DETAIL CONTENT PANELS
   ============================================= */
.detailed-information-section {
  padding: 15px 20px;
  border-radius: 0.75rem;
  background-color: #F4F8FF;
  flex: 1; }

.detail-panel {
  display: flex;
  flex-direction: column;
  gap: 30px; }

/* group title  */
.detail-group-title {
  font-family: "GoogleSansBold", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: #0A1048; }

/* detail row */
.detail-row {
  display: grid;
  grid-template-columns: 4fr 8fr;
  padding: 15px 0;
  gap: 10px; }

.border-row {
  border-bottom: 1px solid #e7e8ea; }

.detail-key {
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.detail-val {
  font-size: 15px; }

#Language {
  display: flex;
  gap: 10px;
  flex-wrap: wrap; }

.detail-status {
  display: flex;
  align-items: center;
  gap: 10px; }

/* =============================================
   SECTION: DETECT BROWSER FINGERPRINT
   ============================================= */
.home-detect-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 80px;
  margin-bottom: 60px; }

.home-detect-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px; }

.home-detect-card-wrap {
  background: linear-gradient(to bottom, #E6EAF8, transparent);
  border-radius: 22px;
  padding: 3px;
  position: relative; }

.home-detect-card {
  padding: 20px;
  border-radius: 20px;
  background: #fff; }

/* detect feature item */
.detect-item {
  padding: 0 15px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative; }

.detect-item::after {
  display: none; }

.detect-icon {
  width: 50px; }

.detect-title {
  font-size: 18px;
  font-weight: 700;
  font-family: "GoogleSansBold", sans-serif;
  text-align: center; }

.detect-desc {
  font-size: 15px;
  text-align: center;
  margin-top: 4px; }

/* And more button */
.home-and-more-btn {
  background: #1E4DFF;
  color: #fff;
  border: none;
  padding: 5px 15px;
  cursor: pointer;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  font-family: "GoogleSansBold", sans-serif;
  transition: background 0.2s; }

.home-and-more-btn:hover {
  background: #163dcc; }

.home-and-more-btn i {
  font-size: 18px; }

.banner-ads {
  margin-bottom: 60px;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none; }

/* =============================================
   FEATURED LIST (detect cards grid)
   ============================================= */
.featured-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (min-width: 481px) {
  .features {
    row-gap: 30px; }

  .feature-item {
    width: 50%; }

  .ip-address {
    max-width: 150px; } }
@media (min-width: 761px) {
  .feature-item {
    width: 33.33%; }

  .ip-address {
    max-width: 200px; }

  .feature-item:nth-child(3),
  .feature-item:nth-child(6) {
    padding-left: 5%; }

  .feature-item:nth-child(2),
  .feature-item:nth-child(5),
  .feature-item:nth-child(8) {
    padding-left: 2%; } }
@media (min-width: 870px) {
  .detailed-information {
    flex-direction: row; }

  .detailed-information-tabs {
    width: 30%; }

  .DesktopSideBar {
    display: flex; }

  .MobileSideBar {
    display: none; }

  .DetailedInformation {
    grid-template-columns: 30% 68%; }

  .detailed-information-section {
    padding: 25px 20px 0 30px; }

  .detail-key,
  .detail-val {
    font-size: 18px; }

  .detail-group-title {
    font-size: 20px; }

  .home-detail-section {
    margin: 50px 0; }

  .home-section-title {
    font-size: 35px; }

  .home-section-subtitle {
    font-size: 18px; }

  .tab-icon {
    width: 23px;
    object-fit: contain; }

  .tab-label {
    font-size: 18px; } }
@media (min-width: 1000px) {
  .home-detect-section {
    gap: 25px;
    margin-top: 120px;
    margin-bottom: 80px; }

  .home-detect-content {
    gap: 20px;
    margin-top: 20px; }

  .home-detect-card-wrap {
    border-radius: 25px;
    padding: 4px; }

  .home-detect-card {
    padding: 30px;
    border-radius: 22px; }

  .detect-item {
    gap: 15px; }

  .detect-item::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, #E6EAF8, transparent); }

  .detect-item:last-child::after {
    display: none; }

  .detect-icon {
    width: 56px; }

  .detect-title {
    font-size: 20px; }

  .detect-desc {
    font-size: 16px;
    margin-top: 5px; }

  .home-and-more-btn {
    padding: 5px 22px;
    font-size: 16px; } }
@media (min-width: 1025px) {
  .feature-item {
    width: 25%; }

  .ip-address {
    max-width: 220px; }

  .feature-item:nth-child(2),
  .feature-item:nth-child(6) {
    padding-left: 1%; }

  .feature-item:nth-child(3),
  .feature-item:nth-child(7) {
    padding-left: 2%; }

  .feature-item:nth-child(4n) {
    padding-left: 2%; }

  .feature-item:nth-child(5) {
    padding-left: 0; } }
@media (min-width: 1280px) {
  .home-section-title {
    font-size: 40px; }

  .home-section-subtitle {
    font-size: 20px; }

  .detect-icon {
    width: 64px; }

  .ip-address {
    width: 250px; } }
@media (max-width: 640px) {
  .featured-list {
    grid-template-columns: 1fr; } }
/* =============================================
   FINGERPRINT SCORE CARD
   ============================================= */
.fp-widget--fingerprint {
  display: flex;
  flex-direction: column;
  gap: 5px;
  /* Nếu cần padding theo card thì khai báo: padding: 24px; */
  border: 2px solid #3A8DD4;
  box-shadow: 0px 4px 4px 0px #00000040;
  background: #FFFFFF;
  grid-column: 1 / -1;
  padding-top: 15px;
  padding-bottom: 20px; }
  .fp-widget--fingerprint .fp-fingerprint-header {
    display: flex;
    gap: 6px; }
    .fp-widget--fingerprint .fp-fingerprint-header .fp-fingerprint-title {
      color: #414651;
      font-weight: 500;
      font-size: 18px;
      font-family: "GoogleSansMedium";
      line-height: 25px; }
  .fp-widget--fingerprint .fp-fingerprint-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 12px; }
    .fp-widget--fingerprint .fp-fingerprint-progress-wrapper .fp-fingerprint-progress-track {
      flex: 1;
      height: 17px;
      background-color: #D5D7DA;
      border-radius: 9999px;
      overflow: hidden; }
      .fp-widget--fingerprint .fp-fingerprint-progress-wrapper .fp-fingerprint-progress-track .fp-fingerprint-progress-fill {
        height: 100%;
        background: repeating-linear-gradient(-45deg, #4ade80, #4ade80 1px, #22c55e 1px, #22c55e 12px);
        border-radius: 9999px;
        transition: width 0.3s ease; }
    .fp-widget--fingerprint .fp-fingerprint-progress-wrapper .fp-fingerprint-percent {
      font-weight: 600;
      font-size: 18px;
      color: #181D27; }

/*# sourceMappingURL=home.css.map */
