.stories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Başlık Bölümü */
.stories-header {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-radius: 20px;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.stories-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M2 2h2v2H2zM6 6h2v2H6zM10 10h2v2h-2zM14 14h2v2h-2zM18 18h2v2h-2z" fill="rgba(255,87,34,0.1)"/></svg>') repeat;
    opacity: 0.5;
    z-index: 0;
}

.stories-header h1 {
    color: var(--secondary-color);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.stories-header p {
    color: var(--dark-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Filtreler */
.filters {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.filters:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-box {
    display: flex;
    background: var(--light-gray);
    border-radius: 30px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

.search-box input {
    flex: 1;
    border: none;
    background: none;
    padding: 0.8rem 1.2rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.search-box input:focus {
    outline: none;
}

.search-box button {
    background: var(--primary-color);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: #e64a19;
    transform: rotate(90deg);
}

.filter-options {
    display: flex;
    gap: 1rem;
}

.filter-options select {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--secondary-color);
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-options select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

/* Filtre Bilgisi */
.filter-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-info, .category-info {
    background: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.clear-search, .clear-category {
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.clear-search:hover, .clear-category:hover {
    color: var(--primary-color);
}

/* Hikaye Kartları */
.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.story-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.story-content {
    padding: 1.5rem;
}

.story-content h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.author span {
    font-weight: 500;
}

.excerpt {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: var(--light-gray);
    color: var(--dark-gray);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-color);
    color: #fff;
}

.story-stats {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.story-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.story-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.story-date {
    color: var(--dark-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: #e64a19;
    transform: translateY(-2px);
}

/* Hikaye Yok Durumu */
.no-stories {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.no-stories i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.no-stories p {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.write-story-button, .clear-filters {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.write-story-button:hover, .clear-filters:hover {
    background: #e64a19;
    transform: translateY(-2px);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .stories-container {
        padding: 1rem;
    }

    .stories-header h1 {
        font-size: 2rem;
    }

    .search-form {
        gap: 0.8rem;
    }

    .search-box {
        width: 100%;
    }

    .filter-options {
        flex-direction: column;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .stories-header {
        padding: 2rem 1rem;
    }

    .stories-header h1 {
        font-size: 1.8rem;
    }

    .story-content h3 {
        font-size: 1.2rem;
    }
}

/* Header Responsive Tasarım */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.mobile-nav {
    display: none;
}

@media (max-width: 768px) {
    header {
        box-shadow: none;
    }

    nav {
        padding: 1rem;
    }

    nav ul {
        display: none;
    }

    .mobile-nav {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .mobile-nav ul {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 0.8rem;
        margin: 0;
        list-style: none;
    }

    .mobile-nav ul li a {
        color: var(--secondary-color);
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .mobile-nav ul li a i {
        font-size: 1.2rem;
    }

    .mobile-nav ul li a.active {
        color: var(--primary-color);
    }

    main {
        margin-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.page-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.8rem;
    border-radius: 8px;
    background-color: var(--light-gray);
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.2);
}

.page-link.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.2);
}

.page-link.prev,
.page-link.next {
    gap: 0.5rem;
} 