/* bakalim.css - Bil Bakalım Oyunu Stilleri */

.bakalim-game {
    --gap: 10px;
    --radius: 10px;
}
.bakalim-game * {
    box-sizing: border-box;
}
.bakalim-game .wrap {
    margin-bottom: 10px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #222;
}
.bakalim-game .area {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 10px;
}

/* Başlangıç Ekranı */
.bakalim-game .game-begin-content {
    text-align: center;
    padding: 60px 20px;
}

/* Anlam Container */
.bakalim-game .meaning-container {
    padding: 30px 20px;
    text-align: center;
}
.bakalim-game .meaning-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.bakalim-game .meaning-text {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 25px 0;
    text-align: center;
    min-height: 60px;
    line-height: 1.6;
}

/* Answer Options - 2 büyük buton */
.bakalim-game .answer-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0px 0 0px 0px;
    align-content: end;
}

@media (max-width: 600px) {
    .bakalim-game .answer-options {
        grid-template-columns: 1fr;
    }
}

.bakalim-game .answer-btn {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    text-align: left;
}
.bakalim-game .answer-btn:hover:not(:disabled) {
    border-color: #667eea;
    background: #f5f3ff;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}
.bakalim-game .answer-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}
.bakalim-game .answer-btn.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    transform: scale(1.02);
}

/* Loading Overlay */
.bakalim-game .loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 14px;
}
.bakalim-game .loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f4f6;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: bakalim-spin 1s linear infinite;
}
@keyframes bakalim-spin {
    to { transform: rotate(360deg); }
}
.bakalim-game .loading-text {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #667eea;
}


/* Responsive */
@media (max-width: 400px) {
    .bakalim-game .game-begin-content {
        padding: 30px 15px;
    }
    .bakalim-game .meaning-text {
        font-size: 18px;
        padding: 20px;
    }
    .bakalim-game .answer-btn {
        padding: 25px 20px;
        font-size: 18px;
    }
}

/* Sidebar - Zorluk Seçimi */
.bakalim-game .difficulty-selection {
    padding: 15px;
    text-align: center;
}
.bakalim-game .difficulty-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333;
}
.bakalim-game .difficulty-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
}
.bakalim-game .difficulty-card {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
}
.bakalim-game .difficulty-card:hover {
    border-color: #007bff;
    background: #e3f2fd;
    transform: translateY(-1px);
}
.bakalim-game .difficulty-card.selected {
    border-color: #28a745;
    background: #d4edda;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}
.bakalim-game .difficulty-icon {
    font-size: 24px;
    flex-shrink: 0;
}
.bakalim-game .difficulty-content {
    flex: 1;
}
.bakalim-game .difficulty-name {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 4px;
    color: #333;
}
.bakalim-game .difficulty-description {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}

@media (max-width: 600px) {
    .bakalim-game .difficulty-card {
        padding: 10px 12px;
        gap: 8px;
    }
}

