@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic);
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
}

/* Basic styling */
.menu {
  list-style-type: none;
  align-content: start;
}
.menu.active {
  min-height: 100vh;
}
.menu a {
  color: #000;
  cursor: pointer;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
  color: #fff;
}
.menu a[href*="//"]:not([href*=swinglinks]) {
  justify-content: space-between;
}
.menu a[href*="//"]:not([href*=swinglinks]):after {
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  line-height: 16px;
  font-weight: 900;
  content: "\f08e";
  padding-left: 5px;
}

.submenu {
  list-style-type: none;
  animation: growDown 300ms ease-in-out forwards;
  transform-origin: top center;
}

.item {
  padding: 0.25em 1em;
  margin: 6px;
  background-color: rgba(0, 0, 0, 0.1);
}

/* Mobile menu */
.menu {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: flex-end;
  height: 100%;
}
.menu a {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}
.menu .subitem a {
  padding: 15px 0;
  text-shadow: none;
}

.toggle {
  order: 1;
  font-size: 20px;
  align-self: flex-end;
}

.item {
  order: 3;
  width: 100%;
  text-align: center;
  display: none;
}

.active .item {
  display: block;
  transform-origin: top center;
  animation: translateX 300ms ease-in-out forwards;
}

/* Submenu up from mobile screens */
.submenu {
  display: none;
}

.submenu-active .submenu {
  display: block;
}

.has-submenu i {
  font-size: 12px;
}

.has-submenu > a::after {
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  line-height: 16px;
  font-weight: 900;
  content: "\f078";
  color: inherit;
  padding-left: 5px;
}

.subitem a {
  padding: 10px 15px;
}

.submenu-active {
  border-radius: 0.2em;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Tablet menu */
@media all and (min-width: 700px) {
  .menu {
    justify-content: center;
  }
  .toggle {
    flex: 1;
    text-align: right;
    order: 2;
  }
}
/* Desktop menu */
@media all and (min-width: 960px) {
  .menu {
    flex-wrap: nowrap;
    background: none;
  }
  .menu a {
    justify-content: space-between;
  }
  .menu .logo {
    order: 0;
  }
  .menu .item {
    order: 1;
    position: relative;
    display: block;
    width: auto;
    text-wrap: nowrap;
  }
  .menu .submenu-active .submenu {
    display: block;
    position: absolute;
    right: 0;
    top: 70px;
    min-width: 120%;
    border-radius: 0.2em;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(9.5px);
    -webkit-backdrop-filter: blur(9.5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
  }
  .menu .subitem {
    border-radius: 0.2em;
  }
  .menu .subitem a {
    border-left: 5px solid transparent;
    padding: 15px;
  }
  .menu .subitem:first-of-type a {
    border-top-left-radius: 0.2em;
  }
  .menu .subitem:last-of-type a {
    border-bottom-left-radius: 0.2em;
  }
  .menu .subitem:hover a {
    background-color: rgba(255, 255, 255, 0.8);
    border-left: 5px solid rgb(0, 153, 255);
    color: rgb(0, 153, 255);
  }
  .menu .toggle {
    display: none;
  }
}
dialog {
  width: 80%;
  /* Set the width of the dialog */
  max-width: 400px;
  /* Set a maximum width if needed */
  max-height: 500px;
  margin: 40px auto;
  /* Center the dialog horizontally */
  top: 20vh;
  border-radius: 0.8em;
  border: 1px solid #1877f2;
  padding: 0;
  border-radius: 10px;
  text-align: center;
  text-shadow: 0 10px 13px rgba(31, 38, 135, 0.87);
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(9.5px);
  -webkit-backdrop-filter: blur(9.5px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
dialog header,
dialog footer {
  background-color: rgba(0, 0, 0, 0.1);
  color: #fff;
  border-radius: 0.8em;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
dialog header {
  text-align: center;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  min-height: 50px;
}
dialog header h2 {
  font-size: 120%;
  margin: 0;
  line-height: 2em;
  text-transform: uppercase;
}
dialog ul {
  list-style: circle;
  margin: 0 40px 20px;
}
dialog section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  font-size: 150%;
}
dialog footer {
  bottom: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
dialog footer button {
  border: 2px solid #fff;
  font-weight: 600;
  cursor: pointer;
  margin: 0 10px 10px;
  margin-top: 10px;
}
dialog footer button:hover {
  background-color: rgb(0, 137.7, 229.5);
}
dialog footer button.yes {
  border: 2px solid rgb(0, 153, 255);
  color: #fff;
  background-color: rgb(0, 153, 255);
}
dialog footer button.yes:hover {
  background-color: rgb(0, 137.7, 229.5);
}
dialog footer button.nope {
  color: #000;
  background-color: rgba(255, 255, 255, 0.6);
}
dialog footer button.nope:hover {
  color: #fff;
  border-color: rgb(0, 153, 255);
  background-color: rgb(0, 137.7, 229.5);
}
dialog footer button:focus {
  outline: 1px solid #f203be;
  box-shadow: 0 0 10px #f203be;
}
dialog em {
  font-weight: 800;
}

::backdrop {
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: linear-gradient(135deg, #FC2623 0%, #FDE04A 100%);
  animation: gradient 300s ease infinite;
  height: 100vh;
  opacity: 0.95;
}

@keyframes wiggle {
  0%, 7% {
    transform: rotateZ(0);
  }
  20% {
    transform: rotateZ(0deg);
  }
  22% {
    transform: rotateZ(20deg);
  }
  24% {
    transform: rotateZ(-20deg);
  }
  26% {
    transform: rotateZ(20deg);
  }
  28% {
    transform: rotateZ(0deg);
  }
  40%, 100% {
    transform: rotateZ(0);
  }
}
@keyframes pulse {
  0% {
    transform: perspective(1px) scale(1);
  }
  8% {
    transform: perspective(1px) scale(1.1);
  }
  12% {
    transform: perspective(1px) scale(1);
  }
  100% {
    transform: perspective(1px) scale(1);
  }
}
@keyframes translateX {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  80% {
    transform: translateX(-5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 100%;
  }
}
body.phoebe.bg1::before, body.phoebe.bg2::before, body.phoebe.bg3::before, body.phoebe.bg4::before, body.phoebe.bg5::before, body.phoebe.bg6::before,
body.ed.bg1::before,
body.ed.bg2::before,
body.ed.bg3::before,
body.ed.bg4::before,
body.ed.bg5::before,
body.ed.bg6::before,
body.su.bg1::before,
body.su.bg2::before,
body.su.bg3::before,
body.su.bg4::before,
body.su.bg5::before,
body.su.bg6::before {
  background-image: url(../images/backgrounds/background-7.png);
}

/* Using your exact link-category structure */
.calendar-widget {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.calendar-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E") repeat;
  background-size: 80px 80px;
  opacity: 0.3;
  z-index: -1;
  border-radius: 20px 20px 0 0;
}

.calendar-widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.calendar-widget:hover::before {
  opacity: 0.5;
}

/* Using your exact links-list structure */
.events-list {
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
  position: relative;
  list-style: none;
}

/* Using your exact link-item structure for events */
.event-item {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: white;
  font-weight: 600;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  position: relative;
}

.event-item:hover {
  background: rgba(69, 97, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.event-item:has(.calendar-dropdown.show) {
  z-index: 10000 !important;
}

.event-info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: 100%;
  flex: 1;
  position: relative;
}

.event-date-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  padding: 1rem 1rem 0.5rem;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px 10px 0 0;
}

.event-date-time-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.25rem;
}

.event-date {
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
}

.event-time {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.add-to-calendar {
  position: relative;
  display: inline-block;
}

.add-calendar-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 0.4rem 0.5rem;
  color: white;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-calendar-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.calendar-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 200px;
  z-index: 99999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.calendar-dropdown.show {
  display: block;
}
.calendar-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.calendar-dropdown a i {
  width: 20px;
  text-align: center;
}
.calendar-dropdown a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.event-type {
  display: none;
}

.public .event-patreon {
  display: none;
}

.patreon .event-public {
  display: none;
}

.event-public,
.event-patreon {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 0.5rem 1rem;
  justify-items: stretch;
  flex: 1 0 0;
  align-self: stretch;
}
.event-public a.platform-logo,
.event-patreon a.platform-logo {
  background: rgba(30, 30, 40, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  min-width: 48px;
  height: 28px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 0;
}
.event-public a.platform-logo img,
.event-patreon a.platform-logo img {
  width: auto;
  height: 100%;
  max-height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.event-public a.platform-logo:hover,
.event-patreon a.platform-logo:hover {
  background: rgba(40, 40, 50, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Using your exact age-confirm button style for refresh */
.refresh-btn {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 1rem 2rem;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: block;
  text-decoration: none;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  width: calc(100% - 3rem);
  margin: 0 1.5rem 1.5rem;
  text-align: center;
}

.refresh-btn:hover {
  background: rgba(69, 97, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.loading, .error {
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

.error {
  background: rgba(220, 38, 127, 0.2);
  border: 1px solid rgba(220, 38, 127, 0.5);
  border-radius: 12px;
  margin: 1.5rem;
}

.setup-info {
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.setup-info h4 {
  color: white;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.setup-info p {
  margin-bottom: 0.5rem;
}

.calendar-subscribe {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 0 20px 20px;
  border-top: none;
  margin-top: -1px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}
.calendar-subscribe h3 {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  text-align: center;
}
.calendar-subscribe p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  text-align: center;
}
.calendar-subscribe .subscribe-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: flex-start;
}
.calendar-subscribe .subscribe-calendar {
  position: relative;
  display: inline-block;
}
.calendar-subscribe .subscribe-calendar-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 1rem 2rem;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.calendar-subscribe .subscribe-calendar-btn i {
  font-size: 1.1rem;
}
.calendar-subscribe .subscribe-calendar-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.calendar-subscribe .subscribe-calendar-btn.public-cal-btn:hover {
  background: rgba(0, 162, 255, 0.4);
  border-color: rgba(0, 162, 255, 0.6);
}
.calendar-subscribe .subscribe-calendar-btn.patreon-cal-btn:hover {
  background: rgba(234, 0, 255, 0.4);
  border-color: rgba(234, 0, 255, 0.6);
}
.calendar-subscribe .subscribe-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 200px;
  z-index: 99999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.calendar-subscribe .subscribe-dropdown.show {
  display: block;
}
.calendar-subscribe .subscribe-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.calendar-subscribe .subscribe-dropdown a i {
  width: 20px;
  text-align: center;
}
.calendar-subscribe .subscribe-dropdown a:hover {
  background: rgba(255, 255, 255, 0.2);
}

@keyframes gradient {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 100%;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  .category-title {
    font-size: 1.2rem;
  }
  .events-list {
    padding: 1rem;
  }
  .refresh-btn {
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem;
  }
  .calendar-subscribe .subscribe-buttons {
    grid-template-columns: 1fr;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #2d3748;
  min-height: 100vh;
  position: relative;
  animation: gradient 300s ease infinite;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/backgrounds/background-7.png") no-repeat center center;
  background-size: cover;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

a {
  color: rgba(0, 162, 255, 0.8);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 0 1rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
}

.title-wrapper {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  gap: 0;
}
.title-wrapper h1 {
  line-height: 2.5rem;
}

.logo {
  height: 100px;
  width: 100px;
  background-position: 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1rem;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.link-category {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  clip-path: inset(0 round 20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}
.link-category.merch {
  min-height: 360px;
}
.link-category .columns {
  display: flex;
  padding: 1.5rem;
  gap: 1.5rem;
}

.link-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
}

.link-category.podcast::before {
  background-image: url("../images/su/image-3.jpg");
}

.link-category.socials::before {
  background-image: url("../images/su/image-1.jpg");
}

.link-category.vacations::before {
  background-image: url("../images/su/image-4.jpg");
}

.link-category.merch::before {
  background-image: url("../images/su/image-2.jpg");
}

.link-category.phoebe::before {
  background-image: url("../images/phoebe/image-3.jpg");
}

.link-category.ed::before {
  background-image: url("../images/ed/image-3.jpg");
}

.link-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.link-category:hover::before {
  opacity: 0.5;
}

.category-header {
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: 20px 20px 0 0;
}

.category-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.category-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.links-list {
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.merch .links-list {
  margin-top: 120px;
}
.columns .links-list {
  padding: 0;
  flex-grow: 1;
}

.link-item {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.2s ease;
  display: block;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.link-item:hover {
  background: rgba(69, 97, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nsfw-warning {
  background: rgba(220, 38, 127, 0.2);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 2px solid rgba(220, 38, 127, 0.5);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.nsfw-warning::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc267f, #ff6b9d, #dc267f);
}

.nsfw-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.nsfw-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.age-confirm {
  background: rgba(220, 38, 127, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgb(220, 38, 127);
  border-radius: 12px;
  padding: 1rem 2rem;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.age-confirm:hover {
  background: rgb(220, 38, 127);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 38, 127, 0.4);
}

.hidden {
  display: none;
}

.brand-logo {
  width: 100%;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: 1rem;
}

.phoebe-logo {
  background-image: url("../images/branding/phoebe-logo.svg");
}

.ed-logo {
  background-image: url("../images/branding/ed-logo.svg");
}

#background-video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  min-height: 360px;
}

.fine-print {
  font-size: 70%;
  width: 80%;
}

footer {
  text-align: center;
  padding: 2rem 0;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  margin-top: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  .links-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .title-wrapper {
    font-size: 2rem;
  }
  .tagline {
    font-size: 0.75rem;
  }
  .logo {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 480px) {
  header {
    padding: 1.5rem;
  }
  .category-header {
    padding: 1rem;
  }
  .links-list {
    padding: 1rem;
  }
}
/* Glass effect animations */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.link-category::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
  pointer-events: none;
  will-change: left;
}

.link-category:hover::after {
  left: 100%;
}/*# sourceMappingURL=styles.css.map */