/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
}

/* Animasyonlu Arka Plan - Gradient */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #667eea 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    overflow: hidden;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.logo:hover {
    opacity: 0.8;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
    position: relative;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 14px;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav a.author-login-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Main Content */
.main-content {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

/* Featured Article (Kapak) */
.featured-article {
    margin-bottom: 60px;
}

.featured-cover {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.featured-badge {
    display: inline-block;
    background: #ff6b6b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.featured-title {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.featured-meta img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.btn-read {
    display: inline-block;
    background: #fff;
    color: #333;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-read:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Section Title */
.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Article Card */
.article-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.article-cover {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-meta {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 15px;
    display: flex;
    gap: 8px;
}

.btn-read-more {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 20px;
    border: 2px solid #fff;
    border-radius: 20px;
    transition: all 0.3s;
}

.btn-read-more:hover {
    background: #fff;
    color: #333;
}

/* Authors Grid */
.authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.author-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.author-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.author-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #fff;
}

.author-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.author-card p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.btn-author {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-author:hover {
    background: #fff;
    color: #333;
}

/* Text Center */
.text-center {
    text-align: center;
}

.btn-more {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-more:hover {
    background: #fff;
    color: #333;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Title */
.page-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
}

/* Authors Full Grid */
.authors-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.author-card-full {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.author-card-full img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #fff;
}

.author-card-full h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.author-card-full p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
}

.author-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.author-social a {
    color: #fff;
    text-decoration: none;
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    font-size: 13px;
    transition: all 0.3s;
}

.author-social a:hover {
    background: #fff;
    color: #333;
}

/* Author Profile */
.author-profile {
    display: flex;
    gap: 40px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.author-profile img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid #fff;
}

.author-info h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.author-info p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Article Detail */
.article-detail {
    margin-bottom: 40px;
}

.article-header {
    position: relative;
    margin-bottom: 40px;
}

.article-cover-full {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.article-title {
    font-size: 48px;
    margin: 30px 0 20px;
    line-height: 1.2;
}

.article-meta-full {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    margin-bottom: 30px;
}

.article-meta-full a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.article-meta-full a:hover {
    opacity: 0.8;
}

.article-meta-full img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.article-body {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.article-body p {
    margin-bottom: 20px;
}

.article-body h2 {
    font-size: 28px;
    margin: 30px 0 15px;
}

.article-body h3 {
    font-size: 22px;
    margin: 25px 0 12px;
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.related-articles {
    margin-top: 60px;
}

/* Responsive */
@media (max-width: 1024px) {
    .header-main {
        flex-wrap: wrap;
    }
    
    .nav {
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav.active {
        max-height: 500px;
        padding: 20px 0;
    }
    
    .nav a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-controls {
        order: 2;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(0, 0, 0, 0.5);
        margin: 0;
        padding: 0;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .featured-title {
        font-size: 28px;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .author-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .article-title {
        font-size: 32px;
    }
    
    .search-form input {
        width: 120px;
    }
    
    .font-size-controls {
        display: none;
    }
    
    .header-controls {
        gap: 5px;
    }
    
    .logo {
        font-size: 18px;
    }
}


/* Sosyal Özellikler */
.social-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-like, .btn-favorite {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-like:hover, .btn-favorite:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-like.liked {
    background: rgba(255, 107, 107, 0.3);
    border-color: rgba(255, 107, 107, 0.5);
}

.btn-favorite.favorited {
    background: rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.btn-like .icon {
    font-size: 20px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: auto;
}

.btn-share {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-share.twitter {
    background: #1DA1F2;
}

.btn-share.facebook {
    background: #4267B2;
}

.btn-share.whatsapp {
    background: #25D366;
}

.btn-share:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Yorum Bölümü */
.comments-section {
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-form {
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 15px;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-submit-comment {
    background: #fff;
    color: #333;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-comment:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-date {
    font-size: 13px;
    opacity: 0.7;
}

.comment-content p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .social-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .share-buttons {
        margin-left: 0;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}


/* Header Arama ve Dropdown */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.search-form {
    display: flex;
    gap: 5px;
}

.search-form input {
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 250px;
    font-size: 14px;
}

.search-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-form button {
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.search-form button:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 200px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Content with Sidebar Layout */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-bottom: 60px;
}

.main-column {
    min-width: 0;
}

/* Sidebar Widgets */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.widget {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.widget-title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Popüler Makaleler */
.popular-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
}

.popular-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.popular-title {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.popular-stats {
    font-size: 12px;
    opacity: 0.7;
    white-space: nowrap;
}

/* Kategori Listesi */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-badge {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
}

.category-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

/* Etiket Bulutu */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud-item {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    transition: all 0.3s;
}

.tag-cloud-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Etiketleri tıklanabilir yap */
.article-tags .tag {
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
}

.article-tags .tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .content-with-sidebar {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-form input {
        width: 100%;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* Okuma İlerlemesi */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Trend Makaleler */
.trending-section {
    margin-bottom: 60px;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.trending-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.trending-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.trending-cover {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.trending-content {
    padding: 25px;
}

.trending-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.trending-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.trending-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.trending-meta img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
}

/* En Popüler Yazarlar */
.top-authors-section {
    margin-bottom: 60px;
}

.top-authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.top-author-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s;
}

.top-author-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.rank-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
}

.top-author-card.rank-1 .rank-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.top-author-card.rank-2 .rank-badge {
    background: linear-gradient(135deg, #C0C0C0, #808080);
    color: #000;
}

.top-author-card.rank-3 .rank-badge {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
    color: #fff;
}

.top-author-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #fff;
}

.top-author-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.top-author-card p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
}

.author-stats-mini {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 13px;
    opacity: 0.8;
}

/* Grafikler */
.charts-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.chart-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chart-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.chart-card canvas {
    max-height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
    .trending-grid,
    .top-authors-grid {
        grid-template-columns: 1fr;
    }
    
    .charts-section {
        grid-template-columns: 1fr;
    }
}


/* Dark/Light Mode */
body[data-theme="light"] {
    color: #333;
}

body[data-theme="light"] .animated-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0.3;
}

body[data-theme="light"] .header,
body[data-theme="light"] .footer,
body[data-theme="light"] .article-card,
body[data-theme="light"] .author-card,
body[data-theme="light"] .widget,
body[data-theme="light"] .admin-form {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

body[data-theme="light"] .nav a,
body[data-theme="light"] .article-content h3,
body[data-theme="light"] .widget-title {
    color: #333;
}

body[data-theme="light"] input,
body[data-theme="light"] textarea,
body[data-theme="light"] select {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
    border-color: rgba(0, 0, 0, 0.2);
}

/* Header Controls */
.header-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-form {
    display: flex;
    gap: 5px;
}

.search-form input {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 180px;
    font-size: 13px;
}

.search-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-form button {
    padding: 8px 12px;
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.search-form button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.theme-toggle,
.font-size-controls button {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.theme-toggle:hover,
.font-size-controls button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.font-size-controls {
    display: flex;
    gap: 5px;
}

body[data-theme="light"] .theme-toggle,
body[data-theme="light"] .font-size-controls button,
body[data-theme="light"] .search-form input,
body[data-theme="light"] .search-form button {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
    border-color: rgba(0, 0, 0, 0.2);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.slide-content {
    max-width: 800px;
}

.slide-badge {
    display: inline-block;
    background: #ff6b6b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 16px;
}

.slide-meta img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background: #fff;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .header-controls {
        flex-wrap: wrap;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .slide-overlay {
        padding: 30px 20px;
    }
    
    .slider-btn {
        padding: 10px 15px;
        font-size: 18px;
    }
}


/* Okuyucu Profili */
.reader-profile-header {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reader-profile-header img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #fff;
}

.reader-profile-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.reader-profile-header p {
    opacity: 0.8;
}

/* Takip Butonu */
.btn-follow {
    padding: 6px 16px;
    border: 2px solid #fff;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 13px;
    font-weight: 600;
}

.btn-follow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-follow.following {
    background: rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.5);
}

.btn-unfollow {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 8px;
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 13px;
}

.btn-unfollow:hover {
    background: rgba(255, 107, 107, 0.3);
}


/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 5px 10px;
    line-height: 1;
}

.mobile-menu-toggle:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 2001;
    }
    
    .header-main {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .header {
        overflow: visible;
        position: relative;
    }
    
    .header .container {
        position: relative;
    }
    
    /* Balon Menü */
    .nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: auto;
        width: 280px;
        max-height: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0;
        gap: 0;
        transition: all 0.3s ease;
        z-index: 2000;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
        border-radius: 15px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }
    
    .nav.active {
        max-height: 500px;
        padding: 10px 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        overflow-y: auto;
    }
    
    .nav a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: left;
        font-size: 15px;
        display: block;
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .nav a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* Dropdown in mobile */
    .dropdown {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        width: 100%;
        text-decoration: none;
        color: #fff;
        cursor: pointer;
    }
    
    .dropdown-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .dropdown.active .dropdown-toggle {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(0, 0, 0, 0.5);
        margin: 0;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 300px;
        overflow-y: auto;
    }
    
    .dropdown-menu a {
        padding: 12px 20px 12px 40px;
        font-size: 14px;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    /* Mobile Menu Close Button - Gizle */
    .mobile-menu-close {
        display: none;
    }
    
    /* Overlay - Gizle */
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .header-controls {
        gap: 8px;
        display: flex;
        align-items: center;
    }
    
    .search-form {
        max-width: 120px;
    }
    
    .search-form input {
        width: 100%;
        min-width: 0;
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .search-form button {
        padding: 6px 10px;
        font-size: 14px;
    }
    
    .theme-toggle {
        padding: 6px 10px;
        font-size: 16px;
    }
    
    .font-size-controls {
        display: none;
    }
    
    .logo {
        font-size: 16px;
        white-space: nowrap;
    }
}

/* Çok küçük ekranlar */
@media (max-width: 480px) {
    .nav {
        right: -10px;
        width: calc(100vw - 30px);
        max-width: 300px;
    }
    
    .search-form {
        max-width: 90px;
    }
    
    .search-form input {
        font-size: 12px;
        padding: 5px 8px;
    }
    
    .logo {
        font-size: 14px;
    }
    
    .mobile-menu-toggle {
        font-size: 24px;
    }
}



body[data-theme="light"] .nav {
    background: rgba(255, 255, 255, 0.98);
}

body[data-theme="light"] .mobile-menu-toggle {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
    border-color: rgba(0, 0, 0, 0.2);
}
