.hangisi-game { --gap: 10px; --radius: 10px; }
.hangisi-game * { box-sizing: border-box; }
.hangisi-game .wrap {
    margin-bottom: 10px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #222;
}

.hangisi-game .area {
    position: relative;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    padding: 16px;
    transition: background-color 0.3s ease;
}


/* Konu Başlığı */
.topic-header {
    text-align: center;
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.topic-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.topic-desc {
    font-size: 14px;
    margin-top: 8px;
    opacity: 0.9;
}

/* Seçenekler Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

/* Seçenek Kartı */
.option-card {
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    user-select: none;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    color: #1f2937;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-card:hover:not(.selected):not(.correct):not(.wrong):not(.disabled) {
    border-color: #667eea;
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.option-card.selected {
    border-color: #667eea;
    background: #eef2ff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.option-card.correct {
    border-color: #22c55e;
    background: #ecfdf5;
    color: #065f46;
    animation: correctPulse 0.5s ease;
    pointer-events: none;
}

.option-card.wrong {
    border-color: #ef4444;
    background: #fef2f2;
    color: #991b1b;
    animation: wrongShake 0.5s ease;
    pointer-events: none;
}

.option-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

@keyframes correctPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes wrongShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Responsive */
@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .option-card {
        padding: 14px 16px;
        font-size: 14px;
    }

    .topic-header {
        padding: 16px;
    }

    .topic-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .topic-title {
        font-size: 18px;
    }

    .option-card {
        padding: 12px 14px;
        font-size: 13px;
        min-height: 50px;
    }
}

/* === MOLA EKRANI === */
.hangisi-game .break-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.hangisi-game .break-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hangisi-game .break-title {
    font-size: 28px;
    font-weight: 700;
    color: #22c55e;
    margin: 0 0 10px 0;
}

.hangisi-game .break-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0 0 30px 0;
}

.hangisi-game .break-subtitle span {
    font-weight: 700;
    color: #3b82f6;
}

.hangisi-game .break-timer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.hangisi-game .break-timer-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6); }
}

.hangisi-game .break-timer-circle span {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.hangisi-game .break-timer-text {
    margin-top: 10px;
    font-size: 14px;
    color: #9ca3af;
}

.hangisi-game .break-skip-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.hangisi-game .break-skip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.hangisi-game .break-skip-btn:active {
    transform: translateY(0);
}

