* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, "Noto Sans KR", sans-serif;
    color: #111;
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #f0f0f0;
}

.header-inner {
    height: 92px;
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 160px 1fr 160px;
    align-items: center;
}

.header-logo img {
    width: 64px;
    display: block;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 36px;
    font-size: 13px;
    font-weight: 700;
}

.nav a:hover {
    color: #f59a23;
}

.language {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    font-size: 12px;
    color: #555;
}

.section-white {
    background: #fff;
}

.section-gray {
    background: #f5f4f1;
}

.hero {
    min-height: 780px;
    display: flex;
    align-items: center;
}

.hero-inner {
    text-align: center;
    padding: 80px 0 110px;
}

.hero-logo {
    width: min(520px, 80%);
    margin-bottom: 56px;
}

.hero h1 {
    font-size: 44px;
    line-height: 1.22;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
}

.hero p {
    font-size: 18px;
    line-height: 1.8;
    color: #6b6b6b;
}

section {
    padding: 105px 0;
}

.section-title {
    margin-bottom: 58px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 18px;
}

.section-title p {
    font-size: 15px;
    color: #555;
}

.game-card {
    width: 720px;
    max-width: 100%;
    display: grid;
    grid-template-columns: 230px 1fr;
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    overflow: hidden;
}

.game-image {
    background: #f4f3f0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 210px;
}

.game-image img {
    width: 130px;
    height: 130px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.game-info {
    padding: 38px 34px;
}

.game-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.game-title-row h3 {
    font-size: 26px;
    font-weight: 900;
}

.badge {
    padding: 5px 10px;
    border-radius: 999px;
    background: #ffe6c8;
    color: #9b5a12;
    font-size: 12px;
    font-weight: 700;
}

.game-subtitle {
    display: inline-block;
    font-size: 13px;
    color: #666;
    background: #f5f4f1;
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 18px;
}

.game-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
}

.store-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.store-btn {
    padding: 11px 17px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #111;
}

.store-btn.dark {
    background: #111;
    color: #fff;
}

.store-btn.light {
    background: #fff;
    color: #111;
}

.store-btn:hover {
    transform: translateY(-1px);
    opacity: 0.85;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
    min-height: 260px;
}

.company-message p {
    font-size: 18px;
    line-height: 1.85;
}

.core-values h3 {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 22px;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.value-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 7px;
    padding: 18px 20px;
}

.value-card span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffe6c8;
    color: #b76b16;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.value-card p {
    font-size: 15px;
    color: #333;
}

.contact-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: center;
}

.contact-circles {
    display: flex;
    align-items: center;
}

.contact-circles div {
    width: 104px;
    height: 104px;
    margin-right: -12px;
    border-radius: 50%;
    background: #edece8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.contact-info .label {
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
}

.contact-info .strong {
    font-size: 22px;
    font-weight: 800;
}

.phone-label {
    margin-top: 28px;
}

.privacy-section {
    padding-top: 40px;
}

.privacy-box {
    max-width: 900px;
    padding: 36px;
    background: #f8f8f8;
    border-radius: 8px;
    color: #333;
    line-height: 1.8;
}

.privacy-box p + p {
    margin-top: 14px;
}

.footer {
    background: #f5f4f1;
    padding: 54px 0;
    font-size: 13px;
    color: #333;
}

.footer-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.footer strong {
    display: block;
    margin-bottom: 12px;
}

.footer a {
    font-weight: 700;
    margin-right: 28px;
}

@media (max-width: 900px) {
    .container,
    .header-inner {
        width: min(100% - 36px, 1180px);
    }

    .header-inner {
        height: auto;
        padding: 18px 0;
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .header-logo img {
        margin: 0 auto;
    }

    .nav {
        gap: 14px;
        flex-wrap: wrap;
        font-size: 12px;
    }

    .language {
        justify-content: center;
    }

    .hero {
        min-height: auto;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 15px;
    }

    section {
        padding: 72px 0;
    }

    .section-title h2 {
        font-size: 38px;
    }

    .game-card,
    .company-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .company-grid,
    .contact-grid {
        gap: 40px;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        display: block;
    }

    .footer-inner > div + div {
        margin-top: 26px;
    }
}