 /* Channel Detail Wrapper - Sadece content area için custom stiller */
 .channel-detail-flowbite-wrapper {
    font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

/* Hero Section */
.channel-detail-flowbite-wrapper .hero-section {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    padding: 4rem 0;
}

.channel-detail-flowbite-wrapper .hero-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.channel-detail-flowbite-wrapper .hero-content { 
    margin-bottom: 2rem;
}

.channel-detail-flowbite-wrapper .hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.channel-detail-flowbite-wrapper .hero-description {
    font-size: 1.25rem;
    color: #4b5563; 
    margin: 0 auto;
}

/* Main Content */
.channel-detail-flowbite-wrapper .main-section {
    padding: 3rem 0;
}

.channel-detail-flowbite-wrapper .main-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.channel-detail-flowbite-wrapper .main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .channel-detail-flowbite-wrapper .main-grid {
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
    }
}

.channel-detail-flowbite-wrapper .content-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Card Styles */
.channel-detail-flowbite-wrapper .card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.channel-detail-flowbite-wrapper .card-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.channel-detail-flowbite-wrapper .card-content {
    padding: 2rem;
}

/* Button Styles */
.channel-detail-flowbite-wrapper .btn-gradient {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    color: white;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.channel-detail-flowbite-wrapper .btn-gradient:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.channel-detail-flowbite-wrapper .btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

/* Sub Channels */
.channel-detail-flowbite-wrapper .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.channel-detail-flowbite-wrapper .section-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
    color: #3b82f6;
}

.channel-detail-flowbite-wrapper .sub-channels-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .channel-detail-flowbite-wrapper .sub-channels-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.channel-detail-flowbite-wrapper .sub-channel-card {
    background: #f9fafb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.channel-detail-flowbite-wrapper .sub-channel-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.channel-detail-flowbite-wrapper .sub-channel-image {
    width: 100%;
    height: 8rem;
    object-fit: cover;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.channel-detail-flowbite-wrapper .sub-channel-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.channel-detail-flowbite-wrapper .sub-channel-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.channel-detail-flowbite-wrapper .sub-channel-title a:hover {
    color: #3b82f6;
}

.channel-detail-flowbite-wrapper .sub-channel-description {
    color: #4b5563;
    font-size: 0.875rem;
}

/* Sidebar */
.channel-detail-flowbite-wrapper .sidebar {
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .channel-detail-flowbite-wrapper .sidebar {
        margin-top: 0;
    }
}

.channel-detail-flowbite-wrapper .sidebar-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    position: sticky;
    top: 2rem;
}

.channel-detail-flowbite-wrapper .sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.channel-detail-flowbite-wrapper .sidebar-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    color: #8b5cf6;
}

.channel-detail-flowbite-wrapper .sidebar-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.channel-detail-flowbite-wrapper .sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.channel-detail-flowbite-wrapper .sidebar-item:hover {
    background-color: #f9fafb;
}

.channel-detail-flowbite-wrapper .sidebar-item a {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.channel-detail-flowbite-wrapper .sidebar-image {
    width: 3rem;
    height: 3rem;
    border-radius: 0.375rem;
    object-fit: cover;
    flex-shrink: 0;
}

.channel-detail-flowbite-wrapper .sidebar-content {
    flex: 1;
    min-width: 0;
}

.channel-detail-flowbite-wrapper .sidebar-item-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
    transition: color 0.2s ease;
}

.channel-detail-flowbite-wrapper .sidebar-item:hover .sidebar-item-title {
    color: #3b82f6;
}

.channel-detail-flowbite-wrapper .sidebar-item-description {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Error Page */
.channel-detail-flowbite-wrapper .error-section {
    background: linear-gradient(135deg, #fef2f2 0%, #fce7f3 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-detail-flowbite-wrapper .error-container {
    max-width: 28rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.channel-detail-flowbite-wrapper .error-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2rem;
}

.channel-detail-flowbite-wrapper .error-icon-container {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1.5rem;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-detail-flowbite-wrapper .error-icon {
    width: 3rem;
    height: 3rem;
    color: #dc2626;
}

.channel-detail-flowbite-wrapper .error-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.channel-detail-flowbite-wrapper .error-description {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* Prose Styles */
.channel-detail-flowbite-wrapper .prose {
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: none;
    color: #374151;
}

.channel-detail-flowbite-wrapper .prose h1, 
.channel-detail-flowbite-wrapper .prose h2, 
.channel-detail-flowbite-wrapper .prose h3, 
.channel-detail-flowbite-wrapper .prose h4 {
    color: #374151;
    font-weight: 600;
}

.channel-detail-flowbite-wrapper .prose p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

.channel-detail-flowbite-wrapper .prose a {
    color: #3B82F6;
    text-decoration: none;
}

.channel-detail-flowbite-wrapper .prose a:hover {
    color: #1D4ED8;
    text-decoration: underline;
}

/* Center alignment utility */
.channel-detail-flowbite-wrapper .text-center {
    text-align: center;
}

.channel-detail-flowbite-wrapper .flex-center {
    display: flex;
    justify-content: center;
}

.channel-detail-flowbite-wrapper .mt-8 {
    margin-top: 2rem;
}