:root {
  --velvet-red: #8b0000;
  --soft-gold: #c5a059;
  --bg-deep: #0a0a0a;
  --surface-red: rgba(139, 0, 0, 0.05);
  --border-velvet: rgba(139, 0, 0, 0.2);
  --text-primary: #f5f5f5;
  --text-secondary: #a0a0a0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Playfair Display', 'Inter', serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
  border-left: 1px solid #1a1a1a;
  border-right: 1px solid #1a1a1a;
}

a { text-decoration: none; color: inherit; }

/* Elegant Header */
.header {
  padding: 40px 20px;
  text-align: center;
  background: radial-gradient(circle at center, #1a0505 0%, #0a0a0a 100%);
  border-bottom: 1px solid var(--border-velvet);
}
.header img {
  max-width: 220px;
  filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.5));
}
.header h1 {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--soft-gold);
  text-transform: uppercase;
  margin-top: 15px;
}

/* Category Cards */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
}

.sensual-card {
  display: flex;
  align-items: center;
  background: var(--surface-red);
  border: 1px solid var(--border-velvet);
  border-radius: 8px;
  padding: 15px;
  gap: 15px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
.sensual-card:hover {
  background: rgba(139, 0, 0, 0.15);
  border-color: var(--velvet-red);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);
}
.sensual-card::after {
  content: '';
  position: absolute;
  right: -20px; bottom: -20px;
  width: 80px; height: 80px;
  background: var(--velvet-red);
  filter: blur(40px);
  opacity: 0.2;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: #000;
  border: 1px solid var(--border-velvet);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--soft-gold);
}

.card-info { flex: 1; }
.card-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.card-count {
  font-size: 0.7rem;
  color: var(--velvet-red);
  font-weight: bold;
  text-transform: uppercase;
}

/* Tag Cloud Overlay */
.tag-section {
  padding: 40px 20px;
  background: #000;
  text-align: center;
}
.tag-link {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 5px;
  border-bottom: 1px solid #222;
  transition: 0.3s;
}
.tag-link:hover {
  color: var(--soft-gold);
  border-color: var(--soft-gold);
}

/* Notification & FAB */
.live-notify {
    position: fixed;
    bottom: 30px;
    left: -350px;
    width: 250px;
    background: #000;
    border: 1px solid var(--velvet-red);
    padding: 12px;
    border-radius: 10px;
    z-index: 2000;
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 15px 45px rgba(0,0,0,0.5);
}
.live-notify.active { left: 15px; }

.fab {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--velvet-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 5px 25px rgba(139, 0, 0, 0.4);
    z-index: 3000;
    animation: floating-heart 3s ease-in-out infinite;
}
@keyframes floating-heart {
    0% { transform: translateY(0); box-shadow: 0 5px 25px rgba(139, 0, 0, 0.4); }
    50% { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(139, 0, 0, 0.6); }
    100% { transform: translateY(0); box-shadow: 0 5px 25px rgba(139, 0, 0, 0.4); }
}

footer {
  padding: 40px 20px;
  text-align: center;
  font-size: 0.7rem;
  color: #444;
  border-top: 1px solid #1a1a1a;
}
