/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Lavanta & Mor Renk Paleti */
    --primary-purple: #8B5CF6;
    --primary-dark: #6D28D9;
    --primary-light: #A78BFA;
    --secondary-pink: #EC4899;
    --secondary-orange: #F59E0B;
    --secondary-blue: #3B82F6;
    --accent-cyan: #06B6D4;
    --accent-green: #10B981;
    
    /* Gradient Renkler */
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F59E0B 100%);
    --gradient-purple: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    --gradient-pink: linear-gradient(135deg, #EC4899 0%, #BE185D 100%);
    --gradient-rainbow: linear-gradient(135deg, #8B5CF6 0%, #EC4899 25%, #F59E0B 50%, #3B82F6 75%, #10B981 100%);
    
    /* Arka Plan Renkleri */
    --bg-gradient: linear-gradient(135deg, #F3E8FF 0%, #FDF2F8 50%, #FEF3C7 100%);
    --bg-light: #FAF5FF;
    --bg-white: #FFFFFF;
    
    /* Metin Renkleri */
    --text-dark: #1F2937;
    --text-medium: #4B5563;
    --text-light: #6B7280;
    --text-lighter: #9CA3AF;
    
    /* Border & Shadow */
    --border-color: #E5E7EB;
    --shadow-sm: 0 2px 8px rgba(139, 92, 246, 0.1);
    --shadow-md: 0 4px 16px rgba(139, 92, 246, 0.15);
    --shadow-lg: 0 8px 32px rgba(139, 92, 246, 0.2);
    --shadow-xl: 0 12px 48px rgba(139, 92, 246, 0.25);
}

body {
    font-family: 'Segoe UI', 'Roboto', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-gradient);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Renkli ve Animasyonlu */
.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid;
    border-image: var(--gradient-primary) 1;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.main-nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-purple);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

/* Hero Section - Canlı ve Renkli */
.hero-section {
    text-align: center;
    padding: 80px 40px;
    background: var(--bg-white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quick Login Form - Renkli ve İnteraktif */
.quick-login-form {
    max-width: 450px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.quick-login-form::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.login-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
    font-style: italic;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.login-btn {
    padding: 18px 40px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.login-btn:hover::before {
    width: 300px;
    height: 300px;
}

.login-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.login-btn:active {
    transform: translateY(-2px) scale(1);
}

/* mIRC Section - Renkli */
.mirc-section {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.mirc-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-purple);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.mirc-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.mirc-image {
    flex: 0 0 250px;
}

/* Görsel Stilleri */
.section-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.section-image:hover {
    transform: scale(1.05);
}

.post-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.post-thumbnail:hover {
    transform: scale(1.05);
}

.mirc-image .image-placeholder,
.mobile-image .image-placeholder {
    width: 100%;
    height: 180px;
    background: var(--gradient-purple);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.mirc-image .image-placeholder:hover,
.mobile-image .image-placeholder:hover {
    transform: scale(1.05) rotate(2deg);
}

.mirc-info h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 800;
}

.mirc-download-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gradient-purple);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    font-size: 1.1rem;
}

.mirc-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Kompakt mIRC Section */
.mirc-section.compact {
    padding: 25px 30px;
    margin-bottom: 30px;
}

.mirc-section.compact .mirc-content {
    gap: 20px;
}

.mirc-section.compact .mirc-image {
    flex: 0 0 120px;
}

.mirc-section.compact .mirc-image .section-image,
.mirc-section.compact .mirc-image .image-placeholder {
    height: 100px;
    font-size: 0.9rem;
}

.mirc-section.compact .mirc-image .section-image {
    object-fit: cover;
}

.mirc-section.compact .mirc-info h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.mirc-section.compact .mirc-download-btn {
    padding: 12px 30px;
    font-size: 1rem;
}

/* Mobile Section - Canlı */
.mobile-section {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.mobile-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: var(--gradient-pink);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.mobile-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.mobile-image {
    flex: 0 0 250px;
}

.mobile-info h2 {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 800;
}

.mobile-info p {
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.mobile-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
}

.app-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.app-btn:hover::before {
    left: 100%;
}

.app-btn.playstore {
    background: linear-gradient(135deg, #34A853 0%, #2E7D32 100%);
    color: var(--bg-white);
}

.app-btn.appstore {
    background: linear-gradient(135deg, #000000 0%, #424242 100%);
    color: var(--bg-white);
}

.app-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Kompakt Mobile Section */
.mobile-section.compact {
    padding: 25px 30px;
    margin-bottom: 30px;
}

.mobile-section.compact .mobile-content {
    gap: 20px;
}

.mobile-section.compact .mobile-image {
    flex: 0 0 120px;
}

.mobile-section.compact .mobile-image .section-image,
.mobile-section.compact .mobile-image .image-placeholder {
    height: 100px;
    font-size: 0.9rem;
}

.mobile-section.compact .mobile-image .section-image {
    object-fit: cover;
}

.mobile-section.compact .mobile-info h3 {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 700;
}

.mobile-section.compact .mobile-info p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.mobile-section.compact .mobile-buttons {
    gap: 12px;
}

.mobile-section.compact .app-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
}

/* Content Wrapper */
.content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Sidebar - Renkli Widgetlar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-top: 4px solid;
    border-image: var(--gradient-primary) 1;
}

.widget:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.widget-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

/* Category List - Renkli */
.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    color: var(--text-medium);
    text-decoration: none;
    padding: 12px 16px;
    display: block;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    border-left: 4px solid transparent;
}

.category-list a:hover {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
    color: var(--primary-purple);
    padding-left: 20px;
    border-left-color: var(--primary-purple);
    transform: translateX(5px);
}

/* Popular Posts - Renkli */
.popular-posts {
    list-style: none;
}

.popular-posts li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.popular-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-posts li:hover {
    transform: translateX(5px);
}

.popular-posts a {
    color: var(--text-dark);
    text-decoration: none;
    display: block;
}

.popular-posts a strong {
    display: block;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    font-weight: 700;
}

.popular-posts .views {
    color: var(--text-lighter);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.popular-posts .views::before {
    content: '👁️';
}

.popular-posts a:hover strong {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Popular Posts List - Yeni Tanıtım Formatı */
.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.popular-post-item {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.popular-post-item:hover {
    background: var(--bg-white);
    border-color: var(--primary-purple);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.popular-post-item a {
    color: var(--text-dark);
    text-decoration: none;
    display: block;
}

.popular-post-item a strong {
    display: block;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
}

.popular-post-item a p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.popular-post-item a .views {
    color: var(--text-lighter);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.popular-post-item a .views::before {
    content: '👁️';
}

.popular-post-item:hover a strong {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Blog Section - Renkli */
.blog-section {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.section-title {
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 4px solid;
    border-image: var(--gradient-primary) 1;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-post {
    display: flex;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.blog-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-post:hover {
    transform: translateX(10px);
}

.post-image {
    flex: 0 0 250px;
    position: relative;
    overflow: hidden;
}

.post-image img.post-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.post-image .image-placeholder {
    width: 100%;
    height: 180px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image .post-thumbnail,
.blog-post:hover .post-image .image-placeholder {
    transform: scale(1.1) rotate(-5deg);
}

.post-content {
    flex: 1;
}

.post-title {
    margin-bottom: 15px;
}

.post-title a {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    transition: all 0.3s ease;
    display: inline-block;
}

.post-title a:hover {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

.post-excerpt {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.1);
}

.read-more:hover {
    background: var(--gradient-purple);
    color: var(--bg-white);
    transform: translateX(5px);
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Pagination - Renkli */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 700;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.page-numbers.current {
    background: var(--gradient-primary);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: scale(1.1);
}

.page-numbers:not(.current):not(.dots):hover {
    background: var(--gradient-purple);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.page-numbers.dots {
    cursor: default;
    background: transparent;
}

/* Intro Section - Tanıtım Bölümü */
.intro-section {
    background: var(--bg-white);
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 50px;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 900px;
    margin: 0 auto;
}

/* Categories Section - Kategoriler Bölümü */
.categories-section {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 50px;
}

.categories-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--bg-light);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-purple);
    background: var(--bg-white);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.category-card h3 {
    margin-bottom: 12px;
}

.category-card h3 a {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.category-card:hover h3 a {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section - Çok Renkli */
.cta-section {
    background: var(--gradient-rainbow);
    padding: 70px 50px;
    border-radius: 24px;
    text-align: center;
    color: var(--bg-white);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

/* Footer - Renkli */
.site-footer {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: var(--bg-white);
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.footer-column h4 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 800;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.footer-column a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: 2;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .blog-section {
        order: 1;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .nav-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-section {
        padding: 50px 25px;
    }

    .quick-login-form {
        padding: 30px 20px;
    }

    .mirc-content,
    .mobile-content {
        flex-direction: column;
        text-align: center;
    }

    .mirc-image,
    .mobile-image {
        flex: none;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .mirc-section,
    .mobile-section {
        padding: 30px 25px;
    }

    .blog-post {
        flex-direction: column;
    }

    .post-image {
        flex: none;
        width: 100%;
    }

    .mobile-buttons {
        justify-content: center;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .blog-section {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 40px 20px;
    }

    .quick-login-form {
        padding: 25px 15px;
    }

    .mirc-section,
    .mobile-section,
    .blog-section {
        padding: 25px 20px;
    }

    .cta-section {
        padding: 50px 30px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}

/* Ekstra Animasyonlar */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Scroll Animasyonları */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

/* Page Content - İç Sayfalar İçin */
.page-content {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.page-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 4px solid;
    border-image: var(--gradient-primary) 1;
}

.page-content h2 {
    color: var(--primary-purple);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 800;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.page-content h3 {
    color: var(--primary-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.page-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.page-content ul,
.page-content ol {
    margin-left: 30px;
    margin-bottom: 25px;
    color: var(--text-medium);
    line-height: 1.8;
}

.page-content li {
    margin-bottom: 12px;
}

.page-content li strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.page-content a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-content a:hover {
    color: var(--secondary-pink);
    text-decoration: underline;
}

/* Category Articles - Kategori Makaleleri */
.category-articles {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.category-article {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 16px;
    border-left: 4px solid var(--primary-purple);
    transition: all 0.3s ease;
}

.category-article:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.category-article h3 {
    margin-bottom: 15px;
}

.category-article h3 a {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-article:hover h3 a {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-article p {
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.8;
}

.category-article .read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-purple);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-article .read-more:hover {
    color: var(--secondary-pink);
    gap: 10px;
}

@media (max-width: 768px) {
    .page-content {
        padding: 30px 25px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-content h2 {
        font-size: 1.5rem;
    }
    
    .intro-section {
        padding: 30px 25px;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .categories-section {
        padding: 30px 25px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-article {
        padding: 20px;
    }
}
