/* Header start */
.chaos-header {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #ff00ff 0%, #00f7ff 25%, #fffb00 50%, #00ff66 75%, #ff0055 100%);
    padding: 35px 20px;
    border-bottom: 8px dashed #000;
    box-shadow:
        0 0 30px rgba(255,0,255,0.8),
        inset 0 0 50px rgba(255,255,255,0.4);
    animation: hueRotate 4s linear infinite;
}

.bg-noise {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.4) 2px, transparent 2px),
        radial-gradient(circle at 80% 40%, rgba(0,0,0,0.25) 3px, transparent 3px),
        radial-gradient(circle at 50% 90%, rgba(255,255,255,0.3) 1px, transparent 1px);
    background-size: 60px 60px;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.logo-wrap {
    transform: rotate(-4deg);
}

.logo-text {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-shadow:
        4px 4px 0 #000,
        -4px -4px 0 #ff00ff,
        8px 8px 20px rgba(0,0,0,0.5);
    font-family: Impact, sans-serif;
    letter-spacing: 5px;
    animation: shake 0.3s infinite alternate;
    margin: 0;
}

.logo-sub {
    display: inline-block;
    background: #000;
    color: #00ff90;
    padding: 5px 12px;
    font-weight: bold;
    margin-top: 10px;
    transform: skew(-15deg);
    border: 3px solid #fff;
}

.crazy-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.crazy-nav a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 900;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(0,0,0,0.7);
    border: 3px solid #fff;
    transform: rotate(calc(var(--r, 1) * 2deg));
    transition: all 0.2s ease;
    text-shadow: 2px 2px 0 #ff00ff;
}

.crazy-nav a:nth-child(odd) {
    --r: -1;
}

.crazy-nav a:hover {
    transform: scale(1.2) rotate(-8deg);
    background: #fff;
    color: #ff00aa;
    box-shadow: 0 0 20px #fff;
}

.btn-cursed {
    background: #000;
    color: #fff;
    border: 4px dotted #ff0;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 20px;
    transform: rotate(5deg);
    box-shadow:
        0 0 20px #ff00ff,
        0 0 40px #00ffff;
    animation: pulseChaos 0.8s infinite alternate;
}

.btn-cursed:hover {
    background: #ff00ff;
    color: #000;
    transform: scale(1.1) rotate(-10deg);
}

.floating {
    position: absolute;
    font-size: 3rem;
    pointer-events: none;
    opacity: 0.9;
    animation: floaty 4s infinite ease-in-out alternate;
}

.floating-1 {
    top: 10px;
    left: 10%;
}

.floating-2 {
    top: 20px;
    right: 15%;
    animation-delay: 1s;
}

.floating-3 {
    bottom: 10px;
    left: 40%;
    animation-delay: 2s;
}

.floating-4 {
    bottom: 20px;
    right: 5%;
    animation-delay: 3s;
}

@keyframes shake {
    from {
        transform: translateX(-2px) rotate(-1deg);
    }
    to {
        transform: translateX(2px) rotate(1deg);
    }
}

@keyframes pulseChaos {
    from {
        transform: scale(1) rotate(5deg);
    }
    to {
        transform: scale(1.08) rotate(-5deg);
    }
}

@keyframes hueRotate {
    from {
        filter: hue-rotate(0deg);
    }
    to {
        filter: hue-rotate(360deg);
    }
}

@keyframes floaty {
    from {
        transform: translateY(0px) rotate(-10deg);
    }
    to {
        transform: translateY(-20px) rotate(10deg);
    }
}
/* Header end */

/* Casper TestFooter*/
.site-footer {
  background: #4e4d4d;
  color: #ffffff;
  padding: 15px;
  text-align: center;
  border-top: 3px solid #000000;
  font-weight: bold;
}

.site-footer-split{
  display: grid;
  grid-template-columns: repeat(3, 1f);
  gap: 20px;
  padding: 40px;
  background-color: #585858;
  justify-items: center;
}

.headline-footer{
  font-size: 18px;
}

.text{
  font-size: 12px;
  font-weight: lighter;
  color: white;
}