/* Define animation for background and text glow */
@keyframes panImage {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 
            0 0 3px rgba(0,0,0,0.9),
            0 0 8px rgba(0,0,0,0.8),
            0 0 10px #fff, 0 0 20px #00aaff, 0 0 30px #00aaff, 0 0 40px #00aaff;
    }
    50% {
        text-shadow: 
            0 0 3px rgba(0,0,0,0.9),
            0 0 8px rgba(0,0,0,0.8),
            0 0 15px #fff, 0 0 25px #00d5ff, 0 0 40px #00d5ff, 0 0 55px #00d5ff;
    }
}

/* Lock the page to prevent scrolling */
html, body {
    overflow: hidden;
    height: 100%;
}

/* Custom styles for the page */
body {
    font-family: 'Orbitron', sans-serif;
    background-color: #020a1a;
    background-image: url('https://raw.githubusercontent.com/dedsec1121fk/ICE-Project/d12b066fc095a11f57b2dea7fe187b4618dc624c/Assets/Images/ICE%20Building.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: screen;
    animation: panImage 45s linear infinite;
}

.artist-name {
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: clamp(4rem, 15vw, 10rem); /* Slightly smaller to fit better at the top */
    line-height: 1;
    color: #fff;
    animation: pulseGlow 4s ease-in-out infinite;
    cursor: pointer;
}

.subtitle-text {
    /* Added a 1px black stroke using multiple text shadows for readability */
    text-shadow:
        -1px -1px 0 #000,
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000;
}

/* Even smaller social media buttons */
.social-button {
    background-color: rgba(10, 10, 10, 0.55);
    border: 2px solid rgba(128, 128, 128, 0.4);
    width: 72px;
    height: 72px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5), 0 5px 15px rgba(0,0,0,0.5);
    transition: all 0.2s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    cursor: pointer;
    /* --- NEW CSS FOR CIRCULAR BUTTONS --- */
    border-radius: 50%; 
    /* ------------------------------------ */
}

.social-button:hover {
    transform: translateY(-8px);
    background-color: rgba(10, 10, 10, 0.65);
    border-color: #00aaff;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5), 0 8px 25px rgba(0, 170, 255, 0.4);
}

.social-button svg {
    width: 26px;
    height: 26px;
    color: #fff; /* Changed from #aaa for better contrast */
    transition: all 0.2s ease;
}

.social-button:hover svg {
    color: #00aaff;
    filter: drop-shadow(0 0 8px #00aaff);
}

.button-label {
    font-family: 'Black Ops One', sans-serif;
    text-transform: uppercase;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: #fff; /* Changed from #aaa for better contrast */
    transition: all 0.2s ease;
}

.social-button:hover .button-label {
    color: #fff;
    text-shadow: 0 0 5px #00aaff;
}

/* Copyright style */
.footer-note {
    position: absolute;
    bottom: 0.8%;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9em;
    color: #888;
    z-index: 11;
    transition: color 0.3s ease;
}
.footer-note:hover {
    color: #fff;
}