/* Bright Social / Clean Light Theme */
:root {
  --bg-color: #f0f2f5;
  --card-bg: #ffffff;
  --primary-color: #1877f2; /* Blue */
  --text-main: #1c1e21;
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

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

/* Live Notification Toast */
.live-notify {
    position: fixed;
    bottom: 25px;
    left: -300px;
    width: 260px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    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 10px 30px rgba(0,0,0,0.2);
    border-left: 5px solid var(--primary-color);
}
.live-notify.active { left: 15px; }
.notify-icon { width: 34px; height: 34px; background: var(--primary-color); 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: #333; line-height: 1.2; }
.notify-content b { color: var(--primary-color); }

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: inherit;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

.site-header {
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 15px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header h1 {
  font-size: 1.2rem;
  font-weight: 600;
}

.main-content {
  max-width: 800px;
  margin: 15px auto;
  padding: 0 10px;
}

.card {
  background: var(--card-bg);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.card-header {
  padding: 12px 15px;
  font-weight: bold;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border-color);
  background: #fafafa;
  color: #333;
}

.list-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.list-item:hover {
  background: #f4f6f8;
}

.list-item:last-child {
  border-bottom: none;
}

.item-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #e4e6eb;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  overflow: hidden;
}
.item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-text {
  flex-grow: 1;
}

.item-text h3 {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.item-text p {
  font-size: 0.8rem;
  color: var(--text-sub);
}

.item-arrow {
  color: #bcc0c4;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Secondary Photo Grid */
.photo-wall {
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
  gap: 15px;
  justify-content: center;
}

.photo-brick {
  width: 48px;
  height: 48px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid #ddd;
  flex-shrink: 0;
}

.photo-brick img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensure it stays sharp and doesn't crop weirdly */
  display: block;
}

.photo-label {
  display: none; /* Hide label to keep it clean and small */
}


/* Keywords Block for Light Theme */
.seo-tags-wrap {
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.seo-tags-wrap h2 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #444;
}

.tags-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-btn {
  background: #e4e6eb;
  color: #050505;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  text-decoration: none;
}

.tag-btn:hover {
  background: #d8dadf;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 20px;
  color: var(--text-sub);
  font-size: 0.8rem;
}
.site-footer a {
  color: var(--primary-color);
  font-weight: 500;
}
