/* --- Base Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- Body --- */
body {
  background: #000;
  font-family: "Times New Roman", Times, serif;
  color: #000;
}

/* --- Header --- */
.site-header {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 16px;
}

.logo {
  font-size: 28px;
  font-weight: normal;
  letter-spacing: 2px;
  color: #ffffff;

}
.logo-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;               
  display: inline-block;
  padding: 6px 12px;             
  border-radius: 6px;

}

.logo-link:hover {
  opacity: 0.75;                  
}

.logo-link:active {
  transform: scale(0.97);      
}

/* --- Animated .FUN --- */
.dotfun {
  position: relative;
  display: inline-block;
  color: #2a2ac0;
  line-height: 1;
  font-family: 'ZT Nature', sans-serif;
    background: linear-gradient(
    90deg,
    red,
    orange,
    yellow,
    lime,
    cyan,
    blue,
    violet,
    red
  );

  background-size: 1000%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: rainbow-scroll 120s linear infinite;
}

.nav-link {
  display: inline-block;
  background: black;
  color: white;
  text-decoration: underline;
  margin-top: 12px;
  font-size: 15px;
  
}

.nav-link:visited {
  color: #159ffb;
}

.home-link {

  color: white;
  text-decoration: underline;
  font-size: 15px;  
}

.home-link:hover {

  color: white;
  text-decoration: underline;
  background: blue;
  text-shadow: 2px 2px 0px rgba(0,0,0, 1);
}

.home-link:active {
  display: inline-block;
  background: red;
  color: black;

}
.nav-link:hover {
  display: inline-block;
  background: blue;
  color: white;
  text-shadow: 2px 2px 0px rgba(0,0,0, 1);

}

.nav-link:active {
  display: inline-block;
  background: red;
  color: black;

}



@keyframes blueFlame {
  0% {

    transform: translateY(0px) scaleY(1);
  }
  

    50% {

    transform: translateY(0px) scaleY(1);
  }
  
  51% {

    transform: translateY(0px) scale(1.05);
  }
  
  100% {

    transform: translateY(0px) scale(1.05);
  }
}

/* --- Content Area --- */
.content {
  display: flex;
  justify-content: center;
  padding: 0 16px 32px 16px;
}

.content-inner {
  background: transparent;
  width: 100%;
  max-width: 900px;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #0000a3;
}

/* --- Corner Logo --- */
.corner-logo {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;

}

.corner-logo:hover {
  opacity: 0.75;                  
}

.corner-logo:active {
  transform: scale(0.97);      
}

.corner-logo2 {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1000;
}

.corner-logo2 img {
  width: min(220px, 35vw);
  height: auto;
}

.corner-logo img {
  width: min(64px, 35vw);
  height: auto;

}

/* --- Gallery --- */
.gallery {
  margin-top: 16px;

}

.gallery-title {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 12px;
  border-bottom: 1px solid #333;
  padding-bottom: 6px;
  font-family: 'ZT Nature';
}

.gallery-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 16px;
  font-size: 14px;
  color: #ccc;
  font-style: italic;

  white-space: nowrap;     /* force single line */
  overflow: hidden;        /* prevent vertical growth */
}


.image-viewport {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 16px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.image-viewport img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  border: 1px solid #0000a3;
}



.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.gallery-controls button {
  padding: 8px 16px;
  background: #111;
  color: #fff;
  border: 1px solid #444;
  cursor: pointer;
}

.gallery-controls button:hover {
  background: #222;
}

/* --- rat Row --- */
.rat-row {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap; /* allows stacking on small screens */
}

/* Individual rat containers */
.rat-slot {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Prevent upscaling, allow downscaling */
.rat-slot img {
  display: block;
  width: auto;
  max-width: 60%;
  height: auto;
}

/* NSFL */

.nsfl {
	
	display: inline-block;
	color:red;
	font-size: 18px;
    animation: flicker 2s ease-in-out infinite;
	font-family: 'mgs';
	font-weight: normal;

    margin-left: 2px;

	
}

.yikes {
	    background: linear-gradient(
    90deg,
    red,
    orange,
    yellow,
    lime,
    cyan,
    blue,
    violet,
    red
  );

  background-size: 1000%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	display: inline-block;
	color:magenta;
	font-size: 18px;
    animation: rainbow-scroll 15s linear infinite, float 2s ease-in-out infinite;
	font-family: 'rage';
	font-weight: normal;
    padding-right: 115px;
	font-style: italic;

}







.foots {
	
	display: inline-block;
	color:#383838;
	font-size: 14px;
	font-weight: normal;
	text-align: center;
	font-style: italic;
	margin-bottom: 32px;
	
}

.footer-wrapper {
  display: flex;
  justify-content: center;
}


.eww {
	
	display: inline-block;
	color:#39FF14;
	font-size: 18px;
    animation: flicker 5s ease-in-out infinite;
	font-family: 'mgs';
	font-weight: normal;
    margin-left: 2px;
	
}

.date {
	
	display: inline-block;
	color:#878787;
	font-size: 12px;

}

.videoz {
	font-family: 'mgs';
	display: inline-block;
	color:#E6E6FA;
	font-size: 18px;
    font-weight: normal;
	animation: flicker3 5s ease-in-out infinite;
    margin-left: 2px;
}


@keyframes flicker {

 0%,
  50% {
    opacity: 0.9;
    text-shadow:
      0.7 0.7 1px currentColor,
      0.7 0.7 3px currentColor,
      0.7 0.7 4px currentColor;
  }

  51%,
  100% {
    opacity: 0.65;
    text-shadow: none;
  }
  
}

@keyframes flicker2 {

  0%    { opacity: 1; }
  50%   { opacity: 1; }
  51%   { opacity: 0; }
  100%  { opacity: 0; }
  
}

@keyframes flicker3 {

  0%    { opacity: 0.4; }
  50%   { opacity: 1; }
  100%  { opacity: 0.4; }
  
}


/* --- Responsive --- */
@media (max-width: 768px) {
  .logo {
    font-size: 22px;
	
  }

  .content-inner {
    padding: 20px;
  }

  .image-viewport {
    height: 60vw;
  }
}
.space16 { margin-top: 16px; }
.space8 { margin-top: 8px; }

/* FONTS */
@font-face {
    font-family: 'ZT Nature';
    src: url('../fonts/ZTNature-Bold.woff2') format('woff2'),
         url('../fonts/ZTNature-Bold.woff') format('woff');

    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PIXY';
    src: url('../fonts/PIXY.woff2') format('woff2'),
         url('../fonts/PIXY.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
	
    font-family: 'mgs';
    src: url('../fonts/mgs.woff2') format('woff2'),
         url('../fonts/mgs.woff') format('woff');
    font-style: normal;
    font-display: swap;
	font-weight: normal;
}

@font-face {
	
    font-family: 'rage';
    src: url('../fonts/rage.woff2') format('woff2'),
         url('../fonts/rage.woff') format('woff');
    font-style: italic;
    font-display: swap;
	font-weight: normal;
}




/* --- Floating Top-Right Ad --- */
.floating-rat {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 1000;
pointer-events: none;
}

.floating-rat img {
  width: min(80px, 25vw); /* scales responsively */
  height: auto;
  display: block;
  border: 1px solid #222;
  opacity: 0.7; /* 0 = fully transparent, 1 = fully visible */
  box-shadow: 4px 4px 0px 0px rgb(0 0 0 / 15%);
  pointer-events: none;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  color: #42f5a4;
  letter-spacing: 4px;

  text-shadow: 2px 2px 0px rgba(0,0,0, 0.5);
  font-family: 'mgs';
  font-size: 18px;
animation: flicker 1s infinite;
}

.marquee__inner {
  display: inline-block;
  padding-left: 100%; /* start exactly off-screen */
  animation: scroll-left 30s linear infinite;

 
}

.marquee span {
  display: inline-block;
  white-space: nowrap;
  background: transparent;

}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes float {
  0% { transform: translateY(2px); }
  50% { transform: translateY(-2px); }
  100% { transform: translateY(2px); }
}

@keyframes rainbow-scroll {
  0% { background-position: 63%; }
  
  100% { background-position: 400%; }
}


.video-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 16px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}



/* AGE WARNING */

#ageOverlay {
  
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(15px) contrast(100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  touch-action: none;
  
}
html, body.no-scroll {
  height: 100%;
}
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}


.age-box {

  background: #000;
  border: 1px solid #000;
  padding: 2rem;
  font-family: Arial, sans-serif;
  text-align: center;
  max-width: 70%; 
  font-size: 14px;
  color: #bababa;
  box-shadow: 3px 3px 0px  rgba(0,0,0,0.5);
}

.age-box h2 {
  font-family: arial, sans-serif;
  color: #ff3333;
  margin-bottom: 1rem;
  animation: flicker2 2s linear infinite;
  font-size: 1.5rem;
  
}



.age-buttons {

  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 1rem;

}

.age-buttons button {


  font-style: normal;
  font-family: Arial, sans-serif;
  min-width:94px;
  height: 32px;
  font-size: 14px;
  border-radius: 0px; /* optional rounding */
  background: #000;
  color: #6f6f6f;
  cursor: pointer;
  border: 1px solid #333;
font-weight:bold;
 
 
}

.age-buttons button:hover {


  color: #fff;
text-shadow: 2px 2px 0px rgba(0,0,0, 1);
  background: blue;

}

.age-buttons button:active {

  transform: scale(0.97);
  background: red;
  color: #000;
text-shadow: 2px 2px 0px rgba(128,0,0, 1);
}
