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

html, body {
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
    background-color: #0f0f12;
    color: #ffffff;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 32px;
}

.title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    text-align: center;
}

.image-wrapper {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding: 0 16px 24px;
}

.image-wrapper img {
    max-height: calc(100vh - 120px);
    max-width: 100%;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
