
@font-face {
    font-family: 'DepartureMono-Regular';
    src: url('/fonts/DepartureMono-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'DepartureMono-Regular', monospace;
}

body {
  margin: 0;
    text-shadow: 8px 8px 10px #0000008c;
	background-color: #050508;
	background-position: center bottom;
	background-repeat: repeat-x;
	position: relative;
	z-index: 1;
	padding-bottom: 200px; 
}

.nebula-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: radial-gradient(circle at 50% 50%, #111 0%, #050508 100%);
}

.nebula-core {
  position: absolute;
  width: 90%;
  height: 60%;
  top: 20%;
  left: 0%;
  background: radial-gradient(ellipse at center, 
    rgba(100, 50, 200, 0.3) 10%, 
    rgba(50, 100, 250, 0.1) 60%, 
    transparent 80%);
  filter: blur(80px);
  transform: rotate(-15deg);
}

.nebula-mist {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(200, 80, 150, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(50, 200, 255, 0.1) 0%, transparent 40%);
  filter: blur(60px);
}


header {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

header > h1 {
    font-family: 'DepartureMono-Regular';
	font-size: clamp(2rem, 8vw, 4rem);
	color: rgba(93, 255, 138, 1.0);
	letter-spacing: clamp(2px, 2vw, 20px);

	text-align: center;
	padding: 30px;
	animation: crtflicker 5s infinite, textShadow 1s infinite;
}

header > img {
	float: right;
	margin: 10px;
}

footer {
  position: fixed;

  left: 0;
  bottom: 0;

  width: 100%;

  padding: 8px 0;

  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);

  text-align: center;

  z-index: 100;
}

footer img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
  }
  
  .content-box {
    flex-direction: column !important;
    align-items: stretch;
	flex-wrap: nowrap;
  }
  
  .hacker-text {
    order: 1;
  }
  
  .content-box-img-maid {
    order: 2;

    display: flex;
    justify-content: flex-end; /* 🔥 THIS is what moves it right */
    align-items: flex-end;

    width: 100%;
    box-sizing: border-box;

    padding-right: 16px;
    min-height: auto;
  }
  
  .content-box-img-maid img {
    margin-left: auto;
    display: block;
	transform: translateY(100px);
  }
  
  .image-crop {
    transform: translateY(-20px);
	height: 400px;
  }
  
}

a:link {
  color: rgba(93, 255, 138, 1.0);
   text-decoration: none;
}

a:visited {
	color: rgba(93, 255, 138, 1.0);
  text-decoration: none;
}

a:hover {
  color: #ffea21;
   text-decoration: none;
}

a:active {
  color: #ffea21;
  text-decoration: underline;
}

.container {
  display: flex;
  gap: 20px;      
  max-width: 1200px; 
  margin: 0 auto;    
  align-items: flex-start; 
 
  padding: 20px;

  z-index: 1;
}

.container h1,h2,h3,p,ul,li {
	font-family: 'DepartureMono-Regular';
}

.container h1,h2,h3 {
	color: rgba(93, 255, 138, 1.0);
}

.container-gallery {
  display: flex;
  gap: 20px;         
  max-width: 1700px; 
  margin: 0 auto;    
  align-items: start; 
  padding: 20px;
  z-index: 1;
}

.container-gallery h1,h2,h3,p,ul,li {
	font-family: 'DepartureMono-Regular';
}

.container-gallery h1,h2,h3 {
	color: rgba(93, 255, 138, 1.0);
}

.picture-search{
  width: 60%;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(93, 255, 138, 1.0);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);

  display: block;
  margin: 0 auto;
  
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 1) 0%,
    rgba(120, 140, 255, 0.35) 100%
  );

  color: rgba(93, 255, 138, 1.0);

  display: block;
  margin: 0 auto;

  outline: none;
}

.left-column {
  flex: 0 0 150px; 
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main-column {
  flex: 4;           
  display: flex;
  flex-direction: column;
  gap: 20px;        
}

.main-column ul {
  list-style-type: disc;
  padding-left: 40px;
  margin-top: 10px;
}

.main-column-gallery {
  flex: 6;  
  min-width: 0;  
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;        
  align-items: start;
}

.main-column-gallery ul {
  list-style-type: disc;
  padding-left: 40px;
  margin-top: 10px;
}

.main-column-gallery img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  display: block;
}

.content-box {
	display: flex;
  gap: 20px;
  align-items: stretch; 
  flex-wrap: nowrap;
  padding: 10px;
   background-color: rgba(0, 0, 0, 0.5);
  border-style: solid;
  border-color: rgba(93, 255, 138, 1.0);
  border-radius: 8px;
  color: #FBFAF5 ;
  text-shadow: 0 1px 1px rgba(0,0,0,0.6);
  line-height: 1.6;
  font-size: 16px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow:
  0 0 10px rgba(93, 255, 138, 0.25),
  inset 0 0 8px rgba(93, 255, 138, 0.08);
  
  animation: wispGlow 5s ease-in-out infinite;
}

.content-box-picture {

  padding: 10px;
   background-color: rgba(0, 0, 0, 0.5);
  border-style: solid;
  border-color: rgba(93, 255, 138, 1.0);
  border-radius: 8px;
  color: #FBFAF5 ;
  text-shadow: 0 1px 1px rgba(0,0,0,0.6);
  line-height: 1.6;
  font-size: 16px;
  transition: opacity 0.2s ease, transform 0.2s ease;

  box-shadow:
  0 0 10px rgba(93, 255, 138, 0.25),
  inset 0 0 8px rgba(93, 255, 138, 0.08);
  
  animation: wispGlow 5s ease-in-out infinite;
}

.content-box-community {

  padding: 10px;
   background-color: rgba(0, 0, 0, 0.5);
  border-style: solid;
  border-color: rgba(93, 255, 138, 1.0);
  border-radius: 8px;
  color: #FBFAF5 ;
  text-shadow: 0 1px 1px rgba(0,0,0,0.6);
  line-height: 1.6;
  font-size: 16px;
  transition: opacity 0.2s ease, transform 0.2s ease;

  box-shadow:
  0 0 10px rgba(93, 255, 138, 0.25),
  inset 0 0 8px rgba(93, 255, 138, 0.08);
  
  animation: wispGlow 5s ease-in-out infinite;
}

@keyframes wispGlow {
  0%, 100% {
    box-shadow: 0 0 6px rgba(93, 255, 138, 0.2);
  }
  50% {
    box-shadow: 0 0 16px rgba(93, 255, 138, 0.35);
  }
}

.content-box img {
  padding: 20px;
  color: white;
  display: block;
   min-width: 0;
  object-fit: scale-down;
}

.content-box-picture img {
  padding: 20px;
  color: white;
  min-width: 0;
  width: 100%;
  height: auto;
}

.content-box-community img {
  padding: 0px;
  display: relative;
}

.content-box-img-maid {
  display: flex;
  flex: 1;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: flex-end;
  gap: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  border-top: 8px solid rgba(93, 255, 138, 0.5);
  border-bottom: 8px solid rgba(93, 255, 138, 0.5);
  border-radius: 5px;
  min-height: 100%;
}

.content-box-img-maid img {
  width: 210px;
  height: auto;
  image-rendering: pixelated;
  display: block;
}

.content-gallery {
  max-height: 406px;
  max-width: 346px;
  display: flex;
  justify-content: center;
  margin-left: auto;
  align-items: center;
}

.hidden {
  display: none;
}

.menu-toggle {
  display: none;

  position: fixed;
  top: 16px;
  right: 16px;

  z-index: 1000;

  background: black;
  color: #8cff9b;

  border: 2px solid #8cff9b;
  padding: 10px 14px;

  font-family: 'DepartureMono-Regular';
  cursor: pointer;
}

body.menu-open .menu-toggle {
  opacity: 0;
  pointer-events: none;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.5);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  z-index: 9;
}

.sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}



.marquee {
    position: relative;
    height: 40px; 
	overflow: hidden;
	width: 100%;
}

.marquee-track {
    display: flex;
    flex-wrap: nowrap;
    width: fit-content;
	position: absolute;
    animation: marquee-scroll 4s linear infinite;
    will-change: transform;
}

.marquee-group {
    display: flex;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.marquee-group img {
    display: block;
    flex-shrink: 0;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0%);
    }
}

.image-crop {
  width: 300px;
  height: 300px;
  overflow: hidden;
  flex: 0 0 auto;
  transform: translateY(20px);
}

fieldset {
    border: 3px solid #000;
}

.sidebar-column {
  display: flex;
  flex-direction: column; 
  flex-shrink: 0;
  
  gap: 20px;
  flex: 1; 
}

.sidebar {
  flex: 1; 
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  border-style: solid;
  border-color: rgba(93, 255, 138, 1.0);
  border-radius: 8px;
  color: #FBFAF5;
  text-shadow: 0 1px 1px rgba(0,0,0,0.6);
  line-height: 1.6;
  font-size: 14px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow:
  0 0 10px rgba(93, 255, 138, 0.25),
  inset 0 0 8px rgba(93, 255, 138, 0.08);
  
  animation: wispGlow 5s ease-in-out infinite;
}

.sidebar ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.sidebar li {
  margin-bottom: 8px;
}

.maido {
  display: block;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

.relax-wolfgirl-container {
  height: 160vh;           
  display: flex;
  justify-content: center;
  align-items: center;
}

.glow-wrapper {
  position: relative;
  display: inline-block;
}

.glow-wrapper::before {
  content: "";
  position: absolute;

  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 170%;
  height: 170%;

  border-radius: 50%;

  background: radial-gradient(
    ellipse at center,
    rgba(140, 200, 255, 0.65) 0%, 
    rgba(180, 120, 255, 0.35) 35%, 
    rgba(90, 120, 255, 0.18) 60%,   
    transparent 80%
  );

  filter: blur(90px); 

  z-index: 0;

  animation: nebulaDrift 8s ease-in-out infinite;
}

.relax-wolfgirl-main-image {
  position: relative;
  z-index: 1;
  opacity: 1;
}

.relax-wolfgirl-blur-layer {
  position: absolute;
  top: 0;
  left: 0;

  filter: blur(35px) brightness(1.2) sepia(0.5) saturate(1.6);
  transform: scale(1.08);
  opacity: 0.6;
  z-index: 0;
}

@keyframes nebulaDrift {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
  }
  50% {
    transform: translate(-48%, -52%) scale(1.08);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.95);
  }
}

.relax-welcome-text {
  position: relative;
  font-family: "Arial Rounded MT Bold", Arial, Verdana, sans-serif;
  font-size: 32px;
  letter-spacing: 0.2em;
  color: #8cff9b;

  opacity: 0;
  transform: translateY(-10px);
  filter: blur(6px);

  animation: relaxwelcome 4.2s ease-in-out forwards;
  will-change: opacity, transform, filter;
}

.relax-welcome-text::before {
  position: absolute;
  inset: 0;

  color: #04d9ff;
  opacity: 1.0;

  text-shadow:
    0 0 6px rgba(4, 217, 255, 0.35),
    0 0 18px rgba(4, 217, 255, 0.25),
    0 0 40px rgba(4, 217, 255, 0.15);

  animation: relaxglow 2.9s ease-in-out forwards; 
  pointer-events: none;
}

@keyframes relaxwelcome {
  0% {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(6px);
  }

  25% {
    opacity: 0.6;
    transform: translateY(0);
    filter: blur(0.5px);
  }

  75% {
    opacity: 1.0;
    transform: translateY(0);
    filter: blur(0.5px);
  }

  100% {
    opacity: 0;
    transform: translateY(-12px);
    filter: blur(2px);
  }
}

@keyframes relaxglow {
  0% {
    opacity: 0.7;
    transform: scale(1);
    filter: blur(0px);
  }

  40% {
    opacity: 0.4;
    transform: scale(1.03);
  }

  70% {
    opacity: 0.15;
    transform: scale(1.06);
  }

  100% {
    opacity: 0;
    transform: scale(1.1);
    filter: blur(6px);
  }
}

.hover-icon {
  position: absolute;
  top: 120px;
  right: 12px;
  font-family: 'DepartureMono-Regular', monospace;
  font-size: 16px;
  color: #8cff9b;

  opacity: 0;
  transform: translateY(-6px) scale(0.9);

  text-shadow:
    0 0 6px rgba(4, 217, 255, 0.4),
    0 0 18px rgba(4, 217, 255, 0.25);

  pointer-events: none;

  transition: opacity 0.25s ease, transform 0.25s ease;
}

.relax-to-home:hover + .hover-icon {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hacker-text {
  color: #8cff9b;
  font-family: 'DepartureMono-Regular', monospace;
  
  padding: 10px 14px;
  max-width: 340px;
  line-height: 1.4;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  flex: 1;
  min-width: 0;
  margin-bottom: 200px;
  margin-left: 150px;
}

.hacker-text,
.content-box-img-maid {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hacker-text,
#quoteText {
  font-family: 'DepartureMono-Regular', monospace;
}

.cursor {
  animation: blink 0.8s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.footer-text {
  display: inline-block;
  transform: translateY(-2px);
  color: rgba(93, 255, 138, 1.0);
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.fade-item {
  opacity: 0;
}

.dotpath {
  position:relative;
  left:0;
  width:10%;
  #animation: doty 15s infinite linear;
  z-index: 2;
}

.updotpath {
  position:relative;
  left:0;
  width:10%;
  #animation: doty 15s infinite linear;
  z-index: -1;
}

.updot {
  height: 0.5px;
  width: 0.5px;
  background-color: #04d9ff;
  border-radius: 50%;
  display: inline-block;
  --blur: 2rem;
  --box-blur: calc(0.5 * var(--blur));
  --glow: var(--color);
  --size: 0.2rem;
  --color: #04d9ff; filter: saturate(1000%);
  
  align-items: center;
  border: 1px solid currentColor;
  box-shadow: 
    /* --- "glass" tube --- */
    /* inside */ inset 0 0 0 5px rgba(0, 0, 0, 0.2),
    /* outside */      0 0 0 5px rgba(0, 0, 0, 0.2),
    /* --- glow --- */
    /* inside */ inset 0 0 var(--box-blur) var(--glow),
    /* outside */      0 0 var(--box-blur) var(--glow);
  color: var(--color, white);
  display: inline-flex;
  flex-direction: column;
  font-family: system-ui, sans-serif;
  height: var(--size);
  justify-content: space-around;
  padding: 0.15rem;
  width: var(--size);
  position: relative;
  z-index: -4;
}

.stardot {
  height: 1px;
  width: 1px;
  background-color: #fff5cc;
  border-radius: 50%;
  align-items: center;
  border: 1px solid currentColor;
  position: relative;
  z-index: -2;
}

.dot {
  height: 0.5px;
  width: 0.5px;
  background-color: #04d9ff;
  border-radius: 50%;
  display: inline-block;
  --blur: 2rem;
  --box-blur: calc(0.5 * var(--blur));
  --glow: var(--color);
  --size: 0.2rem;
  --color: #04d9ff; filter: saturate(1000%);
  
  align-items: center;
  border: 1px solid currentColor;
  box-shadow: 
    /* --- "glass" tube --- */
    /* inside */ inset 0 0 0 5px rgba(0, 0, 0, 0.2),
    /* outside */      0 0 0 5px rgba(0, 0, 0, 0.2),
    /* --- glow --- */
    /* inside */ inset 0 0 var(--box-blur) var(--glow),
    /* outside */      0 0 var(--box-blur) var(--glow);
  color: var(--color, white);
  display: inline-flex;
  flex-direction: column;
  font-family: system-ui, sans-serif;
  height: var(--size);
  justify-content: space-around;
  padding: 0.25rem;
  width: var(--size);
  #animation: dotx 1.5s alternate infinite ease-in-out;
  z-index: 5;
}

@keyframes twinkle {
  0%   { opacity: 0.3; }
  100% { opacity: 1; }
}

@keyframes dotx {
  to { transform: translatex(500px);}
}

@keyframes dotx2 {
  to { transform: translatex(-400px);}
}

@keyframes dotx3 {
  to { transform: translatex(200px);}
}
@keyframes dotx4 {
  to { transform: translatex(-200px);}
}

@keyframes dotx5 {
  to { transform: translatex(-500px);}
}

@keyframes doty {
  to { transform: translatey(-10000%);}
}

.bottomglow {
  height: 0.5px;
  width: 100%;
  background-color: rgba(93, 255, 138, 1.0);
  border-radius: 10px;
  display: inline-block;
  
	-webkit-box-shadow:0px 0px 105px 141px rgba(45,255,196,0.9);
	-moz-box-shadow: 0px 0px 105px 141px rgba(45,255,196,0.9);
	box-shadow: 0px 100px 165px 250px rgba(45,255,196,0.9);


  position: fixed;
  left: 50%;
  bottom: -20px;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  animation: pulsebottomglow 6s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(93, 255, 138, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(93, 255, 138, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(93, 255, 138, 0);
    }
}

@keyframes pulsebottomglow {
    0% {
        box-shadow: 0 100px 165px 250px rgba(45,255,196,0.9);
    }

    70% {
        box-shadow: 0 100px 175px 250px rgba(45,255,196,0.5);
    }

    100% {
        box-shadow: 0 100px 165px 250px rgba(45,255,196,0.9);
    }
}


@keyframes flicker {
    0% {
        border: 2px solid rgba(93, 255, 138, 1.0); 
		outline: 1px solid rgba(93, 255, 138, 1.0);
    }

    50% {
        border: 2px solid rgba(93, 255, 138, 0.4); 
		outline: 1px solid rgba(93, 255, 138, 0.4);
    }
	
	100% {
        border: 2px solid rgba(93, 255, 138, 1.0); 
		outline: 1px solid rgba(93, 255, 138, 1.0);
    }
	
}

@keyframes crtflicker {
  0% {
  opacity: 0.87861;
  }
  2% {
  opacity: 0.34769;
  }
  4% {
  opacity: 0.23604;
  }
  6% {
  opacity: 0.90626;
  }
  8% {
  opacity: 0.68128;
  }
  10% {
  opacity: 0.83891;
  }
  15% {
  opacity: 1.0;
  }
  58%{
  opacity: 1.0;
  }
  60% {
  opacity: 0.34769;
  }
  62% {
  opacity: 0.23604;
  }
  74% {
  opacity: 1.0;
  }
  100% {
  opacity: 1.0;
  }
}

@keyframes textShadow {
  0% {
    text-shadow: 0.4389924193300864px 0 1px rgba(0,30,255,0.5), -0.4389924193300864px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  5% {
    text-shadow: 2.7928974010788217px 0 1px rgba(0,30,255,0.5), -2.7928974010788217px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  10% {
    text-shadow: 0.02956275843481219px 0 1px rgba(0,30,255,0.5), -0.02956275843481219px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  15% {
    text-shadow: 0.40218538552878136px 0 1px rgba(0,30,255,0.5), -0.40218538552878136px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  20% {
    text-shadow: 3.4794037899852017px 0 1px rgba(0,30,255,0.5), -3.4794037899852017px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  25% {
    text-shadow: 1.6125630401149584px 0 1px rgba(0,30,255,0.5), -1.6125630401149584px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  30% {
    text-shadow: 0.7015590085143956px 0 1px rgba(0,30,255,0.5), -0.7015590085143956px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  35% {
    text-shadow: 3.896914047650351px 0 1px rgba(0,30,255,0.5), -3.896914047650351px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  40% {
    text-shadow: 3.870905614848819px 0 1px rgba(0,30,255,0.5), -3.870905614848819px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  45% {
    text-shadow: 2.231056963361899px 0 1px rgba(0,30,255,0.5), -2.231056963361899px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  50% {
    text-shadow: 0.08084290417898504px 0 1px rgba(0,30,255,0.5), -0.08084290417898504px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  55% {
    text-shadow: 2.3758461067427543px 0 1px rgba(0,30,255,0.5), -2.3758461067427543px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  60% {
    text-shadow: 2.202193051050636px 0 1px rgba(0,30,255,0.5), -2.202193051050636px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  65% {
    text-shadow: 2.8638780614874975px 0 1px rgba(0,30,255,0.5), -2.8638780614874975px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  70% {
    text-shadow: 0.48874025155497314px 0 1px rgba(0,30,255,0.5), -0.48874025155497314px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  75% {
    text-shadow: 1.8948491305757957px 0 1px rgba(0,30,255,0.5), -1.8948491305757957px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  80% {
    text-shadow: 0.0833037308038857px 0 1px rgba(0,30,255,0.5), -0.0833037308038857px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  85% {
    text-shadow: 0.09769827255241735px 0 1px rgba(0,30,255,0.5), -0.09769827255241735px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  90% {
    text-shadow: 3.443339761481782px 0 1px rgba(0,30,255,0.5), -3.443339761481782px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  95% {
    text-shadow: 2.1841838852799786px 0 1px rgba(0,30,255,0.5), -2.1841838852799786px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
  100% {
    text-shadow: 2.6208764473832513px 0 1px rgba(0,30,255,0.5), -2.6208764473832513px 0 1px rgba(255,0,80,0.3), 0 0 3px;
  }
}




@keyframes shootingStar {
  0% {
    transform: translate(0, 0) rotate(var(--angle)) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translate(300px, 150px) rotate(var(--angle)) scale(1);
    opacity: 0;
  }
}

.shooting-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #f8fbff;
  border-radius: 50%;
  box-shadow: 0 0 6px 2px #f8fbff;
}

.shooting-star::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 150px;
  height: 2px;

  transform: translateY(-50%) rotate(180deg);
  transform-origin: left center;

  background: linear-gradient(to right, #f8fbff, transparent);
}

.ocean-bg {
  position: fixed;
  inset: 0;

  pointer-events: none;
  z-index: -1;

  overflow: hidden;
}

/* Horizon line */
.ocean-bg::before {
  content: "";
  position: absolute;

  left: -20%;
  top: 80%;

  width: 140%;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(45,255,196,0.15) 20%,
    rgba(45,255,196,0.95) 50%,
    rgba(45,255,196,0.15) 80%,
    transparent 100%
  );

  box-shadow:
    0 0 10px rgba(45,255,196,0.8),
    0 0 30px rgba(45,255,196,0.5),
    0 0 80px rgba(45,255,196,0.2);

  animation:
    oceanDrift 8s ease-in-out infinite,
    oceanShimmer 5s linear infinite;
}

/* Water glow */
.ocean-bg::after {
  content: "";
  position: absolute;

  left: -30%;
  top: 80%;

  width: 160%;
  height: 70%;

  background: linear-gradient(
    to bottom,
    rgba(45,255,196,0.12),
    transparent 70%
  );

  filter: blur(40px);
}

.ocean-bg .sparkles {
  position: absolute;
  inset: 80% 0 0 0;
}

.ocean-bg .sparkles span {
  position: absolute;

  width: 3px;
  height: 3px;

  border-radius: 50%;

  background: rgba(220,255,245,1);

  box-shadow:
    0 0 8px rgba(45,255,196,1),
    0 0 18px rgba(45,255,196,1),
    0 0 36px rgba(45,255,196,0.95),
    0 0 72px rgba(45,255,196,0.55),
    0 0 120px rgba(45,255,196,0.25);

  filter: blur(0.2px);

  opacity: 0;

  animation: sparkle infinite ease-in-out;
}

.ocean-bg .sparkles span:nth-child(1)  { left: 6%;  top: 10%; animation: sparkle 3s infinite 0s; }
.ocean-bg .sparkles span:nth-child(2)  { left: 14%; top: 25%; animation: sparkle 5s infinite 1s; }
.ocean-bg .sparkles span:nth-child(3)  { left: 22%; top: 8%;  animation: sparkle 4s infinite 2s; }
.ocean-bg .sparkles span:nth-child(4)  { left: 31%; top: 40%; animation: sparkle 6s infinite .5s; }
.ocean-bg .sparkles span:nth-child(5)  { left: 39%; top: 18%; animation: sparkle 3.5s infinite 1.4s; }
.ocean-bg .sparkles span:nth-child(6)  { left: 48%; top: 55%; animation: sparkle 5.5s infinite 2.3s; }
.ocean-bg .sparkles span:nth-child(7)  { left: 56%; top: 20%; animation: sparkle 4.5s infinite .7s; }
.ocean-bg .sparkles span:nth-child(8)  { left: 64%; top: 70%; animation: sparkle 7s infinite 1.1s; }
.ocean-bg .sparkles span:nth-child(9)  { left: 72%; top: 32%; animation: sparkle 4.2s infinite 2.5s; }
.ocean-bg .sparkles span:nth-child(10) { left: 81%; top: 48%; animation: sparkle 6s infinite .2s; }
.ocean-bg .sparkles span:nth-child(11) { left: 88%; top: 15%; animation: sparkle 3.2s infinite 1.9s; }
.ocean-bg .sparkles span:nth-child(12) { left: 93%; top: 65%; animation: sparkle 5.8s infinite .9s; }
.ocean-bg .sparkles span:nth-child(13) { left: 17%; top: 78%; animation: sparkle 6.2s infinite 2.1s; }
.ocean-bg .sparkles span:nth-child(14) { left: 44%; top: 84%; animation: sparkle 5.1s infinite 1.3s; }
.ocean-bg .sparkles span:nth-child(15) { left: 69%; top: 88%; animation: sparkle 7.4s infinite .4s; }

@keyframes oceanDrift {
  0%, 100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(3px);
  }
}

@keyframes oceanShimmer {
  from {
    background-position: -400px 0;
  }

  to {
    background-position: 400px 0;
  }
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.4);
  }

  45% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
    transform: scale(3);
  }

  55% {
    opacity: 0.8;
  }
}


@media (max-width: 1000px) {
	
	
  .menu-toggle {
    display: block;
	z-index: 99999;
  }

  .container {
    display: block;
	flex-direction: column;
  }

  .sidebar-column {
    position: fixed;

    top: 0;
    right: -320px;

    width: 280px;
    height: 100vh;
	 flex: 0 0 250px; 
    min-width: 0;

    overflow-y: auto;

    padding: 20px;

    z-index: 999;

    transition: right 0.3s ease;
  }

  .sidebar-column.open {
    right: 0;
  }
  
  .content-box-img-maid {
    flex-direction: column;
    align-items: center;
  }

}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
  }
  
  .content-box {
	position: relative;
	 display: flex;
    flex-direction: column !important;
    align-items: stretch;
	flex-wrap: nowrap;
	min-height: 100px;
  }
  

  
  .content-box-img-maid {
    order: 2;
    position: relative;
    display: flex;
    align-items: flex-end;

    width: 100%;
    box-sizing: border-box;

    padding-right: 16px;
    min-height: auto;
  }
  
  .content-box-img-maid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;

  top: 348px;
  height: 5px;
  background: rgba(93, 255, 138, 1.0);
}
  
  .hacker-text {
    order: 1;
	margin-bottom: 0px;
    margin-left: 0px;
  }
  
  .content-box-img-maid img {
    margin-left: auto;
    display: block;
	transform: translateY(100px);
  }
  
  .menu-toggle {
    display: block;

    position: relative;  
    margin-left: auto;   
    margin-right: 1px;  
    margin-top: 12px;
  }
  
  .image-crop {
    transform: translateY(-20px);
	height: 350px;
	/*border-bottom: 2px solid green;*/
	position: relative; 
	margin-top: auto;
  }

}