:root {
  --primary: #fa26a0;
  --secondary: #fff6b7;
  --brutal-1: #1a1a2e;
  --brutal-2: #00b8a9;
  --brutal-3: #ffcc29;
  --brutal-4: #fb8b24;
  --brutal-5: #f38181;
  --brutal-6: #2a363b;
  --glitch1: #fff;
  --glitch2: #fa26a0;
  --glitch3: #00b8a9;
  --glitch4: #fb8b24;
  --brutal-badge: #2a363b;
}

/* === Global Base === */
body {
  min-height: 100vh;
  background: var(--secondary);
  font-family: 'Archivo Black', 'Anton', 'Rammetto One', 'Rubik Mono One', 'Space Mono', serif, monospace;
  color: var(--brutal-1);
  overflow-x: hidden;
  position: relative;
}

/* --- Background Moving Grid / Noise --- */
.noise-overlay,
.grid-background {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 0;
}

.noise-overlay {
  background: url('/img/bg.png');
  opacity: 0.18;
  animation: noiseMove 5s linear infinite alternate;
}

@keyframes noiseMove {
  0% { background-position: 0 0; }
  100% { background-position: 100px 60px; }
}

.grid-background {
  background-image: linear-gradient(0deg,rgba(26,26,46,0.15) 1px,transparent 1px), linear-gradient(90deg,rgba(26,26,46,0.15) 1px,transparent 1px);
  background-size: 48px 48px;
  opacity: 0.22;
  animation: gridmove 18s linear infinite;
}

@keyframes gridmove {
  0% { background-position: 0 0,0 0; }
  100% { background-position: 100px 160px,60px 120px;}
}

/* === Custom Cursor === */
.custom-cursor,
.custom-cursor-dot {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: background 0.2s, border 0.2s;
}
.custom-cursor {
  width: 44px; height: 44px;
  background: rgba(250,38,160, 0.12);
  border: 3px solid var(--primary);
  border-radius: 20px;
  mix-blend-mode: multiply;
  filter: blur(1.5px);
}
.custom-cursor-dot {
  width: 8px; height: 8px;
  background: var(--brutal-6);
  border-radius: 50%;
  border: 1.5px solid var(--primary);
}

/* === Navbar & Mobile === */
.brutal-navbar {
  background: var(--brutal-5);
  color: var(--brutal-1);
  font-family: "Rubik Mono One", "Archivo Black", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 2px;
  position: sticky; top: 0; width: 100%; z-index: 20;
  box-shadow: 0 8px var(--primary);
}

.brutal-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.brutal-brand {
  font-family: "Anton", "Archivo Black", sans-serif;
  font-size: 2.1rem;
  color: var(--brutal-2);
  transition: color .2s;
  letter-spacing: 1.5px;
  text-shadow: 2px 3px 0 var(--primary);
  cursor: pointer;
}
.brutal-brand:hover { color: var(--glitch2); }

.brutal-nav-links {
  display: flex;
  gap: 2vw;
  margin-bottom: 0;
  align-items: center;
  list-style: none; /* Pastikan tidak ada bullet points */
  padding-left: 0; /* Reset padding default */
}

.brutal-nav-link {
  color: var(--brutal-6);
  padding: 0.4em 1.2em;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Rubik Mono One", "Archivo Black", sans-serif;
  position: relative;
  transition: background 0.16s, color 0.16s;
  z-index: 1;
}
.brutal-nav-link.active,
.brutal-nav-link:hover {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 2px 0 var(--brutal-3);
  font-style: italic;
}
.glitch-hover:hover {
  animation: glitch 0.48s steps(2,end) alternate;
}

@keyframes glitch {
  0%,100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(2px, -2px); }
  60% { transform: translate(-2px, -2px); }
  80% { transform: translate(2px, 2px); }
}

/* === Mobile Navbar === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px; right: 18px;
  z-index: 1002;
  width: 48px; height: 48px;
  background: var(--primary);
  border: none;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  box-shadow: 0 3px 0 var(--brutal-3);
}
.mobile-menu-toggle span {
  display: block;
  background: #fff;
  height: 4px; width: 28px;
  border-radius: 2px;
  transition: .25s;
}

@media (max-width: 991px) {
  .brutal-nav-links {
    flex-direction: column;
    background: var(--primary);
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100vw;
    padding-top: 80px;
    padding-bottom: 32px;
    gap: 1.5rem;
    z-index: 999;
    transform: translateY(-120%);
    transition: transform 0.5s cubic-bezier(.67,-0.55,.27,1.55);
    box-shadow: 0 24px 0 var(--brutal-4);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    margin-top: 0;
    align-items: flex-start;
  }
  .brutal-nav-links.show {
    transform: translateY(0);
  }
  .brutal-nav-link {
    width: 100vw;
    text-align: left;
    color: var(--secondary);
    font-size: 1.3rem;
    padding-left: 32px;
    border-radius: 0 24px 24px 0;
    font-family: "Rubik Mono One", "Archivo Black", sans-serif;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Hamburger to X animation */
.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* === Header, Badge, Glitch, Animations === */
.brutal-header {
  background: linear-gradient(90deg, var(--primary) 70%, var(--brutal-3) 100%);
  color: var(--secondary);
  position: relative;
  letter-spacing: 2px;
  border-bottom: 8px solid var(--brutal-2);
  box-shadow: 0 10px 0 0 var(--brutal-3);
  margin-bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.header-grid-lines {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 70px, rgba(255,255,255,0.14) 72px, transparent 73px
  );
  opacity: 0.15;
  z-index: 0;
  animation: linesmove 4s linear infinite;
}
@keyframes linesmove {
  0% { background-position: 0 0;}
  100% { background-position: 120px 0;}
}

.header-content {
  position: relative;
  z-index: 2;
}

.mega-title {
  font-family: 'Rubik Glitch', 'Archivo Black', 'Anton', 'Rammetto One', monospace;
  font-size: clamp(2.8rem, 9vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 7px;
  font-weight: bold;
  text-shadow: 4px 3px 0 var(--brutal-6), 7px 6px 0 var(--primary), 0 0 24px var(--brutal-2);
  position: relative;
  margin-top: 0.5em;
  margin-bottom: 0.2em;
  cursor: pointer;
  user-select: none;
  animation: glitch 1.2s infinite alternate-reverse;
}
.glitch-title {
  position: relative;
}

.glitch-title::after,
.glitch-title::before {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 0;
  opacity: 0.7;
  mix-blend-mode: lighten;
  pointer-events: none;
}

.glitch-title::after {
  color: var(--glitch3);
  left: 3px; top: 2px;
  z-index: 2;
  text-shadow: -2px 2px var(--glitch2);
  animation: glitchTitleAfter 1.4s infinite alternate-reverse;
}

.glitch-title::before {
  color: var(--glitch4);
  left: -4px; top: -3px;
  z-index: 1;
  text-shadow: 2px 4px var(--glitch1);
  animation: glitchTitleBefore 1.25s infinite alternate-reverse;
}

@keyframes glitchTitleAfter {
  0%, 100% { transform: translate(0,0); }
  10% { transform: translate(-2px,2px);}
  20% { transform: translate(2px,-1px);}
  30% { transform: translate(-2px,0);}
  40% { transform: translate(2px,2px);}
  50% { transform: translate(-1px,-2px);}
  60% { transform: translate(2px,1px);}
  70% { transform: translate(-1px,2px);}
  80% { transform: translate(2px,0);}
  90% { transform: translate(-2px,1px);}
}

@keyframes glitchTitleBefore {
  0%,100% { transform: translate(0,0);}
  20% { transform: translate(1px,3px);}
  40% { transform: translate(-1px,-2px);}
  60% { transform: translate(2px,1px);}
  80% { transform: translate(-2px,-1px);}
}

.brutal-badge {
  position: absolute;
  top: 30px; right: 25px;
  background: var(--brutal-badge);
  color: var(--brutal-3);
  font-family: "VT323", "Space Mono", monospace;
  font-size: 1.7em;
  padding: 10px 32px;
  border-radius: 2em;
  border: 3.4px solid var(--brutal-3);
  box-shadow: 0 6px var(--primary);
}
.rotate-element {
  animation: rotateBadge 5.2s linear infinite;
}
@keyframes rotateBadge {
  0% { transform: rotate(-2deg);}
  60% {transform: rotate(3deg);}
  100% { transform: rotate(-2deg);}
}



/* === Typewriter Tagline === */
.typewriter {
  display: inline-block;
  font-family: 'VT323', 'Space Mono', monospace;
  font-size: 1.6em;
  letter-spacing: 1.5px;
  overflow: hidden;
  border-right: 4px solid var(--brutal-3);
  white-space: nowrap;
  animation: typing 3.5s steps(30, end) 1, blink-cursor 1s step-end infinite alternate;
  margin-bottom: .9em;
}
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes blink-cursor {
  0%,100% { border-color: var(--brutal-3);}
  50% { border-color: transparent;}
}
.blink-cursor { animation: blink-cursor 0.8s step-end infinite; }

/* === Main Content Wrapper === */
.main-content-wrapper {
  position: relative;
  z-index: 1; /* Pastikan konten di atas grid background and noise */
}

/* === Card Animation & Varian === */
.stagger-item { 
  opacity: 0; 
  transform: translateY(60px) scale(0.94);
}
.stagger-item.visible { 
  opacity: 1 !important; 
  transform: translateY(0) scale(1); 
  transition: all 0.7s cubic-bezier(.58,-0.51,.49,1.4); 
}
.stagger-item-pop { 
  opacity: 0; 
  transform: translateY(24px) scale(0.96);
}
.stagger-item-pop.visible { 
  opacity: 1 !important; 
  transform: translateY(0) scale(1); 
  transition: all 0.7s cubic-bezier(.58,-0.51,.49,1.4);
}
.swing-in { 
  animation: swingIn 1s cubic-bezier(.7,-0.38,.62,1.56); 
}
@keyframes swingIn {
  0% {opacity: 0; transform: rotateY(80deg) scale(0.5);}
  60% {opacity: 1; transform: rotateY(-10deg) scale(1.1);}
  100% {opacity: 1; transform: rotateY(0deg) scale(1);}
}

/* === Card & Button Styles === */
.brutal-card {
  background: linear-gradient(115deg, var(--brutal-3) 70%, var(--primary) 110%);
  border: 5px solid var(--brutal-4);
  box-shadow: 0 12px 0 0 var(--primary);
  color: var(--brutal-6);
  font-family: "Rammetto One", "Archivo Black", sans-serif;
  border-radius: 26px 14px 36px 10px/40px 16px 20px 30px;
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.brutal-card:hover {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 24px 0 0 var(--brutal-2);
  z-index: 2;
}
.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 3px solid var(--brutal-4);
  border-radius: 0 0 60px 0/0 0 60px 0;
  margin-bottom: 10px;
}
.card-img {
  object-fit: cover;
  width: 100%; height: 100%;
  filter: contrast(1.08) saturate(1.1);
  transform: scale(1) rotate(-1deg);
  transition: transform .4s cubic-bezier(.68,-0.55,.27,1.55);
}
.brutal-card:hover .card-img { 
  transform: scale(1.06) rotate(1.5deg);
}
.brutal-indicator {
  position: absolute; 
  left: 18px; 
  bottom: 16px;
  background: var(--brutal-5);
  color: var(--secondary);
  font-family: 'VT323', monospace;
  border-radius: 6px;
  font-size: 1.05em;
  padding: 3.5px 20px 3.5px 12px;
  font-weight: bold;
  letter-spacing: 2px;
  box-shadow: 0 2.5px 0 var(--primary);
}
.pulse-effect {
  animation: pulseAnim 1.3s infinite cubic-bezier(.8,-0.28,.55,1.2);
}
@keyframes pulseAnim {
  0%, 100% { box-shadow: 0 0 0 0 var(--primary);}
  50% { box-shadow: 0 0 22px 6px var(--brutal-3);}
}
.card-content { 
  padding: 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.card-title {
  font-family: 'Rammetto One', 'Anton', 'Archivo Black', monospace;
  font-size: 1.28em;
  margin: 0.5em 0 0.4em 0;
  color: var(--brutal-1);
  letter-spacing: 1.5px;
  font-weight: 700;
  text-shadow: 1.5px 2px 0 var(--secondary);
}
.card-meta {
  font-family: "VT323", monospace;
  color: var(--brutal-5);
  font-size: 1em;
  margin-bottom: 1px;
  font-weight: bold;
  letter-spacing: 2.5px;
}
.card-excerpt {
  font-family: "Archivo Black", "Space Grotesk", monospace;
  font-size: 1em;
  margin-bottom: 1em;
  color: var(--brutal-6);
  flex-grow: 1;
}

.brutal-button {
  display: inline-block;
  margin-top: 14px;
  background: var(--primary);
  color: var(--secondary);
  padding: 6px 22px;
  border-radius: 14px;
  border: 3px solid var(--brutal-3);
  font-family: "Rubik Mono One", monospace;
  font-weight: bold;
  font-size: 1.06em;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 3px var(--brutal-4);
  transition: filter .2s, background .2s;
}
.brutal-button .button-glitch {
  position: absolute; 
  left: 0; top: 0; width: 100%;
  height: 100%;
  background: linear-gradient(120deg, var(--brutal-3) 40%, var(--primary) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.2s;
}
.brutal-button:hover .button-glitch {
  opacity: 1;
  animation: buttonGlitch 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes buttonGlitch {
  0%, 100% {transform: translateX(0);}
  30% {transform: translateX(8px);}
  60% {transform: translateX(-8px);}
  80% {transform: translateX(4px);}
}

/* === Section Styling === */
.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  position: relative;
}

.brutal-section-number {
  font-family: "VT323", "Space Mono", monospace;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--primary);
  margin-right: 0.5rem;
  opacity: 0.2;
  text-shadow: 2px 2px 0 var(--brutal-2), 4px 4px 0 var(--brutal-5);
  font-weight: bold;
  transform: rotate(-5deg);
}

.brutal-title {
  color: var(--primary);
  font-family: "Rammetto One", "Rubik Mono One", "Archivo Black", sans-serif;
  border-left: 8px solid var(--brutal-5);
  padding-left: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: calc(1.15rem + 1.5vw);
}

/* === Popular Posts List === */
.brutal-list {
  background: linear-gradient(120deg, var(--brutal-2) 20%, var(--brutal-3) 120%);
  border: 5px solid var(--primary);
  box-shadow: 0 12px 0 0 var(--brutal-4);
  border-radius: 24px 12px 60px 30px/18px 24px 8px 24px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.brutal-list::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('https://www.transparenttextures.com/patterns/diagmonds-light.png');
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.brutal-list-item {
  font-size: 1rem;
  font-weight: bold;
  color: var(--brutal-6);
  border: none;
  background: var(--secondary);
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  box-shadow: 0 4px var(--primary);
  border-radius: 10px;
  transition: background 0.4s, transform 0.3s cubic-bezier(.4,0,.2,1);
  position: relative;
  z-index: 1;
  padding: 12px;
}
.brutal-list-item strong {
  font-family: "Archivo Black", "Space Grotesk", sans-serif;
  color: var(--brutal-1);
  font-size: 1.2em;
}
.brutal-list-item .meta-pop {
  font-family: "Space Mono", "VT323", monospace;
  color: var(--brutal-5);
  font-size: 0.8em;
}
.brutal-list-item img {
  box-shadow: 0 0 0 3px var(--primary);
}
.brutal-list-item:hover {
  background: var(--brutal-3);
  color: var(--brutal-1);
  transform: translateX(10px) scale(1.04);
}
.brutal-list-item:last-child { 
  margin-bottom: 0;
}
.brutal-pagination .page-link {
  font-family: "Rubik Mono One", "Archivo Black", sans-serif;
  font-weight: bold;
  border: 3px solid var(--primary);
  color: var(--brutal-1);
  background: var(--brutal-3);
  border-radius: 12px;
  margin: 0 4px;
  box-shadow: 0 3px 0 var(--brutal-4);
  transition: background 0.18s, color 0.16s, border 0.18s, box-shadow 0.18s;
  font-size: 1.2em;
  min-width: 44px;
}
.brutal-pagination .page-link:focus {
  box-shadow: 0 0 0 3px var(--brutal-2);
}
.brutal-pagination .page-item.active .page-link,
.brutal-pagination .page-link:hover {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--brutal-3);
  box-shadow: 0 6px 0 var(--brutal-2);
}
.brutal-pagination .page-item.disabled .page-link {
  background: #eee;
  color: #bbb;
  box-shadow: none;
  border-color: var(--brutal-5);
  pointer-events: none;
}
.brutal-pagination .page-link i {
  font-size: 1.2em;
  vertical-align: middle;
}

.brutal-post-detail {
  font-family: 'Archivo Black', 'Rammetto One', monospace;
  color: var(--brutal-1);
  max-width: 900px;
  margin: 0 auto;
}

.brutal-post-detail .mega-title {
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  text-shadow: 3px 3px 0 var(--primary);
}

.brutal-meta {
  font-family: 'VT323', monospace;
  color: var(--brutal-6);
  font-size: 1rem;
  margin-bottom: 0.8rem;
  gap: 1.6rem;
}

.brutal-meta i {
  margin-right: 0.3rem;
  color: var(--primary);
}

.brutal-tags {
  gap: 8px;
}

.brutal-tag {
  background: var(--primary);
  color: var(--secondary);
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 14px;
  font-family: 'Rubik Mono One', monospace;
  cursor: pointer;
  transition: background 0.3s ease;
}

.brutal-tag:hover {
  background: var(--brutal-4);
}

.brutal-featured {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 14px 0 0 var(--primary);
}

.brutal-img-detail {
  border-radius: 24px;
  filter: saturate(1.2) contrast(1.04);
  transition: transform 0.35s ease;
}

.brutal-featured:hover .brutal-img-detail {
  transform: scale(1.05) rotate(0.8deg);
}

.brutal-content {
  font-size: 1.0rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.brutal-content p {
  margin-bottom: 1.2rem;
}

.brutal-content blockquote {
  font-style: italic;
  font-family: 'Rubik Mono One', monospace;
  color: var(--primary);
  border-left: 4px solid var(--primary);
  margin: 1.5rem 0;
  padding-left: 1rem;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 0 var(--brutal-6);
}

.brutal-post-nav {
  max-width: 900px;
  margin: 2rem auto 0;
}

.brutal-post-nav-item {
  background: var(--primary);
  color: var(--secondary);
  padding: 12px 28px;
  border-radius: 16px;
  font-family: "Rubik Mono One", monospace;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  width: 140px;
  box-shadow: 0 6px 0 0 var(--brutal-4);
  transition: transform 0.25s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  user-select: none;
}
.brutal-post-nav-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 0 var(--brutal-5);
}

.brutal-post-nav-item i {
  font-size: 1.3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .brutal-post-nav {
    max-width: 100%;
    padding: 0 1rem;
  }
  .brutal-post-nav-item {
    width: 48%;
    font-size: 0.9rem;
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .brutal-post-nav {
    flex-direction: column;
    gap: 1rem;
  }
  .brutal-post-nav-item {
    width: 100%;
  }
}

.none {text-decoration:none;}

.visuall:not(:focus):not(:active) {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.img-cover {width:100%; height: 250px;object-fit:cover;}
 p{font-weight:normal;}

/* Animation Stop */
.accessibility-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--brutal-badge);
  color: var(--secondary);
  font-family: "Rubik Mono One", "Archivo Black", sans-serif;
  font-size: 0.9rem;
  padding: 10px 15px;
  border: 3px solid var(--primary);
  border-radius: 14px;
  box-shadow: 0 4px 0 var(--brutal-3);
  z-index: 999;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.accessibility-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--brutal-3);
}

.accessibility-toggle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.reduce-motion {
  --transition-time: 0.001s !important;
}

.reduce-motion * {
  animation-duration: 0.001s !important;
  animation-delay: 0.001s !important;
  transition-duration: 0.001s !important;
  transition-delay: 0.001s !important;
}

.reduce-motion .noise-overlay,
.reduce-motion .grid-background,
.reduce-motion .header-grid-lines,
.reduce-motion .glitch-title::before,
.reduce-motion .glitch-title::after,
.reduce-motion .rotate-element,
.reduce-motion .typewriter,
.reduce-motion .pulse-effect,
.reduce-motion .swing-in {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}

.reduce-motion .brutal-card:hover,
.reduce-motion .brutal-button:hover,
.reduce-motion .brutal-post-nav-item:hover,
.reduce-motion .brutal-list-item:hover {
  transform: none !important;
  box-shadow: 0 4px var(--primary) !important;
}

.reduce-motion .brutal-card:hover .card-img {
  transform: none !important;
}

.reduce-motion .brutal-button:hover {
  filter: brightness(1.1);
}

.accessibility-toggle.active {
  background: var(--primary);
  color: var(--brutal-3);
  border-color: var(--brutal-3);
}

.reduce-motion .glitch-title,
.reduce-motion .glitch-title::after,
.reduce-motion .glitch-title::before {
  animation: none !important;
}

.reduce-motion .custom-cursor,
.reduce-motion .custom-cursor-dot {
  display: none !important;
}
.reduce-motion {
  cursor: auto !important;
}
