/*
██████   █████   ██████  ███████     ██       █████  ██    ██  ██████  ██    ██ ████████ 
██   ██ ██   ██ ██       ██          ██      ██   ██  ██  ██  ██    ██ ██    ██    ██    
██████  ███████ ██   ███ █████       ██      ███████   ████   ██    ██ ██    ██    ██    cc
██      ██   ██ ██    ██ ██          ██      ██   ██    ██    ██    ██ ██    ██    ██    
██      ██   ██  ██████  ███████     ███████ ██   ██    ██     ██████   ██████     ██    
*/

/* --- Variables & Reset --- */

:root {
  --blue: #7a3e2b;
  --blue-logobackground: url(/assets/images/backgrounds/newBanner.png);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-y: visible;
  scroll-behavior: smooth;
}

/* --- Body & Background --- */

body {
  font-family: "Georgia", serif;
  font-size: 17px;
  color: #2b2b2b;
  scrollbar-color: var(--blue) transparent;
  scrollbar-width: thin;
  image-rendering: pixelated;
  line-height: 1.6;
  position: relative;
  overflow-y:visible
}

body::before {
  position: fixed;
  inset: 0;
}

.background {
  background: url(../../assets/images/backgrounds/outcrop.png);
  background-position: center;
  background-size: 100%;
}

/* --- Grid Layout --- */

.index {
  display: grid;
  grid-template: "header header" "topnav topnav" "nav main" "footer footer" / 15% 85%;
  margin: 10px auto;
  max-width: 1330px;
  padding: 20.5px;
  box-shadow: 20px 20px 10px 5px rgba(0, 0, 0, 0.75);
  image-rendering: initial;
  background: url(../../assets/images/backgrounds/cork2.png);
  background-position: center;
  background-size: 60%;
  border: 13px solid;
  border-image: url(/assets/images/borders/frame1.png) 10 round;
}

header {
  grid-area: header;
  display: flex;
  gap: 16px;
  margin: 3.25px;
  margin-bottom: 16px;
  text-align: center;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  position: relative;
  image-rendering: pixelated;
  background: #d6cdb0;
  box-shadow: 3px 3px 1px 0px rgba(0, 0, 0, 0.75);
  /* border: 10px solid; */
  /* border-image: url(/assets/images/borders/frame1.png) 10 round; */
}

main {
  grid-area: main;
  /* padding: 6px; */
  border-radius: 6px;
}

footer {
  grid-area: footer;
  margin: 3px;
  padding: 5px;
  background-image:
    linear-gradient(
      to left,
      rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.4)
    ),
    var(--blue-logobackground);
  background-size: 700px;
  text-align: center;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 11px;
  text-shadow:
    -1px -1px 0 #584630,
    1px -1px 0 #584630,
    -1px 1px 0 #584630,
    1px 1px 0 #584630;
  border-radius: 0 0 5px 5px;
  box-shadow: 3px 3px 1px 0px rgba(0, 0, 0, 0.75);
  border: 10px solid;
  border-image: url(/assets/images/borders/frame1.png) 10 round;
}

.page-footer {
  position: relative;
}

footer::before {
  background: rgba(0, 0, 0, 0.25);
}

/* --- Page Header & Hero --- */

.page-hero {
  width: 100%;
  display: block;
  height: auto;
}

.page-header {
  z-index: 9999;
  margin-top: 6px;
  margin-left: 5px;
  margin-bottom: -33px;
  background-color: transparent;
  position: relative;
}


/* .page-header h1 {
  z-index: inherit;
  font-size: 24px;
  color: #7a3e2b;  rusty brown
  border-bottom: 2px dashed #b7a98a;
  padding-bottom: 5px;
  margin: 0;
} */

/* --- Boxes --- */

.box {
  border: 2px solid #584630;
  padding: 0;
  background: #faf7f1;
  margin: 3px;
  margin-top: 0;
  border-radius: 0px 4px 4px 4px;
  box-shadow: 2px 2px 1px 0px rgba(0, 0, 0, 0.75);
}

.borderlessbox {
  padding: 0;
  background: #faf7f1;
  margin: 3px;
  margin-top: 0;
  box-shadow: 2px 2px 1px 0px rgba(0, 0, 0, 0.75);
}

.box ul li {
  align-items: center;
  gap: 3px;
  font-size: 15px;
  color: #2a1f0e;
  cursor: pointer;
}

.box ul li:hover {
  background: #e8dfc8;
  color: #8b3a10;
}

.box ul li a {
  color: inherit;
  text-decoration: underline;
}

/* --- iframes --- */

.iframe {
  padding: 3px;
  margin: 0;
  image-rendering: auto;
  margin-left: 11px;
}

iframe {
  overflow-y: visible;
  overflow-x: hidden;
  scrollbar-color: var(--brown) transparent;
  scrollbar-width: thin;
}

iframe body {
  background-image: none;
}

#iframebox {
  width: 100%;
  position: relative;
}

.iframe-panel {
  position: relative;
  transform: rotate(-0.05deg);
  margin-top: 10px;
}

.iframe-loading-text {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.iframe-loading-label {
  font-family: retron;
  font-size: 13px;
}

.main-iframe {
  width: 100%;
}

/* --- Marquee --- */

.card-image {
  overflow: hidden;
  position: relative;
}

.marquee {
  display: flex;
  animation: scroll 10s linear infinite;
}

.marquee img {
  width: 100%;
  flex-shrink: 0;
}

@keyframes scroll {
  from {
    transform: translateX(50%);
  }
  to {
    transform: translateX(-50%);
  }
}

/*
██       ██████   █████  ██████  ███████ ██████  
██      ██    ██ ██   ██ ██   ██ ██      ██   ██ 
██      ██    ██ ███████ ██   ██ █████   ██████  
██      ██    ██ ██   ██ ██   ██ ██      ██   ██ 
███████  ██████  ██   ██ ██████  ███████ ██   ██ 
*/

#loader {
  align-items: center;
  background: white;
  display: flex;
  height: 100vh;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.gelatine {
  animation: gelatine 0.5s infinite;
  height: 100px;
  image-rendering: pixelated;
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}

#iframeloader {
  width: 100%;
  height: 687px;
  background-color: white;
  position: absolute;
  display: none;
}

.fadeout {
  animation-name: fadeout;
  animation-duration: 1s;
}

.fadein {
  animation-name: fadein;
  animation-duration: 0.5s;
}

@keyframes gelatine {
  from,
  to {
    transform: scale(1, 1);
  }

  25% {
    transform: scale(0.9, 1.1);
  }

  50% {
    transform: scale(1.1, 0.9);
  }

  75% {
    transform: scale(0.95, 1.05);
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*
███████  ██████  ███    ██ ████████ ███████ 
██      ██    ██ ████   ██    ██    ██      
█████   ██    ██ ██ ██  ██    ██    ███████ 
██      ██    ██ ██  ██ ██    ██         ██ 
██       ██████  ██   ████    ██    ███████ 
*/

@font-face {
  font-family: Retron;
  src: url(../../assets/fonts/retron2000.ttf) format("truetype");
}

@font-face {
  font-family: Daydream;
  src: url(../../assets/fonts/daydream.ttf) format("truetype");
}

@font-face {
  font-family: pixeloperator;
  src: url(../../assets/fonts/pixeloperator.ttf) format("truetype");
}

@import url("https://fonts.googleapis.com/css2?family=Mansalva&display=swap");


/*
██   ██ ███████  █████  ██████  ███████ ██████  ███████ 
██   ██ ██      ██   ██ ██   ██ ██      ██   ██ ██      
███████ █████   ███████ ██   ██ █████   ██████  ███████ 
██   ██ ██      ██   ██ ██   ██ ██      ██   ██      ██ 
██   ██ ███████ ██   ██ ██████  ███████ ██   ██ ███████ 
*/

h1, h2, h3 {
  font-family: 'Courier New', monospace;
  letter-spacing: 0.26px;
}

h1 {
  font-size: 28px;
  margin-bottom: 10px;
  font-family: "Courier New", Courier, monospace;
}

h2 {
  margin: 0;
  padding: 3px;
  font-size: 20px;
  text-shadow:
    -1px -1px 0 var(--blue),
    1px -1px 0 var(--blue),
    -1px 1px 0 var(--blue),
    1px 1px 0 var(--blue);
  color: #fff;
  background-image: linear-gradient(to left, #b9845a, var(--blue));
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.h2slanted {
  margin: 3px;
  margin-bottom: 0;
  font-size: 17px;
  height: 30px;
  color: #fff;
  padding: 3px 6px;
  font-style: italic;
  align-items: center;
  justify-content: space-between;
  display: flex;
  background-image: linear-gradient(
    40deg,
    #584630 68%,
    rgba(128, 92, 0, 0.05) 85%
  );
}

.h2big {
  margin: 0;
  padding: 3px 6px;
  font-size: 15px;
  color: #fff;
  background-image: linear-gradient(to left, #b9845a, #584630);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30px;
  text-shadow:
    -1px -1px 0 #584630,
    1px -1px 0 #584630,
    -1px 1px 0 #584630,
    1px 1px 0 #584630;
  font-family: Georgia, serif;
  font-style: italic;
  border-bottom: 2px solid #584630;
}

.h2small {
  border: solid 1px var(--blue);
  border-left: 0;
}

.h2songlist {
  background: transparent;
  align-items: center;
  font-size: 17px;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  text-shadow: none;
  padding: 3px;
}

h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  color: var(--blue);
  border-bottom: 2px dotted var(--blue);
  margin: 3px;
}

.h3gradient {
  margin: 3px;
  padding: 3px;
  text-shadow:
    -1px -1px 0 var(--blue),
    1px -1px 0 var(--blue),
    -1px 1px 0 var(--blue),
    1px 1px 0 var(--blue);
  font-size: 13px;
  color: #fff;
  background-image: linear-gradient(to left, #b9845a, var(--blue));
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: solid 1px var(--blue);
  border-left: 0;
}

.h3gradientspore {
  margin: 0px;
  padding: 3px;
  text-shadow:
    -1px -1px 0 var(--blue),
    1px -1px 0 var(--blue),
    -1px 1px 0 var(--blue),
    1px 1px 0 var(--blue);
  font-size: 13px;
  color: #fff;
  background-image: linear-gradient(to left, #b9845a, var(--blue));
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px var(--blue);
}

/* --- Base Elements --- */

a {
  cursor: url(../../assets/images/cursors/glovepointer.png), pointer;
  color: var(--blue);
  text-decoration: underline;
}

a:hover {
  color: #5a0f0f;
}

a:focus-visible {
  outline: 2px dashed #7a3e2b;
  outline-offset: 2px;
}

p {
  margin: 3px;
  line-height: 1.5;
}

ul {
  margin: 3px 3px 5px;
  padding: 0 0 3px 16px;
  border-bottom: 1px solid #ccc;
}

li {
  list-style-type: square;
}

hr {
  border: 0;
  border-bottom: 2px dotted var(--blue);
  margin: 3px;
  padding-bottom: 3px;
}

.flex {
  display: flex;
}

.sticky {
  position: sticky;
  top: 0;
}

b {
    text-decoration: underline dotted;
}


/*
███    ██  █████  ██    ██ ██  ██████   █████  ████████ ██  ██████  ███    ██ 
████   ██ ██   ██ ██    ██ ██ ██       ██   ██    ██    ██ ██    ██ ████   ██ 
██ ██  ██ ███████ ██    ██ ██ ██   ███ ███████    ██    ██ ██    ██ ██ ██  ██ 
██  ██ ██ ██   ██  ██  ██  ██ ██    ██ ██   ██    ██    ██ ██    ██ ██  ██ ██ 
██   ████ ██   ██   ████   ██  ██████  ██   ██    ██    ██  ██████  ██   ████ 
*/

nav {
  grid-area: nav;
  font-size: 14px;
}

.navbox {
  margin: 3px;
  transform: rotate(-0.1deg);
  margin-bottom: 5px;
  padding: 12px 2px 10px 18px;
  border-image-slice: 60 25 50 44 fill;
  border-image-width: 13px 12px 6px 21px;
  border-image-repeat: stretch round;
  border-style: solid;
  border-color: transparent;
  image-rendering: optimizeQuality;
  border-image-source: url(/assets/images/backgrounds/rippedpagenew.png);
}

.nav-divider {
  height: 1px;
  width: 100%;
  margin: 0 0 10px;
  background: rgba(0, 0, 0, 0.08);
}

.navheader {
  background: #7f9273; /* muted moss green */
  color: #f4f1e8;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.5px;
  padding: 6px 10px;
  margin-left: 19px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  box-shadow:
    inset 0 -2px 0 rgba(0, 0, 0, 0.2),
    1px 1px 0 rgba(0, 0, 0, 0.15);
  transform: rotate(-0.3deg);
  display: inline-block;
}

nav h3 {
  padding: 2px 4px;
  margin: 3px;
  padding-left: 3px;
  padding-right: 3px;
  color: #584630;
  border-bottom: 2px dotted #584630;
  font-style: italic;
  height: 18px;
  align-items: center;
}

nav li {
  margin-top: 2px;
  margin-left: 12px;
}

/* nav a:hover {
  background: rgba(139, 94, 60, 0.15);
  transform: translateX(3px);
} */

.constructlink {
  list-style: url(../../assets/images/fuck.gif);
}

.navfloater {
  margin: 3px;
  text-align: center;
}

.button-card {
  width: 90%;
  min-height: 17vh;
  margin-left: 3%;
  transform: rotate(1deg);
}

.button-card__image {
  text-align: center;
}

.button-image {
  border: 5px solid;
  border-image: url(/assets/images/borders/frame1.png) 10 round;
  max-width: 100%;
  height: auto;
}

/*
██   ██  ██████  ███    ███ ███████     ██████   █████   ██████  ███████ 
██   ██ ██    ██ ████  ████ ██          ██   ██ ██   ██ ██       ██      
███████ ██    ██ ██ ████ ██ █████       ██████  ███████ ██   ███ █████   
██   ██ ██    ██ ██  ██  ██ ██          ██      ██   ██ ██    ██ ██      
██   ██  ██████  ██      ██ ███████     ██      ██   ██  ██████  ███████ 
*/

#maintitle {
  background-color: #d8c4a3;
  margin-left: -2px;
  margin-bottom: -15px;
  border-radius: 2px;
  padding: 6px 14px;
  font-size: 14px;
  transform: rotate(-2deg);
  display: inline-block;
  position: relative;
  color: inherit;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.home-page {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: flex-start;
}

.home-main {
  flex: 1 1 66%;
  min-width: 320px;
  max-width: 76%;
  padding-right: 10px;
}

.home-sidebar {
  flex: 0 0 24%;
  min-width: 240px;
  margin-left: 1%;
}

.home-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 5px;
  width: 100%;
}

.home-spacer {
  height: 20px;
}

.sidebar-list {
  margin-left: 10px;
}

.sidebar-list li::marker {
  content: "★";
}

.sidebar-link {
  display: inline-block;
  margin-left: 15px;
}

/* --- Tip Box --- */

.tip-box {
  display: flex;
  box-shadow: 2px 2px 1px 0px rgba(0, 0, 0, 0.75);
  align-items: center;
  gap: 12px;
  max-width: 80%;
  padding: 8px 10px;
  background: #faf7f1;
  margin: 3px 0 20px 5%;
  transform: rotate(2deg);
  background-image: url(/assets/images/backgrounds/grid.png);
  position: relative;
}

.tip-box::before {
  background-image: url("/assets/images/tape/tape1.png");
  background-repeat: no-repeat;
  display: block;
  content: " ";
  position: absolute;
  height: 50px;
  width: 150px;
  background-size: contain;
  top: -20px;
  left: 40%;
}

.tip-character {
  width: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tip-content {
  display: flex;
  flex-direction: column;
  min-width: 70%;
}

.tip-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 3px;
  color: #8b3a10;
  font-family: Georgia, serif;
}

.tip-text {
  font-size: 16px;
  color: #2a1f0e;
  line-height: 1.5;
}

/* --- Sidebar Widgets --- */

.recentupdates {
  background-image: url(/assets/images/backgrounds/grid.png);
  min-height: 40%;
}

.rockoftheweek {
  background-image: url(/assets/images/backgrounds/grid.png);
  min-height: 40%;
}

.rockoftheweek img {
  margin-left: 13%;
  width: 70%;
}

#updates h3 {
  padding: 0;
  margin: 0;
  padding-left: 3px;
  padding-right: 3px;
}

/* --- Content Layout --- */

.content {
  background-image: url(/assets/images/backgrounds/lined2-rotated.png);
  background-size: 80%;
  background-position-y: -15px;
  background-repeat: repeat;
  padding: 10px;
  padding-top: 0px;
}

.paddedbox {
  padding: 15px;
  padding-top: 0px;
}

.infobox {
  width: 32%;
  background-image: url(/assets/images/backgrounds/notepad.png);
  background-position: 91%;
  padding-top: 10px;
  padding-bottom: 15px;
  padding-left: 2px;
  background-size: 140%;
}

.pinned-note {
  position: absolute;
  top: 64%;
  right: 5%;
  background: #f3e7c9;
  padding: 10px 14px;
  width: 150px;
  font-size: 13px;
  text-align: center;
  border: 1px solid #c9b48a;
  box-shadow: 3px 3px 0 #bda77d;
  transform: rotate(2deg);
  z-index: 9999;
}

.focal {
  float: left;
  height: 160px;
  margin: 0 10px 5px 0;
  padding: 10px;
  /* border: 2px solid #333; */
}

/*
 █████  ██████   ██████  ██    ██ ████████     ██████   █████   ██████  ███████ 
██   ██ ██   ██ ██    ██ ██    ██    ██        ██   ██ ██   ██ ██       ██      
███████ ██████  ██    ██ ██    ██    ██        ██████  ███████ ██   ███ █████   
██   ██ ██   ██ ██    ██ ██    ██    ██        ██      ██   ██ ██    ██ ██      
██   ██ ██████   ██████   ██████     ██        ██      ██   ██  ██████  ███████ 
*/

.aboutheader {
  justify-content: center;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.aboutheader img {
  height: 100px;
  flex: 1 1 auto;
  object-fit: cover;
}

.aboutbox {
  margin: 3px;
  border: 1px solid var(--blue);
  width: fit-content;
  padding: 3px;
  background-image: url(../../assets/images/backgrounds/grid.png);
}

.aboutbox h2 {
  margin-bottom: 0;
  border: 1px solid var(--blue);
}

.aboutbox h3 {
  margin-left: -3px;
  margin-right: -3px;
  padding-left: 3px;
  padding-right: 3px;
  border-bottom: solid 1px;
}

.aboutbox hr {
  margin-left: -3px;
  margin-right: -3px;
  border-bottom: solid 1px;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* --- Profile --- */

.profile-sidebar {
  width: 28%;
  min-width: 220px;
}

.profile-cover {
  width: 100%;
  height: 295px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  background-image: url(/assets/images/profile.png);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 8px;
}

.profile-credit {
  margin: 0;
  font-size: 10px;
}

.profile-credit a {
  color: #fff;
  text-decoration: none;
  mix-blend-mode: difference;
}

.profile-details {
  width: 68%;
  min-width: 280px;
  display: inline-flex;
  margin-left: 0px;
}

.flag-box {
  display: inline-block;
  background-image: url(/assets/images/backgrounds/flashcard.png);
  height: fit-content;
  padding: 20px;
  transform: rotate(0.5deg);
}

.profile-info {
  display: block;
  background-image: url(/assets/images/backgrounds/seamless_paper_texture.webp);
  background-color: blue;
  height: fit-content;
  padding: 25px;
  transform: rotate(1deg);
}

.lined {
  text-decoration: underline;
  text-decoration-color: #b2854b;
  text-decoration-style: solid;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.flag-row {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  gap: 10px;
  margin: 10px 0;
}

.flag-row img {
  max-width: 72px;
  height: auto;
}

.social-links {
  display: flex;
  justify-content: center;
}

.about-description {
  padding: 20px;
  margin-top: 1em;
  width: 90%;
  display: inline-flexbox;
  background-size: 170%;
  background-position-y: 20%;
  margin-left: 20px;
  height: 75%;
  background-image: url(/assets/images/backgrounds/4562203394_ca67a19634_c.jpg);
  transform: rotate(2deg);
}

/* --- About Lists & Faves --- */

.aboutlist {
  list-style: url(../../assets/images/cakebullet.png);
  padding: 0;
  margin: 3px;
  padding-left: 16px;
}

.ultfav {
  text-align: center;
  text-transform: uppercase;
  font-family: daydream;
  font-size: 10px;
  margin: 3px;
  text-shadow:
    -1px -1px 0 var(--blue),
    1px -1px 0 var(--blue),
    -1px 1px 0 var(--blue),
    1px 1px 0 var(--blue);
  color: white;
}

.ultfav img {
  vertical-align: middle;
}

@keyframes trans {
  0% {
    color: #5bcffa;
  }

  25% {
    color: #f5abb9;
  }

  50% {
    color: #fff;
  }

  75% {
    color: #f5abb9;
  }

  100% {
    color: #5bcffa;
  }
}

.countup {
  text-align: center;
  text-transform: uppercase;
  font-family: daydream;
  font-size: 10px;
  text-shadow:
    -1px -1px 0 var(--blue),
    1px -1px 0 var(--blue),
    -1px 1px 0 var(--blue),
    1px 1px 0 var(--blue);
  animation: trans 6s ease-in-out infinite;
}

.colors {
  background-image: linear-gradient(
    to right,
    rgb(255, 0, 0, 0.4),
    rgb(255, 255, 0, 0.4),
    rgb(0, 255, 0, 0.4)
  );
  margin: 3px;
  border-radius: 5px;
}

/* --- Icons, Kins & Cookies --- */

.icon {
  width: 18%;
  margin: 3px;
}

.icon img {
  margin-bottom: 3px;
  border-radius: 5px;
  width: 100%;
  border: solid 1px;
}

.kin {
  width: 25%;
  margin: 3px;
}

.kin img {
  width: 100%;
  border: solid 1px #69577c;
  border-radius: 5px;
}

.kin p {
  text-align: center;
}

.kin b {
  font-family: daydream;
  font-size: 10px;
  text-shadow:
    -1px -1px 0 var(--blue),
    1px -1px 0 var(--blue),
    -1px 1px 0 var(--blue),
    1px 1px 0 var(--blue);
  color: white;
  text-transform: uppercase;
}

.cookie {
  text-align: center;
  margin: 3px;
  width: 20%;
}

.cookie img {
  height: 120px;
}

.cookieheader {
  font-weight: bold;
  text-decoration: overline;
}

/*
███████ ██   ██ ██████  ██ ███    ██ ███████ ███████ 
██      ██   ██ ██   ██ ██ ████   ██ ██      ██      
███████ ███████ ██████  ██ ██ ██  ██ █████   ███████ 
     ██ ██   ██ ██   ██ ██ ██  ██ ██ ██           ██ 
███████ ██   ██ ██   ██ ██ ██   ████ ███████ ███████ 
*/

.shrinebox {
  display: flex;
  min-height: 100px;
  border: 1px solid;
  margin: 3px;
}

.shrinebox h2 {
  margin: 3px;
  margin-bottom: 0;
  border: 1px solid var(--blue);
}

.shrinebutton {
  border: 2px outset var(--blue);
  background: #fff;
  color: var(--blue);
  font-family: pixeloperator;
  font-size: 15px;
  text-decoration: none;
  cursor: url(../../assets/images/cursors/glovepointer.png), pointer;
  padding: 1px 4px 1px 4px;
}

.shrinebuttoninactive {
  border: 2px outset var(--blue);
  background: #fff;
  margin: 3px;
  color: var(--blue);
  font-family: pixeloperator;
  font-size: 15px;
  cursor: url(../../assets/images/cursors/glovepointer.png), pointer;
}

.shrinebutton:hover {
  border: 2px inset var(--blue);
  color: white;
}

.linkbox {
  margin: 3px;
  border: 1px solid var(--blue);
  width: fit-content;
  padding: 3px;
}

.linkbox h2 {
  margin-bottom: 0;
  border: 1px solid var(--blue);
}

/* --- Cold Shrine --- */

.coldouterbox {
  display: flex;
  justify-content: space-around;
}

.coldinnerbox {
  width: 500px;
  border: 1px solid;
  margin: 3px;
  border-bottom: 0px;
}

.coldinnerbox h3 {
  margin: 0px;
  padding: 3px;
  text-shadow:
    -1px -1px 0 var(--blue),
    1px -1px 0 var(--blue),
    -1px 1px 0 var(--blue),
    1px 1px 0 var(--blue);
  font-family: Retron;
  font-size: 13px;
  color: #fff;
  background-image: linear-gradient(to left, white, var(--blue));
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  border-bottom: solid 1px var(--blue);
}

.coldinnerboxmainimg {
  width: 100%;
  border-bottom: dashed 1px;
}

.coldinnerbox p {
  margin-top: 0px;
  text-indent: 20px;
}

.coldinnerboxsideimg {
  background-image: url(../../assets/images/shrines/cold/snowflakes.gif);
  width: 70px;
  margin: 6px;
  opacity: 0.5;
  box-shadow: 0 0 8px 8px white inset;
}

.coldmusic {
  height: 20px;
  width: 100%;
  border-bottom: 1px solid;
  border-top: 1px dashed;
}

.coldmusic audio {
  width: 100%;
  height: 100%;
}

/* --- Badges & Songs --- */

.badgecontainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.badgecontainer img {
  margin: 1px;
  image-rendering: pixelated;
}

.songbox {
  border: 1px solid;
  margin: 3px;
  height: 80px;
  position: relative;
}

.cover {
  float: left;
  width: 80px;
  margin-right: 3px;
}

.glow {
  animation: glow 4s infinite;
}

@keyframes glow {
  from,
  to {
    filter: drop-shadow(white 3px 3px 3px) drop-shadow(white -3px -3px 3px);
  }

  25% {
    filter: drop-shadow(white 3px 3px 5px) drop-shadow(white -3px -3px 5px);
  }

  50% {
    filter: drop-shadow(white 3px 3px 3px) drop-shadow(white -3px -3px 3px);
  }

  75% {
    filter: drop-shadow(white 3px 3px 5px) drop-shadow(white -3px -3px 5px);
  }
}

/* --- Mascot / Spore --- */

.sporegallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.mascotbox {
  border: solid 1px;
  margin: 3px;
  position: relative;
}

.mascotbox h2 {
  border-bottom: solid 1px #60667b;
}

.mascothr {
  border-bottom: solid 1px;
  margin-left: 0;
  margin-right: 0;
}

.mascotheadshot {
  width: 40%;
}

.cakeanim {
  animation: tilt 0.5s infinite;
}

.cakeanim:hover {
  animation: none;
}

.responselink {
  color: #60667b;
  text-decoration: underline;
}

/*
 ██████  ██████   █████  ██████  ██   ██ ██  ██████ ███████ 
██       ██   ██ ██   ██ ██   ██ ██   ██ ██ ██      ██      
██   ███ ██████  ███████ ██████  ███████ ██ ██      ███████ 
██    ██ ██   ██ ██   ██ ██      ██   ██ ██ ██           ██ 
 ██████  ██   ██ ██   ██ ██      ██   ██ ██  ██████ ███████ 
*/

.graphiccollection {
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
}

.blinkie {
  width: 150px;
  height: 20px;
  margin: 3px;
}

.stamp {
  width: 99px;
  height: 56px;
  margin: 3px;
}

.web-button {
  height: 31px;
  width: 88px;
  margin: 3px;
  cursor: url(../../assets/images/cursors/glovepointer.png), pointer;
}

.graphic {
  max-height: 100px;
  margin: 3px;
}

.bumperstickers {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bumperstickers img {
  border: solid 1px #000;
}

.pin {
  height: 90px;
  margin: 3px;
}

#pins {
  display: flex;
  flex-wrap: wrap;
  vertical-align: center;
  justify-content: space-evenly;
}

.pin img {
  height: 100%;
  border: solid 1px #000;
}

.sitebox {
  width: 25%;
  text-align: center;
}

.sitebox p:first-of-type {
  background: var(--blue);
  color: white;
}

.sitebox p {
  border: 1px solid var(--blue);
  padding: 3px;
  width: 90%;
  text-align: left;
}

#sites {
  display: flex;
  flex-wrap: wrap;
}

.nobutton {
  width: 88px;
  text-align: center;
}

.toc {
  list-style: url(../../assets/images/cdflat.gif);
}

.votw {
  width: 95%;
  max-height: 190px;
  background-color: black;
  margin: 3px;
  margin-bottom: 0;
  border: 1px solid #000;
}

/*
███    ███ ██ ███████  ██████ 
████  ████ ██ ██      ██      
██ ████ ██ ██ ███████ ██      
██  ██  ██ ██      ██ ██      
██      ██ ██ ███████  ██████ 
*/

/* --- Polaroid --- */

.polaroid {
  display: inline-block;
  background: #fff;
  padding: 1rem 1rem 2.5rem;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  transition: transform 0.2s ease;
}

.polaroid img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.polaroid .caption {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: #333;
  font-family: "Courier New", monospace;
}

/* --- Coffee Stain --- */

.coffeestain::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/coffeestain.png");
  background-size: 30%;
  background-position-x: 70%;
  background-repeat: no-repeat;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

/* --- Tape & Pins --- */

.taped::before {
  background-image: url("/assets/images/tape/tape1.png");
  background-repeat: no-repeat;
  display: block;
  content: " ";
  position: absolute;
  height: 50px;
  width: 150px;
  background-size: contain;
  top: -20px;
  left: 40%;
}

.pinned::before {
  background-image: url("/assets/images/thumbtack.png");
  background-repeat: no-repeat;
  display: block;
  content: " ";
  position: absolute;
  overflow: visible;
  height: 50px;
  width: 50px;
  background-size: contain;
  top: -20px;
  left: 40%;
  z-index: 9999;
}

.pinnedcorner::before {
  background-image: url("/assets/images/thumbtack.png");
  background-repeat: no-repeat;
  display: block;
  content: " ";
  position: absolute;
  height: 50px;
  width: 50px;
  background-size: contain;
  top: -12px;
  left: -15px;
  transform: rotate(-25deg);
  z-index: 9999;
}

/* --- Sway Animation --- */

.swayelement {
  transform-origin: top center;
  transition: transform 0.2s ease;
}

.swayelement:hover {
  animation: noteSway 0.8s ease-in-out;
}

@keyframes noteSway {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(1.2deg);
  }
  40% {
    transform: rotate(-2deg);
  }
  60% {
    transform: rotate(0.9deg);
  }
  80% {
    transform: rotate(-0.6deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* --- Highlight --- */

.highlight {
  letter-spacing: 0.5px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
    width: fit-content;
    padding: 6px 12px;
    position: relative;
    font-size: 25px;
    font-weight: 600;
    user-select: none;
    text-align: center;
    white-space: nowrap;
    font-family: inherit;
    
}

.highlight:before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 3px 5px 3px 5px;
  background: conic-gradient(at 0 100%, rgb(var(--mark-color)/100%) 1%, rgba(255, 255, 255, 0) 3%) no-repeat 0 0/auto 120%, conic-gradient(from 180deg at 100% 0, rgba(255, 255, 255, 0), rgb(var(--mark-color)/100%) 1%, rgba(255, 255, 255, 0) 4%) no-repeat 100% 100%/auto 120%, linear-gradient(var(--mark-bg-angle), rgb(var(--mark-color)/60%), rgb(var(--mark-color)/20%) 75%, rgb(var(--mark-color)/55%)) no-repeat center/auto;
}

.highlight.yellow-mark:before {
  rotate: 1deg;
  scale: 1.11;
  transform: skew(-5deg);
  --mark-color: 255 232 62;
  --mark-bg-angle: 50deg;
}
.highlight.green-mark:before {
  scale: 0.92;
  transform: skew(7deg);
  --mark-color: 127 146 115;
  --mark-bg-angle: 30deg;
}
.highlight.red-mark:before {
  rotate: 0.5deg;
  transform: skew(5deg);
  --mark-color: 255 100 185;
  --mark-bg-angle: 150deg;
}

/* --- Utilities --- */

.dropshadow {
  box-shadow: 3px 3px 1px 0px rgba(0, 0, 0, 0.75);
}

.dropshadowfilter {
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.75));
}

.rotate-1 {
  transform: rotate(1deg);
}

.rotate-neg1 {
  transform: rotate(-1deg);
}

.deco {
  position: absolute;
}

.pixel {
  image-rendering: pixelated;
}

.sharp-fold {
  position: relative;
  background: linear-gradient(150deg, transparent 1.5em, rgba(0,0,0,0.001) 0), url(/assets/images/backgrounds/4562203394_ca67a19634_c.jpg);
  background-position: 50%;
mask: linear-gradient(-150deg, transparent 1.5em, black 0);
  border-radius: 2px;
}

.sharp-fold::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(
      to left bottom,
      transparent 50%,
      rgba(0, 0, 0, 0.2) 0,
      rgba(0, 0, 0, 0.4)
    )
    no-repeat 100% 0;
  width: 1.73em;
  height: 3em;
  transform: translateY(-1.3em) rotate(-30deg);
  transform-origin: bottom right;
  border-bottom-left-radius: inherit;
  box-shadow: -0.2em 0.2em 0.3em -0.1em rgba(0, 0, 0, 0.15);
}

/* --- Logo & Tilt Animation --- */

.logo {
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-name: tilt;
  animation-timing-function: ease-in-out;
  height: 80px;
  image-rendering: pixelated;
}

@keyframes tilt {
  0% {
    rotate: -2deg;
  }

  25% {
    rotate: 2deg;
  }

  50% {
    rotate: -2deg;
  }

  75% {
    rotate: 2deg;
  }

  100% {
    rotate: -2deg;
  }
}

/*
███████ ██    ██ ██████  ████████ ██      ███████     █████  ██████  ██ ███    ███ ███████ 
██      ██    ██ ██   ██    ██    ██      ██          ██   ██ ██   ██ ██ ████  ████ ██      
███████ ██    ██ ██████     ██    ██      █████       ███████ ██   ██ ██ ██ ████ ██ █████   
     ██ ██    ██ ██   ██    ██    ██      ██          ██   ██ ██   ██ ██ ██  ██  ██ ██      
███████  ██████  ██████     ██    ███████ ███████     ██   ██ ██████  ██ ██      ██ ███████ 
*/

/* Smooth transitions for all interactive elements */
a, button, .box ul li, input[type="range"], h3 button {
  transition: all 0.2s ease;
}

/* Smooth hover effect for links */
a {
  position: relative;
}

a:hover {
  text-shadow: 0 0 4px rgba(122, 62, 43, 0.3);
}

/* Gentle floating animation */
@keyframes gentle-float {
  0%, 100% {
    transform: translateY(0px) rotate(2deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

/* Subtle bob animation for images */
@keyframes subtle-bob {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* Smooth page content fade-in */
@keyframes subtle-fade-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth image hover zoom */
@keyframes image-hover-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

/* Soft shimmer effect */
@keyframes soft-shimmer {
  0%, 100% {
    background-position: -200% center;
  }
  50% {
    background-position: 200% center;
  }
}

.tip-box {
  transition: box-shadow 0.3s ease;
}

.tip-box:hover {
  box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.85);
}

/* Apply bob animation to images */
img.focal {
  /* animation: subtle-bob 7s ease-in-out infinite; */
  transition: filter 0.3s ease;
}

img.focal:hover {
  filter: brightness(1.08) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* Smooth transitions for box elements */
.box, .box ul li {
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.box ul li:hover {
  transform: translateX(3px);
}

/* Page content fade-in */
.content {
  animation: subtle-fade-in 0.6s ease-out;
}

/* Home row boxes smooth transitions and hover effects */
.home-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 5px;
  width: 100%;
}


/* Sidebar widget animations */
.recentupdates, .rockoftheweek {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recentupdates:hover, .rockoftheweek:hover {
  transform: scale(1.02);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}

/* Header image animations */
.page-hero img, .aboutheader img {
  transition: transform 0.4s ease, filter 0.4s ease;
  animation: subtle-bob 4s ease-in-out infinite;
}

.page-hero img:hover, .aboutheader img:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Tip character animation */
.tip-character {
  transition: transform 0.3s ease;
  animation: gentle-wiggle 2s ease-in-out infinite;
}

@keyframes gentle-wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
}
/* Profile card animations */
.profile-cover {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.profile-cover:hover {
  transform: scale(1.05);
  filter: brightness(1.15) saturate(1.1);
}

/* About box smooth animations */
.aboutbox {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.aboutbox:hover {
  /* transform: translateY(-3px) scale(1.01); */
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.7);
}

/* Navigation hover effects */
nav a {
  transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
}

nav a:hover {
  text-shadow: 0 0 6px rgba(122, 62, 43, 0.4);
  transform: translateX(2px);
}

/* Navigation header animations */
.navheader {
  transition: all 0.3s ease;
  position: relative;
}

.navheader:hover {
  transform: translateX(2px);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.3), 1px 1px 0 rgba(0, 0, 0, 0.2);
}

/* Smooth button transitions */
button, .form-button {
  transition: all 0.2s ease;
  position: relative;
}

button:hover, .form-button:hover {
  transform: translateY(-1px);
}

button:active, .form-button:active {
  transform: translateY(1px);
}

/* Smooth form input focus effects */
input[type="text"], input[type="email"], textarea, .form-input input {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus, .form-input input:focus {
  outline: none;
  border-color: #b9845a;
  box-shadow: inset 0 0 4px rgba(122, 62, 43, 0.2);
  background-color: #fefdfb;
}

/* Smooth range input transitions */
input[type="range"] {
  transition: all 0.2s ease;
  cursor: pointer;
}

input[type="range"]:hover {
  filter: brightness(1.1);
}

input[type="range"]:active {
  filter: brightness(1.2);
}

/* Subtle scale on message hover */
.message {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.message:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
  border-color: #b9845a;
}

/* Pin and tape animations */
.pinned::before, .pinnedcorner::before {
  transition: transform 0.2s ease;
}

.pinned:hover::before, .pinnedcorner:hover::before {
  transform: scale(1.1);
}

/* Smooth list item animations */
.box ul li {
  position: relative;
  overflow: hidden;
}

.box ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}

.box ul li:hover::before {
  left: 100%;
}

/* smooth h3 animations */
h3 {
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

h3:hover {
  color: #8b3a10;
  border-bottom-color: #b9845a;
}


/* Smooth loading animation */
@keyframes smooth-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.gelatine {
  transition: all 0.2s ease;
}

/* Marquee smooth loop */
.marquee {
  animation: scroll 10s linear infinite;
}

/* Smooth link underline animation */
a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: rgba(122, 62, 43, 0.5);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Subtle pulse for loading states */
@keyframes subtle-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.loading {
  animation: subtle-pulse 1.5s ease-in-out infinite;
}

/* Smooth header transitions */
header {
  transition: box-shadow 0.3s ease;
}

header:hover {
  box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.8);
}

/* Glow effect on focus for accessibility */
a:focus-visible {
  transition: all 0.2s ease;
  box-shadow: inset 0 0 0 2px rgba(122, 62, 43, 0.3);
  border-radius: 2px;
}

/* Smooth color transitions on form buttons */
.form-button {
  transition: all 0.2s ease;
}

.form-button:active {
  transform: translateY(1px);
}

/* Subtle pulse for loading states */
@keyframes subtle-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.loading {
  animation: subtle-pulse 1.5s ease-in-out infinite;
}

/* Smooth header transitions */
header {
  transition: box-shadow 0.3s ease;
}

header:hover {
  box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.8);
}

/* Glow effect on focus for accessibility */
a:focus-visible {
  transition: all 0.2s ease;
  box-shadow: inset 0 0 0 2px rgba(122, 62, 43, 0.3);
  border-radius: 2px;
}

/*
██     ██ ███████ ██████  ██████  ██ ███    ██  ██████  ███████ 
██     ██ ██      ██   ██ ██   ██ ██ ████   ██ ██       ██      
██  █  ██ █████   ██████  ██████  ██ ██ ██  ██ ██   ███ ███████ 
██ ███ ██ ██      ██   ██ ██   ██ ██ ██  ██ ██ ██    ██      ██ 
 ███ ███  ███████ ██████  ██   ██ ██ ██   ████  ██████  ███████ 
*/

.smoothsailing {
  margin: 3px;
}

.ace img:hover {
  cursor: url(../../assets/images/cursors/glovepointer.png), pointer;
}

.ace {
  margin: 3px;
  display: flex;
  align-items: center;
  width: 160px;
  justify-content: space-evenly;
}

.ace p {
  margin: 0;
}

.wiiring {
  width: 148px;
  margin: 3px;
}

.wiiring iframe {
  border: 0;
  width: 100%;
  height: 148px;
}

.cookierun {
  margin: 3px;
}

#ckwr .webring-image {
  content: url(../../assets/images/lemoncookiecard.png);
  border: black 2px solid;
  border-radius: 11px;
}

#ckwr .arrow-image {
  width: 30px !important;
}

#tmring {
  background: #e3c6ff url(../../../transmascring.netlify.app/tbg.png);
  border: 2px solid transparent;
  border-image: linear-gradient(
    to bottom right,
    rgba(255, 0, 0, 1) 0,
    rgba(255, 154, 0, 1) 10%,
    rgba(208, 222, 33, 1) 20%,
    rgba(79, 220, 74, 1) 30%,
    rgba(63, 218, 216, 1) 40%,
    rgba(47, 201, 226, 1) 50%,
    rgba(28, 127, 238, 1) 60%,
    rgba(95, 21, 242, 1) 70%,
    rgba(186, 12, 248, 1) 80%,
    rgba(251, 7, 217, 1) 90%,
    rgba(255, 0, 0, 1) 100%
  );
  border-image-slice: 1;
  padding: 10px;
  text-align: center;
  width: 194px;
  margin: 3px;
  font-size: 15px;
}

#tmri {
  background: rgba(61, 45, 255, 0.5);
  padding: 2px;
  border: 1px solid #3d2dff;
}

#tmri a {
  font-family: sans-serif;
  font-weight: 700;
  color: #3d2dff;
  text-decoration: underline dotted;
  text-shadow: none;
  transition: 0.1s;
}

#tmri a:hover {
  background-image: linear-gradient(
    to left,
    violet,
    indigo,
    #00f,
    green,
    #ff0,
    orange,
    red
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1.5px;
  transition: 0.1s;
  text-shadow: none;
}

#tmri p {
  font-family: sans-serif;
  margin: 0;
  color: #000;
  text-shadow: none;
  text-decoration: none;
}

/*
 ██████  ██    ██ ███████ ███████ ████████ ██████   ██████   ██████  ██   ██ 
██       ██    ██ ██      ██         ██    ██   ██ ██    ██ ██    ██ ██  ██  
██   ███ ██    ██ █████   ███████    ██    ██████  ██    ██ ██    ██ █████   
██    ██ ██    ██ ██           ██    ██    ██   ██ ██    ██ ██    ██ ██  ██  
 ██████   ██████  ███████ ███████    ██    ██████   ██████   ██████  ██   ██  
*/

.message {
  border: 1px solid var(--blue);
  margin: 3px;
  width: 32%;
  background: white;
  height: fit-content;
}

.message .h3gradient {
  margin: 0;
  border: 0;
  border-bottom: solid 1px var(--blue);
  padding-bottom: 6px;
}

.message .dottedhead {
  border: 0;
  margin: 0;
  padding-left: 3px;
  padding-right: 3px;
}

h3 button {
  cursor: url(../../assets/images/cursors/glovepointer.png), pointer;
  background: white;
  border: 0;
  margin: 0;
  padding: 2px;
  width: 20px;
  height: 20px;
  font-family: Retron;
  font-size: 13px;
  color: var(--blue);
}

.message h3 a {
  color: white;
  text-decoration: none;
}

.message h3 a:hover {
  color: transparent;
  text-shadow: none;
}

.response {
  display: none;
}

#form {
  width: 65%;
}

.form-button {
  border: 2px outset var(--blue);
  background: #fff;
  margin: 3px;
  color: var(--blue);
  font-family: pixeloperator;
  font-size: 15px;
  cursor: url(../../assets/images/cursors/glovepointer.png), pointer;
}

.form-button:hover {
  border: 2px inset var(--blue);
  color: #fff;
}

.form-input {
  background: #fff;
  padding: 3px;
}

.form input {
  border: 2px solid var(--blue);
}

.form textarea {
  border: 2px solid var(--blue);
  max-width: 95%;
  max-height: 40px;
}

/*
███    ███ ███████ ██████  ██  █████      ██       ██████   ██████  
████  ████ ██      ██   ██ ██ ██   ██     ██      ██    ██ ██       
██ ████ ██ █████   ██   ██ ██ ███████     ██      ██    ██ ██   ███ 
██  ██  ██ ██      ██   ██ ██ ██   ██     ██      ██    ██ ██    ██ 
██      ██ ███████ ██████  ██ ██   ██     ███████  ██████   ██████  
*/

.entry {
  margin: 3px;
  border: 1px solid var(--blue);
  width: fit-content;
  padding: 3px;
  background: white;
}

.entry img {
  width: 100%;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.entry p {
  word-break: normal;
  hyphens: auto;
}

.entry h3 {
  margin: 0;
}

/* RESPONSIVE DESIGN */
/* Tablet: 768px and below */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .index {
    grid-template: "header" "topnav" "nav" "main" "footer" / 1fr;
    margin: 5px auto;
    padding: 10px;
    max-width: 100%;
    box-shadow: 10px 10px 5px 2px rgba(0, 0, 0, 0.5);
  }

  nav {
    grid-area: nav;
  }

  main {
    grid-area: main;
  }

  header {
    margin: 2px;
    gap: 8px;
  }

  .home-page {
    flex-direction: column;
    gap: 15px;
  }

  .home-main {
    max-width: 100%;
    padding-right: 0;
  }

  .home-sidebar {
    flex: 1 1 100%;
    min-width: auto;
    margin-left: 0;
  }

  .home-row {
    justify-content: center;
  }

  .message {
    width: 100%;
    margin-bottom: 8px;
  }

  #form {
    width: 100%;
  }

  .form textarea {
    max-width: 100%;
    max-height: 60px;
  }

  .sitebox {
    width: 50%;
  }

  .icon {
    width: 25%;
  }

  .kin {
    width: 50%;
  }

  .cookie {
    width: 50%;
  }

  h2 {
    font-size: 16px;
    max-height: 24px;
  }

  h3 {
    font-size: 16px;
    max-height: 20px;
  }

  .h2big {
    font-size: 14px;
    height: 26px;
  }

  .h3gradient {
    font-size: 12px;
    max-height: 16px;
  }

  .h3gradientspore {
    font-size: 12px;
    max-height: 16px;
  }

  .coldinnerbox {
    width: 100%;
    margin-bottom: 8px;
  }

  .coldouterbox {
    flex-direction: column;
  }

  .shrinebox {
    flex-direction: column;
    min-height: auto;
  }

  .graphiccollection {
    flex-wrap: wrap;
  }

  .blinkie {
    width: 120px;
  }

  .stamp {
    width: 80px;
  }

  .pin {
    height: 70px;
    margin: 2px;
  }

  .focal {
    float: none;
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
  }

  .ace {
    width: 100%;
    justify-content: flex-start;
  }

  .wiiring {
    width: 100%;
  }

  .wiiring iframe {
    height: 200px;
  }

  #tmring {
    width: 100%;
    max-width: 194px;
    margin: 3px auto;
  }

  .aboutbox {
    width: 100%;
  }

  .songbox {
    height: auto;
  }

  .cover {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
  }

  .guestbook-intro {
    flex-direction: column;
  }
}

/* Mobile: 480px and below */
@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  .index {
    margin: 2px auto;
    padding: 5px;
    box-shadow: 5px 5px 3px 1px rgba(0, 0, 0, 0.4);
    border: 8px solid;
  }

  header {
    margin: 1px;
    padding: 5px;
  }

  nav {
    font-size: 12px;
  }

  main {
    padding: 5px;
  }

  .box {
    margin: 1px;
    padding: 0;
  }

  .home-page {
    gap: 10px;
  }

  .home-main {
    max-width: 100%;
    padding-right: 0;
  }

  .home-sidebar {
    width: 100%;
    margin-left: 0;
  }

  .sidebar-link {
    margin-left: 0;
  }

  .tip-box {
    flex-direction: column;
    align-items: flex-start;
    transform: none;
    margin-left: 0;
    min-width: 70%;
    max-width: 100%;
    padding: 5px;
    margin: 2px;
    gap: 8px;
  }

  .tip-character {
    width: 50px;
  }

  .tip-title {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .tip-text {
    font-size: 12px;
  }

  h1 {
    font-size: 14px;
    margin: 2px;
  }

  h2 {
    font-size: 14px;
    max-height: 20px;
    padding: 2px;
  }

  h3 {
    font-size: 14px;
    max-height: 18px;
    margin: 2px;
    padding-bottom: 2px;
  }

  .h2big {
    font-size: 12px;
    height: 22px;
    padding: 2px 3px;
  }

  .h2slanted {
    font-size: 14px;
    height: 24px;
    padding: 2px 3px;
  }

  .h3gradient {
    font-size: 11px;
    max-height: 15px;
    padding: 2px;
  }

  .message {
    width: 100%;
    margin: 2px 0;
    padding: 0;
  }

  .message h3 {
    font-size: 12px;
  }

  .message p {
    font-size: 12px;
    margin: 3px;
  }

  .sitebox {
    width: 100%;
    margin: 3px 0;
  }

  .icon {
    width: 50%;
    margin: 2px;
  }

  .kin {
    width: 100%;
  }

  .cookie {
    width: 100%;
  }

  .shrinebutton {
    font-size: 12px;
    padding: 1px 2px;
  }

  .web-button {
    height: 25px;
    width: 70px;
    margin: 2px;
  }

  .blinkie {
    width: 100px;
    height: 18px;
    margin: 2px;
  }

  .stamp {
    width: 70px;
    height: 45px;
    margin: 2px;
  }

  .graphic {
    max-height: 80px;
    margin: 2px;
  }

  .pin {
    height: 60px;
    margin: 1px;
  }

  #pins {
    justify-content: flex-start;
    gap: 2px;
  }

  .pinned-note {
    top: 50%;
    right: 2%;
    width: 120px;
    font-size: 10px;
    padding: 8px 10px;
  }

  .coldinnerbox {
    width: 100%;
  }

  .coldouterbox {
    flex-direction: column;
  }

  .coldinnerbox h3 {
    font-size: 12px;
    max-height: 16px;
  }

  .coldinnerboxsideimg {
    width: 50px;
    margin: 3px;
  }

  .shrinebox {
    flex-direction: column;
    min-height: auto;
  }

  .shrinebox h2 {
    margin: 2px;
  }

  .linkbox {
    width: 100%;
  }

  .aboutbox {
    width: 100%;
  }

  .aboutlist {
    font-size: 12px;
  }

  .songbox {
    height: auto;
    margin: 2px;
  }

  .cover {
    float: none;
    width: 100%;
    margin: 0;
    margin-bottom: 5px;
  }

  .glow {
    animation: none;
  }

  .logo {
    height: 60px;
  }

  .form-button {
    font-size: 12px;
    padding: 2px 6px;
  }

  .form textarea {
    max-height: 50px;
    font-size: 12px;
  }

  .form input {
    font-size: 12px;
  }

  input[type="range"]::-moz-range-thumb {
    height: 8px;
    width: 8px;
  }

  .ace {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .ace img {
    margin-bottom: 5px;
  }

  .wiiring {
    width: 100%;
    margin: 2px 0;
  }

  .wiiring iframe {
    height: 150px;
  }

  #tmring {
    width: 100%;
    max-width: 100%;
    font-size: 12px;
    padding: 8px;
  }

  #tmri a {
    font-size: 12px;
  }

  .flex {
    flex-direction: column;
  }

  .bumperstickers {
    flex-direction: column;
  }

  .bumperstickers img {
    margin: 3px 0;
  }

  #iframebox {
    width: 100%;
  }

  iframe {
    height: 400px !important;
  }
}