:root {
  --primary: #ff1a75;
  --primary-dark: #d91863;
  --secondary: #7c3aed;
  --accent: #06b6d4;
  --success: #10b981;
  --danger: #ef4444;
  --bg: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #2d2d2d;
  --text: #e5e5e5;
  --text-muted: #a0a0a0;
  --border: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, var(--bg) 0%, #1a0f2e 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100%;
}

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

a:hover {
  color: var(--primary-dark);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

input, select, textarea {
  font-family: inherit;
  background: var(--bg-secondary);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.75rem;
  border-radius: 8px;
  transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(255, 26, 117, 0.1);
}

input::placeholder {
  color: var(--text-muted);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.navbar__logo a {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar__search {
  flex: 1;
  max-width: 400px;
}

.navbar__search input {
  width: 100%;
}

.navbar__menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  background: none;
  color: var(--text);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary);
}

/* Buttons */
.button {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 26, 117, 0.3);
}

.button--secondary {
  background: var(--bg-secondary);
  color: var(--text);
  border: 1px solid var(--border);
}

.button--secondary:hover {
  background: var(--bg-tertiary);
  border-color: var(--primary);
}

.button--danger {
  background: var(--danger);
}

.button--danger:hover {
  background: #dc2626;
}

/* Container & Views */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.view {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.view.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(255, 26, 117, 0.1), rgba(124, 58, 237, 0.1));
  border-radius: 16px;
  margin-bottom: 4rem;
}

.hero__content h1 {
  font-size: 3rem;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 4rem;
}

.trust-bar__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.trust-bar__item strong {
  font-size: 1.15rem;
}

.trust-bar__item span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.content-section {
  margin-bottom: 4rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.section-heading--compact {
  margin-bottom: 1rem;
}

.section-kicker {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.section-heading h2 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
}

.section-heading p {
  color: var(--text-muted);
  margin: 0;
}

.feature-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.feature-card--soft {
  background: rgba(255, 255, 255, 0.03);
}

.feature-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 26, 117, 0.12);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 1rem;
}

.feature-card h3,
.faq-item h3,
.highlight-panel h3 {
  margin-top: 0;
}

.feature-card p,
.faq-item p,
.highlight-panel p {
  color: var(--text-muted);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.highlight-panel {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.18), rgba(255, 26, 117, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.5rem;
}

.checklist {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.checklist li {
  margin-bottom: 0.75rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 26, 117, 0.12), rgba(124, 58, 237, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 4rem;
}

.cta-band h2 {
  margin: 0 0 0.5rem;
}

.cta-band p {
  margin: 0;
  color: var(--text-muted);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

.site-footer strong {
  color: var(--text);
}

.site-footer p {
  margin: 0.35rem 0 0;
}

.site-footer a {
  color: var(--text-muted);
}

.site-footer a:hover {
  color: var(--primary);
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.legal-page h1 {
  margin-top: 0.5rem;
}

.legal-page h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal-page p {
  color: var(--text-muted);
  margin: 0;
}

.legal-back {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.messages-layout {
  max-width: 780px;
}

.messages-thread {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.message-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
}

.message-card p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.billing-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.billing-summary__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.billing-summary__card span {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}

.billing-summary__card strong {
  font-size: 1.5rem;
}

.note-inline {
  color: var(--text-muted);
}

/* Featured Creators */
.featured {
  margin-bottom: 4rem;
}

.featured h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

/* Grid */
.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.creator-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.creator-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 26, 117, 0.2);
}

.creator-card__banner {
  height: 150px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  position: relative;
}

.creator-card__avatar {
  position: absolute;
  top: -30px;
  left: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 3px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.creator-card__avatar-image,
.creator-header__avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.creator-card__avatar-image {
  border-radius: 50%;
}

.creator-header__avatar-image {
  border-radius: 50%;
}

.creator-card__content {
  padding: 50px 1.5rem 1.5rem;
}

.creator-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--text);
}

.creator-card__username {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 0.75rem;
}

.creator-card__category {
  display: inline-block;
  background: rgba(255, 26, 117, 0.2);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.creator-card__stats {
  display: flex;
  justify-content: space-around;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  margin: 1rem 0;
  font-size: 0.9rem;
}

.creator-card__stats-item {
  text-align: center;
}

.creator-card__stats-value {
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.creator-card__stats-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  display: block;
}

.creator-card__button {
  width: 100%;
}

/* Explore */
.explore-header {
  margin-bottom: 2rem;
}

.explore-header h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.explore-filters {
  display: flex;
  gap: 1rem;
}

.explore-filters input,
.explore-filters select {
  flex: 1;
  min-width: 200px;
}

/* FYP Feed */
.fyp-feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.post-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.post-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.post-card__media {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.post-card__locked {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.post-card__locked-icon {
  font-size: 2.5rem;
}

.post-card__content {
  padding: 1rem;
}

.post-card__creator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.post-card__creator-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.post-card__title {
  font-weight: 600;
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.post-card__visibility {
  display: inline-block;
  font-size: 0.75rem;
  background: rgba(124, 58, 237, 0.2);
  color: var(--secondary);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-right: 0.5rem;
}

.post-card__actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

.post-action {
  flex: 1;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s;
}

.post-action:hover {
  color: var(--primary);
}

/* Creator Profile */
.creator-header {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
}

.creator-header__banner {
  height: 250px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  position: relative;
}

.creator-header__content {
  padding: 2rem;
  position: relative;
  margin-top: -60px;
}

.creator-header__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 4px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.creator-header__name {
  font-size: 1.8rem;
  margin: 0 0 0.25rem;
}

.creator-header__username {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.creator-header__bio {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 600px;
  line-height: 1.6;
}

.creator-header__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.creator-header__stat {
  display: flex;
  flex-direction: column;
}

.creator-header__stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.creator-header__stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.creator-header__actions {
  display: flex;
  gap: 1rem;
}

.creator-header__actions button {
  min-width: 120px;
}

/* Tabs */
.creator-tabs {
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.tab-btn {
  background: none;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 1rem 0;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-btn:hover {
  color: var(--text);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

/* Post Detail */
.post-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.post-detail__media {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.post-detail__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.post-detail__title {
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.post-detail__creator {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-tertiary);
  border-radius: 8px;
  margin: 1rem 0;
}

.post-detail__creator-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.post-detail__creator-info h4 {
  margin: 0;
}

.post-detail__creator-info p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.post-detail__visibility {
  margin-top: auto;
  padding: 1rem;
  background: var(--bg-tertiary);
  border-radius: 8px;
}

.post-detail__cta {
  width: 100%;
  margin-top: 1rem;
}

/* Account */
.account-sections {
  display: grid;
  gap: 2rem;
}

.account-section {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.account-section h2 {
  margin-top: 0;
}

.user-profile-grid {
  display: grid;
  gap: 1rem;
}

.user-profile-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: var(--bg-tertiary);
  border-radius: 8px;
}

.subscriptions-list {
  display: grid;
  gap: 1rem;
}

.subscription-item {
  background: var(--bg-tertiary);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.subscription-item__creator {
  font-weight: 600;
}

.subscription-item__price {
  color: var(--primary);
  font-weight: 600;
}

/* Admin */
.admin-header {
  margin-bottom: 2rem;
}

.admin-tabs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.admin-tab-btn {
  background: var(--bg-secondary);
  color: var(--text);
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.admin-tab-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.admin-tab-btn:hover {
  border-color: var(--primary);
}

.admin-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.admin-tab {
  display: none;
}

.admin-tab.active {
  display: block;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

.stat-card h3 {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.admin-chart-placeholder {
  height: 300px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.admin-header-actions {
  margin-bottom: 1.5rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table thead {
  border-bottom: 1px solid var(--border);
}

.admin-table th {
  text-align: left;
  padding: 1rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.admin-table tbody tr:hover {
  background: var(--bg-tertiary);
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.analytics-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

.analytics-card h3 {
  margin-top: 0;
}

.analytics-card ol {
  margin: 0;
  padding-left: 1.5rem;
}

.analytics-card li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.analytics-card li strong {
  color: var(--text);
}

/* Modal */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-field span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal.hidden {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}

.modal__close:hover {
  color: var(--primary);
}

.modal h2 {
  margin-top: 0;
}

.auth-form input {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}

#authForm button {
  width: 100%;
}

.auth-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* Subscription Tiers */
.subscription-tiers {
  display: grid;
  gap: 1rem;
}

.subscription-tier {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.2s;
}

.subscription-tier:hover {
  border-color: var(--primary);
  background: rgba(255, 26, 117, 0.05);
}

.subscription-tier h3 {
  margin: 0 0 0.5rem;
  color: var(--primary);
}

.subscription-tier .price {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.subscription-tier p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.subscription-tier button {
  width: 100%;
  margin-top: 1rem;
}

/* Note */
.note {
  color: var(--text-muted);
  font-size: 0.9rem;
  background: var(--bg-tertiary);
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .navbar__container {
    gap: 1rem;
  }

  .navbar__search {
    display: none;
  }

  .post-detail {
    grid-template-columns: 1fr;
  }

  .admin-tabs {
    gap: 0.25rem;
  }

  .admin-tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .navbar__container {
    flex-wrap: wrap;
  }

  .creators-grid,
  .posts-grid,
  .fyp-feed {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .creator-header__actions {
    flex-direction: column;
  }

  .creator-header__actions button {
    width: 100%;
  }

  .explore-filters {
    flex-direction: column;
  }

  .admin-table {
    font-size: 0.9rem;
  }

  .admin-table th,
  .admin-table td {
    padding: 0.75rem 0.5rem;
  }
}
