/* RESET - Base margin/padding removal */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

main {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.site-header, footer {
  width: 100%;
  padding: 0;
  margin: 0;
}

:root {
  --black: #0A0A0A;
  --white: #ffffff;
  --red: #ff0c10;
  --cyan: #0079f8;
  --yellow: #fbf307;
  --lime: #b1fe00;
  --dark-gray: #1a1a1a;
}

/* ============================================
   GLOBAL BREAKPOINTS - OUR SINGLE SOURCE OF TRUTH
   ============================================ */

/*
   DESKTOP: 1080px and above
   MOBILE:  1079px and below (tablet inherits mobile layout)
   
   All media queries across all CSS files MUST use these values.
   If you need to change breakpoints, change ONLY this file.
*/

:root {
  --desktop-min: 1080px;
  --mobile-max: 1079px;
}

/* ============================================
   CSS VARIABLES — Reusable values
   ============================================ */

:root {
  /* Background Images */
  --grid-paper: url('/images/ui/decorations/grid-paper.jpg');
  --grunge-overlay: url('/images/ui/decorations/grunge-overlay.png');

}

/* 
   USAGE GUIDELINES:
   
   Desktop:  @media (min-width: 1080px)
   Mobile:   @media (max-width: 1079px)
   
   DO NOT use 768px, 820px, 992px, 1024px, or any other values.
   DO NOT create tablet-specific media queries.
   npx @11ty/eleventy --serve --watch

   DNTN logo:

   <span style="background-color: black padding: 2px; rotate: -3deg;"><span style="font-size: 1.4rem; display: inline-block; rotate: -3deg;"><span style="color: white; font-family: 'Anton', 'Impact', sans-serif; font-weight: normal; text-transform: uppercase; text-shadow: 2px 2px black;">DNTN</span><span style="color: red; font-family: 'Anton', 'Impact', sans-serif; font-weight: normal; text-transform: uppercase; text-shadow: 1px 1px black;">!</span></span></span>


   Get-Content css/reset.css, css/variables.css, css/typography.css, css/layout.css, css/navbar.css, css/components.css, css/coming-soon.css, css/footer.css, css/article.css, css/category.css, css/celebration.css, css/accessibility.css, css/boring-forms.css, css/mspaint-contest.css | Set-Content css/main.min.css
   
*/
/* TYPOGRAPHY - Fonts, headings, body, excerpts, buttons */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.5;
}

/* HEADLINES - Anton */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-header h2,
.trending-title,
.category-card h3,
.grid-card-title {
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* CATEGORY NAMES - Anton */
.hero-category,
.trending-category,
.post-category,
.navbar a,
.grid-card-category {
  font-family: 'Anton', 'Impact', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* EXCERPTS - Special Elite */
.hero-excerpt,
.card-excerpt,
.category-post-item p {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* METADATA, DATES - Inter */
time,
.post-meta,
.card-date,
.grid-card-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #666;
}

/* LINKS */
a {
  color: var(--black);
  text-decoration: none;
  transition: all 0.1s ease;
}

a:hover {
  color: var(--red);
}

/* BUTTONS - Inter Semi-bold uppercase */
button,
.hero-button,
.pagination-prev,
.pagination-next,
.subscribe-btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.1s ease;
}
/* ============================================
   LAYOUT - Grids and Containers
   ============================================ */

/* DESKTOP LAYOUT (1080px and above) */
@media screen and (min-width: 1080px) {
  .homepage {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  
  /* Box 1: Top row container (A + C side by side) */
  .box-1 {
    display: grid;
    grid-template-columns: 72% 28%;
    gap: 0;
    width: 100%;
  }
  
  /* Box A: Left column (contains A1 + A2 + A3 stacked) */
  .box-a {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  /* Box C: Right column (contains C1 + C2 stacked) */
  .box-c {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  /* Box 2: Bottom row container (Directory + About) */
  .box-2 {
    display: grid;
    grid-template-columns: 68% 32%;
    gap: 0;
    width: 100%;
  }
  
  /* Box B: Content grid container */
  .box-b {
    width: 100%;
  }
  
  /* Box D: Photo tab container */
  .box-d {
    width: 100%;
  }
}

/* MOBILE & TABLET (1079px and below) - STACKED LAYOUT */
@media screen and (max-width: 1079px) {
  .homepage {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  
  .box-1 {
    display: grid;
    grid-template-areas:
      "hero"
      "trending"
      "a2"
      "a3"
      "c2";
  }
  
  .box-2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }
  
  .box-a,
  .box-c {
    display: contents;
  }
  
  .box-a1 { grid-area: hero; }
  .box-c1 { grid-area: trending; }
  .box-a3 { grid-area: a3; }
  .box-a2 { grid-area: a2; }
  .box-c2 { grid-area: c2; }
  
  .box-a,
  .box-c,
  .box-b,
  .box-d {
    width: 100%;
  }
  
  .box-c {
    width: 100%;
  }
}
/* ============================================
   TICKER BAR
   ============================================ */

.ticker {
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
}

.ticker-label {
  background: var(--red);
  color: var(--black);
  font-family: 'Anton', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1pt;
  padding: 2px 15px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
}

.ticker-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  animation: tickerScroll 40s linear infinite;
  white-space: nowrap;
  gap: 40px;
  align-items: center;
}

.ticker-item {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  font-family: 'Special Elite', 'Courier New', monospace;

}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ticker-track:hover {
  animation-play-state: paused;
}

/* ============================================
   NAVBAR - MAIN CONTAINER
   ============================================ */

.navbar {
  background: var(--black);
  padding: 0.75rem 10px;
  width: 100%;
}

/* ============================================
   DESKTOP NAVBAR (1080px and above)
   ============================================ */

@media screen and (min-width: 1080px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .navbar__logo {
    flex: 0 0 auto;
  }

  .navbar__logo a {
    display: inline-block;
  }

  .navbar-logo {
    height: 60px;
    width: auto;
    display: block;
  }

  .navbar__links-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .navbar__links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .navbar__links li {
    text-align: center;
  }

  .navbar__links a {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.1s ease;
    white-space: nowrap;
  }

  .navbar__links a:hover {
    color: var(--yellow);
  }

  .navbar__links a.active {
    border-bottom: 3px solid var(--red);
  }

  .navbar__actions {
    flex: 0 0 auto;
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .search-icon {
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.1s ease;
    padding: 4px;
    display: inline-block;
    line-height: 1;
  }

  .search-icon:hover {
    color: var(--lime);
  }

  .subscribe-btn {
    background: var(--lime);
    color: var(--black);
    border: none;
    padding: 8px 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.1s ease;
  }

  .subscribe-btn:hover {
    background: var(--black);
    color: var(--lime);
    border: 1px solid var(--lime);
    box-shadow: 4px 4px var(--lime);
  }

  .menu-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.1s ease;
    padding: 4px;
    line-height: 1;
  }

  .menu-btn:hover {
    color: var(--yellow);
  }
}

/* ============================================
   MOBILE NAVBAR (1079px and below)
   ============================================ */

@media screen and (max-width: 1079px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .navbar__logo {
    flex: 0 0 auto;
  }

  .navbar-logo {
    height: 40px;
    width: auto;
    display: block;
  }

  .navbar__links-wrapper {
    display: none;
  }

  .navbar__actions {
    flex: 0 0 auto;
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }

  .search-icon {
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.1s ease;
    padding: 4px;
    display: inline-block;
    line-height: 1;
  }

  .search-icon:hover {
    color: var(--lime);
  }

  .subscribe-btn {
    display: none;
  }

  .menu-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    display: block;
  }

  .menu-btn:hover {
    color: var(--yellow);
  }
}

/* ============================================
   OVERLAY MENU
   ============================================ */

#overlay-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}

#overlay-menu.open {
  transform: translateX(0);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 24px 0 24px;
}

.menu-tagline {
  font-family: 'Special Elite', monospace;
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0.7;
  text-transform: uppercase;
  color: var(--white);
  margin: auto auto auto 0;
  padding: 0;
  line-height: 1;
}

#close-menu {
  position: static;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--white);
  transition: color 0.1s ease;
  padding: 0;
  line-height: 1;
}

#close-menu:hover {
  color: var(--red);
}

.menu-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 1rem;
}

.menu-link {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  color: var(--white);
  padding: 20px 24px;
  display: block;
  transition: all 0.1s ease;
  border-bottom: 2px solid transparent;
}

.menu-link[data-color="1"] { border-bottom-color: var(--red); }
.menu-link[data-color="2"] { border-bottom-color: var(--yellow); }
.menu-link[data-color="3"] { border-bottom-color: var(--cyan); }
.menu-link[data-color="4"] { border-bottom-color: var(--lime); }
.menu-link[data-color="5"] { border-bottom-color: var(--red); }
.menu-link[data-color="6"] { border-bottom-color: var(--yellow); }

.menu-link:hover {
  transform: translateX(8px);
  color: var(--yellow);
}

.menu-footer {
  padding: 30px 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.newsletter-label {
  color: var(--white);
  font-family: 'Anton', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}

.newsletter-form {
  display: flex;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
}

#newsletter-email {
  flex: 1;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  outline: none;
}

#newsletter-email:focus {
  border-color: var(--yellow);
}

#newsletter-submit {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.1s ease;
}

#newsletter-submit:hover {
  background: var(--yellow);
  color: var(--black);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 24px;
}

.social-links img {
  width: 60%;
}

.social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s ease;
  border-radius: 0.5rem;
}

.social-icon:hover {
  transform: scale(1.05);
}

.social-icon.instagram { background: #E1306C; }
.social-icon.discord   { background: #5865f2; }
.social-icon.facebook  { background: #1877F2; }
.social-icon.youtube   { background: #FF0033; }

.story-prompt {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.story-line {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.story-email {
  margin-top: 12px;
}

.story-email a {
  color: var(--white);
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 1px;
}

.story-email a:hover {
  color: var(--yellow);
}

/* ============================================
   SUBSCRIBE MODAL
   ============================================ */

.subscribe-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.subscribe-modal.active {
  display: flex;
}

.subscribe-modal-content {
  max-width: 500px;
  width: 100%;
  background: var(--white);
  border: 2px solid var(--black);
  padding: 2rem 2rem 2.5rem;
  box-shadow: 8px 8px 0 var(--black);
  position: relative;
}

.subscribe-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--black);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  transition: color 0.1s ease;
}

.subscribe-modal-close:hover {
  color: var(--red);
}

.subscribe-modal-content h3 {
  font-family: 'Anton', 'Impact', Arial, sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  margin: 0 0 0.5rem 0;
}

.subscribe-modal-content p {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 0 0 1.5rem 0;
}

.subscribe-modal-content .newsletter-form {
  display: flex;
  gap: 0;
  width: 100%;
}

.subscribe-modal-content .newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.7rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  outline: none;
}

.subscribe-modal-content .newsletter-form input[type="email"]:focus {
  border-color: var(--red);
}

.subscribe-modal-content .newsletter-form .newsletter-submit {
  padding: 0.7rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  cursor: pointer;
  transition: all 0.1s ease;
}

.subscribe-modal-content .newsletter-form .newsletter-submit:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ============================================
   MOBILE SUBSCRIBE MODAL (max-width: 1079px)
   ============================================ */

@media screen and (max-width: 1079px) {
  .subscribe-modal-content {
    padding: 1.5rem 1.25rem 2rem;
    box-shadow: 4px 4px 0 var(--black);
  }

  .subscribe-modal-content h3 {
    font-size: 1.4rem;
  }

  .subscribe-modal-content .newsletter-form {
    flex-direction: row;
    gap: 0rem;
  }

  .subscribe-modal-content .newsletter-form input[type="email"] {
    width: 100%;
  }

  .subscribe-modal-content .newsletter-form .newsletter-submit {
    text-align: center;
  }
}

/* ============================================
   DESKTOP OVERLAY MENU (1080px and above)
   ============================================ */

@media screen and (min-width: 1080px) {
  #overlay-menu {
    width: 33.333%;
  }
  
  .menu-link {
    font-size: 2.5rem;
    padding: 24px 32px;
  }
}

/* ============================================
   MOBILE OVERLAY MENU (1079px and below)
   ============================================ */

@media screen and (max-width: 1079px) {
  #overlay-menu {
    width: 100%;
  }
  
  .menu-link {
    font-size: 2rem;
  }
}
/* ============================================
   BOX LAYOUT STRUCTURE (DESKTOP FIRST)
   ============================================ */

.box-1 {
  display: flex;
  gap: 0;
  width: 100%;
}

.box-2 {
  display: grid;
  grid-template-columns: 60% 40%;
  background-color: var(--dark-gray);
}

.box-a {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
  gap: 0px;
  background-image: var(--grid-paper);
  background-size: 150px;
  background-position: center;
  background-repeat: repeat;
}

.box-c {
  width: 32%;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.box-c2 {
  background-color: var(--dark-gray);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.box-a1,
.box-a2,
.box-a3 {
  width: 100%;
}

.box-a3, .box-a2 {
  margin-bottom: 1rem;
}

/* Two column layout for rows */
.two-column-row {
  display: flex;
  width: 100%;
  gap: 1.5rem;
  align-items: flex-start;
  padding-left: 10px;
}

/* Mini hero container */
.mini-hero {
  width: 70%;
  padding: 0;
}

/* ============================================
   AD SPACE (DESKTOP FIRST)
   ============================================ */

.ad-space {
  width: 26%;
  position: relative;
    margin-top: auto;
  margin-bottom: auto;
}

.ad-image1,
.ad-image2 {
  aspect-ratio: 1 / 1;
  background: var(--dark-gray);
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  border: 3px solid var(--black);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.1s ease;
  position: relative;
}

.ad-image1 {
  background-image: url('/images/ads/1-1-art-contest.gif')
}

.ad-image2 {
  background-image: url('/images/ads/1-1-art-contest.gif')
}

/* AD Sticker for original ads */
.ad-image1::before,
.ad-image2::before {
  content: "AD";
  position: absolute;
  top: -8px;
  left: -8px;
  background: var(--red);
  color: var(--white);
  font-family: 'Anton', sans-serif;
  font-size: 0.55rem;
  padding: 5px 10px;
  letter-spacing: 1px;
  rotate: -5deg;
  z-index: 5;
}

.ad-image1:hover,
.ad-image2:hover {
  cursor: pointer;
  border-color: var(--red);
}

.ad-space p {
  color: var(--black);
  font-family: 'Special Elite', 'Courier New', monospace;
  text-align: center;
  width: 100%;
  letter-spacing: 1.5px;
  font-size: 1rem;
  background-color: rgb(0, 0, 0);
  color: white;
  padding: 0.2rem;
}

/* ============================================
   SPOTTED IN DENTON - Photo Collage (DESKTOP FIRST)
   ============================================ */

/* Spotted in Denton Header - Line on Right */
.spotted-header {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  margin-bottom: -20px;
  position: relative;
  z-index: 5;
}


.spotted-header h2 {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--lime);
  color: var(--black);
  display: inline-block;
  padding: 0.3rem 1rem;
  margin: 0;
  white-space: nowrap;
  rotate: -4deg;
}

.spotted-header-line {
  flex: 1;
  height: 1.5px;
  background: var(--lime);
  rotate: -4deg;
  margin-top: -25px;
}

/* Desktop: Fixed 2-column grid that fills space */
.spotted-grid {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 0.7rem;
  padding: 1rem;
}

.spotted-item {
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-gray);
  height: 100%;
}

.spotted-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: grayscale(100%) contrast(120%);
  display: block;
}

.spotted-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(100%);
}

/* Spotted Button */
.spotted-button {
  display: block;
  background: var(--lime);
  color: var(--black);
  border: none;
  padding: 8px 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.1s ease;
  text-decoration: none;
  text-align: center;
  width: 100%;
  margin-top: auto;
}

.spotted-button:hover {
  background: var(--black);
  color: var(--lime);
  border: 1px solid var(--lime);
  box-shadow: 4px 4px var(--lime);
}

/* Mobile: Carousel (hidden on desktop by default) */
.spotted-carousel {
  display: none;
}

.carousel-track-container {
  overflow: hidden;
  border-radius: 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
}

.carousel-slide {
  min-width: 100%;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(120%);
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--white);
  border: none;
  font-size: 2rem;
  padding: 1.3rem 1rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.1s ease;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--red);
}

/* Lightbox (desktop & mobile same) */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: 90%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: auto;
}

.lightbox-caption {
  color: var(--white);
  font-family: 'Special Elite', monospace;
  font-size: 1rem;
  margin-top: 1rem;
  text-align: center;
}

.lightbox-photographer {
  color: var(--yellow);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--white);
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.1s ease;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--red);
  border-color: var(--red);
}

.instagram-glyph {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  filter: brightness(0) invert(1); /* Makes it white */
}

.photographer-link {
  color: var(--yellow);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  transition: color 0.1s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.photographer-link:hover {
  color: var(--lime);
  text-decoration: underline;
}

.photographer-link:hover .instagram-glyph {
  filter: brightness(0) invert(1); /* Stays white on hover */
}

/* ============================================
   HERO CARD - Ripped Paper / Punk Layered
   ============================================ */

.hero-card {
  position: relative;
  height: auto;
  display: flex;
  overflow: hidden;
  background-color: var(--dark-gray);
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  height: 100%;
  z-index: 1;
  border-style: solid;
  border-width: 0px;
  border-right-width: 3px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  display: block;
}

.hero-image-placeholder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  height: 100%;
  background: var(--dark-gray);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 60%;
  background-image: url('/images/ui/jagged-edge-2.webp');
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  color: var(--black);
  filter: drop-shadow(8px 0 10px rgba(0, 0, 0, 0.4));
}

.hero-category {
  font-family: 'Anton', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--red);
  color: var(--white);
  rotate: -5deg;
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 1rem;
  margin-left: -20px;
  width: fit-content;
  border: none;
  position: relative;
  z-index: 2;
}

.hero-strike-line {
  width: 92%;
  height: 2px;
  background: linear-gradient(90deg, var(--black) 90%, transparent 100%);
  z-index: 1;
  margin-top: -30px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: 5rem;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
  margin-top: 1rem;
  color: var(--black);
  letter-spacing: -0.02em;
  width: 91%;
}

.hero-title .highlight {
  color: var(--red);
  text-shadow: 5px 5px rgb(7, 7, 219);
  padding: 0 4px;
  display: inline-block;
  transform: rotate(-1deg);
}

.hero-excerpt {
  font-family: 'Special Elite', monospace;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: var(--black);
  width: 99%;
}

.hero-button {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.1s ease;
  width: fit-content;
  border: none;
}

.hero-button:hover {
  background: var(--red);
  color: var(--black);
  transform: scale(0.98);
}

/* ============================================
   MINI HERO CARDS
   ============================================ */


.mini-hero-grid {
  display: flex;
  width: 100%;
  gap: 1rem;
}

.mini-hero-card {
  background: var(--white);
  border: 2px solid var(--black);
  overflow: hidden;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  flex: 1;
  box-shadow: 2.5px 4px 0 var(--black);
}

.mini-hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 2.5px 4px 0 var(--red);
}

.mini-hero-content {
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
}

.mini-hero-category {
  font-family: 'Anton', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 8px;
  margin-bottom: 0.5rem;
  display: inline-block;
  width: fit-content;
}

.mini-hero-title {
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--black);
  padding: 0.2rem 0;
}

.mini-hero-image {
  width: 100%;
  max-height: 125px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background-color: var(--dark-gray);
}

.mini-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.2s ease;
}

.mini-hero-button {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 6px 12px;
  text-align: center;
  transition: all 0.1s ease;
  align-self: flex-start;
}

.mini-hero-button:hover {
  color: var(--white);
  background-color: var(--red);
}

/* ============================================
   TRENDING TAB
   ============================================ */

.trending-header {
  padding-left: 5px;
}

.trending-header h2 {
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin: 5px 0;
}

.trending-divider {
  height: 2px;
  background: var(--black);
  width: 100%;
}

.trending-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trending-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border-top: 1.5px solid var(--black);
  transition: transform 0.1s ease;
}

.trending-item:first-child {
  border-top: none;
}

.trending-item:hover {
  transform: translateX(-3px);
}

.trending-item:hover .trending-number {
  color: var(--red);
}

.trending-number {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--black);
  min-width: 50px;
  text-align: center;
  letter-spacing: 0.5px;
}

.trending-content {
  flex: 1;
}

.trending-category {
  font-family: 'Anton', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.trending-title {
  font-family: 'Anton', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.trending-image {
  width: 35%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  max-height: 100px;
  /* Remove background-color — now set inline via data-color or style */
}

.trending-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(175%);
  opacity: 0.8;
  transition: opacity 0.2s ease, filter 0.2s ease;
  mix-blend-mode: multiply;
}

.trending-item:hover .trending-image img {
  opacity: 1;
  filter: grayscale(0%) contrast(100%);
  mix-blend-mode: normal;
}

.trending-button {
  display: block;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  font-size: 0.8rem;
  padding: 17px;
  text-decoration: none;
  transition: all 0.1s ease;
  width: 125%;
  margin-left: -12%;
  margin-bottom: -1rem;
  margin-top: -0.5rem;
  overflow: hidden;
  rotate: -4deg;
}

.trending-button:hover {
  background: var(--black);
  color: var(--yellow);
}

/* ============================================
   BOX 2 - WHITE HEADERS ON DARK BACKGROUND
   ============================================ */

.box-2 .section-header {
  border-bottom-color: var(--white);
}

.box-2 .section-header h2 {
  color: var(--white);
  margin-left: 1rem;
  padding-top: 1rem;
}

.box-2 .section-header .header-sticker {
  color: var(--white);
}

/* ============================================
   COMMUNITY DIRECTORY (HORIZONTAL BARS)
   ============================================ */

.box-directory {
  padding-right: 0.7rem;
  padding-bottom: 1rem;
}

.directory-intro {
  font-family: 'Special Elite', monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--white);
  margin: 0.5rem 0 1.5rem 0;
  padding: 0.75rem 1rem;
  border-left: 4px solid var(--lime);
  background: var(--dark-gray);
}

.directory-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.directory-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--white);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  color: var(--white);
  background: var(--dark-gray);
  gap: 1rem;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.directory-card:hover {
  transform: translateX(4px);
  box-shadow: 4px 4px 0 var(--white);
}

.directory-card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.directory-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.directory-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.directory-name {
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.directory-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ============================================
   ABOUT DNTN
   ============================================ */

.box-about {
  margin-right: 0.7rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-content {
  border-radius: 25px;
  background: var(--white);
  border: 2px solid var(--black);
  padding: 1rem;
  margin: 0.5rem 0;
  font-family: 'Special Elite', monospace;
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--black);
  flex: 1;
}

.about-content p:first-child {
  margin-top: 0;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-content a {
  color: var(--red);
  text-decoration: underline;
  transition: color 0.1s ease;
}

.about-content a:hover {
  color: var(--cyan);
}

/* ============================================
   ABOUT AD SPACE
   ============================================ */

.about-ad {
  background: var(--dark-gray);
  border: 2px dashed var(--white);
  padding: 0;
  text-align: center;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 5 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.about-ad::before {
  content: "AD";
  position: absolute;
  top: -10px;
  left: -10px;
  background: var(--red);
  color: var(--white);
  font-family: 'Anton', sans-serif;
  font-size: 0.6rem;
  padding: 2px 8px;
  letter-spacing: 1px;
  rotate: -5deg;
  z-index: 10;
}

.about-ad p {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 0.5rem;
  z-index: 1;
}

.about-ad-small {
  font-size: 0.7rem !important;
  opacity: 0.6;
  margin-top: 0.25rem !important;
}

.about-ad:hover {
  border-color: var(--lime);
  border-style: solid;
  transition: border-color 0.1s ease;
}


/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--black);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.header-sticker {
  font-size: 1.5rem;
  font-family: 'Special Elite', monospace;
}

.box-a2 > .section-header {
  background-color: #ffffff;
  margin-top: 0;
  padding-top: 0.5rem;
  padding-left: 0.5rem;
  border-width: 5px;
}

/* ============================================
   OTHER COMPONENTS
   ============================================ */

.grid-card {
  border: 1px solid #ccc;
  padding: 1rem;
  display: block;
  text-decoration: none;
  color: var(--black);
}

.grid-card-category {
  font-family: 'Anton', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.grid-card-title {
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.grid-card-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: #666;
}

.photo-tab {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
}

.photo-placeholder {
  background: var(--dark-gray);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
}

.photo-archive-link {
  padding: 0 1rem 1rem 1rem;
  text-align: right;
}

.events-placeholder {
  padding: 1rem;
  background: #f9f9f9;
  border: 1px solid #ccc;
}

.events-small {
  font-family: 'Special Elite', monospace;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: #666;
}

.pagination {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 2px solid var(--black);
}

.pagination-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.pagination-prev,
.pagination-next {
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border: none;
}

.pagination-prev:hover,
.pagination-next:hover {
  background: var(--red);
  color: var(--white);
}

.pagination-current {
  font-size: 0.875rem;
  color: #666;
}

/* ============================================
   MOBILE OVERRIDES (max-width: 1079px)
   ============================================ */

@media screen and (max-width: 1079px) {
  /* Grid reorder */
  .box-1 {
    display: grid;
    grid-template-areas:
      "hero"
      "trending"
      "a2"
      "a3"
      "c2";
  }

  .box-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .box-c {
    display: contents;
  }

  .box-a1 { grid-area: hero; }
  .box-c1 { grid-area: trending; }
  .box-a3 { grid-area: a3; }
  .box-a2 { grid-area: a2; }
  .box-c2 { grid-area: c2; }

  /* Box spacing */
  .box-a2 {
    margin-bottom: 1rem;
  }

  .box-c {
    width: 100%;
  }

  /* Two column layout becomes stacked */
  .two-column-row {
    flex-direction: column;
    gap: 1rem;
  }

  /* Mini hero */

  .box-a {
  background-image: var(--grid-paper);
  background-size: 175px;
  background-position: center;
  background-repeat: repeat;
  border-style: solid;
    border-width: 0 0 4px 0;
    border-color: black;
  }

  .mini-hero {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .mini-hero-image {
    max-height: 225px;
  }

  .mini-hero-card {
    box-shadow: 2.5px 4px 0 var(--black);
  }

  .mini-hero-grid {
    flex-direction: column;
  }

  /* Ad space */
  .ad-space {
    width: 70%;
    margin: auto;
  }

  .ad-space p {
    background-color: rgb(0, 0, 0);
    color: white;
    padding: 0.5rem;
  }

  .about-ad {
    margin-top: 0.5rem;
  }

  /* Hero card */
  .hero-card {
    flex-direction: column;
    min-height: auto;
    height: auto;
  }

  .hero-image,
  .hero-image-placeholder {
    position: relative;
    width: 100%;
    margin-bottom: -6rem;
    border-style: hidden;
  }

  .hero-image img {
    object-position: top;
  }

  .hero-content {
    position: relative;
    left: auto;
    right: auto;
    margin-top: 0;
    min-width: 100%;
    background-image: url('/images/ui/jagged-edge-top-2.webp');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    z-index: 2;
    min-height: auto;
    padding-top: 100px;
    filter: drop-shadow(0 -4px 8px rgba(0, 0, 0, 0.2));
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-title .highlight {
    text-shadow: 3px 3px rgb(7, 7, 219);
  }

  .hero-strike-line {
    width: 100%;
  }

  /* Trending tab - ORIGINAL MOBILE STYLES RESTORED */
  .trending-item {
    height: 110px;
  }

  .trending-category {
    font-size: 0.9rem;
  }

  .trending-number {
    font-size: 2rem;
  }

  .trending-button {
    padding: 20px;
    rotate: 0deg;
    margin: 0;
    margin-bottom: 0;
    width: 100%;
  }

  .trending-image {
    width: 33%;
    height: 100%;
    max-height: none;
  }

  .trending-title {
    font-size: 1.1rem;
  }

  /* Mobile: Carousel (hidden on desktop by default) */
.spotted-carousel {
  display: none;
}

.carousel-track-container {
  overflow: hidden;
  border-radius: 0;
  max-height: 80vh;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 350px; /* Adjust this to your preference */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-gray);
  overflow: hidden;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(120%);
  display: block;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  border: none;
  font-size: 2rem;
  padding: 1.3rem 0.8rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.1s ease;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--red);
}

  /* DIRECTORY MOBILE OVERRIDES - Horizontal bars stack vertically */
  .box-directory {
    padding-right: 0;
  }

  .box-about {
    margin-right: 1rem;
    margin-left: 1rem;
  }

  .directory-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
  }

  .directory-card-content {
    width: 100%;
  }

  .directory-desc {
    white-space: normal;
  }

  .directory-arrow {
  font-size: 1.2rem;
  color: var(--white);
  opacity: 0.6;
  transition: opacity 0.1s ease, transform 0.1s ease;
  flex-shrink: 0;
  margin-left: 0.5rem;
  margin-top: auto;
  margin-bottom: auto;
}

.directory-card:hover .directory-arrow {
  opacity: 1;
  transform: translateX(4px);
}

  .directory-card:hover {
    transform: translateX(0);
    box-shadow: 2px 2px 0 var(--white);
  }

  /* ==========================================
     MOBILE LIGHTBOX - SIMPLE & TOUCH-FRIENDLY
     ========================================== */

  .lightbox-image {
    max-width: 75%;
    max-height: 70vh;
    display: block;
    margin: auto;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 2.5rem;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.6);
    top: 50%;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 1.8rem;
    padding: 0.6rem 1rem;
    background: rgba(0, 0, 0, 0.6);
  }

  .lightbox-caption {
    font-size: 1.2rem;
    margin-top: 1rem;
    padding: 0 1rem;
    max-width: 90%;
  }

  .lightbox-photographer {
    font-size: 1rem;
    margin-bottom: 0;
  }
}
/* ============================================
   COMING SOON PAGE
   ============================================ */

.coming-soon {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--white);
  background-image: var(--grid-paper);
  background-size: 200px;
  background-position: center;
  background-repeat: repeat;
  position: relative;
}

/* Subtle grunge overlay */
.coming-soon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--grunge-overlay);
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.coming-soon-content {
  max-width: 700px;
  width: 100%;
  background: var(--white);
  border: 3px solid var(--black);
  padding: 3rem 2.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 8px 8px 0 var(--black);
}

/* Header */
.coming-soon-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.coming-soon-sticker {
  font-size: 2rem;
  rotate: -5deg;
}

.coming-soon-header h1 {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--black);
  margin: 0;
  line-height: 1;
}

/* Message */
.coming-soon-message {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 2rem;
  border-left: 4px solid var(--yellow);
  padding-left: 1.5rem;
}

.coming-soon-message p {
  margin: 0 0 0.75rem 0;
}

.coming-soon-message p:last-child {
  margin-bottom: 0;
}

.coming-soon-signoff {
  font-family: 'Special Elite', monospace;
  font-size: 0.95rem;
  color: var(--red);
  margin-top: 0.5rem !important;
}

/* Roadmap */
.coming-soon-roadmap {
  margin-bottom: 2rem;
}

.coming-soon-roadmap h2 {
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  margin: 0 0 0.5rem 0;
}

.roadmap-divider {
  height: 2px;
  background: var(--black);
  width: 100%;
  margin-bottom: 1rem;
}

.roadmap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.roadmap-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #ddd;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--black);
}

.roadmap-list li:last-child {
  border-bottom: none;
}

.roadmap-check {
  font-size: 1.2rem;
  color: var(--red);
}

.roadmap-item {
  flex: 1;
  font-weight: 500;
}

.roadmap-date {
  font-size: 0.8rem;
  color: #666;
  font-family: 'Special Elite', monospace;
}

/* Newsletter */
.coming-soon-newsletter {
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--black);
}

.coming-soon-newsletter p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--black);
  margin: 0 0 0.75rem 0;
}

.coming-soon-form {
  display: flex;
  gap: 0rem;
  max-width: 400px;
  margin: 0 auto;
}

.coming-soon-form input[type="email"] {
  flex: 1;
  padding: 0.6rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  outline: none;
}

.coming-soon-form input[type="email"]:focus {
  border-color: var(--lime);
}

.coming-soon-submit {
  padding: 0.6rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  cursor: pointer;
  transition: all 0.1s ease;
}

.coming-soon-submit:hover {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}

/* Back to Home */
.coming-soon-home {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--black);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 2px solid var(--black);
  transition: all 0.1s ease;
}

.coming-soon-home:hover {
  background: var(--black);
  color: var(--white);
}

/* Mobile */
@media screen and (max-width: 1079px) {
  .coming-soon-content {
    padding: 2rem 1.5rem;
  }

  .coming-soon-header h1 {
    font-size: 2rem;
  }

  .coming-soon-sticker {
    font-size: 1.5rem;
  }

  .coming-soon-message {
    font-size: 0.9rem;
    padding-left: 1rem;
  }

  .coming-soon-form {
    max-width: 100%;
  }

  .roadmap-list li {
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .roadmap-date {
    margin-left: 1.95rem;
  }
}
/* ============================================
   FOOTER - 5-Block Layout (No Shared Defaults)
   ============================================ */

.site-footer {
  width: 100%;
  background: var(--dark-gray);
  border-top: 2px solid var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 26% 24% 14% 16% 20%;
  gap: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* ============================================
   BLOCK 1: DNTN RADIO (Black)
   ============================================ */

.footer-radio {
  background: var(--black);
  border: 1px solid var(--black);
  padding: 0;
  height: 200px;
  display: flex;
  align-items: stretch;
}

.footer-radio-content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.footer-radio-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  text-align: left;
}

.footer-radio-text h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin: 0 0 0.5rem 0;
}

.footer-radio-text p {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 0.75rem 0;
}

.footer-radio-text .footer-link {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  color: var(--red);
  text-decoration: none;
  padding: 0;
  border: none;
  background: transparent;
  align-self: flex-start;
  transition: color 0.1s ease;
}

.footer-radio-text .footer-link:hover {
  color: var(--white);
}

.footer-radio-image {
  min-width: 35%;
  max-width: 45%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-radio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(275%);
  opacity: 0.9;
  mix-blend-mode: multiply;
}

/* ============================================
   BLOCK 2: GET DNTN! (White - Newsletter)
   ============================================ */

.footer-newsletter {
  background-color: var(--white);
  border: 1px solid var(--black);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: var(--grid-paper);
  background-size: 400px;
  background-position: center;
  background-repeat: repeat;
}

.footer-newsletter h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  margin: 0 0 1rem 0;
  background-color: white;
  padding: 0.25rem;
  border-style: solid;
  border-color: black;
  border-width: 2px;
  box-shadow: 4px 4px var(--black);
}

.footer-newsletter p {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--black);
  margin: 0 0 0.75rem 0;
  background-color: white;
  padding: 0rem;
  border-style: solid;
  border-color: black;
  border-width: 2px;
  box-shadow: 4px 4px var(--black);
}

.newsletter-form {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 280px;
  box-shadow: 4px 4px var(--black);
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.5rem 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  outline: none;
  min-width: 0;
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--lime);
}

.newsletter-form .newsletter-submit {
  padding: 0.5rem 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 1px;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  cursor: pointer;
  transition: all 0.1s ease;
  white-space: nowrap;
}

.newsletter-form .newsletter-submit:hover {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}

/* ============================================
   BLOCK 3: SUBMIT A TIP (Yellow)
   ============================================ */

.footer-tip {
  background: var(--yellow);
  border: 1px solid var(--black);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  background-image: url('/images/ui/decorations/splatters.webp');
  background-size: 125px;
    background-position: center;
  background-repeat: repeat;
}

.footer-tip h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  margin: 0 0 0.5rem 0;
  background-color: var(--red);
  padding: 0.3rem;
  border-style: solid;
  border-width: 2px;
  box-shadow: 4px 4px var(--black);
}

.footer-tip p {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--black);
  margin: 0 0 0.75rem 0;
  background-color: var(--yellow);

}

.footer-tip .footer-link {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  color: var(--white);
  text-decoration: none;
  padding: 0.7rem 0.5rem;
  border: 2px solid var(--black);
  transition: all 0.1s ease;
  display: inline-block;
  background: transparent;
  background-color: black;
  border-color: var(--red);
  border-width: 3px;
  border-radius: 1000px;

  box-shadow: 4px 4px var(--black);
}

.footer-tip .footer-link:hover {
  background: var(--black);
  color: var(--white);
  transform: scale(0.95);
}

/* ============================================
   BLOCK 4: SUPPORT DNTN! (Cyan)
   ============================================ */

.footer-support {
  background: var(--cyan);
  border: 1px solid var(--black);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url('/images/ui/decorations/star-deco-3.webp');
  background-repeat: repeat;
  background-size: 25px;

  display: flex;
  justify-content: space-around;
}

.footer-support h3 {
  font-family: 'Anton', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  background-color: var(--cyan);
  border-style: solid;
  border-width: 2px;
  padding: 0.2rem 0.5rem;
  border-color: rgb(0, 183, 0);
  box-shadow: 4px 4px rgb(0, 60, 0);
}

.footer-support p {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--black);
  background-color: var(--cyan);
  padding: 0.2rem;
  border-style: solid;
  border-color: rgb(0, 183, 0);
  box-shadow: 4px 4px rgb(0, 60, 0);
  border-radius: 25px;
}

.footer-support .footer-link {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  color: var(--black);
  text-decoration: none;
  padding: 0.2rem;
  border: 2px solid var(--black);
  transition: all 0.1s ease;
  display: inline-block;
  background: transparent;
  border-color: rgb(0, 142, 202);
  background-color: rgb(0, 183, 0);
  box-shadow: 4px 4px rgb(0, 60, 0);
  border-width: 3px;
}

.footer-support .footer-link:hover {
  background: var(--cyan);
  border-color: rgb(0, 183, 0);
  color: var(--white);
  transform: scale(0.95);
}

/* ============================================
   BLOCK 5: SHOP DNTN (Red)
   ============================================ */

.footer-shop {
  background: var(--red);
  border: 1px solid var(--black);
  padding: 1.5rem;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: var(--grunge-overlay);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.footer-shop h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin: 0 0 0.5rem 0;
}

.footer-shop p {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--white);
  margin: 0 0 0.75rem 0;
}

.footer-shop .footer-link {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  color: var(--white);
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--white);
  transition: all 0.1s ease;
  display: inline-block;
  background: transparent;
}

.footer-shop .footer-link:hover {
  background: var(--white);
  color: var(--black);
  transform: scale(0.95);
}

/* ============================================
   FOOTER BOTTOM (Copyright)
   ============================================ */

.footer-bottom {
  background: var(--black);
  padding: 1rem 2rem;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  margin: 0;
}

/* ============================================
   BORING LINKS
   ============================================ */

.footer-boring {
  background: var(--white);
  padding: 1.5rem 2rem;
  border-bottom: 2px solid var(--black);
}

.boring-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.boring-header h4 {
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  margin: 0;
  white-space: nowrap;
}

.boring-underline {
  flex: 1;
  height: 2px;
  background: var(--red);
}

.boring-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.boring-links li {
  margin: 0;
}

.boring-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--black);
  text-decoration: none;
  transition: color 0.1s ease;
}

.boring-links a:hover {
  color: var(--red);
  text-decoration: underline;
}

/* ============================================
   GIRL POWER CREDIT
   ============================================ */

.girl-power-credit {
  background: var(--black);
  padding: 0.75rem 1.5rem;
  text-align: center;
}

.girl-power-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
  background-color: black;
}

.girl-power-text {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 0.8rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  color: #ff69b4; /* Hot pink! */
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.girl-power-gif {
  height: 30px;
  width: auto;
  display: block;
}

/* ============================================
   MOBILE OVERRIDES (max-width: 1079px)
   ============================================ */

@media screen and (max-width: 1079px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-support p {
    max-width: 70%;
  }

  .footer-radio,
  .footer-newsletter,
  .footer-tip,
  .footer-support,
  .footer-shop {
    height: auto;
    min-height: 160px;
    padding: 1.25rem;
    border: 1px solid var(--black);
  }

  .footer-support {
    height: 190px;
  }

  /* Radio block: preserve horizontal layout on mobile */
  .footer-radio-content {
    flex-direction: row;
    min-height: auto;
  }

  .footer-radio-text {
    padding: 0.75rem;
    text-align: left;
  }

  .footer-radio-text .footer-link {
    align-self: flex-start;
  }

  .footer-radio-image {
    min-width: 30%;
    max-width: 40%;
    height: auto;
  }

  /* Newsletter: full width on mobile */
  .newsletter-form {
    max-width: 100%;
  }

  /* Boring links mobile */
  .footer-boring {
    padding: 1rem;
  }

  .boring-header h4 {
    font-size: 0.85rem;
  }

  .boring-links {
    gap: 0.75rem 1rem;
  }

  .boring-links a {
    font-size: 0.7rem;
  }

  .girl-power-content {
    gap: 0.5rem;
  }

  .girl-power-text {
    font-size: 0.9rem;
  }

  .girl-power-gif {
    height: 30px;
  }
}
/* ============================================
   ARTICLE PAGE
   ============================================ */


/* ----- 1. PROGRESS BAR ----- */

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--red);
  z-index: 9999;
  transition: width 0.05s linear;
}


/* ----- 2. HERO ----- */

.article__hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: flex-end;
  padding: 4rem 2rem 2rem;
  overflow: hidden;
}

.article__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0.95) 100%);
  z-index: 1;
  pointer-events: none;
}

.article__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0;
  padding-bottom: 2rem;
}

.article__meta {
  margin-bottom: 1rem;
}

.article__category {
  font-family: 'Anton', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 4px 12px;
  display: inline-block;
  rotate: -2deg;
  letter-spacing: 1px;
}

.article__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.article__excerpt {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.5rem;
  max-width: 650px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

.article__byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.article__author-name {
  color: var(--white);
  font-weight: 600;
}

.article__author-handle {
  color: var(--lime);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.1s ease;
}

.article__author-handle:hover {
  color: var(--yellow);
}

.article__meta-separator {
  color: rgba(255, 255, 255, 0.3);
}

.article__updated {
  color: rgba(255, 255, 255, 0.3);
}


/* ----- 3. DIVIDER ----- */

.article__divider-white {
  height: 3px;
  background: var(--white);
  width: 100%;
}


/* ----- 4. CONTENT + SIDEBAR ROW ----- */

.article__row-top {
  display: flex;
  gap: 3rem;
  background: var(--white);
  padding: 3rem 2rem 1.5rem;
  align-items: stretch;
}

.article__main {
  flex: 1;
  min-width: 0;
}

.article__body {
  padding: 0;
}

.article__content {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 875px;
  margin: 0;
  padding-left: 0.5rem;
  color: var(--black);
}


/* ----- 5. CONTENT TYPOGRAPHY ----- */

.article__content h2 {
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

#DNTN {
  font-family: 'Anton', sans-serif;
  color: white;
  padding: 2px 4px;
  margin-left: 0.2rem;
  margin-right: 0.2rem;
  letter-spacing: 0.1rem;
  background-color: black;
}

.article__content h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  margin-bottom: 1rem;
}

.article__content p {
  margin-bottom: 1.25rem;
}

.article__content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.1s ease;
}

.article__content a:hover {
  color: var(--black);
}

.article__content blockquote {
  font-family: 'Special Elite', monospace;
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--yellow);
  color: var(--black);
  background: #f5f5f2;
}

.article__content blockquote p:last-child {
  margin-bottom: 0;
}

.article__content ul,
.article__content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.article__content li {
  margin-bottom: 0.5rem;
}


/* ----- 6. IMAGES ----- */

.article__content img {
  max-width: 100%;
  height: auto;
  border: 2px solid var(--black);
  margin: 1.5rem auto;
  display: block;
}

.article__content figure {
  margin: 1.5rem auto;
  max-width: 100%;
}

.article__content figure img {
  margin: 0;
}

.article__content figcaption {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #666;
  text-align: left;
  margin-top: 0.25rem;
  padding-left: 0.75rem;
  border-left: 2px solid var(--yellow);
}


/* ----- 7. VIDEOS / IFRAMES ----- */

.article__content iframe {
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 2px solid var(--black);
  display: block;
  margin: 1.5rem auto;
}


/* ----- 8. INLINE ADS ----- */

.inline-ad {
  width: 100%;
  max-width: 600px;
  margin: 1.5rem auto;
  aspect-ratio: 5 / 1;
  position: relative;
  overflow: hidden;
  background: var(--dark-gray);
  border: 3px solid var(--black);
  transition: border-color 0.1s ease;
}

.inline-ad:hover {
  border-color: var(--red);
}

.inline-ad-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
}


/* ----- 9. AD STICKER ----- */

.ad-sticker {
  position: absolute;
  top: -8px;
  left: -8px;
  background: var(--red);
  color: var(--white);
  font-family: 'Anton', sans-serif;
  font-size: 0.55rem;
  padding: 5px 10px;
  letter-spacing: 1px;
  rotate: -5deg;
  z-index: 5;
  pointer-events: none;
}


/* ----- 10. SIDEBAR ADS ----- */

.article__ad-sidebar {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.side-ad-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--black);
  border: 3px solid var(--black);
  transition: border-color 0.1s ease;
}

.side-ad-wrapper:hover {
  border-color: var(--red);
}

.side-ad-wrapper p {
  font-family: 'Special Elite', monospace;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 1.5px;
  color: var(--white);
  margin: 0;
  padding: 0.5rem;
  width: 100%;
}

.side-ad {
  width: 100%;
  aspect-ratio: 1 / 2;
  position: relative;
  background: var(--dark-gray);
  border: 2px solid var(--white);
}

.side-ad-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
}


/* ----- 11. NEWSLETTER + TRENDING ROW ----- */

.article__row-bottom {
  display: flex;
  background: var(--dark-gray);
  align-items: stretch;
}


/* ----- 12. NEWSLETTER ----- */

.article__newsletter {
  flex: 1;
  background: var(--yellow);
  border: 3px solid var(--black);
  padding: 1.5rem;
  margin: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 6px 6px 0 var(--black);
  position: relative;
  overflow: hidden;
}

.article__newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--grunge-overlay);
  background-size: cover;
  background-position: center;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

.newsletter-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.newsletter-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.newsletter-sticker {
  font-size: 1.5rem;
  rotate: -5deg;
  opacity: 0.7;
  flex-shrink: 0;
}

.article__newsletter h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  margin: 0;
  text-align: center;
}

.newsletter-body {
  flex: 1;
  margin-bottom: 0.5rem;
}

.newsletter-body p {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: clamp(1rem, 1.5cqi, 1.3rem);
  line-height: 1.4;
  color: var(--black);
  margin: 0 0 0.5rem 0;
}

.newsletter-body p:last-child {
  margin-bottom: 0;
}

.newsletter-footer {
  border-top: 2px solid var(--black);
  padding-top: 1.25rem;
  margin-top: 0.25rem;
}

.newsletter-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.article__newsletter-form {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.article__newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.7rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  outline: none;
}

.article__newsletter-form input[type="email"]:focus {
  border-color: var(--red);
}

.article__newsletter-form button {
  padding: 0.7rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 1px;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  cursor: pointer;
  transition: all 0.1s ease;
  white-space: nowrap;
}

.article__newsletter-form button:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.newsletter-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-instagram {
  color: white;
  background-image: url('/images/ui/decorations/black-grid.png');
  background-size: cover;
  background-position: center;
  text-decoration: none;
  padding: 0.2rem 0.5rem;
  border-style: solid;
  border-color: white;
  border-width: 2px 4px;
  font-size: 0.9rem;
  font-weight: bold;
  transition: color 0.1s ease;
}

.newsletter-instagram:hover {
  color: var(--red);
}

.newsletter-divider {
  color: rgba(0, 0, 0, 0.3);
}

.newsletter-archive {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.1s ease;
}

.newsletter-archive:hover {
  color: var(--red);
}


/* ----- 13. TRENDING ----- */

.article__trending {
  flex: 1;
  max-width: 500px;
  flex-shrink: 0;
  background-color: var(--white);
  border-top: 2px solid var(--black);
  margin: 1.5rem 1.5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
}

.article__trending .trending-header {
  padding-left: 0.5rem;
  padding-top: 0.5rem;
}

.article__trending .trending-header h2 {
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin: 5px 0;
}

.article__trending .trending-divider {
  height: 2px;
  background: var(--black);
  width: 100%;
}

.article__trending .trending-list {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article__trending .trending-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  border-top: 1.8px solid var(--black);
  padding-left: 0.5rem;
  transition: transform 0.1s ease;
  height: 100%;
}

.article__trending .trending-item:first-child {
  border-top: none;
}

.article__trending .trending-item:hover {
  transform: translateX(-3px);
}

.article__trending .trending-item:hover .trending-number {
  color: var(--red);
}

.article__trending .trending-number {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--black);
  min-width: 50px;
  text-align: center;
  letter-spacing: 0.5px;
}

.article__trending .trending-content {
  flex: 1;
}

.article__trending .trending-category {
  font-family: 'Anton', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article__trending .trending-title {
  font-family: 'Anton', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.article__trending .trending-image {
  width: 35%;
  flex-shrink: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.article__trending .trending-image[data-color="var(--red)"] {
  background: var(--red);
}
.article__trending .trending-image[data-color="var(--yellow)"] {
  background: var(--yellow);
}
.article__trending .trending-image[data-color="var(--lime)"] {
  background: var(--lime);
}
.article__trending .trending-image[data-color="var(--cyan)"] {
  background: var(--cyan);
}

.article__trending .trending-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(175%);
  opacity: 0.8;
  transition: opacity 0.2s ease, filter 0.2s ease;
  mix-blend-mode: multiply;
}

.article__trending .trending-item:hover .trending-image img {
  opacity: 1;
  filter: grayscale(0%) contrast(100%);
  mix-blend-mode: normal;
}

.article__trending .trending-button {
  display: block;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  font-size: 0.8rem;
  padding: 17px;
  text-decoration: none;
  transition: all 0.1s ease;
  width: 100%;
  rotate: 0deg;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.article__trending .trending-button:hover {
  background: var(--black);
  color: var(--yellow);
}


/* ----- 14. SHARE + HAT (inside main column) ----- */

.article__share-hat {
  max-width: 875px;
  margin: 0.5rem auto auto auto;
}

.article__share {
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
}

/* ----- SOCIAL ICONS (unified) ----- */

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-links img {
  width: 60%;
  display: block;
}

.social-links svg {
  width: 20px;
  height: 20px;
  display: block;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s ease;
  border-radius: 0.3rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.social-icon:hover {
  transform: scale(1.05);
}

/* Brand colors */
.social-icon.email     { background: #333; }
.social-icon.copy      { background: #666; }
.social-icon.instagram { background: #E1306C; }
.social-icon.discord   { background: #5865F2; }
.social-icon.facebook  { background: #1877F2; }
.social-icon.youtube   { background: #FF0033; }

/* Hover states */
.social-icon.email:hover     { background: #555; }
.social-icon.copy:hover      { background: #888; }
.social-icon.instagram:hover { background: #c13544; }
.social-icon.discord:hover   { background: #4752c4; }
.social-icon.facebook:hover  { background: #1664d8; }
.social-icon.youtube:hover   { background: #e6002e; }

/* Copy button success state */
.social-icon.copy.copied {
  background: var(--lime);
}
.social-icon.copy.copied svg {
  stroke: var(--black);
}


/* ----- 15. MAGIC TIP HAT ----- */

.article-hat-section {
  text-align: center;
  max-width: 600px;
  margin: 0.5rem auto 1.5rem;
  border-top: 3px dashed var(--black);
  padding-top: 1rem;
}

.article-hat-section .hat-label {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

/* ===== HAT BASE ===== */
.hat-scene {
  position: relative;
  width: 140px;
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  margin: 0 auto;
}

.hat {
  font-size: 5rem;
  line-height: 1;
  z-index: 2;
  position: relative;
  user-select: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transform: rotate(180deg);
  transform-origin: bottom center;
  transition: transform 0.7s cubic-bezier(0.34, 1.2, 0.64, 1);
}

/* ===== IDLE RUMBLE ===== */
.hat-scene.idle .hat {
  animation: idleRumble 2.5s ease-in-out infinite;
}

@keyframes idleRumble {
  0%, 50%, 100% { transform: rotate(180deg) rotate(0deg); }
  10% { transform: rotate(180deg) rotate(-3deg); }
  20% { transform: rotate(180deg) rotate(3deg); }
  30% { transform: rotate(180deg) rotate(-2deg); }
  40% { transform: rotate(180deg) rotate(2deg); }
}

/* ===== STATES ===== */
.hat-scene.flipping .hat {
  animation: none;
  transform: rotate(0deg) translateY(-12px);
}

.hat-scene.shaking .hat {
  animation: shakeDown 0.6s ease-in-out 2;
  transition: none;
}

@keyframes shakeDown {
  0%, 50%, 100% { transform: rotate(0deg) translateY(0); }
  25%, 75% { transform: rotate(0deg) translateY(14px); }
}

.hat-scene.dropped .hat {
  animation: none;
  transform: rotate(0deg) translateY(-4px);
  transition: transform 0.3s ease;
}

/* ===== BUTTON (grows out of hat) ===== */
.tip-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.01);
  background: #fbf307;
  color: #0A0A0A;
  font-family: 'Anton', 'Impact', Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.6rem 1.6rem;
  border: 3px solid #0A0A0A;
  border-radius: 30px;
  box-shadow: 4px 4px 0 #0A0A0A;
  text-decoration: none;
  white-space: nowrap;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: none;
}

.tip-button:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 6px 6px 0 #0A0A0A;
  background: #ffffff;
}

.hat-scene.dropped .tip-button {
  animation: buttonGrow 0.8s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
  pointer-events: auto;
}

@keyframes buttonGrow {
  0% { transform: translate(-50%, -50%) scale(0.01); opacity: 0; }
  100% { transform: translate(-50%, 0%) scale(1); opacity: 1; }
}

/* ===== HEART BURST ===== */
.heart-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
  overflow: visible;
}

.heart {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
}

@keyframes heartBurst {
  0% { opacity: 0; transform: translate(0, 0) scale(0.3) rotate(0deg); }
  15% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(1.2) rotate(var(--rot)); }
}


/* ----- 16. FOOTER NAV (separate block) ----- */

.article__footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap; /* ← FORCE NO WRAPPING */
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem 1rem 1.5rem;
  border-top: 2px solid var(--black);
}

.article__back,
.article__category-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  padding: 0.5rem 1rem;
  border: 2px solid;
  text-decoration: none;
  transition: all 0.1s ease;
  white-space: nowrap; /* ← PREVENTS TEXT WRAPPING */
  flex-shrink: 0; /* ← PREVENTS BUTTONS FROM SHRINKING */
}

.article__back {
  color: var(--black);
  border-color: var(--black);
}

.article__back:hover {
  background: var(--black);
  color: var(--white);
}

.article__category-link {
  color: var(--red);
  border-color: var(--red);
}

.article__category-link:hover {
  background: var(--red);
  color: var(--white);
}


/* ----- 17. MOBILE (max-width: 1079px) ----- */

@media screen and (max-width: 1079px) {
  .article__hero {
    min-height: 60vh;
    padding: 2rem 1rem 1.5rem;
  }

  .article__hero-content {
    max-width: 100%;
  }

  .article__title {
    font-size: 2.8rem;
  }

  .article__excerpt {
    max-width: 100%;
  }

  .article__row-top {
    flex-direction: column;
    padding: 1.5rem 1rem;
  }

  .article__ad-sidebar {
    display: none;
  }

  .article__content {
    font-size: 1rem;
    max-width: 100%;
    padding: 0 1rem;
  }

  .article__content blockquote {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
  }

  .inline-ad {
    max-width: 100%;
  }

  .article__row-bottom {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }

  .article__newsletter {
    margin: 1rem;
    padding: 1rem 2rem;
    box-shadow: 4px 4px 0 var(--black);
  }

  .article__newsletter h3 {
    font-size: 1.4rem;
  }

  .newsletter-body p {
    font-size: 1rem;
  }

  .newsletter-header {
    gap: 0.5rem;
  }

  .newsletter-sticker {
    font-size: 1.2rem;
  }

  .article__newsletter-form {
    max-width: 100%;
  }

  .newsletter-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .newsletter-divider {
    display: none;
  }

  .article__trending .trending-item {
    height: 125px;
  }

  .article__trending {
    max-width: 100%;
    margin: 0;
    margin-bottom: 1rem;
    border-top: 2px solid var(--black);
  }

  .article__share-hat {
    margin: auto;
    width: 100%;
    max-width: 100%;
  }

  .article__share {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .social-links {
    gap: 12px;
    justify-content: center;
  }

  .social-icon {
    width: 45px;
    height: 45px;
  }

  .social-links img {
    width: 55%;
  }

  .social-links svg {
    width: 18px;
    height: 18px;
  }

  /* ===== FOOTER NAV - FORCE ONE LINE ON MOBILE ===== */
  .article__footer-nav {
    flex-direction: row !important; /* ← FORCE ROW */
    flex-wrap: nowrap !important; /* ← FORCE NO WRAPPING */
    justify-content: space-between;
    padding: 1rem 0.5rem;
    gap: 0.5rem;
  }

  .article__back,
  .article__category-link {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
}
/* ============================================
   CATEGORY PAGE
   ============================================ */


/* ----- 1. CATEGORY HERO ----- */


.category-page {
  background-image: var(--grid-paper);
  background-size: 200px;
  background-position: center;
  background-repeat: repeat;
}

.category-hero {
  position: relative;
  width: 100%;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  overflow: hidden;
}

.category-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 20%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.category-hero-texture {
  position: absolute;
  inset: 0;
  background-image: var(--grunge-overlay);
  background-size: 100% 100%;
  background-position: center;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.category-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  text-align: center;
  padding: 2rem 0;
}

.category-hero-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.category-hero-sticker {
  font-size: 2rem;
  rotate: -5deg;
  opacity: 0.7;
  color: var(--white);
  flex-shrink: 0;
}

.category-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  margin: 0;
  rotate: -1deg;
}

.category-description-wrapper {
  width: 90%;
  max-width: 850px;
  margin: 0 auto 1.5rem auto;
  text-align: left;
  padding: 0 1rem;
}

.category-description {
  font-family: 'Special Elite', 'Courier New', monospace;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
  font-size: clamp(1.1rem, 1.2vw, 1.3rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 400;
}

.category-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.category-count {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.5);
  padding: 0.3rem 1.2rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.category-page-indicator {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.3);
  padding: 0.3rem 1rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}


/* ----- 2. DIVIDER ----- */

.category-divider {
  height: 3px;
  background: var(--black);
  width: 100%;
}


/* ----- 3. GRID WRAPPER ----- */

.category-grid-wrapper {
  padding: 2rem 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}


/* ----- 4. FEATURED POST ----- */

.category-featured {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid var(--black);
}

.category-featured .card--hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 2px solid var(--black);
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--black);
  background: var(--white);
}

.category-featured .card--hero .card__link {
  display: contents;
  text-decoration: none;
  color: inherit;
}

.category-featured .card--hero .card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dark-gray);
  margin: 0;
}

.category-featured .card--hero .card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(120%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.category-featured .card--hero:hover .card__image img {
  filter: grayscale(0%) contrast(100%);
  transform: scale(1.02);
}

.category-featured .card--hero .card__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-featured .card--hero .card__category {
  font-family: 'Anton', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--red);
  color: var(--white);
  padding: 4px 12px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 0.75rem;
}

.category-featured .card--hero .card__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 0.75rem 0;
}

.category-featured .card--hero .card__title a {
  color: var(--black);
  text-decoration: none;
}

.category-featured .card--hero .card__title a:hover {
  color: var(--red);
}

.category-featured .card--hero .card__excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0 0 1rem 0;
}

.category-featured .card--hero .card__date {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #999;
}


/* ----- 5. POSTS GRID ----- */

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
}

.category-grid-item {
  display: flex;
}

.category-grid .card {
  border: 2px solid var(--black);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--black);
}

.category-grid .card .card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.category-grid .card:hover {
  transform: translateY(-6px);
  box-shadow: 6px 8px 0 var(--red);
}

.category-grid .card .card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--dark-gray);
  flex-shrink: 0;
  margin: 0;
}

.category-grid .card .card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(120%);
  transition: filter 0.25s ease;
}

.category-grid .card:hover .card__image img {
  filter: grayscale(0%) contrast(100%);
}

.category-grid .card .card__content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.category-grid .card .card__title {
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 0.4rem 0;
}

.category-grid .card .card__title a {
  color: var(--black);
  text-decoration: none;
}

.category-grid .card .card__title a:hover {
  color: var(--red);
}

.category-grid .card .card__date {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: #999;
  margin-bottom: 0.5rem;
}

.category-grid .card .card__excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #666;
  margin: 0;
  flex: 1;
}


/* ----- 6. PAGINATION ----- */

.category-pagination {
  background: var(--white);
  background-image: var(--grid-paper);
  background-size: 150px;
  background-position: center;
  background-repeat: repeat;
  padding: 0 0 3rem 0;
  border-top: 2px solid var(--black);
}

.category-pagination-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
}

.category-pagination-prev,
.category-pagination-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border: 2px solid var(--black);
  text-decoration: none;
  color: var(--black);
  transition: all 0.1s ease;
  background: var(--white);
}

.category-pagination-prev:hover,
.category-pagination-next:hover {
  background: var(--black);
  color: var(--white);
}

.category-pagination-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  width: 40px;
  height: 40px;
  border: 2px solid var(--black);
  text-decoration: none;
  color: var(--black);
  transition: all 0.1s ease;
  background: var(--white);
}

.category-pagination-number:hover {
  background: var(--black);
  color: var(--white);
}

.category-pagination-number.active {
  border-color: var(--black);
  color: var(--white);
}


/* ----- 7. CATEGORY FOOTER NAV ----- */

.category-footer-nav {
  background: var(--white);
  background-image: var(--grid-paper);
  background-size: 150px;
  background-position: center;
  background-repeat: repeat;
  padding: 1.5rem 2rem 3rem;
  border-top: 2px solid var(--black);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.category-footer-nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--black);
  text-decoration: none;
  color: var(--black);
  transition: all 0.1s ease;
  display: inline-block;
  background: var(--white);
}

.category-footer-nav a:hover {
  background: var(--black);
  color: var(--white);
}


/* ----- 8. MOBILE (max-width: 1079px) ----- */

@media screen and (max-width: 1079px) {
  .category-hero {
    min-height: 35vh;
    padding: 2rem 1rem;
  }

  .category-title {
    font-size: 2.8rem;
  }

  .category-hero-sticker {
    font-size: 1.2rem;
  }

  .category-hero-header {
    gap: 0.5rem;
  }

  .category-description-wrapper {
    padding: 0;
  }

  .category-description {
    font-size: 0.95rem;
  }

  .category-meta {
    gap: 0.75rem;
  }

  .category-count {
    font-size: 0.7rem;
  }

  .category-page-indicator {
    font-size: 0.6rem;
  }

  .category-grid-wrapper {
    padding: 1.5rem 1rem 0;
  }

  .category-featured {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }

  .category-featured .card--hero {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .category-featured .card--hero .card__image {
    aspect-ratio: 16 / 10;
  }

  .category-featured .card--hero .card__content {
    padding: 1.5rem;
  }

  .category-featured .card--hero .card__title {
    font-size: 1.5rem;
  }

  .category-featured .card--hero .card__excerpt {
    font-size: 0.9rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 2rem;
  }

  .category-pagination {
    padding: 0 0 2rem 0;
  }

  .category-pagination-links {
    flex-wrap: wrap;
    gap: 0.4rem;
    padding-top: 1.5rem;
  }

  .category-pagination-number {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }

  .category-pagination-prev,
  .category-pagination-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .category-footer-nav {
    padding: 1.5rem 1rem 2rem;
  }
}
/* ============================================
   CELEBRATION BANNER — DNTN ZINE STYLE
   ============================================ */

.banner-card {
  width: 100%;
  min-height: 550px;
  height: 550px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}

.banner-card.flipped {
  transform: rotateX(180deg);
}

.banner-front::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--grid-paper);
  background-size: 700px;
  background-position: center;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.banner-front,
.banner-back {
  position: relative;
  width: 100%;
  height: 550px;
  min-height: 550px;
  backface-visibility: hidden;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* ===== PARTY STREAMER BORDER ===== */

.celebration-banner {
  border-bottom: 6px solid transparent;
  border-image: repeating-linear-gradient(
    45deg,
    #ff0c10 0px, #ff0c10 15px,
    #fbf307 15px, #fbf307 30px,
    #b1fe00 30px, #b1fe00 45px,
    #0079f8 45px, #0079f8 60px,
    #ff0c10 60px, #ff0c10 75px
  ) 6;
}

/* ===== FRONT CARD — BALLOONS ===== */

.banner-front {
  background: var(--yellow);
  color: #0A0A0A;
  transform: rotateX(0deg);
  overflow: hidden;
  position: relative;
}

/* Balloon container */
.banner-front .balloons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Individual balloons */
.banner-front .balloon {
  position: absolute;
  font-size: 4rem;
  opacity: 0;
  animation: floatUp linear infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.banner-front .balloon:nth-child(1) {
  left: 5%;
  animation-duration: 14s;
  animation-delay: 0s;
  font-size: 4rem;
  filter: drop-shadow(0 4px 8px rgb(78, 0, 0));
}

.banner-front .balloon:nth-child(2) {
  left: 20%;
  animation-duration: 18s;
  animation-delay: 2s;
  font-size: 5rem;
  filter: drop-shadow(0 4px 8px rgb(78, 0, 0));
}

.banner-front .balloon:nth-child(3) {
  right: 15%;
  animation-duration: 16s;
  animation-delay: 1s;
  font-size: 4.5rem;
  filter: drop-shadow(0 4px 8px rgb(78, 0, 0));
}

.banner-front .balloon:nth-child(4) {
  right: 5%;
  animation-duration: 20s;
  animation-delay: 3s;
  font-size: 3.8rem;
  filter: drop-shadow(0 4px 8px rgb(78, 0, 0));
}

.banner-front .balloon:nth-child(5) {
  left: 45%;
  animation-duration: 15s;
  animation-delay: 2.5s;
  font-size: 3.2rem;
  filter: drop-shadow(0 4px 8px rgb(78, 0, 0));
}

@keyframes floatUp {
  0% {
    transform: translateY(120%) rotate(-30deg) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
    50% {
    opacity: 0.9;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20%) rotate(-5deg) scale(1.1);
    opacity: 0;
  }
}

.banner-back {
  background: #0A0A0A;
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateX(180deg);
  overflow: hidden;
}

/* ===== BACK CARD — SUBTLE CONFETTI ===== */

.banner-back .subtle-confetti {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.banner-back .subtle-confetti .confetti-shape {
  position: absolute;
  opacity: 1;
  border-radius: 2px;
  animation: subtleFall linear infinite;
}

/* Color palette for subtle confetti */
.banner-back .subtle-confetti .confetti-shape:nth-child(1) { background: #ff0c10; width: 6px; height: 10px; left: 5%; animation-duration: 8s; animation-delay: 0s; }
.banner-back .subtle-confetti .confetti-shape:nth-child(2) { background: #fbf307; width: 8px; height: 6px; left: 15%; animation-duration: 10s; animation-delay: 1s; border-radius: 50%; }
.banner-back .subtle-confetti .confetti-shape:nth-child(3) { background: #b1fe00; width: 5px; height: 12px; left: 25%; animation-duration: 7s; animation-delay: 2s; }
.banner-back .subtle-confetti .confetti-shape:nth-child(4) { background: #0079f8; width: 7px; height: 7px; left: 35%; animation-duration: 11s; animation-delay: 0.5s; border-radius: 50%; }
.banner-back .subtle-confetti .confetti-shape:nth-child(5) { background: #ffffff; width: 10px; height: 5px; left: 45%; animation-duration: 9s; animation-delay: 1.5s; }
.banner-back .subtle-confetti .confetti-shape:nth-child(6) { background: #ff6b6b; width: 6px; height: 8px; left: 55%; animation-duration: 12s; animation-delay: 0s; border-radius: 50%; }
.banner-back .subtle-confetti .confetti-shape:nth-child(7) { background: #ffd93d; width: 8px; height: 10px; left: 65%; animation-duration: 8.5s; animation-delay: 2.5s; }
.banner-back .subtle-confetti .confetti-shape:nth-child(8) { background: #6bcb77; width: 5px; height: 8px; left: 75%; animation-duration: 10.5s; animation-delay: 1s; border-radius: 50%; }
.banner-back .subtle-confetti .confetti-shape:nth-child(9) { background: #4d96ff; width: 7px; height: 7px; left: 85%; animation-duration: 7.5s; animation-delay: 2s; }
.banner-back .subtle-confetti .confetti-shape:nth-child(10) { background: #ff85b3; width: 6px; height: 11px; left: 95%; animation-duration: 9.5s; animation-delay: 0.5s; }
.banner-back .subtle-confetti .confetti-shape:nth-child(11) { background: #ff9f43; width: 8px; height: 6px; left: 10%; animation-duration: 13s; animation-delay: 3s; }
.banner-back .subtle-confetti .confetti-shape:nth-child(12) { background: #00d2d3; width: 5px; height: 9px; left: 40%; animation-duration: 8.2s; animation-delay: 1.8s; border-radius: 50%; }

@keyframes subtleFall {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 1;
  }
  10% {
    opacity: 0.8;
  }
  70% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(calc(100vh + 100px)) rotate(720deg);
    opacity: 0.1;
  }
}

.banner-content {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

/* ===== TYPOGRAPHY ===== */

.banner-title {
  font-family: 'Anton', 'Impact', Arial, sans-serif;
  font-size: 4rem;
  text-transform: uppercase;
  text-shadow: 
    3px 3px 0 #ffffff;
  letter-spacing: 6px;
  margin: 0 0 0.75rem 0;
  line-height: 0.9;
}

.banner-back .banner-title {
  color: #efefef;
  text-shadow: 
    3px 3px 0 #ff0c10,
    6px 6px 0 #b1fe00,
    9px 9px 0 #0079f8;
  font-size: 3rem;
  rotate: -0.5deg;
}

.banner-front .banner-title {
  color: #000000;
}

.banner-body {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 1.2rem;
  line-height: 1.4;
  max-width: 980px;
  margin: 0 auto 1rem auto;
  letter-spacing: 0.3px;
}

.banner-body p {
  margin: 0 0 0.6rem 0;
}

.banner-front .banner-body {
  filter: drop-shadow(0 4px 8px rgba(255, 247, 0, 0.996));
}

.banner-body p:last-child {
  margin-bottom: 0;
}

.banner-back .banner-body {
  color: #ffffff;
}

.banner-back .banner-body em {
  color: #ffffff;
  font-style: italic;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  font-weight: 400;
  font-family: 'Anton', 'Impact', Arial, sans-serif;
  letter-spacing: 1px;
}

/* ===== JULY 1ST — LIME GREEN STICKER ===== */

.banner-front .date-sticker {
  display: inline-block;
  font-family: 'Anton', 'Impact', Arial, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #0A0A0A;
  background: #b1fe00;
  padding: 4px 6px;
  border: 3px solid #0A0A0A;
  rotate: -5deg;
  box-shadow: 6px 6px 0 #0A0A0A;
  letter-spacing: 2px;
}

/* ===== CONFETTI BUTTON WITH STREAMER BACKGROUND ===== */

.confetti-button {
  background-color: black;
  color: #ffffff;
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  border: 4px solid transparent;
  border-image: repeating-linear-gradient(
    45deg,
    #ff0c10 0px, #ff0c10 8px,
    #fbf307 8px, #fbf307 16px,
    #b1fe00 16px, #b1fe00 24px,
    #0079f8 24px, #0079f8 32px,
    #ff0c10 32px, #ff0c10 40px
  ) 4;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.5px;
  box-shadow: 8px 8px 0 #0A0A0A;
}

.confetti-button:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 8px 8px 0 #0A0A0A;
}

/* ===== BACK SIDE ACTIONS ===== */

.banner-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.banner-newsletter-form {
  display: flex;
  gap: 0;
  max-width: 400px;
  width: 100%;
  border: 2px solid #ffffff;
}

.banner-newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.6rem 1rem;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  border: none;
  background: #1a1a1a;
  color: #ffffff;
  outline: none;
}

.banner-newsletter-form input[type="email"]::placeholder {
  color: #888888;
}

.banner-newsletter-form input[type="email"]:focus {
  background: #222222;
}

.banner-newsletter-form button {
  padding: 0.6rem 1.5rem;
  font-family: 'Anton', 'Impact', Arial, sans-serif;
  font-weight: lighter;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2.5px;
  background: #fbf307;
  color: #0A0A0A;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.banner-newsletter-form button:hover {
  background: #ff0c10;
  color: #ffffff;
}

.banner-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 1rem 1.2rem;
  border: 2px solid #ffffff;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
  border-radius: 5px;
}

.banner-instagram-link:hover {
  background: #ffffff;
  color: #0a0a0a;
}

.banner-instagram-link:hover .banner-ig-icon {
  filter: brightness(0);
}

.banner-ig-icon {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0) invert(1);
}

.banner-instagram-link:hover .banner-ig-icon {
  filter: brightness(0);
}

/* ============================================
   CONFETTI PIECES
   ============================================ */

.confetti-piece {
  position: fixed;
  top: -20px;
  pointer-events: none;
  z-index: 99999;
  transition: none;
  animation: confettiFall var(--duration, 3s) ease-in var(--delay, 0s) forwards;
}

@keyframes confettiFall {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) rotate(720deg) scale(0.3);
    opacity: 0;
  }
}

/* ============================================
   BANNER ACTIONS ROW
   ============================================ */

.banner-actions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* ===== CONFETTI AGAIN BUTTON — STREAMER BORDER ===== */

.banner-confetti-again {
  background: transparent;
  color: #ffffff;
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  border: 4px solid transparent;
  border-image: repeating-linear-gradient(
    45deg,
    #ff0c10 0px, #ff0c10 8px,
    #fbf307 8px, #fbf307 16px,
    #b1fe00 16px, #b1fe00 24px,
    #0079f8 24px, #0079f8 32px,
    #ff0c10 32px, #ff0c10 40px
  ) 4;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.banner-confetti-again:hover {
  background: #ffffff;
  color: #0A0A0A;
  border-image: none;
  border: 4px solid #ffffff;
}

.banner-confetti-again .confetti-subtext {
  font-size: 0.6rem;
  opacity: 0.6;
  display: block;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  letter-spacing: 0.5px;
}

.banner-confetti-again:hover .confetti-subtext {
  opacity: 1;
}

/* ============================================
   MOBILE RESPONSIVE (max-width: 1079px)
   ============================================ */

@media screen and (max-width: 1079px) {
  .banner-front,
  .banner-back {
    padding: 1rem 0.5rem;
    min-height: 850px;
    height: 850px;
  }

  .banner-back {
    line-height: 0.5rem;
  }

  .banner-card {
    min-height: 850px;
    height: 850px;
  }

  .banner-title {
    font-size: 3rem;
    letter-spacing: 3px;
  }

  .banner-back .banner-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  .banner-body {
    font-size: 1.2rem;
    max-width: 100%;
  }

  .banner-front .date-sticker {
  display: inline-block;
  font-family: 'Anton', 'Impact', Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: #0A0A0A;
  background: #b1fe00;
  padding: 4px 4px;
  margin-bottom: 10px;
  margin-right: 5px;
  border: 3px solid #0A0A0A;
  rotate: -5deg;
  box-shadow: 3 3px 0 #0A0A0A;
  letter-spacing: 2px;
}

  .banner-front .banner-body {
    font-size: 1.2rem;
    padding: 0.7rem;
  }

  .banner-front .banner-title::before,
  .banner-front .banner-title::after,
  .banner-back .banner-title::before,
  .banner-back .banner-title::after {
    display: none;
  }

  .banner-newsletter-form {
    flex-direction: column;
    border: 2px solid #ffffff;
  }

  .banner-newsletter-form input[type="email"] {
    width: 100%;
    border-bottom: 1px solid #333333;
  }

  .banner-newsletter-form button {
    width: 100%;
    padding: 0.6rem;
  }

  .confetti-button {
    font-size: 0.9rem;
    padding: 10px 20px;
    letter-spacing: 2px;
  }

  .banner-instagram-link {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .banner-actions-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .banner-confetti-again {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .banner-confetti-again .confetti-subtext {
    font-size: 0.55rem;
  }
}
/* ============================================
   ACCESSIBILITY PAGE
   ============================================ */

.accessibility-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 3rem 1.5rem;
  background: var(--white);
}

.accessibility-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--black);
}

.accessibility-content h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  font-weight: bold;
}

.accessibility-content p {
  margin-bottom: 1.5rem;
}

.accessibility-content a {
  color: var(--red);
  text-decoration: underline;
  transition: color 0.1s ease;
}

.accessibility-content a:hover {
  color: var(--black);
}

/* ============================================
   MOBILE RESPONSIVE (max-width: 1079px)
   ============================================ */

@media screen and (max-width: 1079px) {
  .accessibility-content {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .accessibility-content h1 {
    font-size: 2rem;
  }
}
/* ============================================
   BORING PAGES — Legal & Static Pages
   (Accessibility, Privacy, Terms, Corrections, Contact)
   ============================================ */

/* ----- 1. SHARED LAYOUT ----- */

.boring-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 3rem 1.5rem;
  background: var(--white);
  background-image: var(--grid-paper);
  background-size: 200px;
  background-position: center;
  background-repeat: repeat;
}

.boring-card {
  max-width: 700px;
  width: 100%;
  background: var(--white);
  border: 2px solid var(--black);
  padding: 2.5rem 2.5rem 3rem;
  box-shadow: 8px 8px 0 var(--black);
}

/* ----- 2. TYPOGRAPHY ----- */

.boring-card h1 {
  font-family: 'Anton', 'Impact', Arial, sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  margin: 0 0 0.25rem 0;
}

.boring-card .boring-date {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  color: #999;
  margin: 0 0 1.5rem 0;
}

.boring-card p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
  margin: 0 0 1.25rem 0;
}

.boring-card h2 {
  font-family: 'Anton', 'Impact', Arial, sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  margin: 1.75rem 0 0.5rem 0;
}

.boring-card ul {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
  padding-left: 1.5rem;
  margin: 0 0 1.25rem 0;
}

.boring-card ul li {
  margin-bottom: 0.25rem;
}

.boring-card blockquote {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 0.95rem;
  color: #555;
  padding: 0.75rem 1.5rem;
  margin: 1rem 0 1.25rem 0;
  border-left: 4px solid var(--yellow);
  background: #f9f9f6;
}

.boring-card a {
  color: var(--red);
  text-decoration: underline;
  transition: color 0.1s ease;
}

.boring-card a:hover {
  color: var(--black);
}

/* ----- 3. FORM ELEMENTS (Contact / Submit forms) ----- */

.boring-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.boring-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.boring-form label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
}

.boring-form input,
.boring-form textarea {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.1s ease;
}

.boring-form input:focus,
.boring-form textarea:focus {
  border-color: var(--red);
}

.boring-form textarea {
  resize: vertical;
  min-height: 120px;
}

.boring-form .form-submit {
  font-family: 'Anton', 'Impact', Arial, sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  background: var(--black);
  border: 2px solid var(--black);
  padding: 0.8rem 2rem;
  cursor: pointer;
  transition: all 0.1s ease;
  margin-top: 0.5rem;
  width: fit-content;
}

.boring-form .form-submit:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 3rem 1.5rem;
  background: var(--white);
  background-image: var(--grid-paper);
  background-size: 200px;
  background-position: center;
  background-repeat: repeat;
}

.contact-card {
  max-width: 700px;
  width: 100%;
  background: var(--white);
  border: 2px solid var(--black);
  padding: 2.5rem 2.5rem 3rem;
  box-shadow: 8px 8px 0 var(--black);
}

.contact-card h1 {
  font-family: 'Anton', 'Impact', Arial, sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  margin: 0 0 1.5rem 0;
}

/* ----- Intro ----- */

.contact-intro {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--black);
  margin: 0 0 2rem 0;
}

.contact-intro p {
  margin: 0 0 0.75rem 0;
}

.contact-intro p:last-child {
  margin-bottom: 0;
}

/* ----- Contact Sections ----- */

.contact-section {
  padding: 1.25rem 1.5rem 1.5rem;
  margin-bottom: 1.25rem;
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  transition: transform 0.1s ease;
}

.contact-section:hover {
  transform: translateY(-2px);
}

/* ----- Section Header + Tag ----- */

.contact-section-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.5rem;
}

.contact-section-tag {
  font-family: 'Anton', 'Impact', Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.2rem 1rem;
  border: 2px solid var(--black);
  display: inline-block;
}

/* ----- Fat Dashed Underline ----- */

.contact-section-underline {
  width: 100%;
  height: 2px;
  margin-bottom: 0.75rem;
  background: repeating-linear-gradient(
    90deg,
    var(--black) 0px,
    var(--black) 12px,
    transparent 12px,
    transparent 18px
  );
}

/* ----- Tag Colors (contrasting with section background) ----- */

/* Red section → Lime tag */
.contact-section--red .contact-section-tag {
  background: var(--lime);
  color: var(--black);
}

/* Black section → Yellow tag */
.contact-section--black .contact-section-tag {
  background: var(--yellow);
  color: var(--black);
}

/* Cyan section → Red tag */
.contact-section--cyan .contact-section-tag {
  background: var(--red);
  color: var(--white);
}

/* Yellow section → Black tag */
.contact-section--yellow .contact-section-tag {
  background: var(--black);
  color: var(--white);
}

/* Lime section → Black tag */
.contact-section--lime .contact-section-tag {
  background: var(--black);
  color: var(--white);
}

/* Section underline colors */
.contact-section--red .contact-section-underline {
  background: repeating-linear-gradient(
    90deg,
    var(--white) 0px,
    var(--white) 12px,
    transparent 12px,
    transparent 18px
  );
}

.contact-section--black .contact-section-underline {
  background: repeating-linear-gradient(
    90deg,
    var(--white) 0px,
    var(--white) 12px,
    transparent 12px,
    transparent 18px
  );
}

.contact-section--cyan .contact-section-underline {
  background: repeating-linear-gradient(
    90deg,
    var(--white) 0px,
    var(--white) 12px,
    transparent 12px,
    transparent 18px
  );
}

.contact-section--yellow .contact-section-underline {
  background: repeating-linear-gradient(
    90deg,
    var(--black) 0px,
    var(--black) 12px,
    transparent 12px,
    transparent 18px
  );
}

.contact-section--lime .contact-section-underline {
  background: repeating-linear-gradient(
    90deg,
    var(--black) 0px,
    var(--black) 12px,
    transparent 12px,
    transparent 18px
  );
}

/* ----- Section Colors ----- */

.contact-section--red {
  background: var(--red);
  color: var(--white);
}

.contact-section--black {
  background: var(--black);
  color: var(--white);
}

.contact-section--cyan {
  background: var(--cyan);
  color: var(--white);
}

.contact-section--yellow {
  background: var(--yellow);
  color: var(--black);
}

.contact-section--lime {
  background: var(--lime);
  color: var(--black);
}

/* ----- Body Text ----- */

.contact-section p {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.contact-section p + p {
  margin-top: 0.5rem;
}

/* ----- Notes ----- */

.contact-note {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.5rem !important;
}

.contact-section--black .contact-note {
  color: #cccccc;
}

.contact-section--yellow .contact-note {
  color: #555555;
}

.contact-section--red .contact-note {
  color: #ffcccc;
}

.contact-section--cyan .contact-note {
  color: #ccf0ff;
}

.contact-section--lime .contact-note {
  color: #2a4a00;
}

/* ----- Footer ----- */

.contact-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--black);
  text-align: center;
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 1rem;
}

.contact-footer p {
  margin: 0 0 0.5rem 0;
}

.contact-footer a {
  color: var(--red);
  text-decoration: underline;
  transition: color 0.1s ease;
  font-size: 1.5rem;
}

.contact-footer a:hover {
  color: var(--black);
}

/* ============================================
   MOBILE RESPONSIVE (max-width: 1079px)
   ============================================ */

@media screen and (max-width: 1079px) {
  .boring-card {
    padding: 1.5rem 1.25rem 2rem;
    box-shadow: 4px 4px 0 var(--black);
  }

  .boring-card h1 {
    font-size: 2rem;
  }

  .boring-card h2 {
    font-size: 1.1rem;
  }

  .boring-card p,
  .boring-card ul {
    font-size: 0.95rem;
  }

  .boring-card blockquote {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .boring-form .form-submit {
    width: 100%;
    text-align: center;
  }

  .contact-card {
    padding: 1.5rem 1.25rem 2rem;
    box-shadow: 4px 4px 0 var(--black);
  }

  .contact-card h1 {
    font-size: 2rem;
  }

  .contact-section {
    padding: 1rem 1.25rem 1.25rem;
    box-shadow: 2px 2px 0 var(--black);
  }

  .contact-section-tag {
    font-size: 0.85rem;
    padding: 0.15rem 0.75rem;
  }

  .contact-section p {
    font-size: 0.9rem;
  }

  .contact-footer {
    font-size: 0.9rem;
  }
}
/* ============================================
   MS PAINT CONTEST PAGE
   ============================================ */

/* ----- GLOBAL COMIC FONT (Comic Sans First!) ----- */
.mspaint-page,
.mspaint-why-content .mspaint-info-title,
.mspaint-why-content .mspaint-info-text p,
.mspaint-rules-toggle,
.mspaint-rules-content ul,
.mspaint-submit-btn,
.mspaint-judging-title,
.mspaint-judging-intro,
.mspaint-judging-list li,
.mspaint-gallery-title,
.mspaint-gallery-subtitle,
.mspaint-grid-item .placeholder,
.mspaint-lightbox-caption,
.mspaint-lightbox-close,
.mspaint-lightbox-prev,
.mspaint-lightbox-next {
  font-family: 'Comic Sans MS', 'Comic Sans', 'Patrick Hand', 'Chalkboard SE', 'Marker Felt', cursive, sans-serif !important;
}

/* ----- 1. PAGE WRAPPER ----- */

.mspaint-page {
  background: #d1e2e5;
  padding: 2rem 1.5rem;
  min-height: 80vh;
  display: flex;
  justify-content: center;
}

/* ----- 2. PAPER (white background) ----- */

.mspaint-paper {
  max-width: 1100px;
  width: 100%;
  background: #ffffff;
  padding: 0 0 3rem 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 2px solid #498c98;
  border-radius: 15px;
  overflow: hidden;
}

/* ----- 3. MS PAINT TOOLBAR ----- */

.mspaint-toolbar {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #d4d0c8;
  border-bottom: 3px solid #ffffff;
}

.mspaint-toolbar-image {
  width: 100%;
  height: 140px;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  image-rendering: pixelated;
}

/* ----- 4. RED BANNER ----- */

.mspaint-red-banner {
  background: #ff0c10;
  background-image: url('/images/ui/art-contest/Header.png');
  height: 375px;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 1.5rem 2rem;
  text-align: center;
}

/* ----- 5. WHY MS PAINT? (Full-width section) ----- */

.mspaint-why-section {
  padding: 2.5rem 2rem;
  background: #ffffff;
  border-bottom: 3px dashed #0A0A0A;
}

.mspaint-why-content {
  max-width: 800px;
  margin: 0 auto;
}

.mspaint-why-content .mspaint-info-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0079f8;
  text-shadow: 4px 4px 0 #fbf307;
  margin: 0 0 1rem 0;
  text-align: center;
}

.mspaint-why-content .mspaint-info-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #0A0A0A;
  margin: 0 0 1rem 0;
}

.mspaint-why-content .mspaint-info-text p:last-child {
  margin-bottom: 0;
}

.mspaint-why-content .mspaint-info-text strong {
  color: #ff0c10;
}

.mspaint-why-content .mspaint-info-text em {
  color: #0079f8;
}

/* ----- 6. WHY MS PAINT? IMAGE (full-width) ----- */

.mspaint-why-image {
  padding: 1.5rem 2rem 2rem;
  background: #ffffff;
  border-bottom: 3px dashed #0A0A0A;
  text-align: center;
}

.mspaint-why-img {
  max-width: 100%;
  height: auto;
  border: 4px solid #0A0A0A;
  box-shadow: 6px 6px 0 #0A0A0A;
  image-rendering: pixelated;
  background: #f5f5f5;
}

/* ----- 7. TWO-COLUMN LAYOUT ----- */

.mspaint-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  background: #ffffff;
  border-bottom: 3px dashed #0A0A0A;
}

/* ----- 8. LEFT COLUMN (Image) ----- */

.mspaint-col-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mspaint-example-img {
  width: 300px;
  max-width: 100%;
  height: auto;
  border: 4px solid #0A0A0A;
  box-shadow: 6px 6px 0 #0A0A0A;
  image-rendering: pixelated;
  background: #f5f5f5;
}

/* ----- 9. RIGHT COLUMN (Text) ----- */

.mspaint-col-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

/* ----- 10. RULES (Collapsible) ----- */

.mspaint-rules-wrapper {
  border: 3px solid #0A0A0A;
  background: #e6f2ff;
}

.mspaint-rules-toggle {
  width: 100%;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  background: #0079f8;
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mspaint-rules-toggle:hover {
  background: #005bb5;
}

.mspaint-toggle-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.mspaint-rules-toggle.active .mspaint-toggle-arrow {
  transform: rotate(180deg);
}

.mspaint-rules-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.mspaint-rules-content.open {
  max-height: 600px;
  padding: 1.5rem;
}

.mspaint-rules-content ul {
  font-size: 1.1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mspaint-rules-content ul li {
  padding: 0.4rem 0;
  border-bottom: 2px dashed #d4d0c8;
}

.mspaint-rules-content ul li:last-child {
  border-bottom: none;
}

.mspaint-rules-content ul li strong {
  color: #ff0c10;
}

/* ----- 11. SUBMIT BUTTON ----- */

.mspaint-submit-wrapper {
  text-align: center;
}

.mspaint-submit-btn {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
  background: #b1fe00;
  color: #0A0A0A;
  border: 4px solid #0A0A0A;
  text-decoration: none;
  transition: all 0.15s ease;
  box-shadow: 6px 6px 0 #0A0A0A;
  transform: rotate(-1deg);
  width: 100%;
  text-align: center;
}

.mspaint-submit-btn:hover {
  transform: rotate(1deg) scale(1.02);
  box-shadow: 8px 8px 0 #ff0c10;
  background: #fbf307;
}

/* ----- 12. JUDGING CRITERIA ----- */

.mspaint-judging-section {
  padding: 2rem;
  background: #ffffff;
  border-bottom: 3px dashed #0A0A0A;
}

.mspaint-judging {
  margin-bottom: 2rem;
}

.mspaint-judging-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ff0c10;
  text-shadow: 3px 3px 0 #fbf307;
  margin: 0 0 0.75rem 0;
}

.mspaint-judging-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #0A0A0A;
  margin: 0 0 0.75rem 0;
}

.mspaint-judging-intro strong {
  color: #ff0c10;
}

.mspaint-judging-intro em {
  color: #0079f8;
}

.mspaint-judging-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}

.mspaint-judging-list li {
  font-size: 1.05rem;
  line-height: 1.5;
  color: #0A0A0A;
  padding: 0.5rem 0;
  border-bottom: 2px dashed #d4d0c8;
}

.mspaint-judging-list li:last-child {
  border-bottom: none;
}

.mspaint-judging-list li strong {
  color: #0079f8;
}

/* ----- Image under Submit Button ----- */

.mspaint-submit-image {
  text-align: center;
  margin-top: 0.5rem;
}

.mspaint-submit-img {
  max-width: 100%;
  height: auto;
  border: 4px solid #0A0A0A;
  box-shadow: 4px 4px 0 #0A0A0A;
  image-rendering: pixelated;
  background: #f5f5f5;
}

/* ----- 13. FULL RULES (Collapsible) ----- */

.mspaint-rules-wrapper--full {
  margin-top: 0.5rem;
}

.mspaint-rules-wrapper--full .mspaint-rules-toggle {
  background: #ff0c10;
}

.mspaint-rules-wrapper--full .mspaint-rules-toggle:hover {
  background: #cc0000;
}

.mspaint-rules-wrapper--full .mspaint-rules-content ul li strong {
  color: #ff0c10;
}

.mspaint-rules-wrapper--full .mspaint-rules-content ul li span {
  color: #ff0c10;
}

/* ----- 14. GALLERY ----- */

.mspaint-gallery {
  padding: 2rem;
}

.mspaint-gallery-title {
  font-size: 2.2rem;
  text-align: center;
  color: #0079f8;
  text-shadow: 3px 3px 0 #fbf307;
  margin: 0 0 0.25rem 0;
}

.mspaint-gallery-subtitle {
  font-size: 1rem;
  text-align: center;
  color: #666;
  margin: 0 0 1.5rem 0;
}

.mspaint-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  padding: 0.5rem;
}

.mspaint-grid-item {
  border: 3px solid #0A0A0A;
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 4px 4px 0 #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mspaint-grid-item:hover {
  transform: scale(1.02) rotate(1deg);
  box-shadow: 6px 6px 0 #ff0c10;
}

.mspaint-grid-item img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: pixelated;
}

.mspaint-grid-item .placeholder {
  padding: 2rem 1rem;
  text-align: center;
  font-size: 1rem;
  color: #999;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

/* ----- 15. LIGHTBOX ----- */

.mspaint-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.mspaint-lightbox.active {
  display: flex;
}

.mspaint-lightbox-image {
  max-width: 90%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: auto;
  border: 4px solid #ffffff;
  image-rendering: pixelated;
}

.mspaint-lightbox-caption {
  font-size: 1.1rem;
  color: #ffffff;
  margin-top: 1rem;
  text-align: center;
}

.mspaint-lightbox-close,
.mspaint-lightbox-prev,
.mspaint-lightbox-next {
  position: absolute;
  background: #0A0A0A;
  color: #ffffff;
  border: 3px solid #ffffff;
  font-size: 1.8rem;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.mspaint-lightbox-close {
  top: 20px;
  right: 20px;
}

.mspaint-lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.mspaint-lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.mspaint-lightbox-close:hover,
.mspaint-lightbox-prev:hover,
.mspaint-lightbox-next:hover {
  background: #ff0c10;
  border-color: #ff0c10;
}

/* ----- 16. MOBILE (max-width: 1079px) ----- */

@media screen and (max-width: 1079px) {
  .mspaint-page {
    padding: 0.5rem;
  }

  .mspaint-paper {
    padding: 0 0 2rem 0;
  }

  .mspaint-toolbar-image {
    height: 60px;
  }

  .mspaint-red-banner {
    height: 150px;
  }

  .mspaint-why-section {
    padding: 1.5rem 1rem;
  }

  .mspaint-why-content .mspaint-info-title {
    font-size: 1.6rem;
  }

  .mspaint-why-content .mspaint-info-text p {
    font-size: 1rem;
  }

  .mspaint-why-image {
    padding: 1rem;
  }

  .mspaint-two-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }

  .mspaint-col-left {
    order: -1;
  }

  .mspaint-example-img {
    max-width: 80%;
    width: auto;
  }

  .mspaint-rules-toggle {
    font-size: 1.1rem;
    padding: 0.6rem 1rem;
  }

  .mspaint-rules-content ul {
    font-size: 1rem;
  }

  .mspaint-submit-btn {
    font-size: 1.2rem;
    padding: 0.6rem 1rem;
  }

  .mspaint-judging-section {
    padding: 1rem;
  }

  .mspaint-judging-title {
    font-size: 1.5rem;
  }

  .mspaint-judging-intro {
    font-size: 1rem;
  }

  .mspaint-judging-list li {
    font-size: 0.95rem;
  }

  .mspaint-gallery {
    padding: 1rem;
  }

  .mspaint-gallery-title {
    font-size: 1.6rem;
  }

  .mspaint-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
  }

  .mspaint-lightbox-image {
    max-width: 95%;
    max-height: 60vh;
  }

  .mspaint-lightbox-close,
  .mspaint-lightbox-prev,
  .mspaint-lightbox-next {
    font-size: 1.4rem;
    padding: 0.3rem 0.8rem;
  }

  .mspaint-lightbox-prev {
    left: 8px;
  }

  .mspaint-lightbox-next {
    right: 8px;
  }
}
