.play-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 8%;
    gap: 48px;
    background-color: white !important;
}

.title {
    font-size: 48px;
    font-weight: 900;
    color: var(--lightBlue);
    text-align: center;
    text-transform: uppercase;
}

.play-container {
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
    max-width: 800px;
}

.option-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
}

.phase {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phase:nth-child(1) {
    background-color: var(--pureWhite);
}

.title-phase {
    font-size: 24px;
    margin-bottom: 8px;
}

.select-first-phase {
    width: 100%;
    padding: 8px;
    font-size: 20px;
    outline: none;
    border: none;
    background-color: #e5f1f3;
    border-radius: 6px;
    cursor: pointer;
}

.input-radio {
    display: none;
}

.phase-option {
    position: relative;
    padding: 32px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    border: 2px solid var(--lightGray);
    border-radius: 32px;
    cursor: pointer;
    width: 100%;
    background-color: var(--pureWhite);
}

.phase-option:hover {
    background-color: var(--lightGray);
}

.option-name {
    font-size: 18px;
    text-decoration: none;
    color: black;
}

.input-radio:checked + .phase-option {
    background-color: var(--aqua);
    border: 0;
}

.button {
    font-size: 20px;
    background-color: var(--lightBlue);
    border-radius: 8px;
    width: 100%;
    padding: 24px 0;
    border: none;
    outline: none;
    cursor: pointer;
}

.person {
    display: none;
    width: 50%;
    max-width: 700px;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    z-index: -1;
}

.new-badge {
    position: absolute;
    top: 18px;
    right: -1px;
    background-color: red;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.character-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.character-chip {
    padding: 8px 16px;
    border: 2px solid var(--lightGray);
    border-radius: 20px;
    font-size: 16px;
    background-color: var(--pureWhite);
}

.login-character {
    color: #666;
    font-size: 15px;
}

.character-note {
    font-size: 16px;
    color: #555;
}

.character-note-ok {
    color: #1a7f37;
}

.character-note-error {
    color: #c62828;
}

.character-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.character-form-actions {
    display: flex;
    gap: 12px;
}

.character-add-button,
.character-form-actions .button {
    padding: 16px 0;
}

.character-add-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.character-button-ghost {
    background-color: var(--lightGray);
}

@media screen and (min-width: 1280px) {
    .play-section {
        padding: 48px 8%;
    }

    .option-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .play-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        position: relative;
    }

    .person {
        display: block;
    }

    .phase:nth-child(1) {
        border: 2px solid var(--lightGray);
        border-radius: 32px;
        padding: 24px;
    }
}
