/* game-styles.css - Eu Niciodata */
:root {
    --primary: #f43f5e;     /* Rose-500 */
    --primary-light: #fb7185;
    --primary-dark: #be123c;
    --accent: #f59e0b;      /* Amber-500 */
    
    --bg-color: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.7);
    --text-color: #f8fafc;
}

body.game-theme-eu-niciodata {
    background: radial-gradient(circle at 50% 50%, #1e1b4b 0%, #0f172a 100%);
}

.bg-effects .blob-1 {
    background: radial-gradient(circle, rgba(244, 63, 94, 0.2) 0%, transparent 70%);
    width: 600px; height: 600px;
    top: -100px; left: -100px;
}

.bg-effects .blob-2 {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    width: 500px; height: 500px;
    bottom: -100px; right: -100px;
}

.eu-layout-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    width: 100%;
    padding: 1.5rem 1rem 120px 1rem; /* Spațiu extra jos pentru butoane mobile */
}

.question-container {
    width: 100%;
    max-width: 600px;
    padding: 2rem 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.round-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4);
}

.question-text {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.4;
    color: var(--text-color);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 600px;
    flex-direction: column;
}

@media (min-width: 768px) {
    .action-buttons {
        flex-direction: row;
    }
}

.btn-never {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    padding: 1.1rem;
    border-radius: 12px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.btn-never:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-didit {
    flex: 1;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    font-size: 1.1rem;
    padding: 1.1rem;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(244, 63, 94, 0.3);
    transition: all 0.3s ease;
}

.btn-didit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(244, 63, 94, 0.5);
}

/* Results */
.results-container {
    width: 100%;
    max-width: 800px;
    
    text-align: center;
}

.results-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
    color: var(--primary-light);
}

.question-text-small {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.results-columns {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

@media (min-width: 768px) {
    .results-columns {
        flex-direction: row;
    }
}

.result-column {
    flex: 1;
    background: rgba(0,0,0,0.2);
    border-radius: 15px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.col-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.result-column.did-it .col-title {
    color: var(--primary-light);
}

.result-column.never .col-title {
    color: #94a3b8;
}

.player-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.player-pill {
    background: rgba(255,255,255,0.05);
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
}

.result-column.did-it .player-pill {
    background: rgba(244, 63, 94, 0.15);
    border: 1px solid rgba(244, 63, 94, 0.3);
}

.empty-list {
    opacity: 0.5;
    font-style: italic;
    padding: 1rem;
}

.story-prompt {
    margin-top: 0.75rem;
    color: var(--accent);
    font-weight: 800;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

.big-btn {
    width: 100%;
    max-width: 400px;
    padding: 1.2rem;
    font-size: 1.3rem;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(244, 63, 94, 0.3);
}

.big-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(244, 63, 94, 0.5);
}

.player-score-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    margin-bottom: 0.5rem;
    border-radius: 8px;
    font-size: 1.2rem;
}

.waiting-state {
    text-align: center;
    opacity: 0.8;
    margin-top: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.results-footer {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0 0.5rem 0;
}

.results-footer.waiting-state {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}
/* Compresie extra pt elemente glass-card din acest joc */
.game-theme-eu-niciodata .glass-card {
    padding: 1rem !important;
}

@media (max-width: 600px) {
    .eu-layout-wrapper {
        padding: 1rem 0.75rem 100px 0.75rem;
    }
    .question-container {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    .question-text {
        font-size: 1.5rem;
    }
    .btn-never, .btn-didit {
        padding: 1rem;
        font-size: 1rem;
    }
}
