:root{
    --orange:#ff6a00 ;
    --purple:#4d2a6f ;
    --green: #00ff00
}

/*image rendering*/
img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pixel {
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    height: 1em;
}
/*animations*/
@keyframes vibrate {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0, 0); }
}
@keyframes megavibrate {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-5px, 5px); }
  40% { transform: translate(-5px, -5px); }
  60% { transform: translate(5px, 5px); }
  80% { transform: translate(5px, -5px); }
  100% { transform: translate(0, 0); }
}
/*body*/
body {
  background-color: var(--purple);
  background-image: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.15) 0px,
    rgba(0,0,0,0.15) 1px,
    transparent 1px,
    transparent 3px
    );
  color: var(--orange);
  font-family: quantico-v19-latin-regular, sans-serif;
  line-height: 1.6;
  padding: 0 20px 60px;
}
/*heads*/
h1 {
  font-size: 2.2em;
  letter-spacing: 2px;
  color: #ffab5e;
  text-align: center;
  text-shadow: 0 0 8px rgba(255, 106, 0, 0.5);
  border: 2px solid var(--orange);
  border-radius: 6px;
  background-color: rgba(36, 18, 56, 0.6);
  padding: 16px;
  margin-bottom: 30px;
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.3);
}
h2 {
  color: #ffab5e;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 6px;
  margin-top: 40px;
  letter-spacing: 1px;
}

/*paragraphs*/
p {
    background-color: rgba(36, 18, 56, 0.55);
    border: 1px solid #6b3f99;
    box-shadow: inset 0 0 10px rgba(255, 106, 0, 0.08);
    padding: 12px 16px;
    margin: 14px 0;
}

/*links*/
a:link {
  color: #00e5ff;
  text-decoration: none;
  border-bottom: 1px dotted #00e5ff;
  padding-bottom: 1px;
  transition: all 0.2s ease-in-out;
}

a:visited {
  color: #ffab5e;
}

a:hover, a:focus {
  color: #ff4fa3;
  border-bottom-color: #ff4fa3;
  text-shadow: 0 0 6px rgba(255, 79, 163, 0.6);
}

a:active {
  color: var(--orange);
}

/* ---------- scrollbar (webkit) ---------- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #241238;
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 5px;
}

.terminal {
    background-color: #000000;
    color: var(--green);
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.4;
    padding: 20px;
    margin: 0;
    border-radius: 0px;
    min-height: 0px;
    box-sizing: border-box;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
    grid-column: span 3;
    grid-row: span 2;
    display: flex;

}

/* shelf */
.shelf {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: minmax(100px, auto); 
    gap: 15px; 
    grid-auto-flow: dense;
}

.shelf-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange);
    color: #00e5ff;
    text-align: center;
    overflow: hidden;
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height:100px;
    max-width: 100px;
    max-height: 100px;
    margin: 0;
    padding: 0;
    box-shadow: inset 0 0 10px rgba(255, 106, 0, 0.08);
}

.shelf-item-l {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange);
    color: #00e5ff;
    text-align: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
    box-shadow: inset 0 0 10px rgba(255, 106, 0, 0.08);
    grid-column: span 2;
    grid-row: span 3;

}

.shelf-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange);
    text-align: center;
    overflow: hidden;
    cursor: pointer; 
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height:100px;
    max-width: 100px;
    max-height: 100px;
    margin: 0;
    padding: 0;
    box-shadow: inset 0 0 10px rgba(255, 106, 0, 0.08);
}

.shelf-link:hover {
    animation: vibrate 0.15s linear infinite;
}
/* mini shelfs */

.minishelf {
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    grid-auto-rows: minmax(25px, auto); 
    gap: 25px; 
    grid-auto-flow: dense;
}

.minishelf-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    text-align: center;
    overflow: hidden;
    width: 25px;
    height: 25px;
    min-width: 25px;
    min-height:25px;
    max-width: 25px;
    max-height: 25px;
    margin: 0;
    padding: 0;
    box-shadow: inset 0 0 10px rgba(255, 106, 0, 0.08);
}
.minishelf-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange);
    text-align: center;
    overflow: hidden;
    cursor: pointer; 
    width: 25px;
    height: 25px;
    min-width: 25px;
    min-height:25px;
    max-width: 25px;
    max-height: 25px;
    margin: 0;
    padding: 0;
    box-shadow: inset 0 0 10px rgba(255, 106, 0, 0.08);
}

.minishelf-link:hover {
    animation: megavibrate 0.2s linear infinite;
}

/* c */
.c {
    display: grid;
    grid-template-columns: repeat(6, 1em);
    gap: 0.2em; 
    grid-auto-flow: dense;
}
.d {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange);
    text-align: center;
    overflow: hidden;
    cursor: pointer; 
    width: 1em;
    height: 1em;
    min-width: 1em;
    min-height:1em;
    max-width: 1em;
    max-height: 1em;
    margin: 0;
    padding: 0;
    box-shadow: inset 0 0 10px rgba(255, 106, 0, 0.08);
    
}

/* ---------- Link list with bullet points ---------- */
.link-list {
    list-style: none;               /* remove default bullets */
    padding-left: 1.5em;           /* space for custom bullet */
    margin: 14px 0;                /* same vertical rhythm as paragraphs */
}

.link-list li {
    position: relative;
    margin: 8px 0;
    padding-left: 1.5em;           /* indent text after bullet */
}

/* Custom bullet */
.link-list li::before {
    content: "▸";                  /* arrow bullet – change to "•" or "■" if preferred */
    position: relative;
    left: 0;
    top: 0;
    color: var(--orange);
    font-size: 1.5em;
    line-height: 1.2;
    text-shadow: 0 0 6px rgba(255, 106, 0, 0.4);
}

/* Link styling consistent with the rest of your site */
.link-list a {
    background-color: rgba(36, 18, 56, 0.55);
    border: 1px solid #6b3f99;
    box-shadow: inset 0 0 10px rgba(255, 106, 0, 0.08);
    padding: 0.3em 1em 0.3em 1em; /* extra left padding for bullet */
    margin: 8px 0;
}

.link-list a:visited {
    color: #ffab5e;
}

.link-list a:hover,
.link-list a:focus {
    color: #ff4fa3;
    border-bottom-color: #ff4fa3;
    text-shadow: 0 0 6px rgba(255, 79, 163, 0.6);
}

.link-list a:active {
    color: var(--orange);
}

/* ---------- back home button ---------- */
.home-button {
    display: inline-block;
    margin: 10px 0 10px;
    padding: 5px 10px 10px;
    border: 1px solid var(--orange);
    align-items: center;
  border-radius: 20px;
  color: #ffab5e;
  text-decoration: none;
  
  font-size: 0.9em;
  letter-spacing: 0.5px;
  transition: all 0.2s ease-in-out;
}



.home-button:hover {
  background-color: var(--orange);
  color: #241238;
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.5);
  animation: vibrate 0.15s linear infinite;
}

.secret-link {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  opacity: 0;
  cursor: default;
  z-index: 999;
}
