/* ========== TEMEL AYARLAR ========== */
:root {
    /* Dark Mode Renkleri */
    --dark-bg: #0a0a0a;
    --dark-primary: #1a1a1a;
    --dark-secondary: #2a2a2a;
    --dark-text: #f0f0f0;
    --dark-text-secondary: #b0b0b0;
    --dark-accent: #6366f1;
    --dark-accent-hover: #4f46e5;
    
    /* Light Mode Renkleri */
    --light-bg: #f8fafc;
    --light-primary: #ffffff;
    --light-secondary: #f1f5f9;
    --light-text: #0f172a;
    --light-text-secondary: #64748b;
    --light-accent: #2563eb;
    --light-accent-hover: #1d4ed8;
    
    /* Ortak Renkler */
    --error: #ef4444;
    --success: #10b981;
    --warning: #f59e0b;
    
    /* Gradyanlar */
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-2: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    
    /* Diğer */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

/* ========== GENEL STİLLER ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--dark-bg);
    color: var(--dark-text);
    line-height: 1.6;
    transition: var(--transition);
    overflow-x: hidden;
}

body.light-mode {
    background-color: var(--light-bg);
    color: var(--light-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== TEMA DEĞİŞTİRME ========== */
.theme-toggle {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
}

.theme-switch-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60px;
    height: 30px;
    background: var(--dark-secondary);
    border-radius: var(--radius-full);
    padding: 0.25rem;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.theme-switch-label i {
    font-size: 0.8rem;
    z-index: 1;
}

.theme-switch-label .fa-sun {
    color: #fbbf24;
}

.theme-switch-label .fa-moon {
    color: #e2e8f0;
}

.theme-switch-label .ball {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background-color: var(--dark-primary);
    border-radius: 50%;
    transition: var(--transition);
    z-index: 0;
}

#theme-switch {
    display: none;
}

#theme-switch:checked + .theme-switch-label .ball {
    transform: translateX(30px);
    background-color: var(--light-primary);
}

body.light-mode .theme-switch-label {
    background: var(--light-secondary);
}

/* ========== GRADYAN DAİRELERİ ========== */
.gradient-circle {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
}

.circle-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-1);
    top: -300px;
    left: -300px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    bottom: -200px;
    right: -200px;
}

.circle-3 {
    width: 300px;
    height: 300px;
    background: #10b981;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ========== HEADER ========== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: var(--transition);
}

.main-header.scrolled {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--dark-accent);
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.main-nav a {
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-text-secondary);
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--dark-text);
}

.main-nav a::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    color: var(--dark-accent);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn {
    background: none;
    border: none;
    color: var(--dark-text);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    color: var(--dark-accent);
    transform: scale(1.1);
}

.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark-text);
    transition: var(--transition);
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Light Mode Header Styles */
body.light-mode .main-header.scrolled {
    background-color: rgba(248, 250, 252, 0.9);
}

body.light-mode .main-nav a {
    color: var(--light-text-secondary);
}

body.light-mode .main-nav a:hover,
body.light-mode .main-nav a.active {
    color: var(--light-text);
}

body.light-mode .main-nav a::after {
    color: var(--light-accent);
}

body.light-mode .search-btn {
    color: var(--light-text);
}

body.light-mode .search-btn:hover {
    color: var(--light-accent);
}

body.light-mode .menu-btn span {
    background-color: var(--light-text);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.2);
    color: var(--dark-accent);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--dark-accent);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff 0%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-excerpt {
    font-size: 1.1rem;
    color: var(--dark-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 500;
}

.meta-info {
    display: flex;
    gap: 1rem;
    color: var(--dark-text-secondary);
    font-size: 0.9rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-1);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Light Mode Hero Styles */
body.light-mode .hero-overlay {
    background: linear-gradient(to right, rgba(248, 250, 252, 0.9) 0%, rgba(248, 250, 252, 0.7) 100%);
}

body.light-mode .hero-title {
    background: linear-gradient(to right, #0f172a 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-mode .hero-excerpt {
    color: var(--light-text-secondary);
}

body.light-mode .meta-info {
    color: var(--light-text-secondary);
}

/* ========== NEWS GRID ========== */
.news-grid {
    padding: 5rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-accent);
    font-weight: 500;
    transition: var(--transition);
}

.view-all:hover {
    color: var(--dark-text);
    gap: 0.75rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.news-card {
    position: relative;
    background: var(--dark-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .card-image img {
    transform: scale(1.05);
}

.card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(10, 10, 10, 0.8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 1;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.card-excerpt {
    color: var(--dark-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--dark-text-secondary);
}

.card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.news-card:hover .card-hover {
    opacity: 1;
}

.read-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-1);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: var(--transition);
}

.read-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Light Mode News Grid Styles */
body.light-mode .news-card {
    background: var(--light-primary);
    box-shadow: var(--shadow);
}

body.light-mode .news-card:hover {
    box-shadow: var(--shadow-lg);
}

body.light-mode .card-excerpt {
    color: var(--light-text-secondary);
}

body.light-mode .card-meta {
    color: var(--light-text-secondary);
}

/* ========== FEATURED SECTION ========== */
.featured-section {
    padding: 5rem 0;
    background: var(--dark-primary);
    position: relative;
    overflow: hidden;
}

.featured-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.featured-text {
    flex: 1;
    z-index: 2;
}

.featured-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-desc {
    font-size: 1.1rem;
    color: var(--dark-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.featured-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-1);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--dark-text);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--dark-text);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.featured-image {
    flex: 1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    z-index: 1;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0.2;
    z-index: 1;
}

/* Light Mode Featured Styles */
body.light-mode .featured-section {
    background: var(--light-secondary);
}

body.light-mode .featured-desc {
    color: var(--light-text-secondary);
}

body.light-mode .btn-secondary {
    color: var(--light-text);
    border-color: var(--light-text);
}

body.light-mode .btn-secondary:hover {
    background: rgba(15, 23, 42, 0.05);
}

/* ========== TRENDING SECTION ========== */
.trending-section {
    padding: 5rem 0;
}

.trending-nav {
    display: flex;
    gap: 0.5rem;
}

.trending-prev,
.trending-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-primary);
    color: var(--dark-text);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.trending-prev:hover,
.trending-next:hover {
    background: var(--dark-accent);
    color: white;
}

.trending-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
}

.trending-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.trending-item {
    min-width: 300px;
    background: var(--dark-primary);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.trending-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.trend-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(99, 102, 241, 0.1);
    margin-bottom: -1.5rem;
    line-height: 1;
}

.trend-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.trend-desc {
    color: var(--dark-text-secondary);
    margin-bottom: 1.5rem;
}

.trend-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--dark-text-secondary);
}

/* Light Mode Trending Styles */
body.light-mode .trending-item {
    background: var(--light-primary);
}

body.light-mode .trend-desc {
    color: var(--light-text-secondary);
}

body.light-mode .trend-stats {
    color: var(--light-text-secondary);
}

body.light-mode .trending-prev,
body.light-mode .trending-next {
    background: var(--light-secondary);
    color: var(--light-text);
}

body.light-mode .trending-prev:hover,
body.light-mode .trending-next:hover {
    background: var(--light-accent);
    color: white;
}

/* ========== NEWSLETTER SECTION ========== */
.newsletter-section {
    padding: 5rem 0;
    background: var(--gradient-1);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.newsletter-text {
    flex: 1;
}

.newsletter-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-desc {
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

.newsletter-form {
    flex: 1;
    display: flex;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-full) 0 0 var(--radius-full);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark-primary);
    color: white;
    padding: 0 1.5rem;
    border: none;
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--dark-secondary);
}

/* Light Mode Newsletter Styles */
body.light-mode .submit-btn {
    background: var(--light-text);
    color: var(--dark-accent);
}

body.light-mode .submit-btn:hover {
    background: var(--light-primary);
}

/* ========== FOOTER ========== */
.main-footer {
    background: var(--dark-primary);
    padding: 5rem 0 0;
}

.footer-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
    color: var(--dark-accent);
}

.footer-logo .logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    color: var(--dark-text-secondary);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-secondary);
    color: var(--dark-text);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--dark-accent);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 3rem;
}

.links-column {
    flex: 1;
}

.links-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.links-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.links-column ul {
    list-style: none;
}

.links-column li {
    margin-bottom: 0.75rem;
}

.links-column a {
    color: var(--dark-text-secondary);
    transition: var(--transition);
}

.links-column a:hover {
    color: var(--dark-text);
    padding-left: 5px;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--dark-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--dark-text-secondary);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--dark-text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--dark-text);
}

/* Light Mode Footer Styles */
body.light-mode .main-footer {
    background: var(--light-secondary);
}

body.light-mode .footer-desc {
    color: var(--light-text-secondary);
}

body.light-mode .social-link {
    background: var(--light-primary);
    color: var(--light-text);
    box-shadow: var(--shadow-sm);
}

body.light-mode .social-link:hover {
    background: var(--light-accent);
    color: white;
}

body.light-mode .links-column a {
    color: var(--light-text-secondary);
}

body.light-mode .links-column a:hover {
    color: var(--light-text);
}

body.light-mode .footer-bottom {
    border-top: 1px solid var(--light-primary);
}

body.light-mode .copyright {
    color: var(--light-text-secondary);
}

body.light-mode .footer-legal a {
    color: var(--light-text-secondary);
}

body.light-mode .footer-legal a:hover {
    color: var(--light-text);
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ========== RESPONSIVE TASARIM ========== */
@media (max-width: 1200px) {
    .featured-content {
        flex-direction: column;
    }
    
    .featured-text {
        order: 1;
    }
    
    .featured-image {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .featured-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .links-column {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--dark-primary);
        padding: 6rem 2rem 2rem;
        transition: var(--transition);
        z-index: 100;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
    }
    
    .main-nav a:hover,
    .main-nav a.active {
        background: rgba(99, 102, 241, 0.1);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-excerpt {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .featured-title {
        font-size: 1.75rem;
    }
    
    .featured-actions {
        flex-direction: column;
    }
    
    .newsletter-title {
        font-size: 1.75rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--radius-full);
        margin-bottom: 0.5rem;
    }
    
    .submit-btn {
        border-radius: var(--radius-full);
        justify-content: center;
        padding: 0.75rem 1.5rem;
    }
    
    /* Light Mode Mobile Nav Styles */
    body.light-mode .main-nav {
        background: var(--light-primary);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    body.light-mode .main-nav a:hover,
    body.light-mode .main-nav a.active {
        background: rgba(37, 99, 235, 0.1);
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .trending-nav {
        align-self: flex-end;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        right: 1rem;
    }
}

/* ========== ANIMASYONLAR ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}