
.shares-cc-game {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 1.5rem;
    border-radius: 22px;
    background: #f8f5ef;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    font-family: inherit;
}

.shares-cc-header h2 {
    margin: 0 0 .25rem;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.shares-cc-header p {
    margin: 0 0 1.25rem;
    font-size: 1.05rem;
}

.shares-cc-controls,
.shares-cc-debrief-controls {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    align-items: center;
    margin: 1rem 0;
}

.shares-cc-game button {
    border: 0;
    border-radius: 999px;
    padding: .8rem 1.1rem;
    cursor: pointer;
    font-weight: 700;
    background: #263238;
    color: #fff;
    transition: transform .12s ease, opacity .12s ease;
}

.shares-cc-game button:hover {
    transform: translateY(-1px);
    opacity: .92;
}

.shares-cc-draw {
    font-size: 1.05rem;
}

.shares-cc-timer {
    font-size: 1.5rem;
    font-weight: 800;
    padding: .5rem .8rem;
    border-radius: 14px;
    background: #fff;
    min-width: 5.5rem;
    text-align: center;
}

.shares-cc-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.shares-cc-card {
    min-height: 240px;
    padding: 1.25rem;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.09);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shares-cc-card-label {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 800;
    opacity: .65;
    margin-bottom: .8rem;
}

.shares-cc-card-text {
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    line-height: 1.2;
    font-weight: 750;
}

.shares-cc-card.is-drawn {
    animation: sharesCardPop .22s ease-out;
}

@keyframes sharesCardPop {
    from { transform: scale(.985); opacity: .72; }
    to { transform: scale(1); opacity: 1; }
}

.shares-cc-debrief {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border-radius: 18px;
}

.shares-cc-debrief h3 {
    margin-top: 0;
}

.shares-cc-debrief li {
    margin-bottom: .55rem;
}

.shares-cc-copy-status {
    font-weight: 700;
}

@media (max-width: 760px) {
    .shares-cc-cards {
        grid-template-columns: 1fr;
    }
    .shares-cc-card {
        min-height: 180px;
    }
}


/* v1.0.1: cleaner debrief numbering */
.shares-cc-debrief ol {
    max-width: 760px;
    margin: 0 auto;
    padding-left: 1.5rem;
    text-align: left;
}

.shares-cc-debrief li {
    padding-left: .35rem;
}
