/* Modal styling */
.modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.practice-mode-options {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0.75rem;
    max-width: 900px;
    margin: 0 auto;
}

.practice-mode-option {
    position: relative;
    display: flex;
    padding: 2rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    overflow: hidden;
}

.practice-mode-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.practice-mode-option.recommended {
    border-color: #28a745;
    background: linear-gradient(to right bottom, #ffffff, #f8fff9);
}

.practice-mode-recommended-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #28a745;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

.practice-mode-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    margin-right: 1.25rem;
    transition: all 0.3s ease;
}

.practice-mode-option:hover .practice-mode-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.practice-mode-icon i {
    font-size: 1.75rem;
    color: #0d6efd;
    transition: all 0.3s ease;
}

.practice-mode-option:hover .practice-mode-icon i {
    transform: scale(1.1);
}

.practice-mode-content {
    flex: 1;
}

.practice-mode-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.practice-mode-header h6 {
    margin: 0;
    color: #212529;
    font-weight: 700;
    font-size: 1.1rem;
}

.practice-mode-tag {
    display: inline-block;
    padding: 2px 8px;
    background: #e9ecef;
    color: #495057;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.practice-mode-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #6c757d;
}

.practice-mode-content p a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.practice-mode-content p a:hover {
    text-decoration: underline;
}

.practice-mode-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.feature-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .practice-mode-option {
        flex-direction: column;
        padding: 1.25rem;
    }

    .practice-mode-icon {
        margin: 0 auto 1rem;
    }

    .practice-mode-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .practice-mode-content p {
        text-align: center;
    }

    .feature-item {
        justify-content: center;
    }

    .practice-mode-recommended-badge {
        top: 8px;
        right: 8px;
        padding: 3px 8px;
        font-size: 0.7rem;
    }
}
