/* Global Layout & Stylesheet - Pondicherry Premier League (IPL-Style) */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* Lufga Typeface Definitions */
@font-face {
  font-family: 'Lufga';
  src: local('Lufga Black'), local('Lufga-Black'),
       url('../../assets/fonts/Lufga-Black.otf') format('otf'),
       url('../../assets/fonts/Lufga-Black.otf') format('otf');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Lufga';
  src: local('Lufga Extrabold'), local('Lufga-Extrabold'),
       url('../../assets/fonts/Lufga-Extrabold.otf') format('otf'),
       url('../../assets/fonts/Lufga-Extrabold.otf') format('otf');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Lufga';
  src: local('Lufga Bold'), local('Lufga-Bold'),
       url('../../assets/fonts/Lufga-Bold.otf') format('otf'),
       url('../../assets/fonts/Lufga-Bold.otf') format('otf');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Lufga';
  src: local('Lufga Semibold'), local('Lufga-Semibold'),
       url('../../assets/fonts/Lufga-Semibold.otf') format('otf'),
       url('../../assets/fonts/Lufga-Semibold.otf') format('otf');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Lufga';
  src: local('Lufga Medium'), local('Lufga-Medium'),
       url('../../assets/fonts/Lufga-Medium.otf') format('otf'),
       url('../../assets/fonts/Lufga-Medium.otf') format('otf');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Lufga';
  src: local('Lufga Regular'), local('Lufga-Regular'), local('Lufga'),
       url('../../assets/fonts/Lufga-Regular.otf') format('otf'),
       url('../../assets/fonts/Lufga-Regular.otf') format('otf');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Lufga';
  src: local('Lufga Light'), local('Lufga-Light'),
       url('../../assets/fonts/Lufga-Light.otf') format('otf'),
       url('../../assets/fonts/Lufga-Light.otf') format('otf');
  font-weight: 300; font-style: normal; font-display: swap;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color var(--transition-normal), color var(--transition-normal);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: hsl(220, 50%, 35%); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--accent-primary); }

a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; background: none; border: none; outline: none; }
button { cursor: pointer; }

/* ═══════════════════════════════════════════════
   APP SHELL
═══════════════════════════════════════════════ */
#app-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

main {
  flex-grow: 1;
  padding: var(--spacing-md);
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  margin-top: 20px;
  position: relative;
}

/* ═══════════════════════════════════════════════
   HEADER WRAPPER — Fixed, layered
═══════════════════════════════════════════════ */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

/* ── Utility Bar (very top strip) ── */
.nav-utility-bar {
  background: var(--utility-bg);
  height: var(--utility-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-utility-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-utility-left {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-utility-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-utility-season {
  font-size: 11px;
  font-weight: 500;
  color: var(--utility-text);
  letter-spacing: 0.5px;
}

.nav-utility-right {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

/* ── Ticker Bar ── */
.match-ticker-bar {
  background: var(--ticker-bg);
  border-bottom: 1px solid var(--ticker-border);
  height: 40px;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

/* ── Header Wrapper (Sticky) ── */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ── Main Navigation Header ── */
.main-header {
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--header-border);
  height: var(--header-height);
  width: 100%;
  box-shadow: var(--header-shadow);
  transition: background var(--transition-normal);
}

.nav-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
}

/* ── Logo Section ── */
.logo-section {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex-shrink: 0;
}

.logo-img {
  height: 80px;
  width: 80px;
  background: #ffffff;
  border-radius: 50%;
  padding: 6px;
  object-fit: contain;
  border: 2px solid var(--accent-primary, #0ea5e9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-fast);
}

.logo-img:hover { transform: scale(1.04); }

@media (max-width: 768px) {
  .logo-img { height: 60px; width: 60px; padding: 4px; }
}

.main-footer .logo-img { height: 90px !important; width: 90px !important; }
@media (max-width: 768px) {
  .main-footer .logo-img { height: 70px !important; width: 70px !important; padding: 4px !important; }
}

/* ── Navigation Links ── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 8px 12px;
  border-radius: 0;
  color: var(--header-text-secondary);
  border-bottom: 3px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
}

.nav-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
  background-color: rgba(255, 255, 255, 0.04);
}

/* ── Nav Actions ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex-shrink: 0;
}

/* ── Buy Tickets / CTA button ── */
.nav-cta-btn {
  background: linear-gradient(135deg, var(--accent-gold), hsl(35, 95%, 45%));
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 185, 0, 0.3);
}

.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 185, 0, 0.5);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--header-text);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

/* ═══════════════════════════════════════════════
   FOOTER — IPL-style 4-column dark footer
═══════════════════════════════════════════════ */
.main-footer {
  background: var(--footer-bg);
  border-top: 3px solid hsl(var(--accent-primary-hsl));
  margin-top: var(--spacing-2xl);
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(4, 77, 230, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 100%, rgba(255, 185, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Sponsor strip inside footer */
.footer-sponsor-strip {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: var(--spacing-lg) var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2xl);
  flex-wrap: wrap;
}

.footer-sponsor-strip-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

.footer-sponsor-img {
  height: 48px !important;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.45);
  transition: filter var(--transition-fast);
}

.footer-sponsor-img:hover {
  filter: brightness(0) invert(1) opacity(0.85);
}

/* 4 link columns */
.footer-nav-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--spacing-2xl) var(--spacing-md);
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1.2fr 1fr;
  gap: var(--spacing-2xl);
  align-items: start;
  position: relative;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-nav-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--spacing-xs);
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-nav-list li a {
  color: #ffffff !important;
  font-size: var(--text-sm);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
  line-height: 1.4;
}

.footer-nav-list li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--accent-primary);
  color: #fff;
  transform: translateY(-3px);
  border-color: var(--accent-primary);
  box-shadow: 0 4px 12px rgba(4, 77, 230, 0.4);
}

/* Copyright bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--spacing-md) var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff !important;
  font-size: 12px;
  letter-spacing: 0.5px;
  max-width: 100%;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.footer-bottom-links {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-bottom-links a {
  color: #ffffff !important;
  font-size: 12px;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover { color: #ffffff; }

.footer-nav-col p {
  color: #ffffff !important;
}

/* ═══════════════════════════════════════════════
   ANIMATIONS & UTILITIES
═══════════════════════════════════════════════ */
@keyframes slideIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulseGlow {
  0% { box-shadow: 0 0 6px rgba(4, 77, 230, 0.2); }
  50% { box-shadow: 0 0 22px rgba(4, 77, 230, 0.45); }
  100% { box-shadow: 0 0 6px rgba(4, 77, 230, 0.2); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Page Loader */
.page-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  width: 100%;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--border-color);
  border-top: 3px solid var(--accent-primary);
  border-radius: var(--radius-full);
  animation: spin 0.9s linear infinite;
}

/* Section Header Row */
.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-2xl);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 4px;
  background: var(--section-underline);
  border-radius: var(--radius-full);
}

.section-see-more {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.section-see-more:hover {
  color: var(--accent-secondary);
  gap: 8px;
}

/* ═══════════════════════════════════════════════
   BACKGROUND GEOMETRIC CORNER PATTERNS
═══════════════════════════════════════════════ */
.theme-pattern-bg {
  position: fixed;
  width: 520px;
  height: 520px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity var(--transition-slow);
}

.theme-pattern-bg svg { width: 100%; height: 100%; }
.theme-pattern-bg.top-right { top: -160px; right: -160px; }
.theme-pattern-bg.bottom-left { bottom: -160px; left: -160px; }
.theme-pattern-bg rect { transition: stroke var(--transition-normal); stroke-width: 4px; }

html[data-theme="light"] .theme-pattern-bg rect:nth-child(1)  { stroke: rgba(4, 77, 230, 0.12); }
html[data-theme="light"] .theme-pattern-bg rect:nth-child(2)  { stroke: rgba(255, 185, 0, 0.18); }
html[data-theme="light"] .theme-pattern-bg rect:nth-child(3)  { stroke: rgba(0, 155, 200, 0.15); }
html[data-theme="light"] .theme-pattern-bg rect:nth-child(4)  { stroke: rgba(4, 77, 230, 0.08); }
html[data-theme="light"] .theme-pattern-bg rect:nth-child(5)  { stroke: rgba(255, 185, 0, 0.10); }
html[data-theme="light"] .theme-pattern-bg rect:nth-child(6)  { stroke: rgba(0, 100, 200, 0.08); }
html[data-theme="light"] .theme-pattern-bg rect:nth-child(7)  { stroke: rgba(4, 77, 230, 0.06); }
html[data-theme="light"] .theme-pattern-bg rect:nth-child(8)  { stroke: rgba(255, 185, 0, 0.06); }
html[data-theme="light"] .theme-pattern-bg rect:nth-child(9)  { stroke: rgba(4, 77, 230, 0.04); }
html[data-theme="light"] .theme-pattern-bg rect:nth-child(10) { stroke: rgba(255, 185, 0, 0.04); }
html[data-theme="light"] .theme-pattern-bg rect:nth-child(11) { stroke: rgba(4, 77, 230, 0.03); }
html[data-theme="light"] .theme-pattern-bg rect:nth-child(12) { stroke: rgba(255, 185, 0, 0.03); }
html[data-theme="light"] .theme-pattern-bg rect:nth-child(13) { stroke: rgba(4, 77, 230, 0.02); }
html[data-theme="light"] .theme-pattern-bg rect:nth-child(14) { stroke: rgba(255, 185, 0, 0.02); }

html[data-theme="dark"] .theme-pattern-bg rect:nth-child(1)  { stroke: rgba(4, 120, 255, 0.35); }
html[data-theme="dark"] .theme-pattern-bg rect:nth-child(2)  { stroke: rgba(255, 215, 0, 0.30); }
html[data-theme="dark"] .theme-pattern-bg rect:nth-child(3)  { stroke: rgba(0, 200, 255, 0.28); }
html[data-theme="dark"] .theme-pattern-bg rect:nth-child(4)  { stroke: rgba(4, 100, 255, 0.22); }
html[data-theme="dark"] .theme-pattern-bg rect:nth-child(5)  { stroke: rgba(255, 200, 0, 0.20); }
html[data-theme="dark"] .theme-pattern-bg rect:nth-child(6)  { stroke: rgba(0, 160, 255, 0.18); }
html[data-theme="dark"] .theme-pattern-bg rect:nth-child(7)  { stroke: rgba(4, 77, 230, 0.15); }
html[data-theme="dark"] .theme-pattern-bg rect:nth-child(8)  { stroke: rgba(255, 185, 0, 0.12); }
html[data-theme="dark"] .theme-pattern-bg rect:nth-child(9)  { stroke: rgba(4, 77, 230, 0.10); }
html[data-theme="dark"] .theme-pattern-bg rect:nth-child(10) { stroke: rgba(255, 185, 0, 0.08); }
html[data-theme="dark"] .theme-pattern-bg rect:nth-child(11) { stroke: rgba(4, 77, 230, 0.06); }
html[data-theme="dark"] .theme-pattern-bg rect:nth-child(12) { stroke: rgba(255, 185, 0, 0.05); }
html[data-theme="dark"] .theme-pattern-bg rect:nth-child(13) { stroke: rgba(4, 77, 230, 0.04); }
html[data-theme="dark"] .theme-pattern-bg rect:nth-child(14) { stroke: rgba(255, 185, 0, 0.03); }

/* ═══════════════════════════════════════════════
   TEAM SHOWCASE CARDS
═══════════════════════════════════════════════ */
.team-showcase-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-md);
  border-radius: var(--radius-md);
  position: relative;
  background: var(--card-bg);
  border: 1.5px solid var(--border-color);
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.team-showcase-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, hsl(var(--team-color1, var(--accent-primary-hsl))), hsl(var(--team-color2, var(--accent-secondary-hsl))));
  transition: height var(--transition-normal);
}

.team-showcase-card:hover {
  border-color: hsl(var(--team-color1, var(--accent-primary-hsl)));
  box-shadow: 0 12px 28px -4px rgba(0, 0, 0, 0.15), 0 0 0 1px hsl(var(--team-color1, var(--accent-primary-hsl)));
  transform: translateY(-6px);
}

.team-showcase-card:hover::before { height: 6px; }

.team-showcase-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform var(--transition-normal);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
}

.team-showcase-card:hover .team-showcase-logo { transform: scale(1.12) translateY(-2px); }

.team-showcase-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.team-showcase-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  color: var(--text-primary);
  transition: color var(--transition-fast);
  line-height: 1.2;
}

.team-showcase-card:hover .team-showcase-name {
  color: hsl(var(--team-color1, var(--accent-primary-hsl)));
}

.team-showcase-short {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — HEADER NAV
═══════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .nav-menu { gap: 0; }
  .nav-link { padding: 8px 9px; font-size: 11.5px; }
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: calc(var(--header-height) + var(--utility-height) + 40px);
    left: 0; right: 0;
    background: var(--header-bg);
    border-bottom: 2px solid var(--accent-primary);
    padding: var(--spacing-md);
    flex-direction: column;
    gap: 2px;
    box-shadow: var(--shadow-lg);
    animation: slideIn var(--transition-fast);
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-left: none;
  }

  .nav-link.active {
    border-bottom-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.04);
  }

  .mobile-nav-toggle { display: flex; }

  .mobile-nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .mobile-nav-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .nav-utility-bar { display: none; }
  main { margin-top: calc(var(--header-height) + 40px); }

  .footer-nav-grid { grid-template-columns: 1fr 1fr; gap: var(--spacing-xl); }
}

@media (max-width: 576px) {
  .footer-nav-grid { grid-template-columns: 1fr; gap: var(--spacing-lg); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: var(--spacing-md); }
}

/* Hide theme toggle (no longer needed; dark mode persists) */
.theme-toggle { display: none !important; }

/* ═══════════════════════════════════════════════
   ADMIN LINK
═══════════════════════════════════════════════ */
.nav-admin-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.35);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
}

.nav-admin-link i { font-size: 10px; }

.nav-admin-link:hover {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 1100px) { .nav-admin-link span { display: none; } }
@media (max-width: 992px) { .nav-admin-link { display: none; } }
