:root {
  --primary: #1a73e8; /* Modern Google-style Blue */
  --accent: #f27914;  /* Classic WAP Orange */
  --bg-color: #f8f9fa;
  --panel-bg: #ffffff;
  --text-main: #202124;
  --text-muted: #5f6368;
  --border-color: #dadce0;
  --glass: rgba(255, 255, 255, 0.8);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  min-height: 100vh;
  box-shadow: 0 0 50px rgba(0,0,0,0.05);
}

a { text-decoration: none; color: var(--primary); transition: 0.2s ease; }
a:hover { color: var(--accent); }

/* Modern Retro Header */
.header {
  background: linear-gradient(135deg, var(--primary) 0%, #174ea6 100%);
  padding: 15px;
  color: #fff;
  text-align: center;
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header h1 { font-size: 1.4rem; font-weight: 900; letter-spacing: -0.5px; }
.header h1 span { color: var(--accent); }

/* Classic Row Sections */
.section-title {
  background: #e8f0fe;
  padding: 8px 15px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* WAP-Style Menu Items */
.menu-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background: var(--panel-bg);
  border-bottom: 1px solid var(--border-color);
  gap: 12px;
  transition: background 0.2s;
}
.menu-item:hover { background: #f1f3f4; }
.menu-item img { width: 24px; height: 24px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }
.item-content { flex: 1; }
.item-title { font-weight: 600; font-size: 0.95rem; display: block; color: var(--text-main); }
.item-meta { font-size: 0.75rem; color: var(--text-muted); }
.item-arrow { color: var(--border-color); font-size: 1.2rem; }

/* Grid Layout for Photos */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 15px;
  background: #fff;
}
.photo-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #f8f9fa;
  transition: transform 0.2s;
}
.photo-card:hover { transform: translateY(-3px); border-color: var(--primary); }
.photo-card img { width: 100%; height: 120px; object-fit: cover; display: block; }
.photo-info { padding: 8px; text-align: center; font-size: 0.8rem; font-weight: 600; }

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

/* Live Notification Toast */
.live-notify {
    position: fixed;
    bottom: 25px;
    left: -300px;
    width: 260px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--primary);
    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.1);
    backdrop-filter: blur(5px);
}
.live-notify.active { left: 15px; }
.notify-icon { width: 34px; height: 34px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.8rem; }
.notify-content { font-size: 0.8rem; color: var(--text-main); }
.notify-content b { color: var(--primary); }

/* Footer */
.footer {
  padding: 30px 15px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: #fff;
  border-top: 1px solid var(--border-color);
}
.footer b { color: #d93025; }

/* Responsive adjustments */
@media (max-width: 320px) {
  body { border: none; }
  .photo-grid { grid-template-columns: 1fr; }
}
