:root {
    --bg-color: #0d0216;
    --panel-bg: rgba(255, 255, 255, 0.05);
    --panel-hover: rgba(255, 255, 255, 0.1);
    --accent-pink: #ff00ea;
    --accent-blue: #ffffff;
    --text-main: #ffffff;
    --text-dim: #dddddd;
    --font-main: 'Inter', system-ui, sans-serif;
}

/* Floating Action Button (FAB) */
.fab {
    position: fixed;
    bottom: 25px;
    right: 20px;
    background: var(--accent-pink);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 0, 234, 0.5);
    z-index: 3000;
    text-decoration: none;
    animation: pulse-fab 2s infinite;
}
.fab-text {
    position: absolute;
    right: 70px;
    background: var(--accent-pink);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

@keyframes pulse-fab {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 234, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 0, 234, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 234, 0); }
}

/* Live Notification Toast */
.live-notify {
    position: fixed;
    bottom: 25px;
    left: -300px;
    width: 260px;
    background: rgba(18, 4, 26, 0.95);
    border: 1px solid var(--accent-pink);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2000;
    transition: left 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.4);
}
.live-notify.active { left: 15px; }
.notify-icon { width: 34px; height: 34px; background: var(--accent-pink); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: bold; font-size: 0.9rem; }
.notify-content { font-size: 0.8rem; color: #fff; line-height: 1.2; }
.notify-content b { color: var(--accent-pink); }

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.4;
  background-image: radial-gradient(circle at 50% 0%, #200435 0%, #0d0216 100%);
}
a { text-decoration: none; color: #ffffff; transition: 0.2s; }
a:hover { color: var(--accent-pink); }

.wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.container { max-width: 1000px; margin: 0 auto; width: 100%; padding: 0 15px; }

/* Top Header */
.header { padding: 20px 0; border-bottom: 1px solid rgba(255,0,234,0.3); text-align: left; display: flex; justify-content: space-between; align-items: center; }
.header h1 { font-size: 1.5rem; letter-spacing: 2px; text-transform: uppercase; color: #fff; text-shadow: 0 0 10px var(--accent-pink); }
.header h1 span { color: var(--accent-pink); }

/* Hero Banner */
.hero { background: linear-gradient(135deg, #32064d 0%, #1a0329 100%); border-radius: 15px; padding: 30px; margin: 20px 0; border: 1px solid var(--accent-pink); position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,0,234,0.1) 0%, transparent 70%); pointer-events: none; }
.hero h2 { font-size: 1.8rem; margin-bottom: 10px; text-shadow: 0 0 5px #000; color: #fff; }
.hero p { color: #ffffff; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }

/* Dual Column Layout */
.main-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin-bottom: 30px; }
@media (max-width: 800px) { .main-grid { grid-template-columns: 1fr; } }

/* Cards */
.box { background: var(--panel-bg); border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); overflow: hidden; height: fit-content; }
.box-head { padding: 12px 18px; background: rgba(255,0,234,0.15); border-bottom: 1px solid rgba(255,0,234,0.2); font-weight: bold; text-transform: uppercase; font-size: 0.9rem; color: var(--accent-pink); display: flex; justify-content: space-between; }

/* Vertical List */
.v-list a { display: block; padding: 12px 18px; border-bottom: 1px solid rgba(255,255,255,0.03); font-size: 0.95rem; display: flex; justify-content: space-between; color: #fff; }
.v-list a:hover { background: var(--panel-hover); color: var(--accent-pink); }
.v-list a span { color: #dddddd; font-size: 0.8rem; }

/* Photo Sidebar */
.photo-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(48px, 1fr)); gap: 8px; padding: 15px; }
.photo-strip img { width: 48px; height: 48px; border: 1px solid var(--accent-blue); border-radius: 4px; transition: 0.2s; }
.photo-strip img:hover { border-color: var(--accent-pink); transform: scale(1.1); box-shadow: 0 0 8px var(--accent-pink); }

/* Tags Cloud */
.tags { display: flex; flex-wrap: wrap; gap: 6px; padding: 15px; }
.tags a { background: #12041a; padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; border: 1px solid #32064d; color: #ffffff; }
.tags a:hover { border-color: var(--accent-pink); color: #fff; }

.footer { text-align: center; padding: 40px 0; font-size: 0.75rem; color: var(--text-dim); border-top: 1px solid rgba(255,255,255,0.05); }
.warning { color: #ff3366; font-weight: bold; margin-bottom: 10px; }
