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

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #0b0b0b;
    color: #fff;
}

.cd-container {
    width: min(580px, 80vw);
    height: min(580px, 80vw);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cd-container img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 50%;
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
}

.cd-container img:active {
    cursor: grabbing;
}

footer {
    position: absolute;
    bottom: 1.5rem;
    text-align: center;
    padding: 0 1rem;
    width: 100%;
}

footer h1 {
    font-family: 'Special Gothic Condensed One', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

footer p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.6rem, 2vw, 0.75rem);
    color: #666;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .cd-container {
        width: 90vw;
        height: 90vw;
        max-width: 70vh;
        max-height: 70vh;
    }

    footer {
        bottom: 1.5rem;
    }

    footer p {
        padding: 0 2rem;
    }
}

@media (max-height: 700px) {
    .cd-container {
        width: min(580px, 55vh);
        height: min(580px, 55vh);
    }

    footer {
        bottom: 2rem;
    }
}
