body { background: #000000; color: #eee; font-family: 'Segoe UI', Arial, sans-serif; margin:0; }
a { color: #61dafb; text-decoration: none; }
header, footer { background: #000000; padding: 12px 24px; }
.header-row { display: flex; align-items: center; justify-content: space-between; }
.heading-large {
  font-size: clamp(0.2rem, 5vw, 1.2rem);     /* Slightly larger than paragraph */
  font-weight: 600;      /* Medium-bold, not overwhelming */
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.heading-medium {
  font-size: clamp(0.1rem, 4vw, 1.1rem);     /* Between h2 and paragraph */
  font-weight: 500;      /* Balanced weight */
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.center-text {
  text-align: center;
}

.social-icons a { color: #eee; margin-left: 16px; font-size: 1.5em; }
.social-icons a:hover { color: #61dafb; }
.samforum-icon {
  display: inline-block;
  width: 28px; /* Adjust size as needed */
  height: 28px;
  background-image: url('https://www.sammyboy.com/styles/default/xenforo/sambigwink.gif');
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.menu-btn { display: none; background: none; border: none; z-index: 9999; color: #eee; font-size: 2em; cursor: pointer; }
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 12px;
}

.logo {
  height: 90px;
  margin-bottom: 8px;
}
.discussionsBox {
  gap: 16px;
  padding: 4px 24px;
  justify-content: center;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: 0.85em;
  line-height: 1.4;
}
.nav-menu {
  display: flex;
  gap: 16px;
  justify-content: center;
  border: 1px solid silver;
  border-radius: 12px;
  padding: 6px 12px;
  box-shadow: 0 0 6px silver;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: 0.85em;
  line-height: 1.4;
}

.nav-menu a {
  padding: 6px 10px;
  border-radius: 6px;
  color: #eee;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-menu a:hover {
  background: #232323;
  color: #61dafb;
}
#nav-menu a.active,
#nav-menu a:active {
  background: #FF69B4;
  color: #222 !important;
  border-radius: 6px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .logo {
    height: 80px;
  }

  .header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
  }
  .heading-large {
  font-size: 0.9rem;     /* Slightly larger than paragraph */
}

.heading-medium {
  font-size: 0.7rem;     /* Between h2 and paragraph */
}

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex: 1;
  }

  .menu-btn {
    display: block;
    background: none;
    border: none;
    color: #eee;
    font-size: 2em;
    cursor: pointer;
    flex: 0;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    background: #222;
    width: 100vw;
    left: 0;
    top: 56px;
    z-index: 9900;
    padding: 12px;
    border: 1px solid silver;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 12px rgba(192, 192, 192, 0.4);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 10px;
    font-size: 0.9em;
    color: #eee;
    text-decoration: none;
    border-radius: 6px;
  }

  .nav-menu a:hover {
    background: #333;
    color: #61dafb;
  }
}
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; padding: 24px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item { background: #181818; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px #000a; cursor: pointer; text-align: center; }
.gallery-item img { width: 90%; aspect-ratio: 3/4; object-fit: cover; }
.profile-title { font-weight: 600; margin: 12px 0 4px; }
.profile-teaser { color: #bbb; font-size: 0.97em; margin-bottom: 4px; }
footer { border-top: 1px solid #222; margin-top: 32px; font-size: 0.95em; }
.footer-copy { color: #888; }

/* Modal styles for expanded images */
#img-modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0; top: 0; width: 100vw; height: 100vh; 
  background: rgba(0,0,0,0.7); 
  align-items: center; justify-content: center;
}
#img-modal.open {
  display: flex;
}
#img-modal img {
  max-width: 90vw; 
  max-height: 85vh; 
  border-radius: 14px;
  box-shadow: 0 0 32px #000b;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
}
#img-modal .close-btn {
  position: absolute; 
  top: 2rem; right: 2rem; 
  font-size: 2.2rem; 
  color: #fff; 
  cursor: pointer;
  z-index: 1001;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
#img-modal .close-btn:hover {
  background: rgba(0,0,0,0.6);
}
.gallery-img, #img-modal img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: auto;
}

/* Video grid styling */
.profile-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.profile-video-item {
  background: #181818;
  padding: 0.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px #000a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 900px) {
  .profile-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .profile-videos-grid {
    grid-template-columns: 1fr;
  }
}

/* TikTok/Instagram embed adjustments if needed */
.profile-video-item iframe,
.profile-video-item blockquote {
  width: 100% !important;
  max-width: 100%;
  margin: 0 auto !important;
}

.ratings-legend-icon { 
  display:inline-flex; align-items:center; justify-content:center; 
  width:18px; height:18px; border-radius:50%; border:1px solid #fff6; 
  background:#232323; color:#fff; font-size:0.89em; position:relative; 
  cursor:pointer; font-family:inherit; margin-left:4px;
  transition:background 0.18s;
  min-width:18px; min-height:18px;
}
.ratings-legend-icon > span { font-weight:700; font-size:0.89em; }
.ratings-legend-tooltip {
  display:none;
  position:absolute; right:0; top:120%; z-index:100;
  background:#181818; color:#eee;
  padding:5px 10px; border-radius:7px; min-width:160px; font-size:0.91em;
  box-shadow:0 2px 8px #000a; white-space:pre-line;
  line-height:1.45;
  border:1px solid #444;
  font-weight:400;
}
.ratings-legend-icon:hover .ratings-legend-tooltip, .ratings-legend-icon:focus .ratings-legend-tooltip {
  display:block;
}

    body { box-sizing:border-box; }
    #profile-main { max-width:1150px; margin:0 auto; padding-left:20px; padding-right:20px; }
    .profile-details-divider {
      width:1.5px; background:linear-gradient(to bottom,#444,#222 90%); margin:0 32px; min-height:90px; align-self:stretch;
      border-radius:3px; display:inline-block;
    }
    .profile-videos-grid.videos-compact {
      gap: 24px !important;
      margin: 0.1rem 0 0.1rem 0 !important;
    }
    .profile-videos-grid.videos-compact > * {
      transform:scale(0.7);
      max-width:320px !important;
      min-width:80px !important;
      margin:0 8px 0 0;
    }
    .gallery-images-compact {
      gap: 16px !important;
    }
    @media (max-width: 900px) {
      #profile-main { padding-left:7px; padding-right:7px; }
      .profile-details-divider { margin:0 10px; }
      .gallery-images-compact { gap:9px !important; }
    }
    @media (max-width: 700px) {
      #profile-main { padding-left:1px; padding-right:1px; }
    }
    .gallery-portrait-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 1px 8px #000a;
    transition: box-shadow 0.2s;
  }
  .portrait-overlay-wrap {
    position: relative;
    width: 90%;
    margin: 0 auto 12px auto;
    aspect-ratio: 3/4;
    background: #191919;
    border-radius: 12px;
    overflow: visible;
  }
  .portrait-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
  }
  .portrait-overlay-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
    width: 100%;
    height: 0;
  }
  .portrait-badge-stack {
  position: absolute;
  top: 9px;
  left: 9px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 4;
}
.portrait-dmg-badge {
  background: linear-gradient(120deg,#ffd700,#ffb700 70%,#fff8b3 100%);
  color: #222;
  padding: 6px 10px 4px 10px;
  border-radius: 9px;
  box-shadow: 0 2px 10px #0007;
  text-align: center;
  line-height: 1.12;
  letter-spacing: 0.02em;
  border: 1.5px solid #ffe97c;
  width: 45px;
  min-width: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
}

  .portrait-dmg-price {
    font-size: 1.1em;
    font-weight: bold;
    color: #222;
    margin-bottom: 0px;
    text-align: center;
    width: 100%;
    display: block;
  }
  .portrait-dmg-label {
    font-size: 0.6em;
    font-weight: 700;
    color: #222;
    letter-spacing: 0.06em;
    margin-top: -3px;
    display: block;
    text-align: center;
    width: 100%;
  }
.portrait-age-badge {
  background: linear-gradient(135deg, #e5e4e2, #c0c0c0 60%, #f8f8f8 100%);
  color: #222;
  font-weight: bold;
  padding: 3px 10px 4px 10px;
  border-radius: 9px;
  box-shadow: 0 2px 10px #0005;
  text-align: center;
  line-height: 1.12;
  letter-spacing: 0.02em;
  border: 1.5px solid #dcdcdc;
  width: 30px;
  min-width: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.portrait-age-value {
  font-size: 1.1em;
  font-weight: bold;
  color: #222;
  margin-bottom: 0px;
  text-align: center;
  width: 100%;
  display: block;
}
.portrait-age-label {
  font-size: 0.6em;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.06em;
  margin-top: -3px;
  display: block;
  text-align: center;
  width: 100%;
}
@media (max-width: 600px) {
  .portrait-badge-stack {
    top: 8px;
    left: 3px;
    gap: 1px;
  }
  .portrait-dmg-badge,
  .portrait-age-badge {
    transform: scale(0.6);
    transform-origin: top left;
  }

  .portrait-dmg-price,
  .portrait-dmg-label,
  .portrait-age-value,
  .portrait-age-label {
    font-size: 70%;
  }
}
  .portrait-landmine-banner {
    position: absolute;
    top: 16px; right: -40px;
    transform: rotate(25deg);
    font-weight: bold;
    font-size: 0.95em;
    color: #fff;
    padding: 6px 34px;
    box-shadow: 0 2px 8px #000b;
    text-shadow: 0 1px 2px #000a;
    border-radius: 7px;
    z-index: 5;
    letter-spacing: 0.04em;
  }
  .portrait-landmine-banner.landmine-bad {
    background: linear-gradient(100deg,#ff3131 50%,#a70000 100%);
    border: 2.2px solid #ff7272;
  }
  .portrait-landmine-banner.landmine-good {
    background: linear-gradient(100deg,#1dc92b 50%,#107d17 100%);
    border: 2.2px solid #b2e07a;
  }
  .portrait-overlay-name {
    position: absolute;
    left: 0; right: 0; top: 54%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 7;
  }
  .portrait-overlay-title {
    font-size: 1.17em;
    color: #fff;
    font-weight: bold;
    background: rgba(0,0,0,0.37);
    padding: 2px 18px 3px 18px;
    border-radius: 18px;
    border-bottom: 2px solid #fff;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 4px;
    letter-spacing: 0.02em;
    box-shadow: 0 3px 18px #0006;
  }
  @media (max-width: 600px) { .portrait-overlay-title { font-size: 70% } }
  .portrait-overlay-avgrow {
    width: 100%;
    position: absolute;
    left: 0; right: 0;
    bottom: 0; 
    background: linear-gradient(0deg,#181a22 80%,#23232300 100%);
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 8px 7px 6px 7px;
    z-index: 10;
    border-radius: 0 0 11px 11px;
    min-height: 44px;
    gap: 0;
  }
  .portrait-avg-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.97em;
    min-width: 36px;
  }
  .portrait-avg-val {
    font-weight: 700;
    font-size: 1.13em;
    color: #fff;
    margin-bottom: 1.5px;
    text-shadow: 0 1px 2px #000b;
  }
  .portrait-avg-label {
    font-size: 0.82em;
    color: #ffefa0;
    font-family: inherit;
    margin-bottom: 1.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 1px #000b;
  }
  /* Fanciful border for "FC25" style */
  .fancy-card-fc25 {
    border: 3.3px solid #ffd700;
    background: linear-gradient(120deg,#fffbe2 0%,#e6e0bd 37%,#ffd700 100%);
    box-shadow: 0 0 44px #ffd70077, 0 6px 28px #0008;
    filter: drop-shadow(0 0 18px #ffd70077);
    position: relative;
    z-index: 99;
    animation: fc25-shimmer 2.3s infinite linear;
  }
  @keyframes fc25-shimmer {
    0% { box-shadow: 0 0 44px #ffd70077, 0 6px 28px #0008; }
    50% { box-shadow: 0 0 66px #ffd700cc, 0 6px 38px #fff6; }
    100% { box-shadow: 0 0 44px #ffd70077, 0 6px 28px #0008; }
  }
  .gallery-item {
    position: relative;
    background: #181818;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 2px 12px #000a;
    cursor: pointer;
    text-align: center;
    padding-bottom: 10px;
    transition: box-shadow 0.2s, border 0.2s;
  }
  .gallery-item:hover .gallery-portrait-img {
    box-shadow: 0 2px 24px #ffd70099, 0 2px 16px #000b;
  }