@charset "utf-8";

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
    "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
    color: #111;
    background: #fff;
}

body {
    display: flex;
    justify-content: center;
}

.page {
    width: 100%;
    max-width: 704px;
    min-height: 667px;
    background: #fff;
}

.hero {
    width: 100%;
    padding: 76px 77px 78px;
}

.hero__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}

.hero__brand {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.oasis-logo-img {
    flex: 0 0 150px;
    width: 150px;
    max-width: 150px;
    height: auto;
    display: block;
}

.oasis-logo {
    position: relative;
    flex: 0 0 150px;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oasis-logo::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 19px;
    width: 58px;
    height: 48px;
    border: 2px solid #6178d8;
    border-radius: 16px 14px 18px 15px;
    transform: rotate(-12deg);
    background: linear-gradient(145deg, #ffffff 0%, #eef5ff 100%);
}

.oasis-logo::after {
    content: "";
    position: absolute;
    right: 7px;
    top: 8px;
    width: 22px;
    height: 50px;
    border: 2px solid #4b70c9;
    border-radius: 5px 5px 8px 8px;
    transform: rotate(8deg);
    background: linear-gradient(180deg, #d9ecff 0%, #85c3ef 100%);
}

.oasis-logo__ice {
    position: relative;
    z-index: 2;
    margin-top: 8px;
    margin-left: -18px;
    color: #4d6fe3;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
}

.oasis-logo__water {
    position: absolute;
    left: 19px;
    bottom: 11px;
    width: 68px;
    height: 17px;
    border-radius: 999px;
    background: #18a9e8;
    opacity: .95;
}

.oasis-logo p {
    position: absolute;
    left: 4px;
    bottom: -6px;
    width: 92px;
    margin: 0;
    color: #3865c8;
    font-size: 6.5px;
    font-weight: 800;
    letter-spacing: -.04em;
    text-align: center;
}

.hero__title-wrap {
    padding-top: 10px;
    white-space: nowrap;
}

.hero__eyebrow {
    margin: 0 0 7px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -.045em;
}

h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.045em;
}

.center-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin: 1px 0 0 auto;
    color: #111;
    text-decoration: none;
    white-space: nowrap;
}

.center-logo__symbol {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.24em;
}

.center-logo__symbol img {
    display: block;
    max-width: 160px;
    height: auto;
}

.center-logo__symbol span:nth-child(1) { color: #168fa5; }
.center-logo__symbol span:nth-child(2) { color: #ec8631; }
.center-logo__symbol span:nth-child(3) { color: #e35435; }
.center-logo__symbol span:nth-child(4) { color: #75a883; }
.center-logo__symbol span:nth-child(5) { color: #4ca3a1; }

.center-logo strong {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.hero__message {
    margin: 41px 0 26px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: -.045em;
    word-break: keep-all;
}

.map-card {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    background: #e8eef4;
    display: block;
    color: #0d0d0d;
    font-size: 16px;
    font-weight: 800;
}

.map-status {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    width: calc(100% - 40px);
    margin: 0;
    padding: 12px 14px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
    color: #111;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    text-align: center;
    transform: translate(-50%, -50%);
}

.map-status[hidden] {
    display: none;
}

.map-info-window {
    display: inline-block;
    width: max-content;
    min-width: 0;
    max-width: 300px;
    padding: 8px 10px;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
}

#ice-water-map > div:nth-child(2) > div > div > div > div:nth-child(2) {
    width: auto !important;
    min-width: 0;
    max-width: 300px;
}

.participate-link {
    display: inline-block;
    margin-top: 38px;
    color: #111;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -.04em;
    text-decoration: none;
}

.participate-link:hover,
.participate-link:focus-visible {
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 720px) {
    .page {
        max-width: none;
        min-height: 100vh;
    }

    .hero {
        padding: 42px 24px 54px;
    }

    .hero__top {
        flex-direction: column;
        gap: 18px;
    }

    .hero__brand {
        gap: 14px;
    }

    .hero__eyebrow {
        font-size: 20px;
    }

    h1 {
        font-size: 23px;
    }

    .hero__message {
        margin-top: 34px;
        font-size: 18px;
    }

    .map-card {
        height: 550px;
    }
}
