/* ========================================
   İç Sayfalar Modern Tasarım
   ======================================== */

/* Breadcrumb Bölümü */
.sayfa-breadcrumb {
    background: linear-gradient(135deg, #0B0C0D 0%, #131518 100%);
    padding: 40px 0;
    margin-bottom: 48px;
    border-radius: 0 0 30px 30px;
}

.sayfa-breadcrumb .breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sayfa-breadcrumb .breadcrumb a {
    color: #9B30FF;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sayfa-breadcrumb .breadcrumb a:hover {
    color: #F8F8FF;
}

.sayfa-breadcrumb .breadcrumb span {
    color: #7A7F85;
}

.sayfa-breadcrumb h1 {
    color: #F8F8FF;
    font-size: 36px;
    margin-top: 16px;
    font-weight: 700;
}

/* Ana Container */
.sayfa-container {
    padding: 0 0 80px;
}

/* İçerik Kartı */
.sayfa-content-card {
    background: #131518;
    border-radius: 30px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.sayfa-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9B30FF 0%, #BD5FFF 100%);
}

/* Başlık */
.sayfa-title {
    color: #F8F8FF;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 16px;
}

.sayfa-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9B30FF 0%, #BD5FFF 100%);
    border-radius: 2px;
}

/* Grid Layout - Resim Varsa */
.sayfa-grid {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 40px;
    align-items: start;
}

.sayfa-text-wrapper {
    width: 100%;
}

.sayfa-text-wrapper-full {
    width: 100%;
}

/* Resim Wrapper */
.sayfa-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 100px;
}

.sayfa-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9B30FF 0%, #BD5FFF 100%);
    z-index: 10;
}

.sayfa-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sayfa-image-wrapper:hover img {
    transform: scale(1.05);
}

/* İçerik Metni */
.sayfa-content {
    color: #C6CBD2;
    font-size: 16px;
    line-height: 1.8;
}

.sayfa-content p {
    margin-bottom: 20px;
    color: #C6CBD2;
}

.sayfa-content p:last-child {
    margin-bottom: 0;
}

.sayfa-content h1,
.sayfa-content h2,
.sayfa-content h3,
.sayfa-content h4,
.sayfa-content h5,
.sayfa-content h6 {
    color: #F8F8FF;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 16px;
}

.sayfa-content h1::before,
.sayfa-content h2::before,
.sayfa-content h3::before,
.sayfa-content h4::before,
.sayfa-content h5::before,
.sayfa-content h6::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, #9B30FF 0%, #BD5FFF 100%);
    border-radius: 2px;
}

.sayfa-content ul,
.sayfa-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.sayfa-content ul li,
.sayfa-content ol li {
    margin-bottom: 12px;
    color: #C6CBD2;
    position: relative;
    padding-left: 12px;
}

.sayfa-content ul li::marker {
    color: #9B30FF;
}

.sayfa-content ol li::marker {
    color: #9B30FF;
    font-weight: 700;
}

.sayfa-content a {
    color: #9B30FF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.sayfa-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #9B30FF;
    transition: width 0.3s ease;
}

.sayfa-content a:hover {
    color: #BD5FFF;
}

.sayfa-content a:hover::after {
    width: 100%;
}

.sayfa-content strong,
.sayfa-content b {
    color: #F8F8FF;
    font-weight: 700;
}

.sayfa-content em,
.sayfa-content i {
    color: #9B30FF;
}

.sayfa-content blockquote {
    background: rgba(155, 48, 255, 0.05);
    border-left: 4px solid #9B30FF;
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 10px 10px 0;
}

.sayfa-content blockquote p {
    color: #F8F8FF;
    font-style: italic;
    margin: 0;
}

.sayfa-content code {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(155, 48, 255, 0.3);
    padding: 2px 8px;
    border-radius: 5px;
    color: #9B30FF;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.sayfa-content pre {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 20px 0;
}

.sayfa-content pre code {
    background: transparent;
    border: none;
    padding: 0;
    color: #C6CBD2;
}

.sayfa-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    overflow: hidden;
}

.sayfa-content table th,
.sayfa-content table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sayfa-content table th {
    background: rgba(155, 48, 255, 0.1);
    color: #F8F8FF;
    font-weight: 700;
}

.sayfa-content table td {
    color: #C6CBD2;
}

.sayfa-content table tr:last-child td {
    border-bottom: none;
}

.sayfa-content table tr:hover {
    background: rgba(155, 48, 255, 0.05);
}

.sayfa-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 24px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sayfa-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #9B30FF 50%, transparent 100%);
    margin: 32px 0;
}

/* Video Wrapper */
.sayfa-content iframe {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    border: none;
    margin: 24px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Özel Liste Stilleri */
.sayfa-content .checklist {
    list-style: none;
    padding-left: 0;
}

.sayfa-content .checklist li {
    padding-left: 36px;
    position: relative;
}

.sayfa-content .checklist li::before {
    content: '\f00c';
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    left: 0;
    color: #34C759;
    font-weight: 900;
}

/* Geri Dön Butonu */
.sayfa-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #F8F8FF;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 32px;
}

.sayfa-back-btn:hover {
    background: rgba(155, 48, 255, 0.1);
    border-color: #9B30FF;
    color: #9B30FF;
    transform: translateX(-4px);
}

.sayfa-back-btn i {
    transition: transform 0.3s ease;
}

.sayfa-back-btn:hover i {
    transform: translateX(-4px);
}

/* Paylaş Butonları */
.sayfa-share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sayfa-share-label {
    color: #7A7F85;
    font-weight: 600;
    margin-right: 8px;
}

.sayfa-share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #F8F8FF;
    transition: all 0.3s ease;
}

.sayfa-share-btn:hover {
    background: #9B30FF;
    border-color: #9B30FF;
    transform: translateY(-4px);
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .sayfa-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .sayfa-image-wrapper {
        position: relative;
        top: auto;
    }
    
    .sayfa-content-card {
        padding: 40px 32px;
    }
    
    .sayfa-title {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .sayfa-grid {
        gap: 24px;
    }
    
    .sayfa-breadcrumb {
        padding: 24px 0;
    }
    
    .sayfa-breadcrumb h1 {
        font-size: 24px;
    }
    
    .sayfa-content-card {
        padding: 24px 20px;
        border-radius: 20px;
    }
    
    .sayfa-title {
        font-size: 24px;
    }
    
    .sayfa-content {
        font-size: 15px;
    }
    
    .sayfa-content h1,
    .sayfa-content h2,
    .sayfa-content h3,
    .sayfa-content h4,
    .sayfa-content h5,
    .sayfa-content h6 {
        font-size: 20px;
    }
    
    .sayfa-content iframe {
        height: 250px;
    }
    
    .sayfa-share-buttons {
        flex-wrap: wrap;
    }
}

