#nba-accolades-game.nba-accolades-game {
    max-width: 520px;
    margin: 40px auto;
    padding: 24px 20px 16px;
    border-radius: 18px;
    background: radial-gradient(circle at top left, #2dd4bf 0, #111827 45%, #020617 100%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    color: #f9fafb;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    position: relative;
    overflow: hidden;
}

.nba-accolades-header {
    text-align: center;
    margin-bottom: 16px;
}

.nba-accolades-title {
    margin: 0;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fefce8;
}

.nba-accolades-subtitle {
    margin: 8px auto 0;
    max-width: 360px;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.nba-accolades-body {
    margin-top: 10px;
}

/* Status pills */
.nba-accolades-status {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.nba-accolades-pill {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 999px;
    padding: 6px 14px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
}

.nba-accolades-pill .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
}

.nba-accolades-pill .value {
    font-size: 1rem;
    font-weight: 700;
    color: #f9fafb;
}

/* Screens */
.nba-acc-screen.hidden {
    display: none;
}

.nba-acc-screen {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 16px;
    padding: 18px 16px 20px;
    border: 1px solid rgba(148, 163, 184, 0.45);
}

/* Start screen */
.nba-acc-instructions {
    font-size: 0.95rem;
    color: #e5e7eb;
    text-align: center;
    margin-bottom: 18px;
}

/* Question screen */
.nba-acc-question-meta {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.nba-acc-question-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #a5b4fc;
}

.nba-acc-question-box {
    background: radial-gradient(circle at top, #0f172a 0, #020617 70%);
    border-radius: 14px;
    padding: 14px 12px 16px;
    border: 1px solid rgba(75, 85, 99, 0.8);
}

.nba-acc-question-text {
    font-size: 1rem;
    margin: 0 0 12px;
    color: #fefce8;
}

.nba-acc-answer-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 8px;
}

.nba-acc-answer-input {
    flex: 1 1 180px;
    min-width: 0;
    border-radius: 999px;
    border: 1px solid rgba(156, 163, 175, 0.9);
    padding: 8px 12px;
    font-size: 0.95rem;
    background: #020617;
    color: #f9fafb;
}

.nba-acc-answer-input::placeholder {
    color: #6b7280;
}

.nba-acc-answer-input:focus {
    outline: 2px solid #22c55e;
    outline-offset: 1px;
    border-color: #22c55e;
}

.nba-acc-feedback {
    font-size: 0.9rem;
    min-height: 1.2em;
    margin: 4px 0 0;
    color: #e5e7eb;
}

/* Result screen */
.nba-acc-result-heading {
    margin: 0 0 6px;
    text-align: center;
    font-size: 1.4rem;
}

.nba-acc-result-summary {
    margin: 0 0 14px;
    text-align: center;
    font-size: 0.95rem;
    color: #e5e7eb;
}

.nba-acc-share-box {
    border-radius: 12px;
    border: 1px dashed rgba(148, 163, 184, 0.7);
    padding: 10px 10px 12px;
    background: rgba(15, 23, 42, 0.9);
    margin-bottom: 12px;
}

.nba-acc-share-title {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.nba-acc-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

/* Buttons */
.nba-acc-btn {
    border-radius: 999px;
    border: none;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.08s ease;
    white-space: nowrap;
}

.nba-acc-btn.primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #022c22;
    box-shadow: 0 8px 16px rgba(22, 163, 74, 0.5);
}

.nba-acc-btn.secondary {
    background: #0f172a;
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.9);
}

.nba-acc-btn.tertiary {
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.7);
    font-size: 0.85rem;
}

.nba-acc-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.nba-acc-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Footer */
.nba-accolades-footer {
    margin-top: 14px;
    border-top: 1px solid rgba(55, 65, 81, 0.8);
    padding-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #9ca3af;
}

.nba-accolades-footer-title {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.nba-accolades-footer-meta {
    font-style: italic;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    #nba-accolades-game.nba-accolades-game {
        margin: 24px 12px;
        padding: 18px 14px 12px;
    }

    .nba-accolades-title {
        font-size: 1.5rem;
    }

    .nba-accolades-subtitle {
        font-size: 0.85rem;
    }

    .nba-acc-question-text {
        font-size: 0.95rem;
    }
}
/* Center the Play and Play Again buttons */
#nba-acc-start-screen,
#nba-acc-result-screen {
    text-align: center;
}

/* Also center the buttons specifically inside these screens */
#nba-acc-start-screen .nba-acc-btn,
#nba-acc-result-screen .nba-acc-btn {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}
