/* Question Detail Page Styles */

.question-detail {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    width: 100%;
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.question-title-main {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.3;
}

.question-rating-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

/* Yıldız Puanlama Sistemi */
.question-rating-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.rating-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.star-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 2rem;
    color: #ddd;
    transition: all 0.2s ease;
    line-height: 1;
    position: relative;
}

.star-btn:hover {
    transform: scale(1.2);
    color: #ffc107;
}

.star-btn.active .star-icon {
    color: #ffc107;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.star-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.star-icon {
    display: block;
    transition: all 0.2s ease;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.rating-average {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.rating-count {
    color: var(--text-light);
    font-size: 0.875rem;
}

.rating-text {
    color: var(--text-light);
    font-style: italic;
}

.user-rating-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: auto;
}

.question-cover-main {
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: var(--bg-light);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.question-cover-main img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

.question-content-main {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    white-space: pre-wrap;
}

/* Modern Author Card */
.question-author-main {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.question-author-main:hover {
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.2);
}

.author-link {
    flex-shrink: 0;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.author-link::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.author-link:hover::after {
    opacity: 0.1;
}

.author-link:hover {
    transform: scale(1.08);
}

.author-avatar-large {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: var(--transition);
    background: var(--bg-light);
}

.author-link:hover .author-avatar-large {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.25);
    border-color: var(--primary-color);
}

.author-info {
    flex: 1;
    min-width: 0;
}

.author-name-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.author-name-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: var(--transition);
    display: inline-block;
}

.author-name-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.author-rank-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.author-rank-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.rank-icon-small {
    font-size: 1rem;
    line-height: 1;
}

.author-stats-inline {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.author-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
}

.author-stat-item:hover {
    background: var(--gradient-soft);
    transform: translateX(2px);
}

.author-stat-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    opacity: 0.8;
    transition: var(--transition);
}

.author-stat-item:hover svg {
    opacity: 1;
    transform: scale(1.1);
}

.author-meta {
    color: var(--text-light);
    font-size: 0.8125rem;
    display: block;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Answer Form */
.answer-form-section {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.answer-form {
    margin-top: 1rem;
}

.answer-form .form-group {
    margin-bottom: 1rem;
}

.answer-form .form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.answer-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.captcha-image {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.75rem;
    color: #1f2937;
    text-align: center;
    min-width: 200px;
    max-width: 100%;
    flex: 0 0 auto;
    border: 2px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    user-select: none;
    box-sizing: border-box;
}

.captcha-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.captcha-container input[type="text"] {
    flex: 1 1 200px;
    min-width: 150px;
    max-width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.25rem;
    text-align: center;
    text-transform: uppercase;
    transition: var(--transition);
    background: white;
    font-family: 'Courier New', monospace;
    box-sizing: border-box;
}

.captcha-container input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: #fafafa;
}

.captcha-container input[type="text"]::placeholder {
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
    color: var(--text-light);
}

.btn-refresh-captcha {
    padding: 1rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    box-sizing: border-box;
}

.btn-refresh-captcha:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    transform: rotate(180deg);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.15);
}

.btn-refresh-captcha:active {
    transform: rotate(180deg) scale(0.95);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Professional CAPTCHA Styles */
.captcha-wrapper {
    margin: 1.5rem 0;
}

.captcha-label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.answer-form-section h2 {
    margin-bottom: 1.5rem;
}

.answer-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 150px;
    margin-bottom: 1rem;
}

.answer-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Answers Section */
.answers-section {
    margin-top: 3rem;
}

.answers-section h2 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.answer-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.answer-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.answer-card.best-answer {
    border-left-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.best-answer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.checkmark {
    font-size: 1.2rem;
}

.answer-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1rem;
    white-space: pre-wrap;
}

.answer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

/* Modern Answer Author Card */
.answer-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-wrap: wrap;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(102, 126, 234, 0.08);
    margin-top: 1rem;
}

.answer-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.answer-author-name-section {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.answer-author-name {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: var(--transition);
    display: inline-block;
}

.answer-author-name:hover {
    color: var(--secondary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.answer-rank-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    border-radius: 16px;
    color: white;
    font-size: 0.6875rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.answer-rank-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}

.rank-icon-tiny {
    font-size: 0.75rem;
    line-height: 1;
}

.answer-author-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(102, 126, 234, 0.08);
}

.answer-author-stat {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--text-color);
    font-size: 0.8125rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
}

.answer-author-stat:hover {
    background: var(--gradient-soft);
    transform: translateX(2px);
}

.answer-author-stat svg {
    width: 14px;
    height: 14px;
    color: var(--primary-color);
    opacity: 0.8;
    transition: var(--transition);
}

.answer-author-stat:hover svg {
    opacity: 1;
    transform: scale(1.1);
}

.answer-date {
    color: var(--text-light);
    font-size: 0.8125rem;
    margin-left: auto;
    font-weight: 500;
}

.answer-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.like-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
}

.like-btn:hover:not(:disabled) {
    background: var(--border-color);
}

.like-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.like-btn.liked {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.like-icon {
    font-size: 1.2rem;
}

.like-count {
    font-weight: 600;
}

/* Modern Reaksiyon ve Puanlama Sistemi */
.question-interactions {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Yıldız Puanlama Bölümü */
.rating-section-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.rating-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rating-icon {
    font-size: 1.25rem;
}

.rating-stars-modern {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.star-btn-modern {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 2rem;
    color: #e0e0e0;
    transition: all 0.2s ease;
    line-height: 1;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    z-index: 1;
    -webkit-tap-highlight-color: transparent;
}

.star-btn-modern:hover {
    transform: scale(1.15) rotate(5deg);
    color: #ffc107;
}

.star-btn-modern.active .star-icon-modern {
    color: #ffc107;
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
    animation: starPulse 0.3s ease;
}

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

.star-icon-modern {
    display: block;
    transition: all 0.2s ease;
}

.rating-stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.rating-average-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.rating-count-modern {
    color: var(--text-light);
}

.rating-text-modern {
    color: var(--text-light);
    font-style: italic;
}

.user-rating-indicator {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: auto;
}

/* Emoji Reaksiyonları Bölümü */
.reactions-section-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.reactions-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reactions-icon {
    font-size: 1.25rem;
}

.reactions-list-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.reaction-btn-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    min-width: 70px;
    z-index: 1;
}

.reaction-btn-modern > * {
    position: relative;
    z-index: 2;
}

.reaction-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
    pointer-events: none;
    z-index: 0;
}

.reaction-btn-modern:hover::before {
    left: 100%;
}

.reaction-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.reaction-btn-modern:active {
    transform: translateY(-1px);
}

.reaction-btn-modern.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.reaction-btn-modern.active .emoji-modern {
    animation: emojiBounce 0.5s ease;
}

@keyframes emojiBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-10deg); }
    75% { transform: scale(1.2) rotate(10deg); }
}

.emoji-modern {
    font-size: 1.75rem;
    line-height: 1;
    transition: transform 0.3s ease;
    display: block;
}

.reaction-btn-modern:hover .emoji-modern {
    transform: scale(1.2);
}

.count-modern {
    font-weight: 600;
    font-size: 0.75rem;
    min-width: 20px;
    text-align: center;
}

/* Question Emoji Reactions (Eski - Geriye dönük uyumluluk için) */
.question-reactions {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.reactions-list {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.reaction-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.reaction-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.reaction-btn:active:not(:disabled) {
    transform: translateY(0);
}

.reaction-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.reaction-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.reaction-btn .emoji {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.reaction-btn:hover:not(:disabled) .emoji {
    transform: scale(1.2);
}

.reaction-btn.active .emoji {
    animation: bounce 0.5s ease;
}

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

.reaction-btn .count {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

/* Answer Like/Dislike Buttons */
.dislike-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
}

.dislike-btn:hover:not(:disabled) {
    background: #fee;
    border-color: #fcc;
}

.dislike-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dislike-btn.active {
    background: #fee;
    color: #c33;
    border-color: #f99;
}

.reaction-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.reaction-count {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .question-detail {
        padding: 1rem;
    }
    
    .question-title-main {
        font-size: 1.5rem;
    }
    
    .answer-card {
        padding: 1rem;
    }
    
    .answer-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .captcha-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .captcha-image {
        width: 100%;
        min-width: 100%;
        font-size: 1.5rem;
        letter-spacing: 0.5rem;
        padding: 1rem 1.5rem;
    }
    
    .captcha-container input[type="text"] {
        width: 100%;
        min-width: 100%;
        flex: 1 1 100%;
    }
    
    .btn-refresh-captcha {
        width: 100%;
        flex: 1 1 100%;
    }
    
    .question-reactions {
        padding: 1rem;
    }
    
    .reactions-list {
        gap: 0.5rem;
    }
    
    .reaction-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .reaction-btn .emoji {
        font-size: 1.25rem;
    }
    
    .answer-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .reaction-btn.dislike-btn,
    .reaction-btn.like-btn {
        width: 100%;
        justify-content: center;
    }
    
    .question-rating-section {
        padding: 1rem;
    }
    
    .rating-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .rating-stars {
        gap: 0.25rem;
    }
    
    .star-btn {
        font-size: 1.5rem;
        padding: 0.25rem;
    }
    
    .rating-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .user-rating-badge {
        margin-left: 0;
    }
    
    /* Modern Reaksiyon ve Puanlama Sistemi - Mobil */
    .question-interactions {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .rating-section-modern,
    .reactions-section-modern {
        padding: 1.25rem;
        width: 100%;
    }
    
    .rating-label,
    .reactions-label {
        font-size: 0.75rem;
        gap: 0.375rem;
    }
    
    .rating-icon,
    .reactions-icon {
        font-size: 1rem;
    }
    
    .rating-stars-modern {
        gap: 0.375rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .star-btn-modern {
        font-size: 1.75rem;
        padding: 0.375rem;
    }
    
    .rating-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }
    
    .rating-average-modern {
        font-size: 1.25rem;
    }
    
    .rating-count-modern,
    .rating-text-modern {
        font-size: 0.8125rem;
    }
    
    .user-rating-indicator {
        margin-left: 0;
        font-size: 0.6875rem;
        padding: 0.25rem 0.625rem;
    }
    
    .reactions-list-modern {
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .reaction-btn-modern {
        min-width: 65px;
        padding: 0.625rem 0.875rem;
        flex: 0 0 auto;
    }
    
    .emoji-modern {
        font-size: 1.5rem;
    }
    
    .count-modern {
        font-size: 0.6875rem;
    }
}

