@font-face {
  font-family: 'VT323';
  src: url('https://pojokutty.com/assets/fonts/VT323-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'TacOne';
  src: url('https://pojokutty.com/assets/fonts/TacOne-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: normal;
}

@font-face {
  font-family: 'Jura';
  src: url('https://pojokutty.com/assets/fonts/Jura-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GlassAntiqua';
  src: url('https://pojokutty.com/assets/fonts/GlassAntiqua-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ShadowsIntoLight';
  src: url('https://pojokutty.com/assets/fonts/ShadowsIntoLight-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SyneMono';
  src: url('https://pojokutty.com/assets/fonts/SyneMono-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Iceberg';
  src: url('https://pojokutty.com/assets/fonts/Iceberg-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --neon-pink: #ff00cc;
  --dark-void: #0a000f;
  --pus-yellow: #e9f3d3;
  --headscarf-blue: #008cff;
  --industrial-gray: #2d2d2d;
  --soft-cyan: #00ffea;
  --cyber-green: #75ff81;
}

body {
  margin: 0;
  background-color: var(--dark-void);
  background-image: 
    linear-gradient(rgba(255, 0, 204, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 204, 0.05) 1px, transparent 1px);
  background-size: 20px 20px; 
  color: var(--pus-yellow);
  font-family: 'SyneMono', monospace;
  line-height: 1;
  overflow-x: hidden;
}

body::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), 
              linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 9999;
  pointer-events: none;
  background-size: 100% 2px, 3px 100%;
}

.container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 2vw;
  width: 100%;
  overflow-x: hidden; 
  position: relative;
  box-sizing: border-box;
}

#head {
  grid-column: 1 / 5;
  width: 100%;
  text-align: left;
  padding: 0rem 0;
  border-bottom: 10px solid var(--neon-pink);
  background: rgba(34, 0, 34, 0.8);
  z-index: 2;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-family: 'SyneMVT323ono', monospace;
  color: var(--neon-pink);
  text-transform: uppercase;
  line-height: 0.85;
  margin: 0;
  letter-spacing: -1px;
  text-shadow: 2px 2px 0px rgba(74, 26, 26, 0.8);
  position: relative;
}

.subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-family: 'VT323', monospace;
  color: #ff99cc;
  display: block;
  opacity: 0.8;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; 
  width: 100%;
}

.header-left {
  text-align: left;
}

.header-right {
  text-align: right;
}

.login-link {
  display: block;
  font-size: .8rem;
  text-decoration: none;
  border-bottom: 2px solid #000;
  transition: all 0.1s steps(2);
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#main-content {
  grid-column: 2 / 5;
  text-align: left;
  padding: 2rem 0;
  margin: 1;
  transform: rotate(1deg);
  border: 1px solid var(--soft-cyan);
  background: #111;
  box-shadow: 10px 10px 0px var(--headscarf-blue);
  z-index: 3;
}

#main h2 {
  font-family: 'Iceberg', cursive; 
  font-size: 3rem;
  color: var(--neon-pink);
  text-transform: uppercase;
  text-align: center;
  display: block;
  width: 100%;
  margin: 1.5rem 0;
  text-shadow: 2px 2px 0px #000;
  letter-spacing: 3px;
  border-bottom: 2px solid var(--neon-pink);
}

img {
  grid-column: 1; 
  width: 100%;   
  max-width: 300px;
  border: 4px solid var(--neon-pink); 
  transform: rotate(-3deg) translateY(-10px); 
  z-index: 1;
  box-shadow: 20px 20px 0px rgba(255, 0, 204, 0.2);
  margin-bottom: 0.1rem;
  object-fit: cover;
  opacity: 0.6;
  filter: grayscale(1) contrast(1.2) brightness(0.8) drop-shadow(0 0 5px var(--neon-pink)); 
  transition: all 0.3s ease; 
}

img:hover {
  opacity: 1;
  filter: grayscale(0) contrast(1.5) brightness(1);
  transform: rotate(-3deg) translateY(-15px) scale(1.02); 
}

.report {
  border-bottom: 1px dashed var(--neon-pink);
  padding: 0.8rem;
}

.report .date {
  color: var(--soft-cyan);
  font-weight: bold;
  font-size: 1rem;
}

.report p {
  font-family: 'Iceberg', monospace;
  margin: 5px 0 0 0;
  font-size: 1.3rem;
}

#system-authentication {
  background: #1a1a1a; 
  border: 1px solid var(--soft-cyan);
  padding: 2rem;
  position: relative;
  overflow: hidden; 
  box-shadow: inset 0 0 100px rgba(0,0,0,0.8), 0 10px 20px rgba(0,0,0,0.5);
  box-shadow: 0 0 5px var(--cyber-green), 0 0 10px var(--cyber-green);
}

#system-authentication::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(
      rgba(18, 16, 16, 0) 50%, 
      rgba(0, 0, 0, 0.25) 50%
    ), 
    linear-gradient(
      90deg, 
      rgba(255, 0, 0, 0.06), 
      rgba(0, 255, 0, 0.02), 
      rgba(0, 0, 255, 0.06)
    );
  z-index: 2;
  background-size: 100% 4px, 3px 100%;
  pointer-events: none; 
}

#system-authentication h2 {
  font-family: 'Iceberg', cursive;
  font-size: 1.5rem;
  color: var(--cyber-green);
  text-transform: uppercase;
  text-shadow: 
    0 0 5px var(--cyber-green), 
    0 0 10px var(--cyber-green);
  animation: hover-glow 3s ease-in-out infinite;
  position: relative;
  z-index: 3;
}

#system-authentication {
  animation: crt-flicker 0.15s infinite;
}

#bulletin {
  grid-column: 3 / 5;
  background: #111;
  border: 1px solid var(--soft-cyan);
  padding: 1.5rem;
  transform: rotate(1deg);
  margin-top: 0.1rem;
  box-shadow: 10px 10px 0px var(--headscarf-blue);
}

#bulletin h2 {
  font-family: 'Iceberg', cursive; 
  font-size: 1rem;
  color: var(--neon-pink);
  text-transform: uppercase;
  text-align: center;
  display: block;
  width: 100%;
  margin: 1.5rem 0;
  text-shadow: 2px 2px 0px #000;
  letter-spacing: 3px;
  border-bottom: 2px solid var(--neon-pink);
}

.entry {
  border-bottom: 1px dashed var(--neon-pink);
  padding: 1rem 0;
}

.entry .date {
  color: var(--soft-cyan);
  font-weight: bold;
  font-size: 0.9rem;
}

.entry p {
  font-family: 'Iceberg', cursive;
  margin: 5px 0 0 0;
  font-size: 1.1rem;
}

.link-bait {
  display: block;
  font-size: 1.5rem;
  color: #000;
  text-decoration: none;
  border-bottom: 2px solid #000;
  padding: 5px 0;
  transition: all 0.1s steps(2);
}

.link-bait:hover {
  background: #000;
  color: var(--neon-pink);
  padding-left: 10px;
}

.link-bait::before {
  content: '[BUY] ';
  font-size: 0.8rem;
  vertical-align: middle;
}

.link-free {
  display: block;
  font-size: 1.5rem;
  color: #000;
  text-decoration: none;
  border-bottom: 2px solid #000;
  padding: 5px 0;
  transition: all 0.1s steps(2);
}

.link-free:hover {
  background: #000;
  color: var(--neon-pink);
  padding-left: 10px;
}

.link-free::before {
  content: '[FREE] ';
  font-size: 0.8rem;
  vertical-align: middle;
}

a {
  color: var(--soft-cyan);
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: var(--pus-yellow);
  text-shadow: 0 0 8px var(--pus-yellow);
}

a:focus {
  outline: 1px dashed var(--pus-yellow);
  outline-offset: 4px;
}

#access-points {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--neon-pink);
  color: #000;
  padding: 1rem 2vw;
  border-top: 5px solid var(--industrial-gray);
  transform: rotate(-0.5deg); 
  box-shadow: 0px -10px 30px rgba(0,0,0,0.8);
  z-index: 9999;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#access-points h2 {
  font-size: 1.8rem;
  margin: 0;
  background: #000;
  color: var(--neon-pink);
  display: inline-block;
  padding: 2px 10px;
  width: fit-content;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding-bottom: 10px;
}

footer {
  grid-column: 1 / 5;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.fineprint {
  margin: 0;
  text-align: left;
  opacity: 0.5;
  color: var(--pus-white);
}

footer a {
  margin: 0;
  background: #000;
  display: inline-block;
  padding: 2px 10px;
  width: fit-content;
}

.glitch {
  position: relative;
}

.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  text-shadow: -1px 0 #4a1a1a;
  top: 0;
  color: var(--neon-pink);
  background: var(--dark-void);
  overflow: hidden;
  clip: rect(0, 900px, 0, 0); 
  animation: noise-anim 4s infinite linear alternate-reverse;
}

#glitch-span {
  display: inline-block;
  transition: none; 
  font-variant-numeric: tabular-nums;
}

#glitch-span:contains('AGENT') {
  transform: skewX(-15deg);
  text-shadow: 2px 0 var(--soft-cyan), -2px 0 var(--neon-pink);
}

@keyframes hover-glow {
  0% { 
    transform: translateY(0); 
    opacity: 0.95; 
  }
  50% { 
    transform: translateY(-5px); 
    opacity: 1; 
    text-shadow: 0 0 15px var(--cyber-green), 0 0 25px var(--cyber-green);
  }
  100% { 
    transform: translateY(0); 
    opacity: 0.95; 
  }
}

@keyframes crt-flicker {
  0% { opacity: 0.99; }
  50% { opacity: 1; }
  100% { opacity: 0.99; }
}

@keyframes noise-anim {
  0% { clip: rect(10px, 9999px, 20px, 0); }
  20% { clip: rect(30px, 9999px, 40px, 0); }
  40% { clip: rect(60px, 9999px, 70px, 0); }
  60% { clip: rect(20px, 9999px, 30px, 0); }
  80% { clip: rect(80px, 9999px, 90px, 0); }
  100% { clip: rect(10px, 9999px, 25px, 0); }
}

@media (max-width: 768px) {
  #main, #resources, #bulletin, img {
    grid-column: 1 / -1 !important; 
    transform: none !important;
    width: 100% !important;
    margin-top: 1rem;
  }
  
  h1 {
    line-height: 1;
  }
}