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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #000;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    cursor: url('blood-cursor.png') 16 16, auto;
}

body.no-scroll {
    overflow: hidden;
}

a, button, .overlay, .social-link {
    cursor: url('blood-cursor.png') 16 16, pointer;
}

@media (hover: none) and (pointer: coarse) {
    body, a, button, .overlay, .social-link {
        cursor: auto;
    }
}

#dotsCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 101;
    pointer-events: none;
    opacity: 1;
}

#dotsCanvas.visible {
    opacity: 1;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.video-container video.playing {
    opacity: 0.5;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    cursor: pointer;
}

.overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.enter-container {
    text-align: center;
}

.enter-text {
    font-family: 'Creepster', cursive;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 3rem;
    background: linear-gradient(180deg, #ff0000 0%, #8b0000 50%, #4a0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5)) drop-shadow(0 0 30px rgba(139, 0, 0, 0.3));
    text-shadow: none;
    animation: flicker 3s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    96% { opacity: 0.9; }
    97% { opacity: 1; }
}

.enter-subtext {
    font-family: 'Creepster', cursive;
    font-size: 1.5rem;
    color: #ff4444;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.enter-subtext:hover {
    color: #ff6666;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.4);
    transform: scale(1.05);
}

.enter-btn svg {
    transition: transform 0.3s ease;
}

.enter-btn:hover svg {
    transform: translateX(5px);
}

.content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease 0.3s, visibility 0.8s ease 0.3s;
    padding: 2rem 1rem 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

.content.visible {
    opacity: 1;
    visibility: visible;
}

.card-container {
    width: 100%;
    max-width: 500px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    background: rgba(20, 0, 0, 0.85);
    border-radius: 24px;
    overflow: visible;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
}

.card-inner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 26px;
    background: linear-gradient(
        var(--angle, 0deg),
        transparent 0%,
        transparent 35%,
        #ff0000 40%,
        #ff4444 45%,
        #ffffff 50%,
        #ff4444 55%,
        #ff0000 60%,
        transparent 65%,
        transparent 100%
    );
    z-index: -1;
    animation: rotateBorder 4s linear infinite;
}

.card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: rgba(10, 0, 0, 0.98);
    z-index: -1;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateBorder {
    0% { --angle: 0deg; }
    100% { --angle: 360deg; }
}

.card-inner:hover {
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.6), 0 0 60px rgba(139, 0, 0, 0.3);
}

.card-inner:hover::before {
    animation-duration: 2s;
}

.banner-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    border-radius: 24px 24px 0 0;
}

.banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    border-radius: 24px 24px 0 0;
}

.banner-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(20, 0, 0, 0.9), transparent);
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 0 1.5rem;
}

.profile-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.artist-name {
    font-family: 'Creepster', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    margin-top: 1rem;
    letter-spacing: 0.1em;
    background: linear-gradient(180deg, #ff0000 0%, #8b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.4));
    position: relative;
    display: inline-block;
}

.name-text {
    position: relative;
    z-index: 1;
}

.bat-icon {
    width: 85px;
    height: 85px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.artist-tagline {
    font-size: 0.9rem;
    color: rgba(255, 100, 100, 0.6);
    margin-top: 0.25rem;
    font-weight: 400;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ff6666;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 36px;
    height: 36px;
    fill: #ff6666;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.3));
}

.social-link span {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 100, 100, 0.7);
    transition: all 0.3s ease;
}

.social-link:hover svg {
    fill: #ff0000;
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.6));
}

.social-link:hover span {
    color: #ff6666;
}

.albums-btn {
    display: block;
    margin: 1rem auto 0;
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 100, 100, 0.3);
    border-radius: 25px;
    color: rgba(255, 100, 100, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: url('blood-cursor.png') 16 16, pointer;
    transition: all 0.3s ease;
}

.albums-btn:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 100, 100, 0.6);
    color: #ff6666;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.albums-btn:active {
    transform: scale(0.98);
}

/* Albums Modal */
.albums-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.albums-modal.active {
    opacity: 1;
    visibility: visible;
}

.albums-modal-content {
    position: relative;
    max-width: 900px;
    width: 90%;
    pointer-events: none;
}

.albums-modal-content * {
    pointer-events: auto;
}

.albums-close {
    display: none;
}

.albums-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.album-item {
    position: relative;
    border-radius: 8px;
    overflow: visible;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.album-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.album-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.album-title {
    margin-top: 0.5rem;
    font-family: 'Creepster', cursive;
    font-size: 0.75rem;
    text-align: center;
    background: linear-gradient(180deg, #ff0000 0%, #8b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.3));
    max-width: 100px;
    line-height: 1.2;
}

/* Timeline */
.timeline {
    width: 100%;
    margin-bottom: 0;
    position: relative;
}

.timeline-line {
    position: absolute;
    bottom: 8px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.timeline-points {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.timeline-year {
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
}

.timeline-year::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    margin-top: 0.5rem;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.albums-row {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.footer {
    text-align: center;
    padding: 1.5rem;
}

.footer p {
    font-size: 0.75rem;
    color: rgba(255, 100, 100, 0.3);
    font-weight: 400;
}

@media (max-width: 480px) {
    .content {
        padding: 1rem 0.75rem 2rem;
    }

    .card-container {
        max-width: 320px;
    }

    .banner-container {
        height: 120px;
    }

    .profile-wrapper {
        width: 80px;
        height: 80px;
    }

    .profile-img {
        width: 60px;
        height: 60px;
    }

    .profile-section {
        margin-top: -40px;
    }

    .artist-name {
        font-size: 1.8rem;
    }

    .name-text {
        position: relative;
        z-index: 10;
    }

    .bat-icon {
        display: none;
    }

    .artist-tagline {
        font-size: 0.8rem;
    }

    .social-icons {
        padding: 1rem;
        gap: 1rem;
    }

    .social-link svg {
        width: 28px;
        height: 28px;
    }

    .social-link span {
        font-size: 0.65rem;
    }

    .albums-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.75rem;
    }

    .card-inner {
        border-radius: 16px;
    }

    .enter-text {
        letter-spacing: 0.1em;
    }

    .albums-modal-content {
        width: 95%;
    }

    .timeline-year {
        width: 45px;
        font-size: 0.55rem;
    }

    .timeline-year::after {
        width: 6px;
        height: 6px;
    }

    .timeline-points {
        gap: 0.25rem;
    }

    .albums-row {
        gap: 0.25rem;
    }

    .album-item img {
        width: 45px;
        height: 45px;
    }

    .album-title {
        font-size: 0.5rem;
        max-width: 45px;
    }
}
