.p4g-game-suggest {
    width: 100%;
    max-width: 1600px;
    margin: 2rem auto 0;
    padding: 0 clamp(1rem, 2.5vw, 1.75rem) 2rem;
    box-sizing: border-box;
}

.p4g-game-suggest__card {
    padding: 1.25rem clamp(1rem, 2vw, 1.5rem) 1.5rem;
    border-radius: 14px;
    border: 1px solid rgba(30, 115, 190, 0.14);
    background: #fff;
    box-shadow: 0 8px 28px rgba(8, 18, 32, 0.06);
}

.p4g-game-suggest__kicker {
    display: inline-block;
    margin-bottom: 0.35rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(252, 95, 32, 0.12);
    color: #fc5f20;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.p4g-game-suggest__title {
    margin: 0 0 0.45rem;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.2;
    color: var(--bg-blue, #1e73be);
}

.p4g-game-suggest__lead {
    margin: 0 0 1rem;
    max-width: 68ch;
    color: rgba(14, 32, 56, 0.78);
    line-height: 1.6;
}

.p4g-game-suggest__notice {
    margin: 0 0 1rem;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    line-height: 1.5;
}

.p4g-game-suggest__notice--ok {
    background: rgba(22, 163, 74, 0.1);
    color: #166534;
}

.p4g-game-suggest__notice--warn {
    background: rgba(245, 158, 11, 0.14);
    color: #92400e;
}

.p4g-game-suggest__notice--err {
    background: rgba(185, 28, 28, 0.1);
    color: #991b1b;
}

.p4g-game-suggest__login {
    margin: 0;
}

.p4g-game-suggest__login-btn,
.p4g-game-suggest__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.6rem;
    padding: 0.55rem 1.15rem;
    border: 0;
    border-radius: 999px;
    background: #fc5f20;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.p4g-game-suggest__login-btn:hover,
.p4g-game-suggest__submit:hover {
    filter: brightness(1.05);
    color: #fff;
}

.p4g-game-suggest__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
}

.p4g-game-suggest__field {
    margin: 0;
}

.p4g-game-suggest__field--full {
    grid-column: 1 / -1;
}

.p4g-game-suggest__field label,
.p4g-game-suggest__fieldset legend {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.86rem;
    font-weight: 700;
    color: #13263f;
}

.p4g-game-suggest__field label span {
    color: #fc5f20;
}

.p4g-game-suggest__field input[type="text"],
.p4g-game-suggest__field input[type="url"],
.p4g-game-suggest__field textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(20, 89, 130, 0.22);
    border-radius: 10px;
    background: #fff;
}

.p4g-game-suggest__check {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.4rem;
    font-weight: 500;
}

.p4g-game-suggest__fieldset {
    margin: 1rem 0 0;
    padding: 0;
    border: 0;
}

.p4g-game-suggest__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.p4g-game-suggest__chips--scroll {
    max-height: 9.5rem;
    overflow: auto;
    padding-right: 0.25rem;
}

.p4g-game-suggest__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    padding: 0.32rem 0.65rem;
    border: 1px solid rgba(20, 89, 130, 0.18);
    border-radius: 999px;
    background: #f7fafc;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
}

.p4g-game-suggest__chip:has(input:checked) {
    border-color: #fc5f20;
    background: rgba(252, 95, 32, 0.1);
}

.p4g-game-suggest__actions {
    margin: 1.15rem 0 0;
}

.p4g-game-suggest__hp {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

@media (max-width: 720px) {
    .p4g-game-suggest__grid {
        grid-template-columns: 1fr;
    }
}

body.theme-dark .p4g-game-suggest__card {
    background: color-mix(in srgb, var(--surface-card, #1b2430) 100%, transparent);
    border-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .p4g-game-suggest__lead,
body.theme-dark .p4g-game-suggest__field label,
body.theme-dark .p4g-game-suggest__fieldset legend {
    color: inherit;
}

body.theme-dark .p4g-game-suggest__field input,
body.theme-dark .p4g-game-suggest__field textarea,
body.theme-dark .p4g-game-suggest__chip {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: inherit;
}
