/* ===========================
   RESET & VARIABLES
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --success-color: #48bb78;
    --warning-color: #ed8936;
    --danger-color: #f56565;
    --info-color: #4299e1;
    --text-color: #2d3748;
    --dark-color: #1a202c;
    --light-bg: #f7fafc;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #f8f9fa;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    outline: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   TOP BAR
=========================== */
.top-bar {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left .social-links {
    display: flex;
    gap: 10px;
}

.top-bar-left .social-links a {
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 14px;
}

.top-bar-left .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-link {
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 13px;
}

.top-link:hover {
    background: rgba(255,255,255,0.15);
}

/* ===========================
   MAIN HEADER
=========================== */
.site-header {
    background: white;
    padding: 20px 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    font-size: 26px;
    font-weight: 700;
    transition: transform 0.3s;
}

.site-logo a:hover {
    transform: scale(1.05);
}

.site-logo img {
    height: 50px;
    width: auto;
}

.site-logo i {
    font-size: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-logo span {
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header Search */
.header-search {
    flex: 1;
    max-width: 500px;
}

.search-input-group {
    display: flex;
    background: var(--light-bg);
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.search-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.search-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 20px;
    font-size: 15px;
}

.search-input-group input::placeholder {
    color: #a0aec0;
}

.search-input-group button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0 30px;
    transition: all 0.3s;
}

.search-input-group button:hover {
    transform: scale(1.05);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    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);
}

/* ===========================
   MAIN NAVIGATION
=========================== */
.main-navigation {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: var(--shadow-md);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    color: white;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    background: rgba(255,255,255,0.15);
}

.nav-menu > li > a:hover::after,
.nav-menu > li.active > a::after {
    width: 80%;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: var(--shadow-xl);
    border-radius: 0 0 12px 12px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    transition: all 0.3s;
}

.dropdown-menu li a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 30px;
}

/* ===========================
   SITE MAIN
=========================== */
.site-main {
    min-height: calc(100vh - 400px);
    padding: 40px 0;
}

/* ===========================
   BREADCRUMB
=========================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary-color);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    color: #cbd5e0;
}

/* ===========================
   PAGE HEADER
=========================== */
.page-header-section {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
}

.page-header-section h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header-section p {
    font-size: 18px;
    opacity: 0.95;
}

/* ===========================
   MAIN CONTENT LAYOUT
=========================== */
.main-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
}

.content-area {
    min-width: 0;
}

/* ===========================
   SIDEBAR
=========================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.widget {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.widget:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-color);
}

.widget ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    color: var(--text-color);
}

.widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.widget ul li a .count {
    background: var(--light-bg);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

/* ===========================
   ŞİİR GRID
=========================== */
.siir-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.siir-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.siir-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.siir-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.siir-card:hover::before {
    transform: scaleX(1);
}

.siir-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s;
}

.siir-card:hover .siir-card-image {
    transform: scale(1.1);
}

.siir-card-content {
    padding: 25px;
}

.siir-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-color);
    line-height: 1.4;
}

.siir-card-title a {
    color: inherit;
    transition: color 0.3s;
}

.siir-card-title a:hover {
    color: var(--primary-color);
}

.siir-card-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #718096;
    margin-bottom: 15px;
}

.siir-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.siir-card-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.siir-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.siir-stats {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #718096;
}

.siir-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.btn-secondary {
    background: #718096;
}

.btn-success {
    background: var(--success-color);
}

.btn-danger {
    background: var(--danger-color);
}

.btn-warning {
    background: var(--warning-color);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 17px;
}

.btn-facebook {
    background: #3b5998;
}

.btn-twitter {
    background: #1da1f2;
}

.btn-linkedin {
    background: #0077b5;
}

/* ===========================
   ŞİİR DETAY
=========================== */
.siir-detay {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.siir-baslik {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.3;
}

.siir-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    font-size: 15px;
    color: #718096;
}

.siir-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.siir-meta i {
    color: var(--primary-color);
}

.siir-featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.siir-icerik {
    font-size: 19px;
    line-height: 2.2;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    color: var(--dark-color);
    font-family: 'Georgia', serif;
}

.siir-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.begen-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    transition: all 0.3s;
    cursor: pointer;
}

.begen-btn:hover {
    border-color: var(--danger-color);
    color: var(--danger-color);
}

.begen-btn.active {
    background: var(--danger-color);
    border-color: var(--danger-color);
    color: white;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ===========================
   ŞAİR DETAY
=========================== */
.sair-profil {
    display: flex;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.sair-resim-wrapper {
    flex-shrink: 0;
}

.sair-resim {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--light-bg);
    box-shadow: var(--shadow-lg);
}

.sair-placeholder {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
}

.sair-bilgi {
    flex: 1;
}

.sair-bilgi h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.sair-tarihler {
    font-size: 18px;
    color: #718096;
    margin-bottom: 25px;
}

.sair-istatistik {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.stat-item {
    text-align: center;
    padding: 15px 25px;
    background: var(--light-bg);
    border-radius: 12px;
}

.stat-item strong {
    display: block;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 14px;
    color: #718096;
}

.sair-biyografi {
    line-height: 1.8;
    font-size: 16px;
    color: var(--text-color);
}

/* ===========================
   YORUMLAR
=========================== */
.yorumlar {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.yorumlar h3 {
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.yorum-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.yorum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.yorum-yazar {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 16px;
}

.yorum-tarih {
    font-size: 13px;
    color: #718096;
}

.yorum-icerik {
    line-height: 1.7;
    color: var(--text-color);
}

.yorum-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

/* ===========================
   FORM ELEMENTS
=========================== */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    background: white;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* ===========================
   ALERTS
=========================== */
.alert {
    padding: 18px 24px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.alert i {
    font-size: 20px;
}

.alert-success {
    background: #c6f6d5;
    color: #22543d;
    border-left: 4px solid var(--success-color);
}

.alert-error {
    background: #fed7d7;
    color: #742a2a;
    border-left: 4px solid var(--danger-color);
}

.alert-warning {
    background: #feebc8;
    color: #7c2d12;
    border-left: 4px solid var(--warning-color);
}

.alert-info {
    background: #bee3f8;
    color: #2c5282;
    border-left: 4px solid var(--info-color);
}

/* ===========================
   PAGINATION
=========================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
    color: var(--text-color);
}

.pagination a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.pagination .current {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
}

/* ===========================
   TARTIŞMA FORUMU
=========================== */
.forum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.forum-stats {
    display: flex;
    gap: 40px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-box i {
    font-size: 36px;
    color: var(--primary-color);
}

.stat-box strong {
    display: block;
    font-size: 26px;
    color: var(--dark-color);
}

.stat-box span {
    font-size: 14px;
    color: #718096;
}

.forum-search {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.forum-search form {
    display: flex;
    gap: 12px;
}

.forum-list {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.forum-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
}

.forum-item:hover {
    background: var(--light-bg);
}

.forum-item:last-child {
    border-bottom: none;
}

.forum-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.forum-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.forum-content {
    flex: 1;
}

.forum-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.forum-content h3 a {
    color: var(--dark-color);
    transition: color 0.3s;
}

.forum-content h3 a:hover {
    color: var(--primary-color);
}

.forum-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #718096;
    margin-bottom: 12px;
}

.forum-excerpt {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
}

/* ===========================
   BLOG
=========================== */
.blog-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
    transition: all 0.3s;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    width: 400px;
    flex-shrink: 0;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.blog-item:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
    flex: 1;
}

.blog-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-content h2 a {
    color: var(--dark-color);
    transition: color 0.3s;
}

.blog-content h2 a:hover {
    color: var(--primary-color);
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #718096;
    margin-bottom: 20px;
}

.blog-excerpt {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.blog-detay {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin: 30px 0;
}

.blog-header h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.blog-featured-image {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.blog-body {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 40px;
}

.blog-body p {
    margin-bottom: 20px;
}

.blog-body h2,
.blog-body h3,
.blog-body h4 {
    margin: 35px 0 20px;
    color: var(--dark-color);
}

.blog-body img {
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: var(--shadow-md);
}

.blog-body blockquote {
    border-left: 5px solid var(--primary-color);
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
    color: #718096;
    font-size: 18px;
}

/* ===========================
   ŞAİR GRID
=========================== */
.sair-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.sair-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    text-align: center;
}

.sair-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.sair-link {
    display: block;
    color: inherit;
}

.sair-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--light-bg);
    position: relative;
}

.sair-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.sair-card:hover .sair-card-image img {
    transform: scale(1.1);
}

.sair-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: #cbd5e0;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
}

.sair-card-content {
    padding: 25px;
}

.sair-card-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.sair-dates {
    font-size: 14px;
    color: #718096;
    margin-bottom: 15px;
}

.sair-bio {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    margin-top: 15px;
}

/* ===========================
   ALPHABET NAVIGATION
=========================== */
.alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.alphabet-nav a {
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    color: var(--text-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.alphabet-nav a:hover,
.alphabet-nav a.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.1);
}

/* ===========================
   MODAL
=========================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: white;
    max-width: 600px;
    margin: 50px auto;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 22px;
    color: var(--dark-color);
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #718096;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--danger-color);
    color: white;
}

.modal form {
    padding: 30px;
}

/* ===========================
   BADGES
=========================== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #c6f6d5;
    color: #22543d;
}

.badge-danger {
    background: #fed7d7;
    color: #742a2a;
}

.badge-warning {
    background: #feebc8;
    color: #7c2d12;
}

.badge-info {
    background: #bee3f8;
    color: #2c5282;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.footer-section ul li {
    padding: 8px 0;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 10px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.7);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: -1;
    }
    
    .header-search {
        max-width: 350px;
    }
    
    .siir-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .blog-item {
        flex-direction: column;
    }
    
    .blog-image {
        width: 100%;
        height: 300px;
    }
    
    .sair-profil {
        flex-direction: column;
        text-align: center;
    }
    
    .sair-resim-wrapper {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .header-search {
        order: 3;
        width: 100%;
        max-width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        transition: left 0.3s;
        z-index: 9999;
        overflow-y: auto;
    }
    
    .main-navigation.active {
        left: 0;
        box-shadow: 2px 0 20px rgba(0,0,0,0.3);
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .nav-menu > li > a {
        color: var(--text-color);
        padding: 15px 25px;
    }
    
    .nav-menu > li > a::after {
        display: none;
    }
    
    .nav-menu > li > a:hover {
        background: var(--light-bg);
        color: var(--primary-color);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-bg);
        display: none;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .page-header-section h1 {
        font-size: 32px;
    }
    
    .siir-detay,
    .blog-detay {
        padding: 25px;
    }
    
    .siir-baslik {
        font-size: 28px;
    }
    
    .siir-icerik {
        font-size: 17px;
        padding: 20px;
    }
    
    .forum-header {
        flex-direction: column;
    }
    
    .forum-stats {
        width: 100%;
        justify-content: space-around;
    }
    
    .forum-item {
        flex-direction: column;
    }
    
    .siir-grid {
        grid-template-columns: 1fr;
    }
    
    .sair-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* Hero Section - Düzeltilmiş */
.hero-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: center;
    margin-bottom: 50px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title i {
    margin-right: 15px;
    color: #ffd700;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-actions .btn-primary {
    background: white;
    color: #667eea;
    border: none;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.hero-actions .btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.stat-info strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-info span {
    font-size: 1rem;
    opacity: 0.9;
}

/* Featured Section */
.featured-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: #667eea;
}

.section-subtitle {
    color: #718096;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions .btn-lg {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .site-logo span {
        font-size: 18px;
    }
    
    .page-header-section {
        padding: 30px 15px;
    }
    
    .page-header-section h1 {
        font-size: 26px;
    }
    
    .btn {
        width: 50%;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* ===========================
   UTILITY CLASSES
=========================== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

.text-primary { color: var(--primary-color); }
.text-success { color: var(--success-color); }
.text-danger { color: var(--danger-color); }
.text-warning { color: var(--warning-color); }

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* ===========================
   SCROLLBAR
=========================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
/* ===========================
   HERO SECTION - TAM DÜZELTİLMİŞ
=========================== */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: center;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-title i {
    color: #ffd700;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Stats - DÜZELTİLMİŞ */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.stat-info strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-info span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===========================
   FEATURED SECTION - DÜZELTİLMİŞ
=========================== */
.featured-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-title i {
    color: #667eea;
}

.section-subtitle {
    color: #718096;
    font-size: 1rem;
}

/* ===========================
   ŞİİR GRID - DÜZELTİLMİŞ
=========================== */
.siir-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.siir-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.siir-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.siir-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f7fafc;
}

.siir-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.siir-card:hover .siir-card-image {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.siir-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.siir-card-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.category-badge {
    background: #edf2f7;
    color: #667eea;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.date-badge {
    color: #718096;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.siir-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.siir-card-title a {
    color: #2d3748;
    transition: color 0.3s;
}

.siir-card-title a:hover {
    color: #667eea;
}

.siir-card-author {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.siir-card-author a {
    color: #667eea;
    font-weight: 600;
}

.siir-card-author a:hover {
    text-decoration: underline;
}

.siir-card-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 15px;
    flex: 1;
}

.siir-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
}

.siir-stats {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: #718096;
}

.siir-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===========================
   CONTENT SECTION
=========================== */
.content-section {
    margin-bottom: 50px;
}

.content-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.view-all-link {
    color: #667eea;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.view-all-link:hover {
    color: #764ba2;
    gap: 8px;
}

/* ===========================
   SIDEBAR - DÜZELTİLMİŞ
=========================== */
.widget {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #667eea;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2d3748;
}

.widget-title i {
    color: #667eea;
}

/* Search Box */
.search-box {
    display: flex;
    gap: 8px;
}

.search-box input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
}

.search-box input:focus {
    border-color: #667eea;
    outline: none;
}

.search-box button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-box button:hover {
    transform: scale(1.05);
}

/* Popular List */
.popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.popular-item:last-child {
    border-bottom: none;
}

.popular-rank {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.popular-content {
    flex: 1;
}

.popular-title {
    display: block;
    color: #2d3748;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.popular-title:hover {
    color: #667eea;
}

.popular-meta {
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
    color: #718096;
}

.popular-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Category & Author List */
.category-list,
.author-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li,
.author-list li {
    border-bottom: 1px solid #e2e8f0;
}

.category-list li:last-child,
.author-list li:last-child {
    border-bottom: none;
}

.category-list li a,
.author-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #4a5568;
    transition: all 0.3s;
}

.category-list li a:hover,
.author-list li a:hover {
    color: #667eea;
    padding-left: 8px;
}

.category-name,
.author-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.count {
    background: #edf2f7;
    color: #667eea;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===========================
   RESPONSIVE - DÜZELTİLMİŞ
=========================== */
@media (max-width: 992px) {
    .siir-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 10px;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-info strong {
        font-size: 1.5rem;
    }
    
    .siir-grid {
        grid-template-columns: 1fr;
    }
    
    .content-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        width: 100%;
    }
    
    .hero-actions .btn-lg {
        width: 50%;
        justify-content: center;
    }
}
/* ============================================
   YARIŞMA WIDGET
============================================ */
.yarisma-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}

.yarisma-widget .widget-title {
    background: rgba(255,255,255,0.95);
    color: #667eea;
    padding: 20px;
    margin: 0;
    border-bottom: none;
}

.yarisma-widget-list {
    padding: 20px;
}

.yarisma-widget-item {
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.yarisma-widget-item:last-child {
    margin-bottom: 0;
}

.yarisma-widget-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.yarisma-widget-image {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.yarisma-widget-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.yarisma-widget-item:hover .yarisma-widget-image img {
    transform: scale(1.05);
}

.yarisma-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #48bb78;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.yarisma-widget-content {
    padding: 15px;
}

.yarisma-widget-title {
    margin: 0 0 10px 0;
}

.yarisma-widget-title a {
    color: #2d3748;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    display: block;
    transition: color 0.3s;
}

.yarisma-widget-title a:hover {
    color: #667eea;
}

.yarisma-tema {
    color: #667eea;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.yarisma-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}

.yarisma-date,
.yarisma-count {
    color: #718096;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.yarisma-date i,
.yarisma-count i {
    color: #667eea;
}

.yarisma-widget-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.yarisma-widget-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.yarisma-widget .widget-view-all {
    display: block;
    padding: 15px 20px;
    background: rgba(255,255,255,0.95);
    color: #667eea;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.yarisma-widget .widget-view-all:hover {
    background: white;
}

/* Responsive */
@media (max-width: 768px) {
    .yarisma-widget-image {
        height: 120px;
    }
    
    .yarisma-info {
        flex-direction: column;
        gap: 8px;
    }
}
/* Reklam Alanı */
.reklam-alani {
    margin: 20px 0;
    padding: 15px;
    background: #f7fafc;
    border-radius: 8px;
    text-align: center;
}

.reklam-alani img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.reklam-alani a {
    display: inline-block;
    transition: transform 0.3s;
}

.reklam-alani a:hover {
    transform: scale(1.02);
}

/* Widget içindeki reklam */
.widget .reklam-alani {
    padding: 0;
    background: transparent;
}