@font-face {
    font-family: 'cursive';
    src: url('https://luffy444.neocities.org/dashboard%202/fonts/cursive.ttf') format('truetype');
}

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

body {
    background-color: #000; /* Ensures any remaining gaps are black */
    overflow-x: hidden;    /* Prevents accidental horizontal scrolling */
    width: 100%;
}


.logo a {
    font-size: 25px;
    font-family: "cursive", serif;
    text-decoration: none; /* Removes the underline */
    color: white; 
    transition: 0.3s; 
    opacity: 0.2; 
    cursor: url("https://luffy444.neocities.org/Images/cross-cursor.png") 16 16, auto;
}

.logo a:hover {
    /* Optional: Add a subtle glow when you hover over it */
    color: white;
    opacity: 1; 
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    transition: 0.3s ease-in-out;
}





.gothic-scroll-container {
    display: flex;
    flex-direction: column; 
    width: 100%;
    background: #000;
}


.statue-card {
    position: relative;
    width: 100%; 
    height: 40vh; 
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    transition: all 0.5s ease;
}


.statue-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(110%);
    transition: transform 1.2s ease, filter 0.5s ease;
    z-index: 1;
}


.statue-card:hover::before {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(100%); 
}


.s1::before { background-image: url('images/1.png'); }

.s2::before { background-image: url('images/2.png'); }

.s3::before { background-image: url('images/3.png'); }

.s4::before { background-image: url('images/4.png'); }

.s5::before { background-image: url('images/5.png'); }

.s6::before { background-image: url('images/6.png'); }

.s7::before { background-image: url('images/7.png'); }

.s8::before { background-image: url('images/8.png'); }

.s9::before { background-image: url('images/9.png'); }

.s10::before { background-image: url('images/10.png'); }

.s11::before { background-image: url('images/11.png'); }

.s12::before { background-image: url('images/12.png'); }





.card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden; 
    background: rgba(0, 0, 0, 0.4);
}

.big-text {
    position: absolute;
    font-family: 'cursive', serif; 
    font-size: 8.5rem; 
    right: 6%;
    top: 55%;
    transform: translateY(-50%);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08); 
    letter-spacing: -5px;
    white-space: nowrap;
    z-index: 1; 
    pointer-events: none; 
}


.statue-card:hover .card-content {
    background: rgba(0, 0, 0, 0.1); 
}


.pill-button {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    
    color: #FFFFFF;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    
    animation: neonPulse 2s infinite ease-in-out;
    
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 5;
}

@keyframes neonPulse {
    0% {
        text-shadow: 
            0 0 5px #ff0000, 
            0 0 10px #ff0000;
        transform: scale(1);
    }
    50% {
        text-shadow: 
            0 0 10px #ff0000, 
            0 0 20px #ff0000, 
            0 0 30px #ff0000;
    }
    100% {
        text-shadow: 
            0 0 5px #ff0000, 
            0 0 10px #ff0000;
        transform: scale(1);
    }
}


.pill-button:hover {
    background: rgba(255, 255, 255, 0.1); 
    transform: translateY(-3px); 
    text-shadow: 
        0 0 10px #ff0000, 
        0 0 20px #ff0000, 
        0 0 40px #ff0000;
        
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.9);
}

    text-shadow: 2px 2px 10px #000;
}