/* Black Template 2026 - Design System Variables */

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

:root {
  /* Backgrounds - Deep blacks, high contrast */
  --bg-page: #0a0a0a;
  --bg-card: #1a1a1a;
  --bg-card-hover: #202020;
  
  /* Text - Must pass WCAG AA (4.5:1 contrast) */
  --text-primary: #f5f5f5;
  --text-secondary: #b8b8b8;
  --text-muted: #888888;
  
  /* Accent - Muted gold, not bright yellow */
  --accent-gold: #d4af37;
  --accent-gold-hover: #e4bf47;
  
  /* Borders - Subtle */
  --border: rgba(255, 255, 255, 0.1);
  
  /* Spacing - DO NOT REDUCE THESE */
  --space-card-gap: 32px;
  --space-card-padding: 24px;
  --space-section: 48px;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, system-ui, sans-serif;
  
  /* Layout */
  --container-max: 1280px;
  --sidebar-width: 340px;
}
/* Black Template 2026 - Modern Reset */

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-gold);
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
}

p {
  margin-bottom: var(--spacing-sm);
}

/* Focus states for accessibility */
*:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Remove focus outline for mouse users */
*:focus:not(:focus-visible) {
  outline: none;
}
/* Black Template 2026 - Typography System */

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hero Headlines - Big and bold */
.hero-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* Section Headers - Clear hierarchy */
.section-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
}

/* Article Card Titles - Readable */
.card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
}

/* Body Text */
.excerpt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Meta Info */
.meta-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0;
}

p {
  margin: 0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-gold);
}
/* Black Template 2026 - Header Component */

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

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.logo-link {
  display: block;
  line-height: 0;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  flex: 1;
  justify-content: center;
}

.main-nav-list {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.main-nav-item {
  position: relative;
}

.main-nav-icon,
.main-nav svg,
.main-nav img,
.main-nav i {
  display: none;
}

.main-nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.main-nav-link:hover,
.main-nav-link.active {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.15);
}

.dropdown-container {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  padding: 8px 0;
  z-index: 1002;
  display: none;
}

.dropdown-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-container .menu-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0;
  background: transparent;
}

.dropdown-container .menu-link:hover {
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
}

.main-nav-item:hover > .dropdown-container,
.main-nav-item:hover > .dropdown-container.hide {
  display: block !important;
}

.search-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 999px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.search-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.35);
  color: var(--accent-gold);
}

.search-btn svg {
  width: 20px;
  height: 20px;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 999px;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: all 0.2s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive */
@media (max-width: 968px) {
  .main-nav {
    display: none;
  }
  
  .header-actions {
    display: none;
  }

  .search-btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-inner {
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    position: relative;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    gap: 8px;
    max-width: 100%;
  }

  .mobile-menu-toggle {
    display: flex !important;
    order: 1;
  }

  .logo-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 8px;
    max-width: 140px;
  }

  .logo-img {
    height: 40px;
  }

  .header-actions {
    display: flex !important;
    gap: 6px;
    margin-left: auto;
    order: 3;
  }

  .header-action-create {
    display: none !important;
  }

  .header-action-btn {
    padding: 5px 8px;
    font-size: 11px;
    white-space: nowrap;
  }

  .search-btn {
    order: 4;
    margin-left: 6px;
    padding: 7px 9px;
  }
}
/* ===================================
   HERO SECTION - FIXED HEIGHT
   =================================== */

.hero-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 20px;
    margin-bottom: 48px;
    max-height: 600px; /* CRITICAL - LIMITS TOTAL HEIGHT */
    overflow: visible;
}

.hero-main {
    position: relative;
    border-radius: 12px;
    overflow: visible;
    background: #1a1a1a;
    height: 100%; /* Fills grid cell, not viewport */
}

.hero-main .hero-link {
    display: block;
    position: relative;
    text-decoration: none;
    height: 100%;
    width: 100%;
}

.hero-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.hero-main .hero-media > img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0; /* Rectangular, not circular */
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(
        to top, 
        rgba(0, 0, 0, 0.75) 0%, 
        rgba(0, 0, 0, 0.35) 60%, 
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-text {
    position: absolute;
    inset: 0;
    padding: 20px 24px 18px;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.55) 40%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
}

.hero-cat {
    display: inline-block;
    background: linear-gradient(135deg, #f4d03f 0%, #e4bf47 100%);
    color: var(--badge-text, #0a0a0a);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    position: absolute;
    top: 12px;
    left: -14px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.35);
    position: absolute;
    text-decoration: none;
}

.hero-cat:hover {
    color: var(--badge-text-hover, #ffffff);
}

/* Category-specific badge colors */
.hero-cat[data-cat="adults-only"] {
    background: linear-gradient(135deg, #ff4d6d 0%, #c9184a 100%);
    --badge-text: #ffffff;
    --badge-text-hover: #0a0a0a;
}
.hero-cat[data-cat="shows-concerts"] {
    background: linear-gradient(135deg, #ffd166 0%, #fca311 100%);
}
.hero-cat[data-cat="dining"] {
    background: linear-gradient(135deg, #ff9f1c 0%, #ff6d00 100%);
}
.hero-cat[data-cat="things-to-do"] {
    background: linear-gradient(135deg, #3ae374 0%, #2ecc71 100%);
}
.hero-cat[data-cat="gambling"] {
    background: linear-gradient(135deg, #00c2ff 0%, #00a3ff 100%);
    --badge-text: #ffffff;
    --badge-text-hover: #0a0a0a;
}
.hero-cat[data-cat="nightlife"] {
    background: linear-gradient(135deg, #7f5af0 0%, #b5179e 100%);
    --badge-text: #ffffff;
    --badge-text-hover: #0a0a0a;
}
.hero-cat[data-cat="hotels-casinos"] {
    background: linear-gradient(135deg, #00d1b2 0%, #00b894 100%);
    --badge-text: #ffffff;
    --badge-text-hover: #0a0a0a;
}
.hero-cat[data-cat="shopping"] {
    background: linear-gradient(135deg, #f72585 0%, #ff4d6d 100%);
    --badge-text: #ffffff;
    --badge-text-hover: #0a0a0a;
}
.hero-cat[data-cat="local-favorties"],
.hero-cat[data-cat="local-favorites"] {
    background: linear-gradient(135deg, #ffe066 0%, #fcbf49 100%);
}
.hero-cat[data-cat="lqbtq"],
.hero-cat[data-cat="lgbtq"] {
    background: linear-gradient(135deg, #ff6b6b 0%, #f7b801 100%);
}
.hero-cat[data-cat="sports"] {
    background: linear-gradient(135deg, #4dabf7 0%, #1c7ed6 100%);
    --badge-text: #ffffff;
    --badge-text-hover: #0a0a0a;
}
.hero-cat[data-cat="weddings"] {
    background: linear-gradient(135deg, #f783ac 0%, #ffb3c1 100%);
}
.hero-cat[data-cat="weed-cannabis"] {
    background: linear-gradient(135deg, #51cf66 0%, #2f9e44 100%);
    --badge-text: #ffffff;
    --badge-text-hover: #0a0a0a;
}
.hero-cat[data-cat="weird-wild"] {
    background: linear-gradient(135deg, #ffd43b 0%, #f59f00 100%);
}
.hero-cat[data-cat="las-vegas-news"] {
    background: linear-gradient(135deg, #74c0fc 0%, #4dabf7 100%);
    --badge-text: #ffffff;
    --badge-text-hover: #0a0a0a;
}
.hero-cat[data-cat="columns"] {
    background: linear-gradient(135deg, #ffe066 0%, #f08c00 100%);
}

.hero-title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6),
                 0 4px 20px rgba(0, 0, 0, 0.4);
    max-width: 100%;
    background: rgba(0, 0, 0, 0.55);
    padding: 6px 10px;
    border-radius: 6px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap !important;
    z-index: 3;
    position: absolute;
    right: 16px;
    top: 16px;
    bottom: auto;
    background: rgba(0, 0, 0, 0.55);
    padding: 4px 8px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    white-space: nowrap;
    width: max-content;
    min-width: max-content;
    transition: background 0.2s ease;
}

.hero-section .hero-author-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px;
    white-space: nowrap !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

.hero-section .hero-author-link span {
    white-space: nowrap !important;
    display: inline-block !important;
}

.hero-meta:hover,
.hero-meta--secondary:hover {
    background: rgba(0, 0, 0, 0.7);
}


.hero-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
    background: #111;
}

/* Secondary cards (right side) */
.hero-secondary-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%; /* Fills grid cell */
}

.hero-secondary {
    position: relative;
    border-radius: 12px;
    overflow: visible;
    background: #1a1a1a;
    flex: 1;
    max-height: 292px; /* CRITICAL - EACH SIDE CARD IS HALF OF 600px MINUS GAP */
}

.hero-secondary .hero-link {
    display: block;
    position: relative;
    text-decoration: none;
    height: 100%;
    width: 100%;
}

.hero-secondary .hero-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.hero-secondary .hero-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0; /* Ensure no circular crops */
    filter: brightness(1.08) contrast(1.05);
}

.hero-secondary .hero-cat {
    position: absolute;
    top: 12px;
    left: -12px;
    z-index: 30;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-secondary .hero-media {
    z-index: 1;
}

.hero-secondary .hero-sec-text {
    z-index: 2;
}

.hero-sec-text {
    position: absolute;
    inset: 0;
    padding: 14px 16px;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.2) 75%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    justify-content: flex-end;
}

.hero-sec-text h3 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6),
                 0 3px 16px rgba(0, 0, 0, 0.4);
    max-width: 95%;
    background: rgba(0, 0, 0, 0.55);
    padding: 4px 8px;
    border-radius: 6px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.hero-meta--secondary {
    font-size: 11px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    position: absolute;
    right: 12px;
    top: 12px;
    bottom: auto;
    z-index: 3;
    background: rgba(0, 0, 0, 0.55);
    padding: 3px 6px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    white-space: nowrap;
    flex-wrap: nowrap !important;
    width: max-content;
    min-width: max-content;
    transition: background 0.2s ease;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-section {
        grid-template-columns: 1fr;
        max-height: none; /* Allow natural stacking on mobile */
        padding: 0 16px;
    }
    
    .hero-main {
        height: 400px; /* Fixed height on mobile */
    }
    
    .hero-main img {
        max-height: 400px;
    }
    
    .hero-secondary {
        height: 280px; /* Fixed height on mobile */
        max-height: none;
    }
    
    .hero-title {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .hero-main {
        height: 350px;
    }
    
    .hero-main img {
        max-height: 350px;
    }
    
    .hero-secondary {
        height: 240px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-text {
        padding: 24px;
    }
}
/* Black Template 2026 - Page Layout */

.page-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-section) 24px;
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width);
  gap: var(--space-section);
  align-items: start;
}

.content-wrapper {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-section) 24px;
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width);
  gap: var(--space-section);
  align-items: start;
}

/* Tighten ad spacing (HeaderBelow banner) */
.main-content > .clearfix {
  margin: 0;
  padding: 0;
  height: 0;
}

.main-content .ads {
  margin: 0 0 24px;
  padding: 0;
  clear: both;
  position: relative;
  z-index: 2;
}

/* Ensure header banner doesn't overlap post badges */
.main-content .ads + .content-wrapper {
  margin-top: 24px;
}

.main-content .ads > div {
  margin: 0 auto;
}

/* Prevent stray <br> inside ads from adding extra space */
.main-content .ads br {
  display: none;
}

.hero-section {
  margin-bottom: 16px;
}

.content-main {
  min-width: 0;
}

.content-sidebar {
  position: sticky;
  top: 100px;
}

.articles-section {
  margin-bottom: var(--space-section);
}

/* Profile layout */
.profile-hero {
  max-width: var(--container-max);
  margin: 0 auto var(--space-section);
  padding: 0 24px;
}

.profile-hero__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.profile-hero__cover {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.profile-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.profile-hero__content {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.profile-hero__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.35);
  background: #0a0a0a;
}

.profile-hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-hero__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-hero__name {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.profile-hero__name a {
  color: #ffffff;
  text-decoration: none;
}

.profile-hero__role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.profile-wrapper {
  padding-top: 0;
}

.profile-sidebar-card {
  background: #0a0a0a;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  margin-bottom: 24px;
}

.profile-sidebar-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin: 0 0 12px;
}

.author-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-icon-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0a0a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.category-icon-link:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.category-icon-link i {
  font-size: 18px;
}

@media (max-width: 968px) {
  .profile-hero__cover {
    height: 200px;
  }

  .profile-hero__content {
    position: static;
    padding: 20px;
    background: #0a0a0a;
  }

  .profile-hero__overlay {
    display: none;
  }
}

/* Authors page */
.authors-section {
  margin-bottom: var(--space-section);
}

.authors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

@media (max-width: 768px) {
  .authors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

.author-card {
  background: #0a0a0a;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.author-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.author-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.author-card__avatar {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #111;
  overflow: hidden;
}

.author-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-card__avatar-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.author-card__avatar-placeholder i {
  font-size: 42px;
}

.author-card__body {
  padding: 16px 18px 18px;
}

.author-card__name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.author-card__name {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.author-card__name a {
  color: inherit;
  text-decoration: none;
}

.author-card__name a:hover {
  color: var(--accent-gold);
}

.author-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.author-category-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0f0f0f;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.author-category-icon:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.author-category-icon i {
  font-size: 14px;
}

.author-card__bio {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 12px;
}

.author-card__stats {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.author-card__cta {
  display: inline-flex;
}

.author-card__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  text-decoration: none;
}

.author-card__cta-link:hover {
  color: var(--accent-gold-hover);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}

.view-all {
  color: var(--accent-gold);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.2s;
}

.view-all:hover {
  color: var(--accent-gold-hover);
}

.load-more-container {
  text-align: center;
  margin-top: var(--space-section);
}

.load-more-btn {
  padding: 12px 32px;
  background: var(--bg-card);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.load-more-btn:hover {
  background: var(--accent-gold);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.no-posts {
  text-align: center;
  padding: var(--space-section);
  color: var(--text-muted);
}

@media (max-width: 968px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 16px;
  }
  
  .content-sidebar {
    position: relative;
    top: 0;
  }
  
  .page-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 16px;
  }
  
  .sidebar {
    position: relative;
    top: 0;
  }
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-title {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    position: relative;
    padding-bottom: 8px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, transparent 100%);
}

.view-all-link {
    color: #d4af37;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.latest-wrapper {
    background: #141414;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    position: relative;
    padding-top: 42px;
    padding-bottom: 0;
    margin-top: 24px;
}

.latest-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff4d9d 0%, #ff2d86 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    min-width: 300px;
    justify-content: center;
}

.latest-badge:hover {
    color: #0a0a0a;
}

.latest-badge--hang {
    position: absolute;
    top: 16px;
    left: -20px;
}

.shows-section {
    margin: 48px 0;
}

.category-duo-section {
    margin: 48px 0;
}

.category-duo {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.category-panel {
    background: #141414;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    position: relative;
    padding-top: 42px;
    padding-bottom: 16px;
}

.category-panel__badge {
    margin-bottom: 32px;
}

.category-panel-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.shows-wrapper {
    background: #141414;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    position: relative;
    padding-top: 42px;
    padding-bottom: 16px;
}

.shows-wrapper .section-head {
    margin-bottom: 40px;
}

.shows-badge--hang {
    position: absolute;
    top: 16px;
    left: -20px;
}

.shows-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 34px;
    border-radius: 10px;
    background: var(--badge-bg, linear-gradient(135deg, #ffd166 0%, #fca311 100%));
    color: var(--badge-text, #0a0a0a);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    min-width: 300px;
    justify-content: center;
}

.shows-badge:hover {
    color: #ffffff;
}

.shows-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 968px) {
    .shows-grid {
        grid-template-columns: 1fr;
    }

    .shows-list {
        margin-top: 16px;
    }

    .category-duo {
        grid-template-columns: 1fr;
    }

    .category-panel {
        margin-bottom: 24px;
    }
}

@media (max-width: 640px) {
    .shows-list {
        grid-template-columns: 1fr;
    }
}

.shows-feature-card {
    height: 100%;
}

.shows-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.shows-list-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: 0;
}

.shows-list-thumb {
    width: 100%;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    flex-shrink: 0;
}

.shows-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shows-list-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===================================
   GRID LAYOUT - TWO STACKED LEFT, ONE FEATURED RIGHT
   =================================== */

.article-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 64px;
}

.article-box {
    position: relative;
    border-radius: 12px;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.article-box-main {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.article-box-main:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.article-box .article-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.box-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: visible;
    background: #111;
    border-radius: 12px;
}

.box-img-wrap .box-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.article-box-main:hover .box-img-wrap img {
    transform: scale(1.05);
}

.box-overlay {
    position: absolute;
    inset: 0;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    pointer-events: none;
    z-index: 2;
}

.box-overlay .box-title,
.box-overlay .box-excerpt {
    color: #ffffff;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.box-cat {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--badge-text, #0a0a0a);
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f4d03f 0%, #e4bf47 100%);
    padding: 5px 10px;
    border-radius: 4px;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.35);
    position: absolute;
    top: 12px;
    left: -12px;
    z-index: 5;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    text-decoration: none;
}

.box-cat:hover {
    color: var(--badge-text-hover, #ffffff);
}

/* Category-specific colors for labels */
.box-cat[data-cat="adults-only"] {
    background: linear-gradient(135deg, #ff4d6d 0%, #c9184a 100%);
    --badge-text: #ffffff;
    --badge-text-hover: #0a0a0a;
}
.box-cat[data-cat="shows-concerts"] { background: linear-gradient(135deg, #ffd166 0%, #fca311 100%); }
.box-cat[data-cat="dining"] { background: linear-gradient(135deg, #ff9f1c 0%, #ff6d00 100%); }
.box-cat[data-cat="things-to-do"] { background: linear-gradient(135deg, #3ae374 0%, #2ecc71 100%); }
.box-cat[data-cat="gambling"] {
    background: linear-gradient(135deg, #00c2ff 0%, #00a3ff 100%);
    --badge-text: #ffffff;
    --badge-text-hover: #0a0a0a;
}
.box-cat[data-cat="nightlife"] {
    background: linear-gradient(135deg, #7f5af0 0%, #b5179e 100%);
    --badge-text: #ffffff;
    --badge-text-hover: #0a0a0a;
}
.box-cat[data-cat="hotels-casinos"] {
    background: linear-gradient(135deg, #00d1b2 0%, #00b894 100%);
    --badge-text: #ffffff;
    --badge-text-hover: #0a0a0a;
}
.box-cat[data-cat="shopping"] {
    background: linear-gradient(135deg, #f72585 0%, #ff4d6d 100%);
    --badge-text: #ffffff;
    --badge-text-hover: #0a0a0a;
}
.box-cat[data-cat="local-favorties"],
.box-cat[data-cat="local-favorites"] { background: linear-gradient(135deg, #ffe066 0%, #fcbf49 100%); }
.box-cat[data-cat="lqbtq"],
.box-cat[data-cat="lgbtq"] { background: linear-gradient(135deg, #ff6b6b 0%, #f7b801 100%); }
.box-cat[data-cat="sports"] {
    background: linear-gradient(135deg, #4dabf7 0%, #1c7ed6 100%);
    --badge-text: #ffffff;
    --badge-text-hover: #0a0a0a;
}
.box-cat[data-cat="weddings"] { background: linear-gradient(135deg, #f783ac 0%, #ffb3c1 100%); }
.box-cat[data-cat="weed-cannabis"] {
    background: linear-gradient(135deg, #51cf66 0%, #2f9e44 100%);
    --badge-text: #ffffff;
    --badge-text-hover: #0a0a0a;
}
.box-cat[data-cat="weird-wild"] { background: linear-gradient(135deg, #ffd43b 0%, #f59f00 100%); }
.box-cat[data-cat="las-vegas-news"] {
    background: linear-gradient(135deg, #74c0fc 0%, #4dabf7 100%);
    --badge-text: #ffffff;
    --badge-text-hover: #0a0a0a;
}
.box-cat[data-cat="columns"] { background: linear-gradient(135deg, #ffe066 0%, #f08c00 100%); }

.box-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.box-excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.box-author-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.55);
    padding: 4px 8px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    text-decoration: none;
    white-space: nowrap;
    z-index: 3;
    transition: background 0.2s ease;
    cursor: pointer;
}

.box-author-pill:hover {
    background: rgba(0, 0, 0, 0.7);
}

.box-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    object-fit: cover;
    flex-shrink: 0;
}

.box-content {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #1a1a1a;
}

.box-content--featured {
    padding-top: 12px;
}

.box-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.box-featured-divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, #d4af37 0%, transparent 100%);
    border-radius: 2px;
    margin: 6px 0 10px;
}

.box-featured-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.box-featured-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
}

.box-featured-thumb-wrap {
    position: relative;
}

.box-featured-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.box-featured-thumb {
    width: 100%;
    height: 90px;
    border-radius: 6px;
    overflow: visible;
    background: #111;
    flex-shrink: 0;
    position: relative;
}

.box-featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

.box-featured-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.35) 100%
    );
    pointer-events: none;
}

.box-featured-flag {
    position: absolute;
    top: 8px;
    left: -12px;
    width: 28px;
    height: 10px;
    border-radius: 3px;
    background: linear-gradient(135deg, #f4d03f 0%, #e4bf47 100%);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 175, 55, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 2;
    display: block;
}

.box-featured-author {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    z-index: 3;
    display: block;
    text-decoration: none;
}

.box-featured-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
    display: block;
    background: #111;
}

.box-featured-flag[data-cat="adults-only"] { background: linear-gradient(135deg, #ff4d6d 0%, #c9184a 100%); }
.box-featured-flag[data-cat="shows-concerts"] { background: linear-gradient(135deg, #ffd166 0%, #fca311 100%); }
.box-featured-flag[data-cat="dining"] { background: linear-gradient(135deg, #ff9f1c 0%, #ff6d00 100%); }
.box-featured-flag[data-cat="things-to-do"] { background: linear-gradient(135deg, #3ae374 0%, #2ecc71 100%); }
.box-featured-flag[data-cat="gambling"] { background: linear-gradient(135deg, #00c2ff 0%, #00a3ff 100%); }
.box-featured-flag[data-cat="nightlife"] { background: linear-gradient(135deg, #7f5af0 0%, #b5179e 100%); }
.box-featured-flag[data-cat="hotels-casinos"] { background: linear-gradient(135deg, #00d1b2 0%, #00b894 100%); }
.box-featured-flag[data-cat="shopping"] { background: linear-gradient(135deg, #f72585 0%, #ff4d6d 100%); }
.box-featured-flag[data-cat="local-favorties"],
.box-featured-flag[data-cat="local-favorites"] { background: linear-gradient(135deg, #ffe066 0%, #fcbf49 100%); }
.box-featured-flag[data-cat="lqbtq"],
.box-featured-flag[data-cat="lgbtq"] { background: linear-gradient(135deg, #ff6b6b 0%, #f7b801 100%); }
.box-featured-flag[data-cat="sports"] { background: linear-gradient(135deg, #4dabf7 0%, #1c7ed6 100%); }
.box-featured-flag[data-cat="weddings"] { background: linear-gradient(135deg, #f783ac 0%, #ffb3c1 100%); }
.box-featured-flag[data-cat="weed-cannabis"] { background: linear-gradient(135deg, #51cf66 0%, #2f9e44 100%); }
.box-featured-flag[data-cat="weird-wild"] { background: linear-gradient(135deg, #ffd43b 0%, #f59f00 100%); }
.box-featured-flag[data-cat="las-vegas-news"] { background: linear-gradient(135deg, #74c0fc 0%, #4dabf7 100%); }
.box-featured-flag[data-cat="columns"] { background: linear-gradient(135deg, #ffe066 0%, #f08c00 100%); }

.box-featured-title {
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-featured-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.load-more-container .pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 0;
}

.load-more-container .page-item {
    background: transparent !important;
    border: 0 !important;
}

.load-more-container .page-link {
    background: transparent !important;
    border: 0 !important;
    color: #d4d4d4 !important;
    padding: 0 !important;
    font-weight: 600;
}

.pagination .page-item {
    background: transparent !important;
    border: 0 !important;
}

.pagination .page-item.active {
    background: transparent !important;
}

.pagination .page-link {
    box-shadow: none !important;
}

.load-more-container .page-item.active .page-link {
    color: #ffffff !important;
    text-decoration: underline;
}

.load-more-container .page-link:hover {
    color: #ffffff !important;
}

/* Featured card - first article on right, spans full height */
.article-box.featured {
    grid-column: 2;
    grid-row: 1 / 3; /* Spans 2 rows to match height of 2 stacked articles */
}

.article-box.featured .box-img-wrap {
    aspect-ratio: 16 / 9;
}

.article-box.featured .box-title {
    font-size: 18px;
    -webkit-line-clamp: 2;
}

.article-box.featured .box-content {
    padding: 14px 18px 18px;
}

/* Second and third articles stack on left */
.article-box:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
}

.article-box:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

/* Starting from 4th article, normal 2-column flow */
.article-box:nth-child(n+4) {
    grid-column: auto;
    grid-row: auto;
}

/* Related posts should always be a clean 2x2 grid */
.related-articles .article-box.featured {
    grid-column: auto;
    grid-row: auto;
}

.related-articles .article-box:nth-child(2),
.related-articles .article-box:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
}

@media (max-width: 1200px) {
    .article-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .article-box.featured {
        grid-column: 1;
        grid-row: 1;
    }
    
    .article-box:nth-child(2),
    .article-box:nth-child(3) {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .article-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .article-box.featured {
        grid-column: 1;
        grid-row: 1;
    }
    
    .section-title {
        font-size: 28px;
    }
}
/* ===================================
   SIDEBAR ENHANCEMENTS
   =================================== */

.sidebar-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.sidebar-top3 {
    padding: 16px 16px 18px;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 6px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sidebar .sidebar-card:first-child {
    margin-top: 24px;
}

.sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, transparent 100%);
}

.sidebar-title {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.sidebar-icon {
    width: 28px;
    height: 28px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 14px;
    flex-shrink: 0;
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 6px;
    row-gap: 6px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    align-items: center;
}

.sidebar-item:hover {
    padding-left: 8px;
}

.sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-item-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.08);
    grid-column: 2;
    grid-row: 1;
    position: relative;
}

.sidebar-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sidebar-rank {
    font-size: 56px;
    font-weight: 900;
    color: #d4af37;
    line-height: 0.95;
    min-width: 46px;
    flex-shrink: 0;
    text-align: center;
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 3;
    margin-right: -6px;
    transform: translateX(6px);
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.9),
                 0 0 12px rgba(0, 0, 0, 0.8);
}

.sidebar-top3 .sidebar-list {
    margin-left: 0;
}

.sidebar-item-text {
    flex: 1;
    min-width: 0;
    grid-column: 2;
    grid-row: 2;
}

.sidebar-item-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.sidebar-item-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.sidebar-item-title a:hover {
    color: #d4af37;
}

.sidebar-item-time {
    font-size: 13px;
    font-weight: 600;
    color: #888;
}
/* ===================================
   SHOW PROMO - DRAMATIC LAYOUT
   =================================== */

.show-promo {
    background: linear-gradient(135deg, #1a1510 0%, #0d0d0d 100%);
    border-radius: 16px;
    padding: 48px;
    margin: 64px 0;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 32px;
    align-items: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.show-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.show-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
}

.show-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.show-info {
    position: relative;
    z-index: 1;
}

.show-name {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37 0%, #e4bf47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.1;
}

.show-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #b8b8b8;
    margin-bottom: 16px;
}

.show-info-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.show-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #888;
}

.show-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    text-align: right;
    position: relative;
    z-index: 1;
}

.show-price {
    font-size: 14px;
    color: #888;
    font-weight: 600;
}

.show-price-amount {
    font-size: 32px;
    font-weight: 900;
    color: #d4af37;
    display: block;
    line-height: 1;
}

.show-cta {
    background: linear-gradient(135deg, #d4af37 0%, #e4bf47 100%);
    color: #0a0a0a;
    text-decoration: none;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    display: inline-block;
}

.show-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5);
}

@media (max-width: 1200px) {
    .show-promo {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .show-cta-wrapper {
        align-items: center;
    }
    
    .show-image {
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .show-promo {
        padding: 32px 24px;
    }
    
    .show-name {
        font-size: 36px;
    }
    
    .show-image {
        max-width: 150px;
    }
}
/* Black Template 2026 - Footer Component */

.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  margin-top: var(--space-section);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 auto;
}

.footer-section h3 {
  display: none;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.footer-link {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}

.footer-link:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  margin: 0;
  padding: 0;
  border-top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--text-muted);
  font-size: 14px;
  gap: 16px;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social .footer-link {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-social .footer-link:hover {
  color: var(--accent-gold);
}

@media (max-width: 640px) {
  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 16px;
  }

  .footer-inner {
    justify-content: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
/* Black Template 2026 - Utility Classes */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.hide-mobile {
  display: block;
}

.visible-mobile {
  display: none;
}

@media (max-width: 968px) {
  .hide-mobile {
    display: none;
  }

  .visible-mobile {
    display: block;
  }
}

.text-center {
  text-align: center;
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mb-xl {
  margin-bottom: var(--spacing-xl);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Contact page readability */
.contact-page .content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  color: var(--text-primary);
}

.contact-page .content h1 {
  margin: 0 0 16px;
  color: var(--text-primary);
}

.contact-page .form-field {
  margin-bottom: 16px;
}

.contact-page .form-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-secondary);
  font-weight: 600;
}

.contact-page .form-field input,
.contact-page .form-field textarea,
.contact-page .form-field select {
  width: 100%;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-radius: 8px;
  padding: 10px 12px;
}

.contact-page .form-field textarea {
  min-height: 120px;
}

.contact-page .form-field p {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 13px;
}

.contact-page .button-orange {
  background: var(--accent-gold);
  color: #0a0a0a;
  border-radius: 8px;
}

.contact-page .button-orange:hover {
  background: var(--accent-gold-hover);
}

/* ===================================
   PAGINATION - VEGAS411 STYLE
   =================================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 48px 0;
  padding: 24px 0;
}

.pagination a,
.pagination span,
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}

.pagination .page-item {
  background: transparent;
  border: 0;
}

.pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.pagination .page-link:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.35);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.pagination .page-item.active .page-link,
.pagination .page-link.active {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #e4bf47 100%);
  border-color: var(--accent-gold);
  color: #0a0a0a;
  font-weight: 800;
  cursor: default;
  pointer-events: none;
}

.pagination .page-item.disabled .page-link {
  background: transparent;
  border-color: transparent;
  color: var(--text-muted);
  cursor: not-allowed;
  pointer-events: none;
}

.pagination a:hover,
.pagination .page-numbers:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.pagination .current,
.pagination span.current,
.pagination .page-numbers.current {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #e4bf47 100%);
  border-color: var(--accent-gold);
  color: #0a0a0a;
  font-weight: 800;
  cursor: default;
  pointer-events: none;
}

.pagination .dots,
.pagination span:not(.current):not([class*="page"]) {
  background: transparent;
  border-color: transparent;
  color: var(--text-muted);
  cursor: default;
  pointer-events: none;
}

.pagination .prev,
.pagination .next,
.pagination a[rel="prev"],
.pagination a[rel="next"] {
  font-size: 18px;
  min-width: 44px;
}

.pagination .prev:hover,
.pagination .next:hover,
.pagination a[rel="prev"]:hover,
.pagination a[rel="next"]:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.pagination .prev.disabled,
.pagination .next.disabled,
.pagination span[rel="prev"],
.pagination span[rel="next"] {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 640px) {
  .pagination {
    gap: 6px;
    margin: 32px 0;
  }

  .pagination a,
  .pagination span,
  .pagination .page-numbers {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
  }

  .pagination .page-numbers:not(.current):not(.prev):not(.next):nth-child(n+6):nth-child(-n+20) {
    display: none;
  }
}

/* Stronger pill styling for Bootstrap pagination markup */
.new-pagination .pagination,
.pagination {
  list-style: none;
}

.new-pagination .pagination .page-link,
.pagination .page-link {
  border-radius: 999px !important;
  background: var(--bg-card) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: var(--text-secondary) !important;
}

.new-pagination .pagination .page-link:hover,
.pagination .page-link:hover {
  background: rgba(212, 175, 55, 0.15) !important;
  border-color: rgba(212, 175, 55, 0.35) !important;
  color: var(--accent-gold) !important;
}

.new-pagination .pagination .page-item.active .page-link,
.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #e4bf47 100%) !important;
  border-color: var(--accent-gold) !important;
  color: #0a0a0a !important;
}

.new-pagination .pagination .page-item.disabled .page-link,
.pagination .page-item.disabled .page-link {
  background: transparent !important;
  border-color: transparent !important;
  color: var(--text-muted) !important;
}

.page-content h2,
.page-content h3,
.page-content h4 {
  margin: 24px 0 12px;
}

.page-content p {
  margin: 0 0 16px;
}

.page-content ul,
.page-content ol {
  margin: 0 0 16px 20px;
}

.page-content li {
  margin-bottom: 8px;
}

