/* ============================================
   JessyLinux War Machine — Full Stylesheet
   ============================================ */

/* --- Base Page Style --- */
body {
  font-family: Arial, sans-serif;
  background-color: black;
  color: lime;
  text-align: center;
  margin: 0;
  padding: 0;
}

header, footer {
  background: #111;
  padding: 20px;
  border-bottom: 2px solid lime;
}

h1 {
  font-size: 2.5em;
}

article {
  margin: 40px auto;
  max-width: 600px;
}

/* ============================================
   Floating 3D Corner Images
   ============================================ */

.corner-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;               /* keeps it anchored to the top */
  pointer-events: none;
  z-index: 5;
}

.corner-img {
  position: absolute;
  width: 240px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* --- Placement + Glow Colors --- */
.top-left {
  top: 20px;
  left: 20px;
  filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.7)); /* Cyan glow */
}

.top-right {
  top: 20px;
  right: 20px;
  filter: drop-shadow(0 0 25px rgba(0, 255, 128, 0.7)); /* Emerald glow */
}

/* --- Hover Animation --- */
.corner-img:hover {
  transform: translateY(-10px) scale(1.05) rotateY(6deg);
  filter: drop-shadow(0 0 40px rgba(0, 255, 255, 1))
          drop-shadow(0 0 60px rgba(0, 255, 128, 0.8));
}
/* ============================================
   Language Switch Styling
   ============================================ */

/* Toggle button container */
#language-toggle {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 10;
  pointer-events: auto;
}

/* Buttons */
#language-toggle button {
  background-color: black;
  color: lime;
  border: 1px solid lime;
  padding: 5px 10px;
  margin-left: 5px;
  cursor: pointer;
  font-family: Arial, sans-serif;
}

#language-toggle button:hover {
  background-color: lime;
  color: black;
}

/* Language visibility control */
.lang {
  display: none;
}

.lang.active {
  display: block;
}
/* # "Mission Accomplished to style.css" */
/* # "Second Mission Accomplished msd to style.css" */
/* Today Oct 10 2025 – my first reflog */
/* Oct 12 2025 22:25 */
