body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    overflow-x: hidden;
    padding-bottom: 100px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 20px;
}

.alcatraz-title-text {
    font-size: clamp(3rem, 12vw, 7rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 auto 1rem auto;
    padding: 0.1em 0.2em;
}

.slogan {
    font-size: clamp(1rem, 4vw, 1.75rem);
    font-weight: 500;
    margin-top: 0rem;
    margin-bottom: 2rem;
}

.shiny-silver-text {
    color: #888888;
    background: linear-gradient(
        120deg,
        #888888 30%,
        rgba(255, 255, 255, 0.95) 45%,
        rgba(255, 255, 255, 0.95) 55%,
        #888888 70%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-animation 5s linear infinite;
    display: inline-block;
    position: relative;
}


@keyframes shine-animation {
    0% { background-position: 150% 50%; }
    100% { background-position: -150% 50%; }
}