/* CSS Variables - Theme Colors */
:root {
  --background: #0d0d0d;
  --foreground: #e8e8e8;
  --card: #141414;
  --primary: #CC086C;
  --primary-foreground: #fafafa;
  --secondary: #1f1f2e;
  --muted: #2a2a3a;
  --muted-foreground: #7a7a8a;
  --accent: #d4a853;
  --border: #333344;
  --font-sans: 'VT323', 'Courier New', monospace;
  --font-mono: 'Press Start 2P', 'Courier New', monospace;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 22px;
  line-height: 1.6;
  font-weight: 500;
}

/* Hidden utility */
.hidden {
  display: none !important;
}

/* Animations */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  93% { opacity: 0.3; }
  94% { opacity: 1; }
  95% { opacity: 0.5; }
  96% { opacity: 1; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes pulse-red {
  0%, 100% { text-shadow: 0 0 5px #CC086C, 0 0 10px #CC086C, 0 0 20px #CC086C; }
  50% { text-shadow: 0 0 10px #CC086C, 0 0 20px #CC086C, 0 0 40px #CC086C; }
}

@keyframes floatAround {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -30px) rotate(90deg); }
  50% { transform: translate(-10px, -50px) rotate(180deg); }
  75% { transform: translate(-30px, -20px) rotate(270deg); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.spin-slow { animation: spin-slow 8s linear infinite; }
.glitch { animation: glitch 0.3s ease infinite; }
.flicker { animation: flicker 4s linear infinite; }
.pulse { animation: pulse 2s ease-in-out infinite; }
.bounce { animation: bounce 1s ease-in-out infinite; }

/* Dice Roll Overlay */
.dice-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dice-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.dice-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  opacity: 0.3;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.dice-title {
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

.dice-button {
  position: relative;
  width: 200px;
  height: 200px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.3s;
}

.dice-button:hover:not(.rolling) {
  transform: scale(1.1);
}

.dice-button.rolling {
  animation: spin-slow 0.5s linear infinite;
}

.dice-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(204, 8, 108, 0.5));
}

.dice-polygon {
  stroke: var(--primary);
}

.dice-line {
  stroke: var(--primary);
  opacity: 0.5;
}

.dice-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary);
  font-family: var(--font-sans);
}

.dice-instruction, .dice-result {
  margin-top: 2rem;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: var(--muted-foreground);
  animation: pulse 2s ease-in-out infinite;
}

.dice-result {
  color: var(--primary);
  font-size: 1.75rem;
  font-weight: 600;
  animation: bounce 1s ease-in-out infinite;
}

/* Main Site */
.main-site {
  position: relative;
}

/* Floating Elements */
.floating-elements {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.floating-symbol {
  position: absolute;
  color: var(--primary);
}

/* Scanlines */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.2;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.3) 2px,
    rgba(0, 0, 0, 0.3) 4px
  );
}

/* Spinning Cross */
.spinning-cross {
  position: fixed;
  width: 64px;
  height: 64px;
  pointer-events: none;
  animation: spin-slow 8s linear infinite;
  z-index: 10;
}

.spinning-cross::before,
.spinning-cross::after {
  content: '';
  position: absolute;
  background: linear-gradient(135deg, #CC086C 0%, #8a0548 50%, #CC086C 100%);
  border-radius: 2px;
  filter: drop-shadow(0 0 10px rgba(204, 8, 108, 0.8));
}

.spinning-cross::before {
  width: 16px;
  height: 56px;
  top: 4px;
  left: 24px;
}

.spinning-cross::after {
  width: 44px;
  height: 16px;
  top: 16px;
  left: 10px;
}

.spinning-cross.top-left { top: 96px; left: 16px; }
.spinning-cross.top-right { top: 96px; right: 16px; animation-delay: 2s; }
.spinning-cross.bottom-left { bottom: 96px; left: 16px; width: 48px; height: 48px; animation-delay: 4s; }
.spinning-cross.bottom-right { bottom: 96px; right: 16px; width: 48px; height: 48px; animation-delay: 1s; }

@media (max-width: 768px) {
  .spinning-cross { display: none; }
}

/* Floating Nav */
.floating-nav {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.nav-button {
  position: relative;
  pointer-events: auto;
  background: #000;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.625rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.nav-button:hover {
  background: var(--primary);
  color: #000;
}

.angel-wings {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  color: var(--primary);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.nav-button:hover .angel-wings {
  opacity: 1;
}

/* Marquee */
.marquee-container {
  width: 100%;
  background: #000;
  border-top: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  padding: 0.75rem 0;
  overflow: hidden;
}

.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.marquee span {
  color: var(--primary);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  font-family: var(--font-sans);
  margin: 0 2rem;
}

/* Container */
.container {
  position: relative;
  z-index: 10;
  padding: 2rem 0.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container { padding: 2rem 1rem; }
}

/* Profile Card */
.profile-card {
  position: relative;
  background: var(--card);
  border: 2px solid var(--primary);
  padding: 1.5rem;
  transform: rotate(1deg);
  transition: transform 0.3s;
}

.profile-card:hover {
  transform: rotate(0deg);
}

.corner-decoration {
  position: absolute;
  color: var(--primary);
  font-size: 1.5rem;
}

.top-left-corner { top: -12px; left: -12px; }
.top-right-corner { top: -12px; right: -12px; }
.bottom-left-corner { bottom: -12px; left: -12px; }
.bottom-right-corner { bottom: -12px; right: -12px; }

.profile-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .profile-content {
    flex-direction: row;
  }
}

/* Profile Image */
.profile-image-container {
  position: relative;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .profile-image-container { margin: 0; }
}

.frame-1 {
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(204, 8, 108, 0.5);
  transform: rotate(3deg);
}

.frame-2 {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(212, 168, 83, 0.3);
  transform: rotate(-2deg);
}

.profile-image {
  position: relative;
  width: 192px;
  height: 256px;
  overflow: hidden;
  border: 4px solid var(--primary);
}

@media (min-width: 768px) {
  .profile-image {
    width: 224px;
    height: 288px;
  }
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(100%);
  transition: filter 0.5s;
}

.profile-image:hover img {
  filter: grayscale(0%);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(204, 8, 108, 0.3), transparent);
}

.profile-name {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
}

.online-status {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
}

.online-text {
  display: inline-block;
  background: #000;
  border: 1px solid #dc2626;
  padding: 0.375rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: #dc2626;
  letter-spacing: 0.1em;
}

/* Profile Info */
.profile-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: var(--font-sans);
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.stat-box {
  background: var(--secondary);
  padding: 0.625rem 1rem;
  border: 1px solid var(--border);
  font-size: 1.05rem;
  font-weight: 500;
}

.stat-label { color: var(--muted-foreground); }
.stat-value { color: var(--foreground); margin-left: 0.5rem; }

.mood {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.mood-label { color: var(--muted-foreground); }

.mood-emoji {
  background: #000;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  font-size: 1.5rem;
}

.bio {
  border-left: 4px solid var(--primary);
  padding: 0.5rem 0 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

.bio-highlight {
  color: var(--primary);
  margin-top: 0.5rem;
}

/* Buttons */
.btn {
  background: #000;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.625rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn:hover {
  background: var(--primary);
  color: #000;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.btn-block {
  position: relative;
  overflow: hidden;
  cursor: not-allowed;
}

.btn-block:hover {
  background: #000;
  color: var(--primary);
}

.btn-block:hover .block-text { opacity: 0; }
.btn-block:hover .block-chains { display: inline; color: #ef4444; }

.btn-irado.active {
  background: var(--primary);
  color: #000;
}

.irado-count {
  background: rgba(204, 8, 108, 0.2);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.decorative-text {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: right center;
  color: rgba(204, 8, 108, 0.2);
  font-size: 3rem;
  font-family: var(--font-sans);
  letter-spacing: 0.5em;
  white-space: nowrap;
  display: none;
}

@media (min-width: 1024px) {
  .decorative-text { display: block; }
}

/* Main Grid */
.main-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .main-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .left-column { transform: rotate(-1deg); }
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .right-column { transform: rotate(0.5deg); }
}

/* Section Base */
section {
  background: #000;
  border: 2px solid var(--primary);
  padding: 1rem;
  transition: transform 0.3s;
}

section:hover {
  transform: rotate(0deg) !important;
}

.section-title {
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Music Widget */
.music-widget {
  transform: rotate(-1deg);
}

.music-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(204, 8, 108, 0.5);
  margin-bottom: 1rem;
}

.music-icon {
  color: var(--primary);
  font-size: 1.25rem;
}

.playlist-link {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.playlist-link:hover {
  color: #22c55e;
}

.mini-dice {
  margin-left: auto;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s;
  color: var(--primary);
}

.mini-dice:hover {
  transform: scale(1.1);
}

.mini-dice.rolling {
  animation: spin-slow 0.5s linear infinite;
}

.mini-dice svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 5px rgba(204, 8, 108, 0.5));
}

#mini-dice-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  font-weight: bold;
  font-family: var(--font-sans);
}

.current-track {
  background: var(--secondary);
  border: 1px solid var(--border);
  padding: 0.75rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.visualizer {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 32px;
}

.visualizer .bar {
  width: 4px;
  background: var(--primary);
  transition: height 0.2s;
  height: 20%;
}

.visualizer.playing .bar {
  animation: pulse 0.5s ease-in-out infinite;
}

.track-info {
  flex: 1;
  min-width: 0;
}

.track-title {
  font-family: var(--font-sans);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-artist {
  color: var(--muted-foreground);
  font-size: 1rem;
  font-family: var(--font-sans);
}

.progress-bar {
  height: 4px;
  background: var(--border);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: var(--primary);
  width: 0%;
  transition: width 0.2s;
}

.countdown {
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted-foreground);
  font-family: var(--font-sans);
  margin-bottom: 0.5rem;
}

.music-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.control-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.control-btn {
  padding: 0.5rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.3s;
}

.control-btn:hover {
  background: rgba(204, 8, 108, 0.2);
  border-color: var(--primary);
}

.play-btn {
  background: var(--primary);
  color: #000;
}

.play-btn:hover {
  background: rgba(204, 8, 108, 0.8);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.volume-icon {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

#volume {
  width: 64px;
  height: 4px;
  appearance: none;
  background: var(--border);
  cursor: pointer;
}

#volume::-webkit-slider-thumb {
  appearance: none;
  width: 8px;
  height: 8px;
  background: var(--primary);
}

#volume-value {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  font-family: var(--font-sans);
  width: 36px;
}

.playlist {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.playlist-item {
  width: 100%;
  text-align: left;
  padding: 0.625rem;
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--muted-foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}

.playlist-item:hover {
  background: rgba(204, 8, 108, 0.1);
  color: var(--foreground);
}

.playlist-item.active {
  background: rgba(204, 8, 108, 0.2);
  color: var(--primary);
  border-left: 2px solid var(--primary);
}

.playlist-item.locked {
  opacity: 0.5;
  cursor: not-allowed;
  position: relative;
}

.playlist-item.locked::after {
  content: '🔒 Bloqueado';
  color: #ca8a04;
  font-size: 0.95rem;
}

.playlist-item .critical {
  color: #eab308;
  font-size: 0.95rem;
}

/* Top Homies */
.top-homies {
  transform: rotate(1deg);
}

.homies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.homie {
  position: relative;
}

.homie-btn {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.3s;
}

.homie-btn:hover {
  border-color: var(--primary);
}

.homie-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.homie-btn.offline img {
  filter: grayscale(100%);
}

.homie-btn:hover img {
  transform: scale(1.05);
}

.homie-status {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  transition: background 0.3s;
}

.homie-btn.offline .homie-status {
  background: #6b7280;
}

.homie-overlay {
  position: absolute;
  inset: 0;
  background: rgba(204, 8, 108, 0.2);
  opacity: 0;
  transition: opacity 0.3s;
}

.homie-btn:hover .homie-overlay {
  opacity: 1;
}

.homie-toggle {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  font-size: 0.7rem;
  text-align: center;
  color: var(--muted-foreground);
  padding: 3px 0;
  opacity: 0;
  transition: opacity 0.3s;
  font-family: var(--font-sans);
}

.homie-btn:hover .homie-toggle {
  opacity: 1;
}

.homie-name {
  font-size: 0.85rem;
  text-align: center;
  font-family: var(--font-sans);
  margin-top: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
}

.homie.online .homie-name {
  color: var(--primary);
}

.homie.offline .homie-name {
  color: var(--muted-foreground);
}

.homie-locked {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: rgba(122, 122, 138, 0.4);
}

.homie-locked::after {
  content: 'LOCKED';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(122, 122, 138, 0.6);
  font-family: var(--font-sans);
}

.homies-footer {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--muted-foreground);
  font-family: var(--font-sans);
  text-align: center;
}

.homies-footer .homies-count,
.homies-footer .pending-count {
  color: var(--primary);
}

/* About Section */
.about-section {
  transform: rotate(0.5deg);
  padding: 1.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.subsection-title {
  color: var(--primary);
  border-bottom: 1px solid rgba(204, 8, 108, 0.5);
  padding-bottom: 0.25rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
}

.info-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
  font-size: 1.05rem;
}

.info-label { color: var(--muted-foreground); }
.info-value { color: var(--foreground); }

.about-interests {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.interest {
  font-size: 1.05rem;
}

.interest-label {
  color: var(--accent);
  display: block;
  margin-bottom: 0.25rem;
}

.interest p {
  line-height: 1.6;
}

.quote-box {
  margin-top: 1.5rem;
  border: 2px dashed rgba(204, 8, 108, 0.5);
  padding: 1rem;
  background: rgba(31, 31, 46, 0.2);
  transform: rotate(-0.5deg);
  text-align: center;
}

.quote {
  font-size: 1.35rem;
  font-style: italic;
  font-family: var(--font-sans);
}

.quote-author {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.tags {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.375rem 0.875rem;
  background: #000;
  border: 1px solid rgba(204, 8, 108, 0.5);
  color: var(--primary);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  cursor: default;
  transition: all 0.3s;
}

.tag:hover {
  background: var(--primary);
  color: #000;
}

/* Contacts Section */
.contacts-section {
  transform: rotate(-0.5deg);
  padding: 1.5rem;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .contacts-grid { grid-template-columns: 1fr 1fr; }
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(31, 31, 46, 0.5);
  border: 1px solid var(--border);
  padding: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-link:hover {
  border-color: var(--primary);
  background: rgba(204, 8, 108, 0.1);
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary);
}

.contact-info {
  flex: 1;
  min-width: 0;
}

.contact-name {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-link:hover .contact-name {
  color: var(--primary);
}

.contact-handle {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-arrow {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.contact-link:hover .contact-arrow {
  color: var(--primary);
}

/* Comments Section */
.comments-section {
  transform: rotate(0.5deg);
  padding: 1.5rem;
}

.add-comment {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  padding: 0.75rem;
  background: rgba(31, 31, 46, 0.2);
}

#comment-input {
  width: 100%;
  background: #000;
  border: 1px solid var(--border);
  padding: 0.875rem;
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  resize: none;
  height: 90px;
  transition: border-color 0.3s;
}

#comment-input:focus {
  outline: none;
  border-color: var(--primary);
}

.comment-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.char-count {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  font-family: var(--font-sans);
}

.btn-post {
  background: var(--primary);
  color: #000;
}

.comments-list {
  max-height: 384px;
  overflow-y: auto;
  padding-right: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comment {
  border: 1px solid var(--border);
  padding: 0.75rem;
  transition: border-color 0.3s;
}

.comment:hover {
  border-color: rgba(204, 8, 108, 0.5);
}

.comment-content {
  display: flex;
  gap: 0.75rem;
}

.comment-avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  overflow: hidden;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.comment-body {
  flex: 1;
  min-width: 0;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.comment-user {
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
}

.comment-date {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  font-family: var(--font-sans);
}

.comment-text {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}

.comment-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.comment-actions button {
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: color 0.3s;
}

.comment-actions button:hover {
  color: var(--primary);
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 1.25rem;
  border-top: 1px solid rgba(204, 8, 108, 0.3);
  padding-top: 2rem;
  font-family: var(--font-sans);
}

.hearts {
  margin-top: 1rem;
  color: var(--primary);
  font-size: 1.5rem;
  animation: pulse-red 2s ease-in-out infinite;
}

.tiny {
  margin-top: 1rem;
  font-size: 0.95rem;
  opacity: 0.5;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(204, 8, 108, 0.8);
}

/* Games Collection Button */
.games-collection-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(204, 8, 108, 0.2);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.games-collection-btn:hover {
  background: var(--primary);
  color: #000;
}

.games-collection-btn .games-icon {
  width: 18px;
  height: 18px;
}
