@font-face {
    font-family: "GothicWeb";
    src:
        url("./fonts/hy-gothic.woff2") format("woff2"),
        url("./fonts/hy-gothic.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --waa-text-dark: #333333;
    --font-main: "HYGothicWeb", "HY견고딕", "HYGothic", "Malgun Gothic", sans-serif;
    --font-scale-x: 0.9;
}

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

html,
body {
    font-family: var(--font-main) !important;
    font-weight: 400 !important;
    color: var(--waa-text-dark);
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
}

body * {
    font-family: inherit !important;
    font-weight: inherit !important;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.poster-body {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.poster-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.poster-title {
    display: inline-block;
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
    transform: scaleX(var(--font-scale-x));
    transform-origin: center center;
}

.poster-image-wrapper {
    margin: 30px 0;
}

.poster-image-link {
    display: block;
    cursor: pointer;
    transition: opacity 0.3s;
}

.poster-image-link:hover {
    opacity: 0.8;
}

.poster-image-placeholder img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(120%);
    border-radius: 50%;
}

.poster-text {
    display: inline-block;
    font-size: 1.1rem;
    margin-bottom: 40px;
    word-break: keep-all;
    transform: scaleX(var(--font-scale-x));
    transform-origin: center center;
}

@media (max-width: 480px) {
    .poster-title {
        font-size: 2rem;
    }

    .poster-text {
        font-size: 1rem;
    }
}