/* =====================================================
   SINGLE-OYUNCU.CSS - OYUNCU SAYFALARININ BAĞIMSIZ CSS
   =====================================================
   
   ⚠️ UYARI: BU DOSYA YALNIZCA OYUNCU SAYFALARI İÇİNDİR
   - Sadece single-oyuncu.php tarafından kullanılır
   - Tüm class'lar .single-oyuncu-* prefix'i ile başlar
   - Hiçbir ortak CSS kullanmaz - tamamen bağımsızdır
   
   ===================================================== */

/* Main Layout */
.single-oyuncu-page-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 25px;
    margin-top: var(--header-content-gap);
    margin-bottom: 60px;
    max-width: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Main Content */
.single-oyuncu-main-content {
    background: #ffffff;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.single-oyuncu-article {
    background: transparent;
}

/* Breadcrumb - Gizle */
.single-oyuncu-breadcrumb {
    display: none !important;
}

/* Header */
.single-oyuncu-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 10px 18px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.single-oyuncu-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
}

/* Two Column Layout */
.single-oyuncu-two-column-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.single-oyuncu-image-column {
    flex-shrink: 0;
}

.single-oyuncu-poster {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.single-oyuncu-poster img {
    width: 100%;
    height: auto;
    display: block;
}

/* Info Table */
.single-oyuncu-info-column {
    flex: 1;
}

.single-oyuncu-info-table {
    background: white;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

.single-oyuncu-info-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.single-oyuncu-info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.info-value {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
}

/* Biography */
.single-oyuncu-content-section {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    margin-bottom: 20px;
}

.single-oyuncu-biography {
    font-size: 16px;
    line-height: 1.8;
    color: #2c3e50;
}

.single-oyuncu-biography p {
    margin-bottom: 15px;
}

.single-oyuncu-biography h2,
.single-oyuncu-biography h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

/* Tags */
.single-oyuncu-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: #ffffff !important;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.single-oyuncu-tags .tags-label {
    font-weight: 600;
    color: #666;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-right: 4px;
}

.single-oyuncu-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.single-oyuncu-tag:hover {
    background: var(--theme-primary-color, #ff9307);
    color: white;
}

/* Interaction */
.single-oyuncu-interaction {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.interaction-stats {
    display: flex;
    gap: 12px;
}

.interaction-buttons {
    display: flex;
    gap: 8px;
}

.interaction-share {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.share-label {
    font-size: 11px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 0;
    width: 100%;
    margin-bottom: 8px;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-facebook {
    background: #1877f2;
    color: white;
}

.share-facebook:hover {
    background: #0d65d9;
}

.share-twitter {
    background: #000000;
    color: white;
}

.share-twitter:hover {
    background: #1a1a1a;
}

.share-whatsapp {
    background: #25d366;
    color: white;
}

.share-whatsapp:hover {
    background: #1ebe57;
}

.share-telegram {
    background: #0088cc;
    color: white;
}

.share-telegram:hover {
    background: #006699;
}

.share-linkedin {
    background: #0077b5;
    color: white;
}

.share-linkedin:hover {
    background: #006399;
}

.share-reddit {
    background: #ff4500;
    color: white;
}

.share-reddit:hover {
    background: #e03d00;
}

.share-pinterest {
    background: #e60023;
    color: white;
}

.share-pinterest:hover {
    background: #bd001c;
}

.share-copy {
    background: #6c757d;
    color: white;
}

.share-copy:hover {
    background: #5a6268;
}

/* Benzer Oyuncular */
.single-oyuncu-related {
    margin: 10px 0;
    padding: 20px;
    background: #ffffff !important;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.single-oyuncu-related .section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.single-oyuncu-related .section-title::after {
    content: '';
    flex: 1;
    height: 3px;
    background: var(--theme-primary-color, #ff9307);
    border-radius: 2px;
}

.related-oyuncu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-oyuncu-card {
    background: #f8f9fa;
    border-radius: 6px;
    overflow: hidden;
    transition: opacity 0.2s ease;
    border: 1px solid #e8e8e8;
}

.related-oyuncu-card:hover {
    opacity: 0.8;
}

.related-oyuncu-link {
    text-decoration: none;
    display: block;
}

.related-oyuncu-image {
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 10px;
}

.related-oyuncu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.related-oyuncu-title {
    padding: 0 10px 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Author Card */
.single-oyuncu-author-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    margin-bottom: 20px;
}

.author-card-avatar {
    flex-shrink: 0;
}

.author-card-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
}

.author-card-info {
    flex: 1;
}

.author-card-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.author-card-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.author-card-link {
    color: var(--theme-primary-color, #ff9307);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

/* Sidebar */
.single-oyuncu-sidebar {
    align-self: start;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 350px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .single-oyuncu-page-layout {
        grid-template-columns: 1fr 300px;
        gap: 20px;
    }
    
    .single-oyuncu-sidebar {
        max-width: 300px;
    }
    
    .single-oyuncu-two-column-layout {
        grid-template-columns: 250px 1fr;
        gap: 20px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .single-oyuncu-page-layout {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0;
    }
    
    .single-oyuncu-main-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .single-oyuncu-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0;
        padding: 0;
    }
    
    .single-oyuncu-two-column-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .single-oyuncu-poster {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .single-oyuncu-header {
        padding: 12px 16px;
        margin-bottom: 16px;
    }
    
    .single-oyuncu-title {
        font-size: 22px;
    }
    
    .single-oyuncu-info-row {
        grid-template-columns: 120px 1fr;
        gap: 10px;
        padding: 12px 15px;
    }
    
    .info-label,
    .info-value {
        font-size: 13px;
    }
    
    .single-oyuncu-content-section {
        padding: 20px 16px;
    }
    
    .single-oyuncu-biography {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .single-oyuncu-interaction {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 12px 16px;
    }
    
    .interaction-stats,
    .interaction-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
    }
    
    .interaction-share {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
        flex: 1 1 100%;
        margin-top: 8px;
    }
    
    .share-label {
        width: 100%;
        margin-bottom: 6px;
    }
    
    .single-oyuncu-author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px;
    }
    
    .author-card-avatar {
        margin: 0 auto;
    }
    
    .author-card-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .related-oyuncu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .related-oyuncu-title {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .single-oyuncu-title {
        font-size: 20px;
    }
    
    .single-oyuncu-header {
        padding: 10px 12px;
    }
    
    .single-oyuncu-info-row {
        grid-template-columns: 100px 1fr;
        padding: 10px 12px;
    }
    
    .info-label,
    .info-value {
        font-size: 12px;
    }
    
    .single-oyuncu-content-section {
        padding: 16px 12px;
    }
    
    .single-oyuncu-biography {
        font-size: 14px;
    }
    
    .single-oyuncu-interaction {
        padding: 10px 12px;
    }
    
    .interaction-stats,
    .interaction-buttons {
        gap: 6px;
    }
    
    .interaction-share {
        gap: 6px;
        margin-top: 6px;
    }
    
    .share-btn {
        width: 36px;
        height: 36px;
    }
    
    .share-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .related-oyuncu-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Comments Section */
.single-oyuncu-article #comments {
    margin: 0 0 20px 0;
    padding: 20px;
    background: #ffffff !important;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.single-oyuncu-article .comments-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.single-oyuncu-article .comments-title::after {
    content: '';
    flex: 1;
    height: 3px;
    background: var(--theme-primary-color, #ff9307);
    border-radius: 2px;
}

.single-oyuncu-article .comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.single-oyuncu-article .comment {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
}

.single-oyuncu-article .comment-body {
    display: flex;
    gap: 15px;
}

.single-oyuncu-article .comment-author {
    flex-shrink: 0;
}

.single-oyuncu-article .comment-author .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.single-oyuncu-article .comment-content {
    flex: 1;
}

.single-oyuncu-article .comment-metadata {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.single-oyuncu-article .comment-metadata a {
    color: #666;
    text-decoration: none;
}

.single-oyuncu-article .comment-metadata a:hover {
    color: var(--theme-primary-color, #ff9307);
}

.single-oyuncu-article .comment-text p {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.single-oyuncu-article .reply {
    margin-top: 8px;
}

.single-oyuncu-article .comment-reply-link {
    display: inline-block;
    padding: 4px 12px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-oyuncu-article .comment-reply-link:hover {
    background: var(--theme-primary-color, #ff9307);
    color: white;
    border-color: var(--theme-primary-color, #ff9307);
}

.single-oyuncu-article .children {
    list-style: none;
    margin: 15px 0 0 30px;
    padding: 0;
}

.single-oyuncu-article .comment-respond {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
}

.single-oyuncu-article .comment-reply-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
}

.single-oyuncu-article .comment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.single-oyuncu-article .comment-form-comment,
.single-oyuncu-article .comment-form-author,
.single-oyuncu-article .comment-form-email,
.single-oyuncu-article .comment-form-url {
    margin: 0;
}

.single-oyuncu-article .comment-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.single-oyuncu-article .comment-form input[type="text"],
.single-oyuncu-article .comment-form input[type="email"],
.single-oyuncu-article .comment-form input[type="url"],
.single-oyuncu-article .comment-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.single-oyuncu-article .comment-form input[type="text"]:focus,
.single-oyuncu-article .comment-form input[type="email"]:focus,
.single-oyuncu-article .comment-form input[type="url"]:focus,
.single-oyuncu-article .comment-form textarea:focus {
    outline: none;
    border-color: var(--theme-primary-color, #ff9307);
}

.single-oyuncu-article .comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.single-oyuncu-article .form-submit {
    margin: 0;
}

.single-oyuncu-article button[type="submit"],
.single-oyuncu-article button.submit-btn,
.single-oyuncu-article .submit-btn,
.single-oyuncu-article input[type="submit"].submit,
.single-oyuncu-article input.submit,
.single-oyuncu-article .submit {
    padding: 10px 24px !important;
    background: #ffffff !important;
    color: #333 !important;
    border: 2px solid var(--theme-primary-color, #ff9307) !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.single-oyuncu-article button[type="submit"]:hover,
.single-oyuncu-article button.submit-btn:hover,
.single-oyuncu-article .submit-btn:hover,
.single-oyuncu-article input[type="submit"].submit:hover,
.single-oyuncu-article input.submit:hover,
.single-oyuncu-article .submit:hover {
    background: var(--theme-primary-color, #ff9307) !important;
    color: #ffffff !important;
    border-color: var(--theme-primary-color, #ff9307) !important;
}

