.rainbow {
  background-image: repeating-linear-gradient(to right,#da0b0b,#da0b0b,#da6b0b,#daca0b,#8bda0b,#2bda0b,#0bda4b,#0bdaaa,#0baada,#0b4bda,#2b0bda,#8b0bda,#da0bca,#da0b6b,#da0b0b,#da6b0b,#daca0b,#8bda0b,#2bda0b,#0bda4b,#0bdaaa);
  text-align: center;
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbow 6s linear infinite
}
@keyframes rainbow {
  0% {
    background-position: 0 50%
  }
  100% {
    background-position: 100% 50%
  }
}
.rainbow2 {
  background-image: repeating-linear-gradient(to left,#da0b0b,#da0b0b,#da6b0b,#daca0b,#8bda0b,#2bda0b,#0bda4b,#0bdaaa,#0baada,#0b4bda,#2b0bda,#8b0bda,#da0bca,#da0b6b,#da0b0b,#da6b0b,#daca0b,#8bda0b,#2bda0b,#0bda4b,#0bdaaa);
  text-align: center;
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbow2 2s linear infinite
}
@keyframes rainbow2 {
  0% {
    background-position: 100% 50%
  }
  100% {
    background-position: 0 50%
  }
}
body {
  background-color: #121212;
  color: #f0f0f0;
  font-family: 'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
  padding: 20px;
  margin: 0;
  position: relative;
  min-height: 100vh
}
h2,
h3,
h4,
li,
p {
  color: inherit
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle,#333 1px,transparent 1px);
  background-size: 50px 50px;
  opacity: .1;
  z-index: -1;
  animation: background-move 60s linear infinite
}
@keyframes background-move {
  from {
    background-position: 0 0
  }
  to {
    background-position: 500px 500px
  }
}
.container {
  max-width: 900px;
  margin: 0 auto
}
.fancy-box {
  background-color: var(--md-sys-color-surface-container-low,#1e1e1e)!important;
  border: none!important;
  border-radius: 12px!important;
  padding: 24px!important;
  margin-bottom: 16px!important;
  box-shadow: 0 1px 3px 1px rgba(0,0,0,.15),0 1px 2px 0 rgba(0,0,0,.3)!important;
  transition: all .2s ease-in-out
}
.fancy-box:hover {
  box-shadow: 0 2px 6px 2px rgba(0,0,0,.15),0 1px 2px 0 rgba(0,0,0,.3)!important;
  transform: none!important;
  background-color: var(--md-sys-color-surface-container,#2a2a2a)!important
}
.accent-text {
  color: #00bcd4;
  font-weight: 600
}
a {
  color: #007bff;
  text-decoration: none;
  transition: color .2s
}
a:hover {
  color: #4dc4ff
}
.jinx-gallery {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 20px 0;
  flex-wrap: wrap
}
.jinx-gallery img {
  border: 3px solid #333;
  border-radius: 8px;
  object-fit: cover;
  transition: transform .3s ease-in-out;
  max-width: 100%;
  height: auto
}
.jinx-gallery img:hover {
  transform: scale(1.05)
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 20px;
  margin-bottom: 10px
}
.tab-controls {
  display: flex;
  border-bottom: 2px solid #333;
  margin-bottom: 15px;
  flex-wrap: wrap
}
.tab-button {
  background-color: transparent;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  color: #999;
  font-weight: 700;
  transition: color .3s,border-bottom .3s;
  margin-bottom: -2px
}
.tab-button.active,
.tab-button:hover {
  color: #f0f0f0
}
.tab-button.active {
  border-bottom: 2px solid #00bcd4
}
.tab-content {
  display: none;
  padding: 10px 0
}
.tab-content.active {
  display: block
}
.jinx-gradient {
  background-image: repeating-linear-gradient(to right,#0ff,#0ff,#0ad,#a0f,#f0c,#f0f,#0ad,#0ff,#0ff);
  text-align: center;
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbow 3s linear infinite
}
.jinx-flash {
  filter: brightness(200%) drop-shadow(0 0 10px #FFFFFF);
  transform: scale(1.05) perspective(500px) rotateY(2deg);
  transition: filter .15s ease-in-out,transform .15s ease-in-out
}
#jinx-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  pointer-events: none;
  overflow: hidden;
  background-image: radial-gradient(circle,rgba(0,100,255,.4) 0,rgba(0,100,255,.2) 50%,rgba(0,0,0,0) 100%)
}
@keyframes jinx-flash-anim {
  0% {
    opacity: 0;
    transform: scale(.8) rotate(var(--random-rotate,0deg))
  }
  10% {
    opacity: .7;
    transform: scale(1) rotate(var(--random-rotate,0deg))
  }
  90% {
    opacity: .7
  }
  100% {
    opacity: 0;
    transform: scale(1.2) rotate(var(--random-rotate,0deg))
  }
}
.jinx-image-flash {
  position: absolute;
  width: clamp(100px,20vw,300px);
  height: auto;
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, .8));
  animation: jinx-flash-anim 1.5s ease-out forwards;
  pointer-events: none;
  user-select: none
}
@media (max-width:600px) {
  .tab-controls {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
    border-bottom: none
  }
  .tab-controls .tab-button {
    flex-shrink: 0;
    margin-right: 10px;
    padding: 8px 12px;
    white-space: nowrap;
    border-bottom: 2px solid transparent
  }
  .tab-controls .tab-button.active {
    border-bottom: 2px solid #00bcd4
  }
}
.header-center-block {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1em;
  margin-bottom: 2em;
  position: static;
  transform: none
}
.h1-lookalike {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.2;
  margin-top: .67em;
  margin-bottom: .67em;
  color: #f0f0f0
}
.page-header-headings {
  display: none!important
}
:root {
  --color-primary-accent: #FF00FF;
  --color-secondary-accent: #00FFFF;
  --color-background-deep: #0D0D0D;
  --color-background-card: #1C1C1C;
  --color-text-light: #F0F0F0;
  --color-text-muted: #AAAAAA;
  --StuVe-blue: var(--color-primary-accent)!important;
  --StuVe-dark-blue: var(--color-secondary-accent)!important;
  --StuVe-green: var(--color-secondary-accent)!important;
  --StuVe-dark-green: var(--color-primary-accent)!important;
  --StuVe-gray: #222222!important
}
* {
  font-family: Electrolize,sans-serif!important
}
code {
  font-family: 'IBM Plex Mono',monospace!important
}
div.v-application .primary {
  background-color: var(--StuVe-green)!important;
  border-color: var(--StuVe-dark-green)!important
}
.v-application .black {
  background-color: var(--StuVe-gray)!important;
  color: var(--color-text-light)!important
}
.is-active,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600!important;
  color: var(--StuVe-dark-green)!important
}
.page-header-headings {
  display: none!important
}
h1::after,
h2::after,
h3::after,
h4::after,
h5::after,
h6::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--StuVe-dark-green)!important;
  margin-top: 5px;
  margin-bottom: 5px
}
a {
  color: var(--StuVe-dark-blue)!important
}
.comments-header {
  background-color: var(--StuVe-green)!important;
  color: var(--color-background-deep)!important
}
footer > .caption:after {
  content: " | Jinx & C-Ref 💜💙"!important;
  font-family: Electrolize,sans-serif!important
}
.box-grau {
  color: var(--color-text-light)!important;
  background-color: var(--color-background-card)!important;
  padding: 1rem!important;
  border-radius: .6rem!important;
  margin: 1rem 0!important;
  text-align: center!important;
  border: 1px solid var(--color-text-muted)!important;
  box-shadow: 0 0 10px rgba(170,170,170,.2)!important
}
.box-blau {
  color: var(--color-text-light)!important;
  background-color: var(--color-background-card)!important;
  padding: 1rem!important;
  border-radius: .6rem!important;
  margin: 1rem 0!important;
  text-align: center!important;
  border: 1px solid var(--color-primary-accent)!important;
  box-shadow: 0 0 15px var(--color-primary-accent)!important;
  transition: transform .2s ease-in-out
}
.box-blau:hover {
  transform: translateY(-3px) scale(1.01)
}
.box-gruen {
  color: var(--color-text-light)!important;
  background-color: var(--color-background-card)!important;
  padding: 1rem!important;
  border-radius: .6rem!important;
  margin: 1rem 0!important;
  text-align: center!important;
  border: 1px solid var(--color-secondary-accent)!important;
  box-shadow: 0 0 15px var(--color-secondary-accent)!important;
  transition: transform .2s ease-in-out
}
.box-gruen:hover {
  transform: translateY(-3px) scale(1.01)
}
md-assist-chip {
  --md-assist-chip-container-shape: 8px;
  --md-sys-color-surface: var(--color-background-card, #1C1C1C);
  --md-sys-color-on-surface: var(--color-text-light, #F0F0F0);
  transition: all .2s ease-in-out
}
md-assist-chip:hover {
  background-color: var(--color-background-card,#2a2a2a)
}
md-assist-chip [slot=icon] {
  font-size: 1.2rem;
  line-height: 1;
  margin-right: 4px
}
#transit-display-root * {
  padding: 0!important;
  margin: 0!important;
  box-sizing: border-box!important
}
#transit-display-root {
  background-color: transparent!important;
  font-size: 16px
}
#transit-display-root .route {
  margin: 4px 0!important;
  position: relative
}
#transit-display-root .route img {
  height: 50px!important;
  position: absolute!important;
  top: 0!important;
  left: 0!important;
  z-index: 10!important
}
#transit-display-root #banner {
  height: 50px!important;
  color: #fff!important;
  margin: 4px 0!important;
  width: auto!important
}
#transit-display-root #banner img {
  height: 35px!important;
  margin: 7.5px!important;
  float: left!important
}
#transit-display-root #banner .text,
#transit-display-root #banner .time {
  padding-top: 9px!important;
  font-size: 27.5px!important;
  font-family: arial,sans!important
}
#transit-display-root #banner .text {
  margin-left: 5px!important;
  float: left!important
}
#transit-display-root #banner .time {
  margin-right: 5px!important;
  float: right!important
}
#transit-display-root .destination {
  height: 50px!important;
  background-color: #fff!important;
  padding-top: 7px!important;
  padding-left: 55px!important;
  white-space: nowrap!important;
  overflow: hidden!important;
  font-size: 27.5px!important;
  font-family: arial,sans!important
}
#transit-display-root .destination:first-child {
  border-radius: 25px 25px 0 0!important
}
#transit-display-root .destination:last-child {
  border-radius: 0 0 25px 25px!important
}
#transit-display-root .destination:only-child {
  border-radius: 25px 25px 25px 25px!important
}
#transit-display-root .destination .text {
  color: #000!important;
  margin-right: 8px!important
}
#transit-display-root .destination .seperator {
  color: grey!important;
  display: none!important
}
#transit-display-root .destination .combined {
  min-width: 40px!important;
  padding: 2px!important;
  margin-left: 4px!important;
  margin-right: 4px!important;
  background-color: #777!important;
  border-radius: 2px!important;
  font-size: 27.5px!important
}
#transit-display-root .destination .combined:first-child {
  background-color: #333!important
}
#transit-display-root .combined.rainbow {
  background: linear-gradient(180deg,#ff5050,#ffc250,#ffff50,#50ff50,#5050ff,#b650ff)!important;
  color: #000!important
}
.discord-widget {
  background-color: #2e3136;
  border-radius: 8px;
  color: #f6f6f7;
  width: 100%;
  max-width: 350px;
  margin: 15px auto;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.5);
  font-family: Roboto,sans-serif!important
}
.discord-header {
  background-color: #36393f;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #23272a
}
.discord-server-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}
.discord-online-count {
  font-size: .9rem;
  font-weight: 500;
  color: #3ba55d
}
.discord-invite-button {
  background-color: #5865f2;
  color: #fff!important;
  padding: 6px 10px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none!important;
  font-size: .9rem;
  transition: background-color .2s
}
.discord-invite-button:hover {
  background-color: #4f5bde;
  color: #fff!important
}
.discord-channel-list,
.discord-member-list {
  padding: 10px 15px
}
.discord-channel {
  display: flex;
  align-items: center;
  padding: 6px 0;
  color: #99aab5;
  font-size: .9rem
}
.discord-channel-icon {
  margin-right: 8px;
  color: #99aab5
}
.discord-member-item {
  display: flex;
  align-items: center;
  padding: 5px 0
}
.discord-avatar-wrapper {
  position: relative;
  margin-right: 10px
}
.discord-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover
}
.discord-status-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #2e3136
}
.status-online {
  background-color: #3ba55d
}
.status-idle {
  background-color: #faa81a
}
.discord-username {
  font-weight: 500;
  color: #fff
}
.discord-section-title {
  color: #99aab5;
  font-size: .8rem;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 5px;
  text-transform: uppercase
}
.discord-server-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: #36393f;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-right: 8px
}

/* Ensure the trigger is always on top of the flipping boxes */
#kate-bush-trigger {
    position: relative;
    z-index: 9999;
}

/* Prevent the flipping boxes from interfering with mouse events while animating */
.st.upside-down {
    transform: rotate(180deg);
    pointer-events: none; /* This prevents the box from "stealing" the hover */
}

/* Keep the container of the link stable */
.st {
    transition: transform 0.6s ease-in-out;
    transform-style: preserve-3d;
}

/* The Red Overlay - behaves like your Jinx one */
#red-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 0, 0.4); /* Red transparent */
    z-index: 9998; /* Just below the Kate Bush text */
    pointer-events: none; /* Let the mouse click through it */
    transition: opacity 0.4s ease;
}

/* Base style for the icon spans */
.chip-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

/* Discord Logo (Blurple color) */
.discord-logo {
    background-image: url('https://www.svgrepo.com/show/353655/discord-icon.svg');
    filter: brightness(0) invert(1); /* Makes it white to match your theme */
    margin-right: 4px;
}

/* Telegram Logo (Paper plane) */
.telegram-logo {
    background-image: url('https://www.svgrepo.com/show/521874/telegram.svg');
    filter: brightness(0) invert(1); /* Makes it white to match your theme */
    margin-right: 4px;
}

/* Optional: Color them on hover */
.md-chip-mimic:hover .discord-logo {
    filter: none; /* Shows original Discord Blue */
}

.md-chip-mimic:hover .telegram-logo {
    filter: none; /* Shows original Telegram Blue */
}

.md-chip-mimic {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #f0f0f0 !important;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.md-chip-mimic:hover {
    background-color: #333;
    border-color: #00bcd4;
    transform: translateY(-2px);
}

/* Material Icons sizing */
.material-icons {
  font-family: 'Material Icons' !important;
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  
  /* Layout alignment */
  vertical-align: middle;
  margin-right: 8px;
}

/* Stranger Things / Kate Bush Logo Style */
.stranger-things-style {
    font-family: 'Times New Roman', serif !important; /* Benguiat is a serif font */
    text-transform: uppercase;
    color: #000 !important; /* Black fill */
    font-weight: 900;
    letter-spacing: 1px;
    /* This creates the thin red outline look */
    -webkit-text-stroke: 1px #ff0000;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
    border: 2px solid #ff0000 !important;
    background: #000 !important;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
}

.stranger-things-style:hover {
    box-shadow: 0 0 15px #ff0000;
    transform: scale(1.1);
}