/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

/**
 * Basic styling
 */
body {
  max-width: 960px;
  margin: 0 auto;
  font: 400 16px/1.5 "Courier New", Courier, monospace;
  color: #111;
  background-color: #fdfdfd;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-shadow: 0 0 10px 0 rgba(69, 8, 94, 0.4);
  background-color: #f3cdf5;
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure,
.highlight {
  margin-bottom: 15px;
}

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 14px;
}

/**
 * Lists
 */
ul, ol {
  margin-left: 30px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

/**
 * Links
 */
a {
  color: #2a7ae2;
  text-decoration: none;
}
a:visited {
  color: rgb(22.9483471074, 86.2541322314, 168.5516528926);
}
a:hover {
  color: #111;
  text-decoration: underline;
}

/**
 * Blockquotes
 */
blockquote {
  color: #828282;
  border-left: 4px solid #e8e8e8;
  padding-left: 15px;
  font-size: 18px;
  letter-spacing: -1px;
  font-style: italic;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Code formatting
 */
pre,
code {
  font-size: 15px;
  border: 1px solid #e8e8e8;
  background-color: #eef;
}

code {
  padding: 1px 5px;
}

pre {
  padding: 8px 12px;
  overflow-x: auto;
}
pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

/**
 * Wrapper
 */
/**
 * Clearfix
 */
.content:after {
  content: "";
  display: table;
  clear: both;
}

/**
 * Icons
 */
.icon > svg {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.icon > svg path {
  fill: currentColor;
}

.footer-copyright {
  padding-top: 2em;
  text-align: center;
  font-size: 12px;
  color: #828282;
}

/**
 * Site header
 */
.header {
  min-height: 56px;
  position: relative;
}

.header-image {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
  height: 200px;
  max-height: 200px;
  position: relative;
}
.header-image a {
  display: block;
  width: 100%;
  height: 200px;
  max-height: 200px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 8px rgba(19, 63, 32, 0.4);
}
.header-image img {
  position: absolute;
  width: 100%;
  min-width: 600px;
  height: auto;
  min-height: 100%;
  display: block;
  margin: 0;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -33%);
}

.header-logo {
  position: absolute;
  z-index: 10;
  left: 12px;
  top: 12px;
}
.header-logo img {
  position: static;
  width: auto;
  min-width: 0;
  height: auto;
  min-height: 0;
  max-width: 100px;
  max-height: 50px;
  transform: none;
  left: auto;
  top: auto;
}

.header-avatar {
  position: absolute;
  z-index: 100;
  left: 20px;
  bottom: -50px;
}
.header-avatar img {
  position: static;
  width: 100px;
  height: 100px;
  min-width: 0;
  min-height: 0;
  max-width: none;
  max-height: none;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(202, 193, 61, 0.4);
  display: block;
  transform: none;
  left: auto;
  top: auto;
}

.site-title {
  font-size: 26px;
  font-weight: 300;
  line-height: 56px;
  letter-spacing: -1px;
  margin-bottom: 0;
  float: left;
}
.site-title, .site-title:visited {
  color: rgb(66.25, 66.25, 66.25);
}

.site-nav {
  float: right;
  line-height: 56px;
}
.site-nav .menu-icon {
  display: none;
}
.site-nav .page-link {
  color: #111;
  line-height: 1.5;
}
.site-nav .page-link:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 600px) {
  .site-nav {
    position: absolute;
    top: 9px;
    right: 15px;
    background-color: #fdfdfd;
    border: 1px solid #e8e8e8;
    text-align: right;
  }
  .site-nav .menu-icon {
    display: block;
    float: right;
    width: 36px;
    height: 26px;
    line-height: 0;
    padding-top: 10px;
    text-align: center;
  }
  .site-nav .menu-icon > svg {
    width: 18px;
    height: 15px;
  }
  .site-nav .menu-icon > svg path {
    fill: rgb(66.25, 66.25, 66.25);
  }
  .site-nav .trigger {
    clear: both;
    display: none;
  }
  .site-nav:hover .trigger {
    display: block;
    padding-bottom: 5px;
  }
  .site-nav .page-link {
    display: block;
    padding: 5px 10px;
  }
  .site-nav .page-link:not(:last-child) {
    margin-right: 0;
  }
  .site-nav .page-link {
    margin-left: 20px;
  }
}

/**
 * Site footer
 */
.site-footer {
  background-color: #fff;
  border-top: 1px solid #e8e8e8;
  padding: 30px;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 15px;
}

.contact-list,
.social-media-list {
  list-style: none;
  margin-left: 0;
}

.footer-col-wrapper {
  display: flex;
  justify-content: space-around;
  font-size: 15px;
  color: #828282;
}

@media (max-width: 720px) {
  .footer-col-wrapper {
    flex-direction: column;
    gap: 0.5em;
    align-items: center;
  }
}
@media (min-width: 720px) {
  .footer-col-wrapper {
    flex-direction: row;
  }
}
/**
 * Page content
 */
.content {
  background-color: #fff;
  padding: 70px 0 30px 0;
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: -webkit-calc(960px - (30px * 2));
  max-width: calc(960px - 30px * 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (max-width: 960px) {
  .content {
    max-width: -webkit-calc(960px - (30px));
    max-width: calc(960px - (30px));
    padding-right: 15px;
    padding-left: 15px;
  }
}

.page-heading {
  font-size: 20px;
}

.post-list {
  margin-left: 0;
  list-style: none;
}
.post-list > li {
  margin-bottom: 30px;
}

.post-meta {
  font-size: 14px;
  color: #828282;
}

.post-link {
  display: block;
  font-size: 24px;
}

/**
 * Posts
 */
.post-header {
  margin-bottom: 30px;
}

.post-title {
  font-size: 42px;
  letter-spacing: -1px;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .post-title {
    font-size: 36px;
  }
}

.post-content {
  margin-bottom: 30px;
}
.post-content h2 {
  font-size: 32px;
}
@media screen and (max-width: 960px) {
  .post-content h2 {
    font-size: 28px;
  }
}
.post-content h3 {
  font-size: 26px;
}
@media screen and (max-width: 960px) {
  .post-content h3 {
    font-size: 22px;
  }
}
.post-content h4 {
  font-size: 20px;
}
@media screen and (max-width: 960px) {
  .post-content h4 {
    font-size: 18px;
  }
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2a7ae2;
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  background-color: rgb(26.0041322314, 97.7396694215, 190.9958677686);
  color: white;
}

#give-money-btn {
  z-index: 1000;
  white-space: nowrap;
}

#donate-to-lp-btn {
  opacity: 0;
  display: none;
  transition: opacity 0.3s ease;
}

.icon svg {
  width: 24px;
  height: 24px;
}

/**
 * Soundboard
 */
.sound-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  background: #f9f9f9;
  box-shadow: 0 2px 8px rgba(141, 102, 19, 0.4);
}
@media screen and (max-width: 768px) {
  .sound-container {
    padding: 20px 15px;
    margin: 20px auto;
  }
}
.sound-container h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.sound-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  padding: 6px;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .sound-list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .sound-list {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }
}
@media screen and (max-width: 480px) {
  .sound-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.sound-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 2px;
  background: transparent;
  position: relative;
  box-shadow: 0 2px 8px rgba(204, 26, 26, 0.4);
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .sound-item {
    padding: 15px;
    gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  .sound-item {
    padding: 20px;
  }
}
.sound-item:hover {
  box-shadow: 0 4px 12px rgba(228, 114, 114, 0.4);
  transform: translateY(-2px);
}
.sound-item.playing {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
}

.sound-visualizer {
  width: 100%;
  height: 80px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
@media screen and (max-width: 768px) {
  .sound-visualizer {
    height: 60px;
    gap: 2px;
  }
}
.sound-visualizer .bar {
  width: 8px;
  background: linear-gradient(to top, #2a7ae2, rgb(131.7768595041, 178.0578512397, 238.2231404959));
  transition: height 0.1s ease;
  height: 20px;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .sound-visualizer .bar {
    width: 6px;
    height: 15px;
  }
}
.sound-visualizer.animating .bar {
  opacity: 1;
  animation: soundwave 0.8s ease-in-out infinite;
}
.sound-visualizer.animating .bar:nth-child(1) {
  animation-delay: 0s;
}
.sound-visualizer.animating .bar:nth-child(2) {
  animation-delay: 0.1s;
}
.sound-visualizer.animating .bar:nth-child(3) {
  animation-delay: 0.2s;
}
.sound-visualizer.animating .bar:nth-child(4) {
  animation-delay: 0.3s;
}
.sound-visualizer.animating .bar:nth-child(5) {
  animation-delay: 0.4s;
}
.sound-visualizer.animating .bar:nth-child(6) {
  animation-delay: 0.3s;
}
.sound-visualizer.animating .bar:nth-child(7) {
  animation-delay: 0.2s;
}
.sound-visualizer.animating .bar:nth-child(8) {
  animation-delay: 0.1s;
}

@keyframes soundwave {
  0%, 100% {
    height: 20px;
  }
  50% {
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  @keyframes soundwave {
    0%, 100% {
      height: 15px;
    }
    50% {
      height: 45px;
    }
  }
}
.sound-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .sound-controls {
    gap: 8px;
  }
}

.play-sound-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px;
  background: transparent;
  color: #000;
  border: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .play-sound-btn {
    padding: 12px 16px;
    font-size: 14px;
    gap: 8px;
  }
}
@media screen and (max-width: 480px) {
  .play-sound-btn {
    padding: 14px 20px;
    font-size: 15px;
  }
}
.play-sound-btn svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .play-sound-btn svg {
    width: 18px;
    height: 18px;
  }
}
.play-sound-btn:hover {
  color: #000;
  background: transparent;
}
.play-sound-btn:active {
  transform: scale(0.98);
}
.play-sound-btn.playing {
  font-weight: bold;
}
.play-sound-btn.playing:hover {
  color: #000;
  background: transparent;
}

.sound-name {
  font-weight: 600;
  color: #333;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .sound-name {
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .sound-name {
    font-size: 15px;
  }
}

.download-sound-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  color: #555;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .download-sound-btn {
    width: 44px;
    height: 44px;
  }
}
@media screen and (max-width: 768px) {
  .download-sound-btn svg {
    width: 18px;
    height: 18px;
  }
}
.download-sound-btn:hover {
  background: #d0d0d0;
  color: #333;
}
.download-sound-btn:active {
  transform: scale(0.95);
}

/**
 * Responsive video container
 */
.container {
  max-width: 100%;
  text-align: center;
  padding: 1rem 0;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .container {
    padding: 1em;
  }
}
.container lite-youtube {
  max-width: 100%;
}

.home p {
  padding: 2em 0;
}

.hide-after-hover {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.show-after-hover {
  opacity: 0;
  display: none;
  transition: opacity 0.3s ease;
}

#whack-a-mole-canvas {
  box-shadow: 0 8px 16px rgba(158, 79, 5, 0.4);
  cursor: crosshair;
  display: block;
  margin: 0 auto;
}

.game-info {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background: #f9f9f9;
  box-shadow: 0 2px 8px rgba(119, 20, 20, 0.4);
}

.game-info h2 {
  margin-top: 0;
  color: #654321;
}

.game-info ul {
  text-align: left;
  line-height: 1.8;
}

/**
 * Talking Head - Audio-reactive animated head
 */
.talking-head-container {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.talking-head-container.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
@media screen and (max-width: 768px) {
  .talking-head-container {
    bottom: 10px;
    right: 10px;
  }
}

.talking-head {
  position: relative;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(10, 35, 65, 0.4);
  overflow: hidden;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.head-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.head-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mouth-container {
  position: absolute;
  bottom: 24px;
  left: 97px;
  transform: translateX(-50%);
  width: 39px;
  height: auto;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}
.mouth-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.05s ease-out, opacity 0.05s ease-out;
  transform-origin: top center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.close-talking-head {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 36px;
  height: 36px;
  background: #ff4757;
  color: white;
  border: 3px solid white;
  border-radius: 50%;
  font-size: 24px;
  line-height: 30px;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(33, 73, 23, 0.4);
  transition: all 0.2s ease;
}
.close-talking-head:hover {
  background: #ee5a6f;
  transform: scale(1.1);
}
.close-talking-head:active {
  transform: scale(0.95);
}
@media screen and (max-width: 768px) {
  .close-talking-head {
    width: 32px;
    height: 32px;
    font-size: 20px;
    line-height: 26px;
    border-width: 2px;
  }
}

.talking-head-container.active .talking-head {
  animation: float 3s ease-in-out infinite, pulse 0.5s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% {
    box-shadow: 0 10px 40px rgba(194, 78, 240, 0.4);
  }
  100% {
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4), 0 0 30px rgba(118, 75, 162, 0.4);
  }
}
/**
 * Syntax highlighting styles
 */
.highlight {
  background: #fff;
}
.highlighter-rouge .highlight {
  background: #eef;
}
.highlight .c {
  color: #998;
  font-style: italic;
}
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight .k {
  font-weight: bold;
}
.highlight .o {
  font-weight: bold;
}
.highlight .cm {
  color: #998;
  font-style: italic;
}
.highlight .cp {
  color: #999;
  font-weight: bold;
}
.highlight .c1 {
  color: #998;
  font-style: italic;
}
.highlight .cs {
  color: #999;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #000;
  background-color: #fdd;
}
.highlight .gd .x {
  color: #000;
  background-color: #faa;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gr {
  color: #a00;
}
.highlight .gh {
  color: #999;
}
.highlight .gi {
  color: #000;
  background-color: #dfd;
}
.highlight .gi .x {
  color: #000;
  background-color: #afa;
}
.highlight .go {
  color: #888;
}
.highlight .gp {
  color: #555;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #aaa;
}
.highlight .gt {
  color: #a00;
}
.highlight .kc {
  font-weight: bold;
}
.highlight .kd {
  font-weight: bold;
}
.highlight .kp {
  font-weight: bold;
}
.highlight .kr {
  font-weight: bold;
}
.highlight .kt {
  color: #458;
  font-weight: bold;
}
.highlight .m {
  color: #099;
}
.highlight .s {
  color: #d14;
}
.highlight .na {
  color: #008080;
}
.highlight .nb {
  color: #0086B3;
}
.highlight .nc {
  color: #458;
  font-weight: bold;
}
.highlight .no {
  color: #008080;
}
.highlight .ni {
  color: #800080;
}
.highlight .ne {
  color: #900;
  font-weight: bold;
}
.highlight .nf {
  color: #900;
  font-weight: bold;
}
.highlight .nn {
  color: #555;
}
.highlight .nt {
  color: #000080;
}
.highlight .nv {
  color: #008080;
}
.highlight .ow {
  font-weight: bold;
}
.highlight .w {
  color: #bbb;
}
.highlight .mf {
  color: #099;
}
.highlight .mh {
  color: #099;
}
.highlight .mi {
  color: #099;
}
.highlight .mo {
  color: #099;
}
.highlight .sb {
  color: #d14;
}
.highlight .sc {
  color: #d14;
}
.highlight .sd {
  color: #d14;
}
.highlight .s2 {
  color: #d14;
}
.highlight .se {
  color: #d14;
}
.highlight .sh {
  color: #d14;
}
.highlight .si {
  color: #d14;
}
.highlight .sx {
  color: #d14;
}
.highlight .sr {
  color: #009926;
}
.highlight .s1 {
  color: #d14;
}
.highlight .ss {
  color: #990073;
}
.highlight .bp {
  color: #999;
}
.highlight .vc {
  color: #008080;
}
.highlight .vg {
  color: #008080;
}
.highlight .vi {
  color: #008080;
}
.highlight .il {
  color: #099;
}

/*# sourceMappingURL=main.css.map */