:root {
  --bg: #0b0e17;
  --card: #0e1116;
  --muted: #bfc6cf;
  --gold: #c7a500;
  --border: #262b33;
}

* {
  box-sizing: border-box;
}

footer * {
  box-sizing: content-box;
}

.modal,
.modal *,
#contactModal,
#contactModal *,
#termsModal,
#termsModal *,
#privacyModal,
#privacyModal *,
#cookieModal,
#cookieModal * {
  box-sizing: content-box !important;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: #fff;
  background-image: url('../../images/banners/blend-bg.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(5,7,12,0.82);
  backdrop-filter: blur(6px);
  z-index: -1;
}

.main {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 18px;
}

.card {
  width: 100%;
  max-width: 900px;
  display: flex;
  gap: 28px;
  background: var(--card);
  border-radius: 12px;
  padding: 26px;
  align-items: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.6);
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 270px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.18) 35%, rgba(255,255,255,0.18) 65%, transparent);
}

.left {
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
  position: relative;
  z-index: 2;
}

.photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background: #d0d4d8;
  border: 3px solid transparent;
  background-image: linear-gradient(#0e1116, #0e1116), linear-gradient(135deg, #c7a500, #e3d36c);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0 0 20px rgba(199,165,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo:hover {
  transform: scale(1.04);
  box-shadow: 0 0 30px rgba(199,165,0,0.4);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #fff;
}

.name {
  font-size: 20px;
  color: #f1c94b;
  white-space: nowrap;
}

.verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 12px;
  position: relative;
  border: 1px solid rgba(199,165,0,0.4);
  border-radius: 5px;
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.03);
  cursor: default;
}

.verified i {
  font-size: 10px;
  color: var(--gold);
}

.verified-tooltip {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #0d1114;
  color: var(--gold);
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.verified:hover .verified-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, rgba(199,165,0,0.12), rgba(199,165,0,0.05));
  border: 1px solid rgba(199,165,0,0.25);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  box-shadow: 0 0 12px rgba(199,165,0,0.05);
}

.country {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.country i {
  color: var(--gold);
  font-size: 14px;
}

.cta {
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--gold), #d3b200);
  color: #081016;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
}

.right {
  flex: 1;
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.title {
  font-size: 16px;
  color: #dcdfe3;
  font-weight: 600;
}

.desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 680px;
}

.meta {
  color: #aeb7bf;
  font-size: 13px;
  margin-top: 6px;
}

@media (max-width: 760px) {
  .card {
    flex-direction: column;
    align-items: center;
    padding: 18px;
  }

  .card::before {
    display: none;
  }

  .left {
    width: 100%;
    border: none;
    padding-bottom: 16px;
  }

  .right {
    padding-top: 10px;
  }

  .photo {
    width: 130px;
    height: 130px;
  }
}
.profile-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 15px;
  font-weight: 500;
  color: #d6d6d6;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 215, 0, 0.15);
  padding: 10px 16px;
  border-radius: 10px;
  width: fit-content;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 15px rgba(199, 165, 0, 0.08);
}

.profile-breadcrumb i {
  font-size: 14px;
  margin-right: 4px;
}

.profile-breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: text-shadow 0.25s ease;
}

.profile-breadcrumb a:hover {
  text-shadow: 0 0 6px rgba(199, 165, 0, 0.6);
}

.profile-breadcrumb .separator {
  width: 8px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
}

.profile-breadcrumb .current {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.profile-breadcrumb .current i {
  color: #fff;
}
.country {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.flag-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(199, 165, 0, 0.5);
  box-shadow: 0 0 8px rgba(199, 165, 0, 0.2);
  background: #111;
}

.flag-circle img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  border-radius: 50%;
  transform: scale(1.05);
}
.member-since {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 0 8px rgba(199, 165, 0, 0.05);
}

.member-since i {
  color: var(--gold);
  font-size: 14px;
}
