/* ============================================================
       CSS VARIABLES & RESET
    ============================================================ */
    :root {
      --pink:       #e91e8c;
      --pink-light: #f472b6;
      --pink-dark:  #be185d;
      --blue:       #1e3a8a;
      --blue-mid:   #2563eb;
      --blue-light: #60a5fa;
      --blue-sky:   #0ea5e9;
      --green:      #16a34a;
      --green-light:#4ade80;
      --green-dark: #15803d;
      --white:      #ffffff;
      --gray-50:    #f8fafc;
      --gray-100:   #f1f5f9;
      --gray-200:   #e2e8f0;
      --gray-300:   #cbd5e1;
      --gray-400:   #94a3b8;
      --gray-500:   #64748b;
      --gray-600:   #475569;
      --gray-700:   #334155;
      --gray-800:   #1e293b;
      --gray-900:   #0f172a;
      --radius:     12px;
      --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
      --shadow:     0 4px 16px rgba(0,0,0,.12);
      --shadow-lg:  0 8px 32px rgba(0,0,0,.18);
      --transition: all .25s cubic-bezier(.4,0,.2,1);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--gray-50);
      color: var(--gray-800);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    input, textarea, select { font-family: inherit; }
    ul { list-style: none; }

    /* ============================================================
       UTILITY CLASSES
    ============================================================ */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
    .section { padding: 5rem 0; }
    .text-center { text-align: center; }
    .hidden { display: none !important; }
    .flex { display: flex; }
    .items-center { align-items: center; }
    .justify-between { justify-content: space-between; }
    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .mt-3 { margin-top: 1.5rem; }
    .mt-4 { margin-top: 2rem; }
    .mb-3 { margin-bottom: 1.5rem; }
    .mb-4 { margin-bottom: 2rem; }
    .w-full { width: 100%; }
    .bg-white { background: var(--white); }

    /* ============================================================
       BUTTONS
    ============================================================ */
    .btn {
      display: inline-flex; align-items: center; gap: .5rem;
      padding: .625rem 1.5rem; border-radius: var(--radius);
      font-weight: 600; font-size: .9rem; transition: var(--transition);
      cursor: pointer; border: 2px solid transparent;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--pink), var(--pink-dark));
      color: var(--white);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(233,30,140,.4); }
    .btn-secondary {
      background: linear-gradient(135deg, var(--blue-mid), var(--blue));
      color: var(--white);
    }
    .btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,.4); }
    .btn-green {
      background: linear-gradient(135deg, var(--green), var(--green-dark));
      color: var(--white);
    }
    .btn-green:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(22,163,74,.4); }
    .btn-outline {
      border-color: var(--pink); color: var(--pink); background: transparent;
    }
    .btn-outline:hover { background: var(--pink); color: var(--white); }
    .btn-outline-blue {
      border-color: var(--blue-mid); color: var(--blue-mid); background: transparent;
    }
    .btn-outline-blue:hover { background: var(--blue-mid); color: var(--white); }
    .btn-sm { padding: .4rem 1rem; font-size: .8rem; }
    .btn-lg { padding: .875rem 2rem; font-size: 1rem; }

    /* ============================================================
       CARDS
    ============================================================ */
    .card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      transition: var(--transition);
    }
    .card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
    .card-body { padding: 1.5rem; }

    /* ============================================================
       BADGES
    ============================================================ */
    .badge {
      display: inline-flex; align-items: center; gap: .3rem;
      padding: .2rem .7rem; border-radius: 9999px;
      font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
    }
    .badge-pink { background: rgba(233,30,140,.12); color: var(--pink-dark); }
    .badge-blue { background: rgba(37,99,235,.12); color: var(--blue-mid); }
    .badge-green { background: rgba(22,163,74,.12); color: var(--green-dark); }
    .badge-gray { background: var(--gray-100); color: var(--gray-600); }
    .badge-live { background: #fee2e2; color: #dc2626; animation: pulse 1.5s infinite; }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.6} }

    /* ============================================================
       SECTION HEADERS
    ============================================================ */
    .section-header { text-align: center; margin-bottom: 3rem; }
    .section-header .eyebrow {
      display: inline-block; font-size: .8rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .15em;
      color: var(--pink); margin-bottom: .75rem;
    }
    .section-header h2 {
      font-family: 'Oswald', sans-serif;
      font-size: 2.5rem; font-weight: 700;
      color: var(--gray-900); line-height: 1.2;
    }
    .section-header p { color: var(--gray-500); max-width: 600px; margin: .75rem auto 0; }
    .divider {
      width: 60px; height: 4px; margin: 1rem auto 0;
      background: linear-gradient(90deg, var(--pink), var(--blue-mid), var(--green));
      border-radius: 2px;
    }

    /* ============================================================
       NAVBAR
    ============================================================ */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(15,23,42,.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,.08);
      transition: var(--transition);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 1.5rem; height: 70px; max-width: 1280px; margin: 0 auto;
    }
    .nav-brand {
      display: flex; align-items: center; gap: .75rem;
    }
    .nav-brand .logo-mark {
      width: 42px; height: 42px; border-radius: 10px;
      background: linear-gradient(135deg, var(--pink), var(--blue-mid));
      display: flex; align-items: center; justify-content: center;
      font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; color: white;
    }
    .nav-brand .brand-text { line-height: 1.1; }
    .nav-brand .brand-name {
      font-family: 'Oswald', sans-serif; font-size: 1.2rem;
      font-weight: 700; color: white; letter-spacing: .05em;
    }
    .nav-brand .brand-sub { font-size: .7rem; color: var(--gray-400); letter-spacing: .08em; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: .25rem; }
    .nav-link {
      padding: .5rem .875rem; border-radius: 8px;
      font-size: .875rem; font-weight: 500; color: var(--gray-300);
      transition: var(--transition); cursor: pointer;
    }
    .nav-link:hover, .nav-link.active {
      background: rgba(255,255,255,.1); color: white;
    }
    .nav-link.active { color: var(--pink-light); }
    .nav-cta {
      display: flex; align-items: center; gap: .75rem;
    }
    .nav-admin-btn {
      padding: .45rem 1rem; border-radius: 8px; font-size: .8rem;
      font-weight: 600; background: rgba(233,30,140,.2);
      color: var(--pink-light); border: 1px solid rgba(233,30,140,.3);
      transition: var(--transition); cursor: pointer;
    }
    .nav-admin-btn:hover { background: var(--pink); color: white; }
    .nav-hamburger {
      display: none; flex-direction: column; gap: 5px;
      padding: .5rem; cursor: pointer;
    }
    .nav-hamburger span {
      display: block; width: 24px; height: 2px;
      background: white; border-radius: 2px; transition: var(--transition);
    }
    .mobile-menu {
      display: none; background: var(--gray-900);
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 1rem 1.5rem;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu .nav-link { display: block; padding: .75rem 1rem; }

    /* ============================================================
       HERO
    ============================================================ */
    #hero {
      min-height: 100vh; position: relative; overflow: hidden;
      display: flex; align-items: center;
      background: linear-gradient(135deg, var(--gray-900) 0%, var(--blue) 50%, var(--gray-900) 100%);
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background-image:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(233,30,140,.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(37,99,235,.3) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 60% 80%, rgba(22,163,74,.2) 0%, transparent 60%);
    }
    .hero-pattern {
      position: absolute; inset: 0; z-index: 0; opacity: .04;
      background-image: repeating-linear-gradient(
        45deg, white 0, white 1px, transparent 0, transparent 50%
      );
      background-size: 30px 30px;
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
      padding-top: 70px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    }
    .hero-text .eyebrow {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(233,30,140,.2); border: 1px solid rgba(233,30,140,.3);
      color: var(--pink-light); padding: .4rem 1rem; border-radius: 9999px;
      font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
      margin-bottom: 1.5rem;
    }
    .hero-text h1 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700;
      color: white; line-height: 1.1; margin-bottom: 1.5rem;
    }
    .hero-text h1 .highlight {
      background: linear-gradient(135deg, var(--pink-light), var(--blue-light));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .hero-text p { color: var(--gray-300); font-size: 1.1rem; margin-bottom: 2rem; max-width: 480px; }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .hero-stats {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem;
    }
    .hero-stat {
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius); padding: 1rem; text-align: center;
    }
    .hero-stat .num {
      font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700;
      background: linear-gradient(135deg, var(--pink-light), var(--blue-light));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .hero-stat .label { font-size: .75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .1em; }
    .hero-visual {
      position: relative;
    }
    .hero-card-stack { position: relative; }
    .hero-main-card {
      background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
      backdrop-filter: blur(20px); border-radius: 20px; padding: 2rem;
      color: white;
    }
    .hero-main-card .card-label {
      font-size: .75rem; text-transform: uppercase; letter-spacing: .1em;
      color: var(--pink-light); margin-bottom: 1rem;
    }
    .hero-score-display {
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(0,0,0,.3); border-radius: 12px; padding: 1.5rem;
      margin-bottom: 1rem;
    }
    .hero-score-team { text-align: center; }
    .hero-score-team .team-name { font-size: .85rem; color: var(--gray-300); }
    .hero-score-team .team-score {
      font-family: 'Oswald', sans-serif; font-size: 3rem; font-weight: 700; color: white;
    }
    .hero-score-vs {
      font-size: .8rem; color: var(--gray-400); text-align: center;
    }
    .hero-score-vs .live-dot {
      display: inline-block; width: 8px; height: 8px; border-radius: 50%;
      background: #ef4444; margin-right: .3rem; animation: pulse 1.5s infinite;
    }
    .hero-floating-badge {
      position: absolute; background: white; border-radius: 12px;
      padding: .75rem 1rem; box-shadow: var(--shadow-lg);
      display: flex; align-items: center; gap: .75rem;
    }
    .hero-floating-badge.badge-1 { top: -1rem; right: -1rem; }
    .hero-floating-badge.badge-2 { bottom: 1rem; left: -1.5rem; }
    .hero-floating-badge .badge-icon {
      width: 36px; height: 36px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
    }
    .hero-floating-badge .badge-icon.pink { background: rgba(233,30,140,.15); color: var(--pink); }
    .hero-floating-badge .badge-icon.green { background: rgba(22,163,74,.15); color: var(--green); }
    .hero-floating-badge .badge-text .title { font-size: .8rem; font-weight: 700; color: var(--gray-800); }
    .hero-floating-badge .badge-text .sub { font-size: .7rem; color: var(--gray-500); }

    /* ============================================================
       LIVE SCORES TICKER
    ============================================================ */
    #ticker {
      background: linear-gradient(90deg, var(--blue) 0%, var(--blue-mid) 50%, var(--pink-dark) 100%);
      padding: .6rem 0; overflow: hidden; position: relative;
    }
    .ticker-inner {
      display: flex; align-items: center; position: relative;
    }
    .ticker-label {
      background: var(--pink); color: white; padding: .3rem .9rem;
      font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
      white-space: nowrap; border-radius: 4px; flex-shrink: 0;
      position: relative; z-index: 10;
      /* Decorative right-pointing arrow shape */
      clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
      padding-right: 1.2rem;
      box-shadow: 4px 0 12px rgba(0,0,0,.3);
    }
    .ticker-scroll-wrap {
      flex: 1; overflow: hidden; position: relative;
      /* Fade-out mask on the right edge */
      -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
      mask-image: linear-gradient(to right, black 80%, transparent 100%);
    }
    .ticker-track {
      display: flex; gap: 3rem; animation: ticker-scroll 30s linear infinite;
      white-space: nowrap; padding-left: 1.5rem;
    }
    .ticker-item { color: white; font-size: .85rem; font-weight: 500; }
    .ticker-item .score { font-weight: 700; color: var(--green-light); }
    @keyframes ticker-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ============================================================
       SPORTS FILTER TABS
    ============================================================ */
    .sport-tabs {
      display: flex; gap: .5rem; flex-wrap: wrap;
      justify-content: center; margin-bottom: 2rem;
    }
    .sport-tab {
      padding: .5rem 1.25rem; border-radius: 9999px;
      font-size: .85rem; font-weight: 600; cursor: pointer;
      border: 2px solid var(--gray-200); color: var(--gray-600);
      transition: var(--transition); background: white;
    }
    .sport-tab:hover { border-color: var(--pink); color: var(--pink); }
    .sport-tab.active {
      background: linear-gradient(135deg, var(--pink), var(--pink-dark));
      border-color: transparent; color: white;
    }

    /* ============================================================
       EVENTS GRID
    ============================================================ */
    .event-card {
      background: white; border-radius: var(--radius); overflow: hidden;
      box-shadow: var(--shadow-sm); transition: var(--transition);
      border: 1px solid var(--gray-100);
    }
    .event-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
    .event-card-header {
      padding: 1rem 1.25rem;
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
      display: flex; align-items: center; justify-content: space-between;
    }
    .event-card-header .sport-name {
      font-size: .75rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: .1em; color: var(--blue-light);
    }
    .event-card-body { padding: 1.25rem; }
    .event-teams {
      display: flex; align-items: center; justify-content: space-between;
      margin: 1rem 0;
    }
    .event-team { text-align: center; flex: 1; }
    .event-team .team-logo {
      width: 50px; height: 50px; border-radius: 50%;
      object-fit: cover; margin: 0 auto .5rem;
      border: 2px solid var(--gray-100);
    }
    .event-team .name { font-size: .85rem; font-weight: 600; color: var(--gray-700); }
    .event-team .school { font-size: .75rem; color: var(--gray-400); }
    .event-vs {
      font-family: 'Oswald', sans-serif; font-size: 1.5rem;
      font-weight: 700; color: var(--gray-300); padding: 0 .5rem;
    }
    .event-score {
      font-family: 'Oswald', sans-serif; font-size: 2rem;
      font-weight: 700; color: var(--gray-800); padding: 0 .5rem;
      text-align: center;
    }
    .event-meta {
      display: flex; gap: 1rem; font-size: .8rem; color: var(--gray-500);
      padding-top: 1rem; border-top: 1px solid var(--gray-100);
    }
    .event-meta span { display: flex; align-items: center; gap: .3rem; }

    /* ============================================================
       STANDINGS TABLE
    ============================================================ */
    .standings-table {
      width: 100%; border-collapse: collapse; font-size: .9rem;
    }
    .standings-table thead th {
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
      color: white; padding: .875rem 1rem; text-align: left;
      font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
    }
    .standings-table thead th:first-child { border-radius: var(--radius) 0 0 0; }
    .standings-table thead th:last-child { border-radius: 0 var(--radius) 0 0; }
    .standings-table tbody tr {
      border-bottom: 1px solid var(--gray-100); transition: var(--transition);
    }
    .standings-table tbody tr:hover { background: var(--gray-50); }
    .standings-table tbody tr.top-3 { background: rgba(233,30,140,.04); }
    .standings-table tbody td { padding: .875rem 1rem; }
    .standings-table .pos {
      font-family: 'Oswald', sans-serif; font-weight: 700;
      width: 40px; text-align: center;
    }
    .standings-table .pos.gold { color: #f59e0b; }
    .standings-table .pos.silver { color: #94a3b8; }
    .standings-table .pos.bronze { color: #b45309; }
    .standings-table .team-cell { display: flex; align-items: center; gap: .75rem; }
    .standings-table .team-logo-sm {
      width: 32px; height: 32px; border-radius: 50%;
      object-fit: cover; border: 1px solid var(--gray-200);
    }
    .standings-table .team-logo-sm-placeholder {
      width: 32px; height: 32px; border-radius: 50%;
      background: linear-gradient(135deg, var(--blue-mid), var(--pink));
      display: flex; align-items: center; justify-content: center;
      font-family: 'Oswald', sans-serif; font-weight: 700; color: white; font-size: .8rem;
    }
    .standings-table .pts {
      font-family: 'Oswald', sans-serif; font-weight: 700;
      color: var(--pink-dark); font-size: 1.1rem;
    }

    /* ============================================================
       WEEKLY WINNER
    ============================================================ */
    .winner-card {
      background: linear-gradient(135deg, var(--blue) 0%, var(--pink-dark) 100%);
      border-radius: 20px; overflow: hidden; position: relative;
      padding: 2.5rem; color: white;
    }
    .winner-card::before {
      content: ''; position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .winner-card .trophy-icon {
      font-size: 3rem; margin-bottom: 1rem; display: block;
    }
    .winner-card .winner-name {
      font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700;
      margin-bottom: .25rem;
    }
    .winner-card .winner-achievement {
      color: var(--pink-light); font-weight: 600; margin-bottom: .5rem;
    }
    .winner-card .winner-desc { opacity: .85; font-size: .95rem; }
    .winner-avatar {
      width: 120px; height: 120px; border-radius: 50%;
      border: 4px solid rgba(255,255,255,.3); object-fit: cover;
    }

    /* ============================================================
       BLOG SECTION
    ============================================================ */
    .blog-card {
      background: white; border-radius: var(--radius); overflow: hidden;
      box-shadow: var(--shadow-sm); transition: var(--transition);
      border: 1px solid var(--gray-100);
    }
    .blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
    .blog-card-img {
      height: 200px; overflow: hidden; position: relative;
    }
    .blog-card-img img {
      width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease;
    }
    .blog-card:hover .blog-card-img img { transform: scale(1.05); }
    .blog-card-img .category-tag {
      position: absolute; top: 1rem; left: 1rem;
    }
    .blog-card-body { padding: 1.5rem; }
    .blog-card-meta {
      display: flex; align-items: center; gap: 1rem;
      font-size: .8rem; color: var(--gray-400); margin-bottom: .75rem;
    }
    .blog-card-meta span { display: flex; align-items: center; gap: .3rem; }
    .blog-card-title {
      font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 600;
      color: var(--gray-900); margin-bottom: .5rem; line-height: 1.3;
      transition: var(--transition);
    }
    .blog-card:hover .blog-card-title { color: var(--pink); }
    .blog-card-excerpt { font-size: .9rem; color: var(--gray-500); line-height: 1.6; }
    .blog-card-footer {
      padding: 1rem 1.5rem; border-top: 1px solid var(--gray-100);
      display: flex; align-items: center; justify-content: space-between;
    }
    .blog-author { display: flex; align-items: center; gap: .5rem; }
    .blog-author-avatar {
      width: 28px; height: 28px; border-radius: 50%;
      background: linear-gradient(135deg, var(--pink), var(--blue-mid));
      display: flex; align-items: center; justify-content: center;
      font-size: .7rem; font-weight: 700; color: white;
    }
    .blog-author-name { font-size: .8rem; font-weight: 600; color: var(--gray-700); }
    .read-more {
      font-size: .8rem; font-weight: 600; color: var(--pink);
      display: flex; align-items: center; gap: .3rem;
      transition: var(--transition);
    }
    .read-more:hover { gap: .6rem; }

    /* ============================================================
       BLOG DETAIL PAGE
    ============================================================ */
    #page-blog-detail { padding-top: 70px; }
    .blog-detail-hero {
      height: 450px; position: relative; overflow: hidden;
    }
    .blog-detail-hero img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .blog-detail-hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
    }
    .blog-detail-hero-content {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 2rem; max-width: 900px; margin: 0 auto;
    }
    .blog-detail-body {
      max-width: 900px; margin: 0 auto; padding: 3rem 1.5rem;
    }
    .blog-detail-content {
      font-size: 1.05rem; line-height: 1.85; color: var(--gray-700);
    }
    .blog-detail-content h2 {
      font-family: 'Oswald', sans-serif; font-size: 1.75rem;
      color: var(--gray-900); margin: 2rem 0 1rem;
    }
    .blog-detail-content h3 {
      font-family: 'Oswald', sans-serif; font-size: 1.35rem;
      color: var(--gray-800); margin: 1.5rem 0 .75rem;
    }
    .blog-detail-content p { margin-bottom: 1.25rem; }
    .blog-detail-content blockquote {
      border-left: 4px solid var(--pink); padding: 1rem 1.5rem;
      background: rgba(233,30,140,.05); border-radius: 0 var(--radius) var(--radius) 0;
      margin: 1.5rem 0; font-style: italic; color: var(--gray-600);
    }
    .blog-detail-content img {
      border-radius: var(--radius); margin: 1.5rem 0; width: 100%;
    }
    .blog-detail-content ul, .blog-detail-content ol {
      padding-left: 1.5rem; margin-bottom: 1.25rem;
    }
    .blog-detail-content li { margin-bottom: .5rem; }
    .blog-tags-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
    .blog-tag-chip {
      padding: .3rem .8rem; border-radius: 9999px;
      background: var(--gray-100); color: var(--gray-600);
      font-size: .8rem; font-weight: 500; cursor: pointer;
      transition: var(--transition);
    }
    .blog-tag-chip:hover { background: var(--pink); color: white; }
    .blog-share { display: flex; gap: .75rem; align-items: center; margin-top: 2rem; }
    .share-btn {
      width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: .9rem; transition: var(--transition); cursor: pointer;
    }
    .share-btn.fb { background: #1877f2; color: white; }
    .share-btn.tw { background: #1da1f2; color: white; }
    .share-btn.wa { background: #25d366; color: white; }
    .share-btn:hover { transform: scale(1.1); }
    .related-posts { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--gray-200); }

    /* ============================================================
       BLOG FULL PAGE
    ============================================================ */
    #page-blog { padding-top: 70px; }
    .blog-page-hero {
      background: linear-gradient(135deg, var(--blue) 0%, var(--pink-dark) 100%);
      padding: 4rem 0; text-align: center; color: white;
    }
    .blog-page-hero h1 {
      font-family: 'Oswald', sans-serif; font-size: 3rem; font-weight: 700;
    }
    .blog-page-hero p { opacity: .8; margin-top: .5rem; }
    .blog-search-bar {
      max-width: 500px; margin: 1.5rem auto 0;
      display: flex; background: white; border-radius: 9999px;
      overflow: hidden; box-shadow: var(--shadow);
    }
    .blog-search-bar input {
      flex: 1; padding: .75rem 1.25rem; border: none; outline: none;
      font-size: .95rem; color: var(--gray-800);
    }
    .blog-search-bar button {
      padding: .75rem 1.5rem; background: var(--pink); color: white;
      font-weight: 600; font-size: .9rem; cursor: pointer; border: none;
    }
    .blog-layout {
      display: grid; grid-template-columns: 1fr 320px; gap: 3rem;
      max-width: 1200px; margin: 0 auto; padding: 3rem 1.5rem;
    }
    .blog-sidebar .sidebar-widget {
      background: white; border-radius: var(--radius);
      box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: 1.5rem;
    }
    .sidebar-widget-header {
      padding: 1rem 1.25rem; background: linear-gradient(135deg, var(--blue), var(--blue-mid));
      color: white; font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1rem;
    }
    .sidebar-widget-body { padding: 1.25rem; }
    .category-list-item {
      display: flex; align-items: center; justify-content: space-between;
      padding: .6rem 0; border-bottom: 1px solid var(--gray-100);
      cursor: pointer; transition: var(--transition);
    }
    .category-list-item:last-child { border-bottom: none; }
    .category-list-item:hover { color: var(--pink); }
    .category-list-item .cat-name { font-size: .9rem; font-weight: 500; }
    .category-list-item .cat-count {
      background: var(--gray-100); color: var(--gray-500);
      padding: .15rem .5rem; border-radius: 9999px; font-size: .75rem;
    }
    .tag-cloud { display: flex; flex-wrap: wrap; gap: .5rem; }
    .recent-post-item {
      display: flex; gap: .75rem; padding: .75rem 0;
      border-bottom: 1px solid var(--gray-100); cursor: pointer;
    }
    .recent-post-item:last-child { border-bottom: none; }
    .recent-post-img {
      width: 60px; height: 60px; border-radius: 8px;
      object-fit: cover; flex-shrink: 0;
    }
    .recent-post-img-placeholder {
      width: 60px; height: 60px; border-radius: 8px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--blue-mid), var(--pink));
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 1.2rem;
    }
    .recent-post-title {
      font-size: .85rem; font-weight: 600; color: var(--gray-800);
      line-height: 1.3; transition: var(--transition);
    }
    .recent-post-item:hover .recent-post-title { color: var(--pink); }
    .recent-post-date { font-size: .75rem; color: var(--gray-400); margin-top: .25rem; }

    /* ============================================================
       GALLERY
    ============================================================ */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1rem;
    }
    .gallery-item {
      position: relative; border-radius: var(--radius); overflow: hidden;
      aspect-ratio: 4/3; cursor: pointer;
    }
    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease;
    }
    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
      opacity: 0; transition: var(--transition);
      display: flex; align-items: flex-end; padding: 1rem;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay .caption { color: white; font-size: .85rem; font-weight: 500; }

    /* Event Album Cards */
    .event-albums-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem; margin-top: 1.5rem;
    }
    .event-album-card {
      background: white; border-radius: var(--radius); overflow: hidden;
      box-shadow: var(--shadow); cursor: pointer; transition: var(--transition);
      border: 2px solid transparent;
    }
    .event-album-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--pink); }
    .event-album-thumb {
      position: relative; aspect-ratio: 16/9; overflow: hidden;
    }
    .event-album-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
    .event-album-card:hover .event-album-thumb img { transform: scale(1.06); }
    .event-album-count {
      position: absolute; bottom: .6rem; right: .6rem;
      background: rgba(0,0,0,.7); color: white; font-size: .75rem;
      font-weight: 700; padding: .25rem .6rem; border-radius: 20px;
    }
    .event-album-info { padding: 1rem; }
    .event-album-info h4 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; color: var(--gray-800); }
    .event-album-info .meta { font-size: .8rem; color: var(--gray-500); display: flex; gap: .75rem; align-items: center; }
    .album-back-btn {
      display: inline-flex; align-items: center; gap: .5rem;
      color: var(--blue-mid); font-weight: 600; cursor: pointer;
      font-size: .9rem; margin-bottom: 1.5rem; padding: .4rem .8rem;
      border-radius: 8px; transition: var(--transition);
    }
    .album-back-btn:hover { background: var(--gray-100); }
    .album-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem;
    }
    .album-header h2 { font-size: 1.5rem; font-weight: 800; color: var(--gray-800); }
    .album-header .meta { font-size: .85rem; color: var(--gray-500); }

    /* Admin Gallery Upload Zone */
    .batch-upload-zone {
      border: 2px dashed var(--gray-300); border-radius: var(--radius);
      padding: 2.5rem; text-align: center; cursor: pointer;
      transition: var(--transition); background: var(--gray-50);
    }
    .batch-upload-zone:hover, .batch-upload-zone.drag-over {
      border-color: var(--pink); background: rgba(233,30,140,.04);
    }
    .batch-upload-zone i { font-size: 2.5rem; color: var(--gray-400); margin-bottom: .75rem; display: block; }
    .batch-upload-zone p { color: var(--gray-500); font-size: .9rem; }
    .batch-upload-zone strong { color: var(--pink); }
    .upload-preview-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: .75rem; margin-top: 1rem;
    }
    .upload-preview-item {
      position: relative; aspect-ratio: 1; border-radius: 8px; overflow: hidden;
      border: 2px solid var(--gray-200);
    }
    .upload-preview-item img { width: 100%; height: 100%; object-fit: cover; }
    .upload-preview-item .remove-preview {
      position: absolute; top: 3px; right: 3px; background: rgba(0,0,0,.6);
      color: white; border: none; border-radius: 50%; width: 20px; height: 20px;
      font-size: .65rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
    }
    .admin-album-card {
      background: var(--gray-800); border-radius: var(--radius); overflow: hidden;
      border: 1px solid rgba(255,255,255,.06); transition: var(--transition);
    }
    .admin-album-card:hover { border-color: var(--pink); }
    .admin-album-card .thumb { aspect-ratio: 16/9; overflow: hidden; }
    .admin-album-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
    .admin-album-card .info { padding: .85rem; }
    .admin-album-card .info h4 { font-size: .9rem; font-weight: 700; color: white; margin-bottom: .3rem; }
    .admin-album-card .info .meta { font-size: .75rem; color: var(--gray-400); }
    .admin-album-card .actions { display: flex; gap: .5rem; margin-top: .6rem; }

    /* ============================================================
       LIGHTBOX
    ============================================================ */
    #lightbox {
      position: fixed; inset: 0; z-index: 9999;
      background: rgba(0,0,0,.95); display: flex; align-items: center;
      justify-content: center; padding: 2rem;
    }
    .lightbox-inner { display: flex; flex-direction: column; align-items: center; }
    .lightbox-img { max-width: 88vw; max-height: 78vh; border-radius: var(--radius); display: block; }
    .lightbox-caption { color: white; font-size: .95rem; margin-top: .75rem; text-align: center; max-width: 80vw; opacity: .85; }
    .lightbox-counter { color: rgba(255,255,255,.45); font-size: .8rem; margin-top: .3rem; }
    .lightbox-close {
      position: absolute; top: 1.5rem; right: 1.5rem;
      color: white; font-size: 2rem; cursor: pointer; opacity: .7; background: none; border: none;
    }
    .lightbox-close:hover { opacity: 1; }
    .lightbox-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.25);
      color: white; width: 48px; height: 48px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 1.1rem; transition: var(--transition);
    }
    .lightbox-nav:hover { background: var(--pink); border-color: var(--pink); }
    .lightbox-prev { left: 1.5rem; }
    .lightbox-next { right: 1.5rem; }


    #admin-shell {
      display: flex; flex-direction: column; min-height: 100vh;
      background: var(--gray-900);
    }
    .admin-topbar {
      height: 64px; background: var(--gray-800); border-bottom: 1px solid rgba(255,255,255,.08);
      display: flex; align-items: center; padding: 0 1.5rem;
      justify-content: space-between; flex-shrink: 0;
    }
    .admin-topbar .page-title {
      font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 600; color: white;
    }
    .admin-topbar .topbar-actions { display: flex; align-items: center; gap: 1rem; }
    .admin-topbar .admin-user {
      display: flex; align-items: center; gap: .5rem; color: var(--gray-300); font-size: .85rem;
    }
    .admin-topbar .admin-user .avatar {
      width: 32px; height: 32px; border-radius: 50%;
      background: linear-gradient(135deg, var(--pink), var(--blue-mid));
      display: flex; align-items: center; justify-content: center;
      font-size: .8rem; font-weight: 700; color: white;
    }
    .admin-body { display: flex; flex: 1; overflow: hidden; }
    .admin-sidebar {
      width: 240px; background: var(--gray-800); border-right: 1px solid rgba(255,255,255,.06);
      display: flex; flex-direction: column; flex-shrink: 0; overflow-y: auto;
    }
    .admin-sidebar-section { padding: 1.5rem 1rem .5rem; }
    .admin-sidebar-section .section-label {
      font-size: .65rem; text-transform: uppercase; letter-spacing: .15em;
      color: var(--gray-500); font-weight: 600; padding: 0 .5rem; margin-bottom: .5rem;
    }
    .admin-nav-item {
      display: flex; align-items: center; gap: .75rem;
      padding: .65rem .875rem; border-radius: 8px; cursor: pointer;
      color: var(--gray-400); font-size: .875rem; font-weight: 500;
      transition: var(--transition); margin-bottom: 2px;
    }
    .admin-nav-item i { width: 18px; text-align: center; font-size: .9rem; }
    .admin-nav-item:hover { background: rgba(255,255,255,.06); color: white; }
    .admin-nav-item.active {
      background: linear-gradient(135deg, rgba(233,30,140,.25), rgba(37,99,235,.25));
      color: white; border: 1px solid rgba(233,30,140,.2);
    }
    .admin-nav-item.active i { color: var(--pink-light); }
    .admin-content { flex: 1; overflow-y: auto; padding: 2rem; }
    .aview { display: none; }
    .aview.active { display: block; }
    .admin-page-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 2rem;
    }
    .admin-page-header h2 {
      font-family: 'Oswald', sans-serif; font-size: 1.75rem; font-weight: 700; color: white;
    }
    .admin-page-header p { color: var(--gray-400); font-size: .9rem; margin-top: .25rem; }

    /* Admin Stats Cards */
    .admin-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
    .admin-stat-card {
      background: var(--gray-700); border-radius: var(--radius);
      padding: 1.5rem; border: 1px solid rgba(255,255,255,.06);
    }
    .admin-stat-card .stat-icon {
      width: 44px; height: 44px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; margin-bottom: 1rem;
    }
    .admin-stat-card .stat-value {
      font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; color: white;
    }
    .admin-stat-card .stat-label { font-size: .8rem; color: var(--gray-400); margin-top: .25rem; }
    .admin-stat-card .stat-change {
      font-size: .75rem; margin-top: .5rem; display: flex; align-items: center; gap: .3rem;
    }
    .stat-up { color: var(--green-light); }

    /* Admin Table */
    .admin-table-wrap {
      background: var(--gray-700); border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.06); overflow: hidden;
    }
    .admin-table-header {
      padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.06);
      display: flex; align-items: center; justify-content: space-between;
    }
    .admin-table-header h3 { font-size: 1rem; font-weight: 600; color: white; }
    .admin-table {
      width: 100%; border-collapse: collapse;
    }
    .admin-table thead th {
      padding: .875rem 1.25rem; text-align: left;
      font-size: .75rem; text-transform: uppercase; letter-spacing: .08em;
      color: var(--gray-400); font-weight: 600;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .admin-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.04); transition: var(--transition); }
    .admin-table tbody tr:hover { background: rgba(255,255,255,.03); }
    .admin-table tbody td { padding: .875rem 1.25rem; color: var(--gray-200); font-size: .875rem; }
    .admin-table tbody td:last-child { display: flex; gap: .5rem; align-items: center; }

    /* Admin Forms */
    .admin-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .form-group { display: flex; flex-direction: column; gap: .4rem; }
    .form-group.full { grid-column: 1 / -1; }
    .form-label { font-size: .8rem; font-weight: 600; color: var(--gray-300); text-transform: uppercase; letter-spacing: .08em; }
    .form-control {
      padding: .65rem 1rem; background: var(--gray-600);
      border: 1px solid rgba(255,255,255,.1); border-radius: 8px;
      color: white; font-size: .9rem; outline: none; transition: var(--transition);
    }
    .form-control:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(233,30,140,.15); }
    .form-control::placeholder { color: var(--gray-500); }
    select.form-control option { background: var(--gray-700); }
    textarea.form-control { resize: vertical; min-height: 120px; }
    .form-card {
      background: var(--gray-700); border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.06); padding: 1.75rem;
      margin-bottom: 1.5rem;
    }
    .form-card-title {
      font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600;
      color: white; margin-bottom: 1.25rem; padding-bottom: .75rem;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .action-btn {
      padding: .4rem .75rem; border-radius: 6px; font-size: .78rem;
      font-weight: 600; cursor: pointer; transition: var(--transition); border: none;
    }
    .action-btn.edit { background: rgba(37,99,235,.2); color: var(--blue-light); }
    .action-btn.edit:hover { background: var(--blue-mid); color: white; }
    .action-btn.delete { background: rgba(239,68,68,.2); color: #f87171; }
    .action-btn.delete:hover { background: #ef4444; color: white; }
    .action-btn.view { background: rgba(22,163,74,.2); color: var(--green-light); }
    .action-btn.view:hover { background: var(--green); color: white; }

    /* Admin Login */
    #admin-login {
      min-height: 100vh; display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, var(--gray-900) 0%, var(--blue) 50%, var(--gray-900) 100%);
    }
    .login-card {
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(20px); border-radius: 20px; padding: 2.5rem;
      width: 100%; max-width: 420px; text-align: center;
    }
    .login-card .logo {
      width: 70px; height: 70px; border-radius: 16px;
      background: linear-gradient(135deg, var(--pink), var(--blue-mid));
      display: flex; align-items: center; justify-content: center;
      font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700;
      color: white; margin: 0 auto 1.5rem;
    }
    .login-card h2 { font-family: 'Oswald', sans-serif; font-size: 1.75rem; color: white; margin-bottom: .5rem; }
    .login-card p { color: var(--gray-400); font-size: .9rem; margin-bottom: 2rem; }
    .login-form-group { margin-bottom: 1.25rem; text-align: left; }
    .login-label { display: block; font-size: .8rem; font-weight: 600; color: var(--gray-300); margin-bottom: .4rem; }
    .login-input {
      width: 100%; padding: .75rem 1rem; background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.15); border-radius: 10px;
      color: white; font-size: .95rem; outline: none; transition: var(--transition);
    }
    .login-input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(233,30,140,.2); }
    .login-input::placeholder { color: var(--gray-500); }
    .login-btn {
      width: 100%; padding: .875rem; border-radius: 10px;
      background: linear-gradient(135deg, var(--pink), var(--pink-dark));
      color: white; font-weight: 700; font-size: 1rem; cursor: pointer;
      border: none; transition: var(--transition); margin-top: .5rem;
    }
    .login-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(233,30,140,.4); }
    .login-error {
      background: rgba(239,68,68,.15); border: 1px solid rgba(239,68,68,.3);
      color: #f87171; padding: .75rem 1rem; border-radius: 8px;
      font-size: .85rem; margin-bottom: 1rem; text-align: left;
    }

    /* ============================================================
       TOAST NOTIFICATIONS
    ============================================================ */
    #toast-container {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 99999;
      display: flex; flex-direction: column; gap: .75rem;
    }
    .toast {
      background: var(--gray-800); color: white; padding: 1rem 1.5rem;
      border-radius: var(--radius); box-shadow: var(--shadow-lg);
      display: flex; align-items: center; gap: .75rem;
      min-width: 280px; max-width: 400px;
      animation: slideIn .3s ease;
      border-left: 4px solid var(--green);
    }
    .toast.error { border-left-color: #ef4444; }
    .toast.warning { border-left-color: #f59e0b; }
    @keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

    /* ============================================================
       MODAL
    ============================================================ */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 5000;
      background: rgba(0,0,0,.7); display: flex;
      align-items: center; justify-content: center; padding: 1.5rem;
    }
    .modal {
      background: var(--gray-800); border-radius: 16px;
      width: 100%; max-width: 600px; max-height: 90vh;
      overflow-y: auto; box-shadow: var(--shadow-lg);
      border: 1px solid rgba(255,255,255,.1);
    }
    .modal-header {
      padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08);
      display: flex; align-items: center; justify-content: space-between;
    }
    .modal-header h3 { font-family: 'Oswald', sans-serif; font-size: 1.3rem; color: white; }
    .modal-close { color: var(--gray-400); font-size: 1.5rem; cursor: pointer; }
    .modal-close:hover { color: white; }
    .modal-body { padding: 1.5rem; }
    .modal-footer {
      padding: 1.25rem 1.5rem; border-top: 1px solid rgba(255,255,255,.08);
      display: flex; justify-content: flex-end; gap: .75rem;
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    #footer {
      background: var(--gray-900); color: var(--gray-300);
      padding: 4rem 0 2rem;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
      margin-bottom: 3rem;
    }
    .footer-brand .brand-name {
      font-family: 'Oswald', sans-serif; font-size: 1.5rem;
      font-weight: 700; color: white; margin-bottom: .75rem;
    }
    .footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 300px; }
    .footer-brand .social-links { display: flex; gap: .75rem; margin-top: 1.25rem; }
    .social-link {
      width: 38px; height: 38px; border-radius: 50%;
      background: rgba(255,255,255,.08); display: flex; align-items: center;
      justify-content: center; color: var(--gray-400); font-size: .9rem;
      transition: var(--transition); cursor: pointer;
    }
    .social-link:hover { background: var(--pink); color: white; }
    .footer-col h4 {
      font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600;
      color: white; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: .08em;
    }
    .footer-col ul li {
      margin-bottom: .6rem;
    }
    .footer-col ul li a, .footer-col ul li span {
      font-size: .875rem; color: var(--gray-400); transition: var(--transition); cursor: pointer;
    }
    .footer-col ul li a:hover, .footer-col ul li span:hover { color: var(--pink-light); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem;
      display: flex; align-items: center; justify-content: space-between;
      font-size: .85rem; color: var(--gray-500);
    }
    .footer-bottom .accent { color: var(--pink-light); }

    /* ============================================================
       PAGE SYSTEM
    ============================================================ */
    .page { display: none; }
    .page.active { display: block; }
    #public-shell { min-height: 100vh; }

    /* ============================================================
       PAGE HERO BANNERS
    ============================================================ */
    .page-hero {
      padding: 6rem 0 3rem; text-align: center;
      background: linear-gradient(135deg, var(--blue) 0%, var(--gray-900) 100%);
      position: relative; overflow: hidden;
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(233,30,140,.2) 0%, transparent 60%);
    }
    .page-hero h1 {
      font-family: 'Oswald', sans-serif; font-size: 3rem; font-weight: 700;
      color: white; position: relative; z-index: 1;
    }
    .page-hero p { color: var(--gray-300); margin-top: .5rem; position: relative; z-index: 1; }
    .page-hero .breadcrumb {
      display: flex; align-items: center; justify-content: center; gap: .5rem;
      font-size: .85rem; color: var(--gray-400); margin-bottom: 1rem;
      position: relative; z-index: 1;
    }
    .page-hero .breadcrumb .sep { color: var(--gray-600); }
    .page-hero .breadcrumb .current { color: var(--pink-light); }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .grid-4 { grid-template-columns: repeat(2, 1fr); }
      .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .blog-layout { grid-template-columns: 1fr; }
      .blog-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: flex; }
      .hero-content { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
      .admin-sidebar { display: none; }
      .admin-stats-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
      .section-header h2 { font-size: 1.875rem; }
      .hero-text h1 { font-size: 2.25rem; }
      .admin-form-grid { grid-template-columns: 1fr; }
      .blog-sidebar { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .hero-stats { grid-template-columns: 1fr; }
      .admin-stats-grid { grid-template-columns: 1fr; }
    }

    /* ============================================================
       RICH TEXT EDITOR
    ============================================================ */
    .ql-toolbar { background: var(--gray-600) !important; border-color: rgba(255,255,255,.1) !important; border-radius: 8px 8px 0 0 !important; }
    .ql-container { background: var(--gray-600) !important; border-color: rgba(255,255,255,.1) !important; border-radius: 0 0 8px 8px !important; min-height: 200px; }
    .ql-editor { color: white !important; }
    .ql-toolbar .ql-stroke { stroke: var(--gray-300) !important; }
    .ql-toolbar .ql-fill { fill: var(--gray-300) !important; }
    .ql-toolbar .ql-picker { color: var(--gray-300) !important; }

    /* ============================================================
       LOADING SPINNER
    ============================================================ */
    .spinner {
      width: 40px; height: 40px; border-radius: 50%;
      border: 3px solid rgba(233,30,140,.2);
      border-top-color: var(--pink);
      animation: spin .8s linear infinite;
      margin: 2rem auto;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ============================================================
       MISC
    ============================================================ */
    .empty-state {
      text-align: center; padding: 4rem 2rem; color: var(--gray-400);
    }
    .empty-state i { font-size: 3rem; margin-bottom: 1rem; opacity: .4; }
    .empty-state p { font-size: .95rem; }
    .pagination {
      display: flex; align-items: center; justify-content: center;
      gap: .5rem; margin-top: 2rem;
    }
    .page-btn {
      width: 38px; height: 38px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: .875rem; font-weight: 600; cursor: pointer;
      border: 1px solid var(--gray-200); color: var(--gray-600);
      transition: var(--transition); background: white;
    }
    .page-btn:hover, .page-btn.active {
      background: var(--pink); border-color: var(--pink); color: white;
    }
    .scroll-top {
      position: fixed; bottom: 2rem; left: 2rem; z-index: 999;
      width: 44px; height: 44px; border-radius: 50%;
      background: linear-gradient(135deg, var(--pink), var(--blue-mid));
      color: white; display: flex; align-items: center; justify-content: center;
      cursor: pointer; box-shadow: var(--shadow); transition: var(--transition);
      opacity: 0; pointer-events: none;
    }
    .scroll-top.visible { opacity: 1; pointer-events: all; }
    .scroll-top:hover { transform: translateY(-3px); }
    .stat-pill {
      display: inline-flex; align-items: center; gap: .3rem;
      padding: .25rem .75rem; border-radius: 9999px;
      font-size: .78rem; font-weight: 600;
    }
    .stat-pill.pink { background: rgba(233,30,140,.1); color: var(--pink-dark); }
    .stat-pill.blue { background: rgba(37,99,235,.1); color: var(--blue-mid); }
    .stat-pill.green { background: rgba(22,163,74,.1); color: var(--green-dark); }

    /* ============================================================
       SKELETON LOADERS
    ============================================================ */
    .skeleton {
      position: relative;
      display: block;
      overflow: hidden;
      border-radius: 8px;
      background: rgba(148, 163, 184, .18);
    }
    .skeleton::after {
      content: '';
      position: absolute;
      inset: 0;
      transform: translateX(-100%);
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.28) 50%, transparent 100%);
      animation: skeleton-shimmer 1.15s infinite;
    }
    .skeleton-line { height: 12px; margin-bottom: .75rem; }
    .skeleton-line.sm { height: 9px; margin-bottom: .55rem; }
    .skeleton-line.lg { height: 20px; margin-bottom: 1rem; }
    .skeleton-circle { width: 48px; height: 48px; border-radius: 50%; flex: 0 0 auto; }
    .skeleton-card {
      min-height: 242px;
      padding: 1.25rem;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      background: var(--white);
    }
    .skeleton-card-head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
    .skeleton-card-footer { display: flex; gap: .5rem; margin-top: 1.4rem; }
    .skeleton-chip { width: 72px; height: 24px; border-radius: 999px; }
    .skeleton-album-thumb { height: 175px; border-radius: 8px 8px 0 0; margin: -1.25rem -1.25rem 1.25rem; }
    .skeleton-table-cell { height: 13px; margin: .35rem 0; }
    .skeleton-stat { height: 34px; width: 52px; margin: .5rem 0; }
    .skeleton-table-row td { padding: 1.05rem .8rem !important; }
    .skeleton-table-row .skeleton { width: 100%; }
    @keyframes skeleton-shimmer { to { transform: translateX(100%); } }
    @media (prefers-reduced-motion: reduce) {
      .skeleton::after { animation: none; }
    }
