/* ============================================
   CLEANUPFIX.COM - ANA CSS
   Tüm sayfalar için ortak stiller
   ============================================ */

/* ============================================
   1. ROOT DEĞİŞKENLER
   ============================================ */
:root {
    --bg-primary: #0A0F1D;
    --bg-secondary: #111827;
    --bg-card: #1F2937;
    --bg-elevated: #374151;
    
    --text-primary: #F9FAFB;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    
    --accent-primary: #00D9A5;
    --accent-secondary: #3B82F6;
    --accent-gradient: linear-gradient(135deg, #00D9A5 0%, #00B892 50%, #3B82F6 100%);
    
    --border-color: #374151;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.4);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.5);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Light Theme */
[data-theme="light"] {
    --bg-primary: #F8FAFC;
    --bg-secondary: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-elevated: #F1F5F9;
    
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    
    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
}

/* ============================================
   2. BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background var(--transition-normal), color var(--transition-normal);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00B892;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Butonlar */
.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    display: inline-block;
    cursor: pointer;
}
.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.btn-outline {
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

/* ============================================
   3. NAVBAR
   ============================================ */
.navbar {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.9);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    flex-shrink: 0;
}
.nav-brand a {
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}
.nav-links li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}
.nav-links li a:hover {
    color: var(--accent-primary);
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width var(--transition-normal);
}
.nav-links li a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.desktop-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-elevated);
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}
.desktop-lang a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}
.desktop-lang a.active {
    color: var(--accent-primary);
}
.lang-sep {
    color: var(--text-muted);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-primary);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
    z-index: 999;
}
.mobile-menu.active {
    display: block;
}
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.mobile-nav-links li {
    margin-bottom: 15px;
}
.mobile-nav-links li a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 16px;
    display: block;
    padding: 8px 0;
}
.mobile-language-switcher {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}
.mobile-language-switcher a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
}
.mobile-language-switcher a.active {
    color: var(--accent-primary);
}

/* Theme Toggle */
.theme-toggle {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-secondary);
    font-size: 18px;
}
.theme-toggle:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    transform: rotate(15deg);
}
[data-theme="light"] .theme-toggle i.fa-moon::before {
    content: "\f185";
}

/* ============================================
   4. HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #0A0F1D 0%, #111827 50%, #1F2937 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0,217,165,0.1) 0%, transparent 50%);
}
.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 24px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ============================================
   5. FEATURES
   ============================================ */
.features {
    padding: 80px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section-header p {
    color: var(--text-secondary);
    font-size: 18px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}
.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-xl);
}
.feature-icon {
    font-size: 56px;
    margin-bottom: 24px;
}
.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}
.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.feature-list {
    list-style: none;
    text-align: left;
    margin: 24px 0;
}
.feature-list li {
    margin-bottom: 12px;
    color: var(--text-secondary);
}
.feature-list li i {
    color: var(--accent-primary);
    margin-right: 10px;
}
.feature-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

/* ============================================
   6. CONTENT GRID & POST CARDS
   ============================================ */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    margin: 60px 0;
}
.post-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}
.post-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
}
.post-content {
    padding: 28px;
}
.post-category {
    margin-bottom: 12px;
}
.cat-badge {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
}
.cat-pc {
    background: rgba(59,130,246,0.2);
    color: #60A5FA;
}
.cat-mobile {
    background: rgba(0,217,165,0.2);
    color: #00D9A5;
}
.post-title {
    font-size: 24px;
    margin-bottom: 12px;
}
.post-title a {
    text-decoration: none;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}
.post-title a:hover {
    color: var(--accent-primary);
}
.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 13px;
}
.post-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}
.read-more {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.read-more:hover {
    gap: 12px;
}

/* ============================================
   7. SIDEBAR
   ============================================ */
.sidebar-widget {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 32px;
    border: 1px solid var(--border-color);
}
.sidebar-widget h3 {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-primary);
    font-size: 18px;
}
.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
}
.download-btn.windows {
    background: #1E88E5;
    color: white;
}
.download-btn.android {
    background: #3DDC84;
    color: #0A0F1D;
}
.download-btn:hover {
    transform: translateY(-2px);
}
.popular-list {
    list-style: none;
}
.popular-list li {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}
.popular-list a {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popular-title {
    color: var(--text-primary);
    font-weight: 500;
}
.popular-views {
    color: var(--text-muted);
    font-size: 12px;
}
.pricing-widget .widget-content {
    text-align: center;
}
.price-tag {
    font-size: 32px;
    font-weight: bold;
    color: var(--accent-primary);
    margin: 15px 0;
}
.price-tag span {
    font-size: 14px;
    color: var(--text-muted);
}
.btn-upgrade {
    display: inline-block;
    background: var(--accent-primary);
    color: #0A0F1D;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-upgrade:hover {
    transform: translateY(-2px);
}

/* ============================================
   8. FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    margin-top: 80px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 40px;
}
.footer h3 {
    margin-bottom: 20px;
    font-size: 18px;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.footer-links a:hover {
    color: var(--accent-primary);
}
.social-icons {
    display: flex;
    gap: 16px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}
.social-icons a:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.badge {
    background: rgba(0,217,165,0.1);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--accent-primary);
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 24px;
    color: var(--text-muted);
}

/* ============================================
   9. SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--accent-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}
.scroll-top.show {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    transform: translateY(-5px);
}

/* ============================================
   10. ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.feature-card, .post-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   11. RESPONSIVE (MOBIL UYUMLULUK)
   ============================================ */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    .desktop-lang {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .mobile-menu {
        position: absolute;
    }
    .theme-toggle {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .hero {
        padding: 40px 0;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 16px;
        padding: 0 15px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .hero-buttons .btn {
        width: 80%;
        text-align: center;
    }
    
    .features {
        padding: 40px 0;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .section-header p {
        font-size: 14px;
        padding: 0 15px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    .feature-card {
        padding: 25px 20px;
    }
    .feature-card h3 {
        font-size: 22px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 30px 0;
        padding: 0 15px;
    }
    .post-card {
        margin-bottom: 20px;
    }
    .post-content {
        padding: 20px;
    }
    .post-title {
        font-size: 18px;
    }
    .post-meta {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 12px;
    }
    .post-excerpt {
        font-size: 14px;
    }
    
    .sidebar-widget {
        padding: 20px;
        margin-bottom: 20px;
    }
    .sidebar-widget h3 {
        font-size: 18px;
    }
    .download-btn {
        padding: 12px;
        font-size: 14px;
    }
    .price-tag {
        font-size: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .section-header h2 {
        font-size: 24px;
    }
    .feature-card h3 {
        font-size: 20px;
    }
    .post-title {
        font-size: 16px;
    }
    .price-tag {
        font-size: 22px;
    }
    .scroll-top {
        bottom: 20px;
        right: 20px;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
    .desktop-menu {
        display: flex;
    }
    .desktop-lang {
        display: flex;
    }
}

/* Butonların kesin tıklanabilir olması için */
.btn, .btn-primary, .btn-outline, .feature-link, .download-btn, .btn-upgrade, a {
    pointer-events: auto !important;
    cursor: pointer !important;
}