/* Modern Mobile Hub / App Style for 07 Portal */
:root {
  --bg-deep: #0f0a1a;
  --surface: #1a1429;
  --accent: #9d50bb;
  --accent-gradient: linear-gradient(135deg, #9d50bb 0%, #6e48aa 100%);
  --text-main: #f0f0f0;
  --text-dim: #a09cb0;
  --border: #322340;
  --font-sans: 'Inter', system-ui, sans-serif;
}

/* 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(157, 80, 187, 0.5);
    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(157, 80, 187, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(157, 80, 187, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(157, 80, 187, 0); }
}

/* Live Notification Toast */
.live-notify {
    position: fixed;
    bottom: 25px;
    left: -300px;
    width: 260px;
    background: rgba(26, 20, 41, 0.98);
    border: 1px solid var(--accent);
    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 40px rgba(0,0,0,0.5);
}
.live-notify.active { left: 15px; }
.notify-icon { width: 34px; height: 34px; background: var(--accent); border-radius: 10px; 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); }

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.5;
  padding-bottom: 30px;
}

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

.container { max-width: 480px; margin: 0 auto; padding: 0 15px; }

/* App Header */
.app-header {
  padding: 25px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 100;
}

.app-brand {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

/* Section Labels */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 1px;
  margin: 25px 0 12px;
  padding-left: 5px;
}

/* Card List */
.list-card {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.app-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.app-item:last-child { border-bottom: none; }
.app-item:active { background: rgba(255,255,255,0.05); }

.icon-box {
  width: 48px;
  height: 48px;
  background: #251d3a;
  border-radius: 10px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.icon-box img { width: 100%; height: 100%; object-fit: cover; }

.item-info { flex: 1; min-width: 0; }
.item-info h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.item-info p { font-size: 0.75rem; color: var(--text-dim); }

.download-btn {
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Image Grid */
.photo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.photo-wall img { width: 100%; border-radius: 6px; border: 1px solid var(--border); }

/* SEO Text Block */
.seo-block {
  margin: 30px 0;
  padding: 20px;
  background: #150f24;
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.seo-block h2 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.seo-block b { color: var(--accent); }

/* Tag Wall */
.tag-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-link {
  font-size: 0.7rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--text-dim);
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px 0;
  font-size: 0.7rem;
  color: var(--text-dim);
}
.footer a { color: var(--accent); }