:root {
    --pink: #ff1493;
    --black: #0a0a0a;
    --gray: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lexend', sans-serif;
    background-color: var(--black);
    color: var(--pink);
    overflow-x: hidden;
    padding: 2rem;
}

.notebook-page {
    min-height: 100vh;
    position: relative;
}

.header-fragments {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.pulse-dot {
    font-size: 4rem;
    color: var(--pink);
    font-weight: 300;
    animation: ledPulse 2s infinite;
    text-shadow: 0 0 20px var(--pink);
}

.band-identity {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.band-names {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.name-fragment {
    color: var(--pink);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    animation: nameGlow 3s infinite;
    text-shadow: 0 0 15px var(--pink);
}

.separator {
    color: var(--pink);
    font-size: 1.5rem;
    font-weight: 200;
    animation: separatorPulse 2.5s infinite;
}

.band-essence {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.essence-fragment {
    color: var(--pink);
    font-size: 0.9rem;
    font-weight: 100;
    letter-spacing: 2px;
    animation: flicker 4s infinite;
    animation-delay: calc(var(--delay) * 0.3s);
}

.essence-symbol {
    color: var(--pink);
    font-size: 1rem;
    font-weight: 200;
    animation: symbolFloat 3.5s infinite;
    animation-delay: calc(var(--delay) * 0.2s);
}

.essence-fragment:nth-child(1) { --delay: 0; }
.essence-symbol:nth-child(2) { --delay: 1; }
.essence-fragment:nth-child(3) { --delay: 2; }
.essence-symbol:nth-child(4) { --delay: 3; }
.essence-fragment:nth-child(5) { --delay: 4; }

.scribble-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.scribble-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    transform: rotate(0deg);
    opacity: 0.7;
    animation: randomFade 6s infinite;
    animation-delay: calc(var(--random-delay) * 0.2s);
}

.scribble-block.rotated {
    transform: rotate(-2deg);
}

.scribble-block.inverted {
    transform: rotate(1.5deg);
}

.ritual-text {
    color: var(--pink);
    font-size: 0.9rem;
    font-weight: 200;
    letter-spacing: 1px;
}

.whisper {
    color: var(--pink);
    font-size: 0.7rem;
    font-weight: 100;
    opacity: 0.6;
    font-style: italic;
}

.ritual-symbol {
    color: var(--pink);
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
}

.numbers {
    color: var(--pink);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    opacity: 0.8;
}

.scribble-block:nth-child(1) { --random-delay: 0; animation-duration: 5.2s; }
.scribble-block:nth-child(2) { --random-delay: 3; animation-duration: 7.1s; }
.scribble-block:nth-child(3) { --random-delay: 1; animation-duration: 4.8s; }
.scribble-block:nth-child(4) { --random-delay: 5; animation-duration: 6.3s; }
.scribble-block:nth-child(5) { --random-delay: 2; animation-duration: 8.7s; }
.scribble-block:nth-child(6) { --random-delay: 4; animation-duration: 3.9s; }
.scribble-block:nth-child(7) { --random-delay: 6; animation-duration: 5.5s; }
.scribble-block:nth-child(8) { --random-delay: 1; animation-duration: 9.2s; }
.scribble-block:nth-child(9) { --random-delay: 7; animation-duration: 4.1s; }
.scribble-block:nth-child(10) { --random-delay: 3; animation-duration: 7.8s; }
.scribble-block:nth-child(11) { --random-delay: 8; animation-duration: 6.6s; }
.scribble-block:nth-child(12) { --random-delay: 2; animation-duration: 5.9s; }
.scribble-block:nth-child(13) { --random-delay: 9; animation-duration: 8.3s; }
.scribble-block:nth-child(14) { --random-delay: 4; animation-duration: 3.7s; }
.scribble-block:nth-child(15) { --random-delay: 6; animation-duration: 7.4s; }
.scribble-block:nth-child(16) { --random-delay: 1; animation-duration: 4.6s; }
.scribble-block:nth-child(17) { --random-delay: 7; animation-duration: 6.1s; }
.scribble-block:nth-child(18) { --random-delay: 3; animation-duration: 8.9s; }
.scribble-block:nth-child(19) { --random-delay: 5; animation-duration: 5.3s; }
.scribble-block:nth-child(20) { --random-delay: 8; animation-duration: 7.2s; }
.scribble-block:nth-child(21) { --random-delay: 2; animation-duration: 4.4s; }
.scribble-block:nth-child(22) { --random-delay: 9; animation-duration: 6.8s; }
.scribble-block:nth-child(23) { --random-delay: 4; animation-duration: 8.1s; }
.scribble-block:nth-child(24) { --random-delay: 6; animation-duration: 3.8s; }
.scribble-block:nth-child(25) { --random-delay: 1; animation-duration: 5.7s; }
.scribble-block:nth-child(26) { --random-delay: 7; animation-duration: 7.5s; }
.scribble-block:nth-child(27) { --random-delay: 3; animation-duration: 4.2s; }
.scribble-block:nth-child(28) { --random-delay: 8; animation-duration: 6.4s; }
.scribble-block:nth-child(29) { --random-delay: 5; animation-duration: 9.1s; }
.scribble-block:nth-child(30) { --random-delay: 2; animation-duration: 3.6s; }
.scribble-block:nth-child(31) { --random-delay: 9; animation-duration: 5.8s; }
.scribble-block:nth-child(32) { --random-delay: 4; animation-duration: 7.9s; }
.scribble-block:nth-child(33) { --random-delay: 6; animation-duration: 4.3s; }
.scribble-block:nth-child(34) { --random-delay: 1; animation-duration: 8.6s; }
.scribble-block:nth-child(35) { --random-delay: 7; animation-duration: 5.1s; }
.scribble-block:nth-child(36) { --random-delay: 3; animation-duration: 6.7s; }
.scribble-block:nth-child(37) { --random-delay: 8; animation-duration: 7.3s; }
.scribble-block:nth-child(38) { --random-delay: 5; animation-duration: 4.7s; }
.scribble-block:nth-child(39) { --random-delay: 2; animation-duration: 9.4s; }
.scribble-block:nth-child(40) { --random-delay: 9; animation-duration: 3.5s; }
.scribble-block:nth-child(41) { --random-delay: 4; animation-duration: 6.2s; }
.scribble-block:nth-child(42) { --random-delay: 7; animation-duration: 4.9s; }
.scribble-block:nth-child(43) { --random-delay: 1; animation-duration: 8.4s; }
.scribble-block:nth-child(44) { --random-delay: 9; animation-duration: 5.6s; }
.scribble-block:nth-child(45) { --random-delay: 3; animation-duration: 7.7s; }
.scribble-block:nth-child(46) { --random-delay: 6; animation-duration: 3.3s; }
.scribble-block:nth-child(47) { --random-delay: 8; animation-duration: 9.8s; }
.scribble-block:nth-child(48) { --random-delay: 2; animation-duration: 4.5s; }
.scribble-block:nth-child(49) { --random-delay: 5; animation-duration: 6.9s; }
.scribble-block:nth-child(50) { --random-delay: 0; animation-duration: 8.2s; }
.scribble-block:nth-child(51) { --random-delay: 7; animation-duration: 3.4s; }
.scribble-block:nth-child(52) { --random-delay: 4; animation-duration: 5.8s; }
.scribble-block:nth-child(53) { --random-delay: 1; animation-duration: 7.1s; }
.scribble-block:nth-child(54) { --random-delay: 9; animation-duration: 4.7s; }
.scribble-block:nth-child(55) { --random-delay: 6; animation-duration: 8.5s; }
.scribble-block:nth-child(56) { --random-delay: 3; animation-duration: 6.3s; }
.scribble-block:nth-child(57) { --random-delay: 8; animation-duration: 3.9s; }
.scribble-block:nth-child(58) { --random-delay: 2; animation-duration: 7.6s; }
.scribble-block:nth-child(59) { --random-delay: 5; animation-duration: 5.2s; }
.scribble-block:nth-child(60) { --random-delay: 0; animation-duration: 9.3s; }
.scribble-block:nth-child(61) { --random-delay: 7; animation-duration: 4.1s; }
.scribble-block:nth-child(62) { --random-delay: 4; animation-duration: 6.8s; }
.scribble-block:nth-child(63) { --random-delay: 1; animation-duration: 8.7s; }
.scribble-block:nth-child(64) { --random-delay: 9; animation-duration: 3.6s; }
.scribble-block:nth-child(65) { --random-delay: 6; animation-duration: 5.4s; }
.scribble-block:nth-child(66) { --random-delay: 3; animation-duration: 7.9s; }
.scribble-block:nth-child(67) { --random-delay: 8; animation-duration: 4.8s; }
.scribble-block:nth-child(68) { --random-delay: 2; animation-duration: 6.1s; }
.scribble-block:nth-child(69) { --random-delay: 5; animation-duration: 8.9s; }
.scribble-block:nth-child(70) { --random-delay: 0; animation-duration: 3.7s; }
.scribble-block:nth-child(71) { --random-delay: 7; animation-duration: 5.5s; }
.scribble-block:nth-child(72) { --random-delay: 4; animation-duration: 7.2s; }
.scribble-block:nth-child(73) { --random-delay: 1; animation-duration: 4.4s; }
.scribble-block:nth-child(74) { --random-delay: 9; animation-duration: 6.6s; }
.scribble-block:nth-child(75) { --random-delay: 6; animation-duration: 8.1s; }
.scribble-block:nth-child(76) { --random-delay: 3; animation-duration: 3.8s; }
.scribble-block:nth-child(77) { --random-delay: 8; animation-duration: 5.9s; }
.scribble-block:nth-child(78) { --random-delay: 2; animation-duration: 7.4s; }
.scribble-block:nth-child(79) { --random-delay: 5; animation-duration: 4.6s; }
.scribble-block:nth-child(80) { --random-delay: 0; animation-duration: 8.8s; }
.scribble-block:nth-child(81) { --random-delay: 7; animation-duration: 6.7s; }
.scribble-block:nth-child(82) { --random-delay: 4; animation-duration: 3.2s; }
.scribble-block:nth-child(83) { --random-delay: 1; animation-duration: 5.3s; }
.scribble-block:nth-child(84) { --random-delay: 9; animation-duration: 7.8s; }
.scribble-block:nth-child(85) { --random-delay: 6; animation-duration: 4.2s; }
.scribble-block:nth-child(86) { --random-delay: 3; animation-duration: 6.5s; }
.scribble-block:nth-child(87) { --random-delay: 8; animation-duration: 8.6s; }
.scribble-block:nth-child(88) { --random-delay: 2; animation-duration: 3.1s; }
.scribble-block:nth-child(89) { --random-delay: 5; animation-duration: 5.7s; }
.scribble-block:nth-child(90) { --random-delay: 0; animation-duration: 7.3s; }
.scribble-block:nth-child(91) { --random-delay: 7; animation-duration: 4.9s; }
.scribble-block:nth-child(92) { --random-delay: 4; animation-duration: 6.4s; }
.scribble-block:nth-child(93) { --random-delay: 1; animation-duration: 8.3s; }
.scribble-block:nth-child(94) { --random-delay: 9; animation-duration: 5.1s; }
.scribble-block:nth-child(95) { --random-delay: 6; animation-duration: 3.5s; }
.scribble-block:nth-child(96) { --random-delay: 3; animation-duration: 7.7s; }
.scribble-block:nth-child(97) { --random-delay: 8; animation-duration: 4.3s; }
.scribble-block:nth-child(98) { --random-delay: 2; animation-duration: 6.9s; }
.scribble-block:nth-child(99) { --random-delay: 5; animation-duration: 8.4s; }
.scribble-block:nth-child(100) { --random-delay: 0; animation-duration: 5.8s; }
.scribble-block:nth-child(n+101) { --random-delay: 4; animation-duration: 6s; }

@keyframes nameGlow {
    0%, 100% { 
        opacity: 1; 
        text-shadow: 0 0 15px var(--pink), 0 0 25px var(--pink);
    }
    50% { 
        opacity: 0.8; 
        text-shadow: 0 0 25px var(--pink), 0 0 40px var(--pink), 0 0 60px var(--pink);
    }
}

@keyframes separatorPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

@keyframes symbolFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

@keyframes flicker {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
    75% { opacity: 0.1; }
}

@keyframes randomFade {
    0%, 100% { opacity: 0.4; }
    25% { opacity: 0.8; }
    50% { opacity: 0.2; }
    75% { opacity: 0.9; }
}

@keyframes ledPulse {
    0% { 
        opacity: 1; 
        transform: scale(1);
        text-shadow: 0 0 20px var(--pink), 0 0 40px var(--pink), 0 0 60px var(--pink);
    }
    50% { 
        opacity: 0.3; 
        transform: scale(0.98);
        text-shadow: 0 0 5px var(--pink), 0 0 10px var(--pink);
    }
    100% { 
        opacity: 1; 
        transform: scale(1);
        text-shadow: 0 0 20px var(--pink), 0 0 40px var(--pink), 0 0 60px var(--pink);
    }
}