/* ==============================
   Yellow Skunk Profile Styles
   Version: YS-25 Smooth Dark
   ============================== */

:root {
  --ys-bg: #0f0f0f;
  --ys-surface: #181818;
  --ys-text: #f4eec7;
  --ys-yellow: #ffcc33;
  --ys-yellow-bright: #ffe257;
  --ys-border: #2a2a2a;
  --ys-shadow: rgba(0, 0, 0, 0.6);
  --radius: 14px;
  --transition: 0.25s ease;
}

/* --- Base --- */
html, body {
  background: var(--ys-bg);
  color: var(--ys-text);
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* --- Profile Container --- */
#content {
  max-width: 720px;
  margin: 3em auto;
  background: var(--ys-surface);
  border-radius: var(--radius);
  box-shadow: 0 6px 16px var(--ys-shadow);
  padding: 2em;
  transition: all var(--transition);
}
#content.blurred {
  filter: blur(25px);
  pointer-events: none;
  user-select: none;
}

/* --- Overlay (Age Gate) --- */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.2em;
  color: var(--ys-yellow);
  z-index: 9999;
  backdrop-filter: blur(8px);
}

/* --- Profile Header --- */
.usericon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--ys-yellow);
  object-fit: cover;
  margin-bottom: 0.5em;
  box-shadow: 0 3px 10px var(--ys-shadow);
  transition: transform var(--transition), border var(--transition);
}
.usericon:hover {
  transform: scale(1.05);
  border-color: var(--ys-yellow-bright);
}

h1 {
  font-size: 1.9em;
  margin: 0.3em 0;
  color: var(--ys-yellow);
  letter-spacing: 0.4px;
}

p {
  margin: 0.6em 0;
  line-height: 1.5em;
}

/* --- Tags --- */
.tags span {
  display: inline-block;
  background: rgba(255, 204, 51, 0.1);
  border: 1px solid var(--ys-border);
  color: var(--ys-yellow-bright);
  font-weight: 600;
  border-radius: 10px;
  padding: 5px 12px;
  margin: 3px;
  font-size: 0.9em;
  box-shadow: 0 1px 3px var(--ys-shadow);
  transition: all var(--transition);
}
.tags span:hover {
  background: rgba(255, 204, 51, 0.25);
  transform: translateY(-2px);
}

/* --- Buttons --- */
button {
  background: var(--ys-yellow);
  color: #0f0f0f;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.7em 1.6em;
  margin-top: 1em;
  cursor: pointer;
  box-shadow: 0 4px 10px var(--ys-shadow);
  transition: all var(--transition);
}
button:hover {
  background: var(--ys-yellow-bright);
  transform: scale(1.05);
}
button:active {
  transform: scale(0.97);
}

/* --- Verified / Premium Icons --- */
.ic-verified {
  height: 24px;
  width: 24px;
  vertical-align: middle;
  margin-left: 0.4em;
  filter: drop-shadow(0 1px 2px #000);
}
.premium-icon {
  height: 18px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.4em;
}

/* --- Section Titles --- */
h2 {
  margin-top: 1.8em;
  color: var(--ys-yellow-bright);
  border-bottom: 2px solid var(--ys-yellow);
  display: inline-block;
  padding-bottom: 0.3em;
  font-size: 1.2em;
}

/* --- Lists / Connections --- */
ul {
  list-style: none;
  padding: 0;
}
li {
  margin-bottom: 0.8em;
  color: var(--ys-text);
}

/* --- Game & Photo Sections --- */
img.game-thumb,
img.photo {
  border-radius: 12px;
  border: 2px solid var(--ys-border);
  max-width: 200px;
  max-height: 150px;
  object-fit: cover;
  box-shadow: 0 2px 8px var(--ys-shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
img.game-thumb:hover,
img.photo:hover {
  transform: scale(1.06);
  border-color: var(--ys-yellow);
}

/* --- Contact --- */
.contact-link {
  color: var(--ys-yellow);
  font-weight: bold;
  text-decoration: none;
  transition: color var(--transition);
}
.contact-link:hover {
  color: var(--ys-yellow-bright);
  text-decoration: underline;
}

/* --- Result Message --- */
#result {
  margin-top: 1em;
  font-weight: bold;
  color: var(--ys-yellow);
}

/* --- Animation / Fade In --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
#content {
  animation: fadeUp 0.6s ease both;
}

/* --- Responsive --- */
@media (max-width: 600px) {
  #content {
    margin: 1em;
    padding: 1.5em;
  }
  .usericon {
    width: 100px;
    height: 100px;
  }
}
