:root {
  --bg-color: #000;
  --text-color: rgba(255, 255, 255, 0.85);
  --icon-color: rgba(255, 255, 255, 0.7);
}

@font-face {
    font-family: 'Squealer';
    src: url('/fonts/Squealer.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: 'icomoon';
  src:  url('/fonts/icomoon.eot?h9qjpn');
  src:  url('/fonts/icomoon.eot?h9qjpn#iefix') format('embedded-opentype'),
    /* url('/fonts/icomoon.ttf?h9qjpn') format('truetype'), */
    url('/fonts/icomoon.woff?h9qjpn') format('woff'),
    url('/fonts/icomoon.svg?h9qjpn#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-tidal:before {
  content: "\e900";
}

body {
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Squealer', sans-serif;
}

h1 {
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
}
h2 {
  font-size: 4.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
h3 {
  font-size: 3.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
h4, h5, h6 {
  font-size: 2.2rem;
  letter-spacing: 0.04em;
}

.profile-pic {
  width: 100%;
  /* height: 150px; */
  /* border-radius: 50%; */
  object-fit: cover;
  /* border: 3px solid rgba(255, 255, 255, 0.2); */
  transition: all 0.3s ease;
}

.profile-pic:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.link-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.link-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon {
  color: var(--icon-color);
  transition: all 0.3s ease;
}

.link-card:hover .icon {
  transform: scale(1.1);
  color: rgba(255, 255, 255, 0.9);
}

.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/images/Coroner-3skull-Logo_bg_blur_rotate.png') center center no-repeat;
  background-size: 90vw auto; /* Make the image smaller and keep aspect ratio */
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
      transform: translateY(0) rotate(0deg);
      opacity: 1;
  }
  100% {
      transform: translateY(-1000px) rotate(720deg);
      opacity: 0;
  }
}

.info-box {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border-left: 3px solid var(--icon-color);
}

.social-icons a {
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px) scale(1.1);
}

/* Generate random circles for background */
.generate-circles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.pulsating-box {
  animation: glowWave 4s infinite;
}

@keyframes glowWave {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 20px 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.border-trace::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px; /* match your card radius */
  box-sizing: border-box;
  pointer-events: none;

  /* Gradient border using a mask trick */
  border: 3px solid transparent;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(209, 77, 77, 0.224), rgba(255, 255, 255, 0.8));
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 3px; /* same as border thickness */

  /* Animation */
  clip-path: inset(0 100% 0 0); /* start hidden */
  animation: drawBorder 10s linear infinite; /* slower: 10s */
}

@keyframes drawBorder {
  0% {
    clip-path: inset(0 100% 0 0); /* hidden */
  }
  25% {
    clip-path: inset(0 0 0 0); /* fully visible */
  }
  50% {
    clip-path: inset(100% 0 0 0); /* start hiding from top */
  }
  75% {
    clip-path: inset(0 0 0 100%); /* hide from right */
  }
  100% {
    clip-path: inset(0 100% 0 0); /* back to hidden */
  }
}

.bit-widget-container {
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow-x: auto !important;
}

.bit-widget-container * {
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow-x: hidden !important;
  word-break: break-word !important;
}

.bit-ticket-button {
  max-width: 100% !important;
  width: auto !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
  font-size: 0.95em !important; /* Optional: slightly smaller text */
}

@media (max-width: 916px) {
  .bit-ticket-button {
    max-width: 100% !important;
    margin: 10px !important;
    width: auto !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    font-size: 0.95em !important;
    box-sizing: border-box !important;
  }
}

/* @media only screen and (max-width: 916px) {
  .bit-widget .bit-event .bit-button {
    margin: 10px !important;
  }
} */

@media only screen and (max-width: 916px) {
  .bit-widget .bit-button {
    margin: 10px !important; 
  }
}

.bit-widget .bit-follow-section-wrapper {
  padding: 0px 0px !important;
}

.bit-location-under-mobile:not(.nope) {
  text-align: left !important;
}