/* Luxury Gold / Premium Dark Theme for 05 Portal */
:root {
  --bg-color: #080808;
  --surface: #121212;
  --gold: #d4af37;
  --gold-glow: rgba(212, 175, 55, 0.4);
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --border: #222222;
  --font-serif: 'Playfair Display', serif;
  --font-main: 'Inter', system-ui, sans-serif;
}

/* Floating Action Button (FAB) */
.fab {
    position: fixed;
    bottom: 25px;
    right: 20px;
    background: var(--gold);
    color: #000;
    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(181, 150, 77, 0.6);
    z-index: 3000;
    text-decoration: none;
    animation: pulse-fab 2s infinite;
}
.fab-text {
    position: absolute;
    right: 70px;
    background: var(--gold);
    color: #000;
    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(181, 150, 77, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(181, 150, 77, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(181, 150, 77, 0); }
}

/* Live Notification Toast */
.live-notify {
    position: fixed;
    bottom: 25px;
    left: -300px;
    width: 260px;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid var(--gold);
    border-radius: 2px;
    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 40px rgba(212, 175, 55, 0.3);
}
.live-notify.active { left: 15px; }
.notify-icon { width: 34px; height: 34px; background: var(--gold); border-radius: 0; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #000; font-weight: bold; font-size: 1.1rem; }
.notify-content { font-size: 0.8rem; color: var(--gold); line-height: 1.2; font-family: var(--font-serif); }
.notify-content b { color: #fff; }

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
}

a { text-decoration: none; color: var(--gold); transition: 0.3s; }
a:hover { color: #fff; text-shadow: 0 0 8px var(--gold-glow); }

.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* Luxury Header */
.header {
  padding: 50px 0;
  text-align: center;
  background: var(--surface);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.header h1 {
  font-size: 3rem;
  font-family: var(--font-serif);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 400;
}

/* Premium Content Section (SEO Long-read) */
.premium-content {
  background: var(--surface);
  padding: 40px;
  border-radius: 4px;
  margin: 40px 0;
  border: 1px solid var(--border);
  position: relative;
}

.premium-content::before {
  content: 'EXCLUSIVE ACCESS';
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--gold);
  color: #000;
  padding: 2px 10px;
  font-size: 0.7rem;
  font-weight: bold;
}

.premium-content h2 { font-family: var(--font-serif); color: var(--gold); margin-bottom: 25px; font-size: 2rem; }
.premium-content h3 { color: #fff; margin: 25px 0 15px; border-bottom: 1px solid var(--gold); display: inline-block; padding-bottom: 5px; }
.premium-content p { margin-bottom: 20px; font-size: 1.1rem; color: var(--text-secondary); }
.premium-content b { color: #fff; }

.read-more-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 30px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}

.read-more-btn:hover { background: var(--gold); color: #000; }

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

/* Box Styling */
.item-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 25px;
  margin-bottom: 30px;
}

.box-label {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
  font-weight: bold;
}

/* List Items */
.gold-list { list-style: none; }
.gold-list li { margin-bottom: 12px; }
.gold-list a { display: block; border-left: 2px solid transparent; padding-left: 10px; }
.gold-list a:hover { border-left-color: var(--gold); }

/* Discussion Section */
.discussion {
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.comment { margin-bottom: 25px; border-left: 2px solid var(--gold); padding-left: 20px; }
.user-info { font-size: 0.8rem; color: var(--gold); margin-bottom: 5px; opacity: 0.8; }
.comment-body { font-size: 0.95rem; font-style: italic; color: var(--text-secondary); }

/* Footer */
.footer {
  text-align: center;
  padding: 60px 0;
  color: var(--text-secondary);
  font-size: 0.8rem;
  background: #000;
}
.footer i { color: #ff3333; font-style: normal; }
