/* Mistik Fal - Dark Mystical Theme */
:root {
    --bg-dark: #0a0a12;
    --bg-card: #13131f;
    --bg-card-hover: #1a1a2a;
    --primary: #a855f7;
    --secondary: #ec4899;
    --accent: #fbbf24;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --border: #2a2a3d;
    --gradient: linear-gradient(135deg, #a855f7, #ec4899);
    --glow: 0 0 30px rgba(168, 85, 247, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Animated Background - Geliştirilmiş */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 40% 80%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
                linear-gradient(180deg, #0a0a12 0%, #1a1a2e 50%, #0a0a12 100%);
}

/* Mistik Circle Animasyonları */
.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: floatCircle 25s infinite ease-in-out;
}

.circle:nth-child(1) {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0.05) 50%, transparent 70%);
    animation: floatCircle 30s infinite ease-in-out, pulseGlow 8s infinite ease-in-out;
}

.circle:nth-child(2) {
    width: 400px;
    height: 400px;
    top: 40%;
    right: -100px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, rgba(236, 72, 153, 0.05) 50%, transparent 70%);
    animation: floatCircle 25s infinite ease-in-out reverse, pulseGlow 6s infinite ease-in-out 2s;
}

.circle:nth-child(3) {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: 25%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0.03) 50%, transparent 70%);
    animation: floatCircle 35s infinite ease-in-out, pulseGlow 10s infinite ease-in-out 1s;
}

.circle:nth-child(4) {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 15%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0.05) 50%, transparent 70%);
    animation: floatCircle 20s infinite ease-in-out 3s, pulseGlow 7s infinite ease-in-out;
}

.circle:nth-child(5) {
    width: 450px;
    height: 450px;
    bottom: 10%;
    right: 15%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.18) 0%, rgba(168, 85, 247, 0.05) 50%, transparent 70%);
    animation: floatCircle 28s infinite ease-in-out reverse, pulseGlow 9s infinite ease-in-out 4s;
}

/* Ekstra Mistik Orb'lar */
.circle:nth-child(6) {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 5%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 60%);
    animation: floatCircle 18s infinite ease-in-out 2s, pulseGlow 5s infinite ease-in-out;
}

.circle:nth-child(7) {
    width: 250px;
    height: 250px;
    top: 10%;
    right: 25%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 60%);
    animation: floatCircle 22s infinite ease-in-out reverse, pulseGlow 6s infinite ease-in-out 3s;
}

@keyframes floatCircle {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg); 
    }
    25% { 
        transform: translate(40px, -50px) scale(1.1) rotate(90deg); 
    }
    50% { 
        transform: translate(-30px, 30px) scale(0.95) rotate(180deg); 
    }
    75% { 
        transform: translate(50px, 40px) scale(1.05) rotate(270deg); 
    }
}

@keyframes pulseGlow {
    0%, 100% { 
        opacity: 0.6; 
        filter: blur(1px);
    }
    50% { 
        opacity: 1; 
        filter: blur(0px);
    }
}

/* Stars Animation - Geliştirilmiş */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: transparent;
    pointer-events: none;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite ease-in-out;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.star.small { width: 2px; height: 2px; }
.star.medium { width: 3px; height: 3px; }
.star.large { width: 4px; height: 4px; box-shadow: 0 0 10px rgba(255, 255, 255, 0.9); }

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Shooting Star */
.shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), transparent);
    animation: shoot 3s infinite ease-out;
    opacity: 0;
}

@keyframes shoot {
    0% { transform: translateX(0) translateY(0); opacity: 1; }
    100% { transform: translateX(300px) translateY(300px); opacity: 0; }
}

/* Navbar - Geliştirilmiş */
.navbar {
    background: rgba(10, 10, 18, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(42, 42, 61, 0.5);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 18, 0.98) !important;
    padding: 0.75rem 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    margin-right: 0.5rem;
    animation: moonGlow 3s infinite ease-in-out;
}

@keyframes moonGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(168, 85, 247, 0.5)); }
    50% { filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.8)); }
}

.navbar-nav .nav-link {
    color: var(--text) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s;
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link i {
    transition: transform 0.3s;
}

.navbar-nav .nav-link:hover i {
    transform: scale(1.2);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after { width: 80%; }
.navbar-nav .nav-link:hover { color: var(--primary) !important; }

.navbar-toggler {
    border: 1px solid var(--border);
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    transition: all 0.3s;
}

.navbar-toggler:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--primary);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

/* Main Content */
.main-content {
    padding-top: 80px;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 4rem 0;
}

.hero-content { position: relative; z-index: 2; }

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 60px rgba(168, 85, 247, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(236, 72, 153, 0.8)); }
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

@media (max-width: 768px) {
    .scroll-indicator { display: none; }
}

/* Cards - Geliştirilmiş */
.card {
    background: rgba(19, 19, 31, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2), 0 0 60px rgba(168, 85, 247, 0.1);
}

.card:hover::before {
    opacity: 1;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.card:hover .card-img-top { transform: scale(1.1); }

.card-body { 
    padding: 1.5rem; 
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn-primary {
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--gradient);
    border-color: transparent;
    color: white;
}

/* Category Icons */
.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 2px solid var(--border);
    border-radius: 50%;
    transition: all 0.3s;
}

.card:hover .category-icon {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

.category-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.category-description {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Category Hover Card */
.category-hover-card {
    position: relative;
    overflow: hidden;
}

.category-hover-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    pointer-events: none;
}

.category-hover-card:hover::before {
    width: 300px;
    height: 300px;
}

/* Post Cards - Geliştirilmiş */
.post-card { 
    position: relative; 
    background: rgba(19, 19, 31, 0.95);
}

.post-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, transparent 40%, var(--primary) 50%, var(--secondary) 60%, transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.post-card:hover::after {
    opacity: 1;
}

.post-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-meta i { color: var(--primary); margin-right: 5px; }

.post-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
    background: linear-gradient(135deg, var(--text), var(--text));
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.3s, color 0.3s;
}

.post-title a:hover { 
    color: var(--primary); 
    background-size: 100% 2px;
}

.post-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Stats Section - Geliştirilmiş */
.stats-section {
    background: linear-gradient(135deg, rgba(19, 19, 31, 0.95), rgba(26, 26, 46, 0.95));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* WhatsApp Button - Geliştirilmiş */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    animation: whatsapp-pulse 2s infinite;
    transition: all 0.3s;
}

.whatsapp-float a:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float a::before {
    content: 'WhatsApp ile yazın';
    position: absolute;
    right: 70px;
    background: white;
    color: #128c7e;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.whatsapp-float a:hover::before {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float a::before {
        display: none;
    }
}

/* Footer - Geliştirilmiş */
footer {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(10, 10, 18, 0.98) 100%);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient);
}

footer h5 {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

footer p, footer a { 
    color: var(--text-muted); 
    transition: color 0.3s;
}

footer a:hover { 
    color: var(--primary); 
    text-decoration: none;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.1);
    color: var(--text-muted);
    transition: all 0.3s;
    margin-right: 0.5rem;
}

footer .social-links a:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
}

footer hr {
    border-color: var(--border);
    margin: 2rem 0;
}

footer .copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Forms */
.form-control, .form-select {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 12px;
    padding: 14px 18px;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    background: var(--bg-dark);
    border-color: var(--primary);
    color: var(--text);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.form-label {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Alerts */
.alert {
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
}

.alert-success { background: rgba(34, 197, 94, 0.15); color: #22c55e; border-left: 4px solid #22c55e; }
.alert-danger { background: rgba(239, 68, 68, 0.15); color: #ef4444; border-left: 4px solid #ef4444; }

/* Breadcrumb */
.breadcrumb {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border);
}

.breadcrumb-item a { color: var(--primary); text-decoration: none; }
.breadcrumb-item.active { color: var(--text-muted); }

/* Text Gradient */
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glow Effect */
.glow-text {
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* CTA Section - Geliştirilmiş */
.cta-section {
    background: var(--gradient);
    padding: 5rem 0;
    text-align: center;
    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.15) 0%, transparent 60%);
    animation: rotateCTA 25s linear infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

@keyframes rotateCTA {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta-section p {
    font-size: 1.1rem;
}

.cta-section .btn-light {
    background: white;
    color: var(--primary);
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .cta-section h2 { font-size: 1.75rem; }
    .cta-section p { font-size: 1rem; }
    .cta-section { padding: 3rem 0; }
}

/* Responsive - Geliştirilmiş */
@media (max-width: 1200px) {
    .hero-title { font-size: 3rem; }
    .section-title h2 { font-size: 2.2rem; }
}

@media (max-width: 992px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .section-title h2 { font-size: 2rem; }
    
    .circle:nth-child(1) { width: 350px; height: 350px; }
    .circle:nth-child(2) { width: 280px; height: 280px; }
    .circle:nth-child(3) { width: 400px; height: 400px; }
    .circle:nth-child(6), .circle:nth-child(7) { display: none; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .hero-icon { font-size: 3.5rem; }
    .hero-section { min-height: 70vh; padding: 3rem 0; }
    .stat-number { font-size: 2rem; }
    .section-title h2 { font-size: 1.8rem; }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .navbar-brand { font-size: 1.2rem; }
    
    .card { 
        margin-bottom: 1.5rem; 
        border-radius: 16px;
    }
    
    .btn-primary, .btn-outline-primary {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .circle:nth-child(1) { width: 250px; height: 250px; top: -80px; left: -80px; }
    .circle:nth-child(2) { width: 200px; height: 200px; }
    .circle:nth-child(3) { width: 300px; height: 300px; }
    .circle:nth-child(4), .circle:nth-child(5) { width: 180px; height: 180px; }
    
    .post-title { font-size: 1.1rem; }
    .post-excerpt { font-size: 0.9rem; }
    
    .stats-section { padding: 3rem 0; }
    .cta-section { padding: 3rem 0; }
    
    footer { padding: 2rem 0 1rem; margin-top: 2rem; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 1.75rem; }
    .hero-subtitle { font-size: 1rem; padding: 0 1rem; }
    .hero-icon { font-size: 3rem; }
    .container { padding: 0 15px; }
    
    .section-title h2 { font-size: 1.5rem; }
    .section-title p { font-size: 0.95rem; }
    
    .card-body { padding: 1rem; }
    
    .category-icon { width: 60px; height: 60px; font-size: 2rem; }
    .category-title { font-size: 1rem; }
    
    .stat-number { font-size: 1.75rem; }
    .stat-label { font-size: 0.8rem; }
    
    .btn-lg { padding: 10px 20px; font-size: 0.9rem; }
    
    .circle:nth-child(1) { width: 180px; height: 180px; }
    .circle:nth-child(2) { width: 150px; height: 150px; }
    .circle:nth-child(3) { width: 200px; height: 200px; }
    .circle:nth-child(4), .circle:nth-child(5) { display: none; }
    
    .d-flex.flex-wrap.gap-3 { gap: 0.75rem !important; }
    .d-flex.flex-wrap.gap-3 .btn { width: 100%; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--secondary); }

/* Selection */
::selection {
    background: var(--primary);
    color: white;
}

/* ==========================================
   GENEL YAZI STİLLERİ - TÜM SAYFALAR İÇİN
   ========================================== */

/* Tüm başlıklar */
h1, h2, h3, h4, h5, h6 {
    color: var(--text);
}

/* Paragraflar */
p {
    color: var(--text-muted);
}

/* Linkler */
a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--secondary);
}

/* Listeler */
ul, ol {
    color: var(--text-muted);
}

li {
    color: var(--text-muted);
}

/* Küçük yazılar */
small {
    color: var(--text-muted);
}

/* Kod blokları */
code {
    background: rgba(168, 85, 247, 0.1);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Card içindeki yazılar */
.card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
    color: var(--text);
}

.card p {
    color: var(--text-muted);
}

.card-title {
    color: var(--text) !important;
}

.card-text {
    color: var(--text-muted) !important;
}

/* Bootstrap text sınıfları override */
.text-dark {
    color: var(--text) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-body {
    color: var(--text) !important;
}

/* Lead paragraf */
.lead {
    color: var(--text-muted);
    font-size: 1.15rem;
}

/* Sayfa başlıkları */
.page-title {
    color: var(--text);
    font-weight: 700;
}

/* İçerik alanları */
.content, .post-content, article {
    color: var(--text);
}

.content p, .post-content p, article p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Tablo yazıları */
table {
    color: var(--text);
}

th {
    color: var(--text);
}

td {
    color: var(--text-muted);
}

/* Form etiketleri */
label {
    color: var(--text);
}

/* Placeholder */
::placeholder {
    color: var(--text-muted) !important;
    opacity: 0.7;
}

/* Blockquote */
blockquote {
    color: var(--text-muted);
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
    font-style: italic;
}

/* Badge'ler için metin */
.badge {
    font-weight: 600;
}

/* Sayfa içi bölümler */
section h2, section h3 {
    color: var(--text);
}

section p {
    color: var(--text-muted);
}

/* Kategori ve yazı kartları için özel stiller */
.category-card .card-title,
.post-card .card-title {
    color: var(--text) !important;
}

.category-card .card-text,
.post-card .card-text {
    color: var(--text-muted) !important;
}

/* Açıklama metinleri */
.description, .excerpt, .summary {
    color: var(--text-muted);
}

/* İstatistik yazıları */
.stat-text, .stats-text {
    color: var(--text-muted);
}

/* Bilgi kutuları */
.info-box, .info-card {
    color: var(--text);
}

.info-box p, .info-card p {
    color: var(--text-muted);
}

/* Özellik listeleri */
.feature-title {
    color: var(--text);
}

.feature-description {
    color: var(--text-muted);
}

/* Yorum alanları */
.comment-text {
    color: var(--text-muted);
}

.comment-author {
    color: var(--text);
}

/* Sidebar yazıları */
.sidebar h5, .sidebar h6 {
    color: var(--text);
}

.sidebar p, .sidebar li {
    color: var(--text-muted);
}

/* Popüler/İlgili yazı başlıkları */
.related-title, .popular-title {
    color: var(--text);
}

/* Tarih ve meta bilgiler */
.date, .meta, .post-date {
    color: var(--text-muted);
}

/* Etiketler */
.tag, .tags a {
    color: var(--text-muted);
    background: rgba(168, 85, 247, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.tag:hover, .tags a:hover {
    color: white;
    background: var(--primary);
}

/* Fade In Animation */
.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glow Border Animation */
.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.glow-border:hover::before {
    opacity: 1;
    animation: borderGlow 2s infinite;
}

@keyframes borderGlow {
    0%, 100% { filter: blur(4px); }
    50% { filter: blur(8px); }
}

/* Floating Animation */
.float-animation {
    animation: floatElement 3s ease-in-out infinite;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mystical Glow Text */
.mystical-text {
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5),
                 0 0 20px rgba(168, 85, 247, 0.3),
                 0 0 30px rgba(168, 85, 247, 0.2);
}

/* Card Image Overlay */
.card-img-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 10, 18, 0.9), transparent);
    pointer-events: none;
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Pulse Animation for Icons */
.pulse-icon {
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Gradient Border */
.gradient-border {
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                var(--gradient) border-box;
}

/* Mobile Menu Improvements */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 10, 18, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 16px;
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid var(--border);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 10px;
        margin-bottom: 0.25rem;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(168, 85, 247, 0.1);
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .card:hover {
        transform: none;
    }
    
    .btn-primary:hover {
        transform: none;
    }
    
    .post-card:hover::after {
        opacity: 0;
    }
}

/* Print Styles */
@media print {
    .animated-bg, .stars, .whatsapp-float, .navbar {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .card {
        border: 1px solid #ccc;
        box-shadow: none;
    }
}


/* ==========================================
   EK MOBİL UYUMLULUK VE SEO İYİLEŞTİRMELERİ
   ========================================== */

/* Touch-friendly elements */
@media (hover: none) and (pointer: coarse) {
    .btn, .nav-link, a {
        min-height: 44px;
        min-width: 44px;
    }
    
    .btn {
        padding: 14px 28px;
    }
    
    .nav-link {
        padding: 12px 16px !important;
    }
}

/* Mobil navbar düzeltmeleri */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 10, 18, 0.98);
        border-radius: 16px;
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid var(--border);
        backdrop-filter: blur(20px);
    }
    
    .navbar-nav .nav-link {
        padding: 12px 16px !important;
        border-radius: 10px;
        margin-bottom: 4px;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(168, 85, 247, 0.1);
    }
}

/* Mobil hero düzeltmeleri */
@media (max-width: 576px) {
    .hero-section {
        min-height: auto;
        padding: 2rem 0 3rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .d-flex.flex-wrap.gap-3 {
        flex-direction: column;
        gap: 0.75rem !important;
    }
    
    .d-flex.flex-wrap.gap-3 .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobil kartlar */
@media (max-width: 768px) {
    .card {
        margin-bottom: 1rem;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .post-card .card-img-top {
        height: 180px;
    }
}

/* Mobil footer */
@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    
    footer .col-lg-4 {
        margin-bottom: 2rem;
    }
    
    footer .social-links {
        justify-content: center;
        display: flex;
    }
    
    footer ul {
        padding-left: 0;
    }
}

/* Mobil form elemanları */
@media (max-width: 576px) {
    .form-control, .form-select {
        font-size: 16px; /* iOS zoom engellemek için */
        padding: 12px 16px;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
}

/* Mobil WhatsApp butonu */
@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

/* Mobil istatistikler */
@media (max-width: 576px) {
    .stats-section {
        padding: 2rem 0;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Mobil CTA */
@media (max-width: 576px) {
    .cta-section {
        padding: 2.5rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.4rem;
    }
    
    .cta-section p {
        font-size: 0.9rem;
    }
    
    .cta-section .btn {
        width: 100%;
    }
}

/* Mobil breadcrumb */
@media (max-width: 576px) {
    .breadcrumb {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 0.3rem;
    }
}

/* Mobil section başlıkları */
@media (max-width: 576px) {
    .section-title {
        margin-bottom: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
    }
    
    .section-title p {
        font-size: 0.9rem;
    }
}

/* Landscape mobil düzeltmeleri */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 1.5rem 0;
    }
    
    .hero-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

/* Tablet düzeltmeleri */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

/* Print styles */
@media print {
    .animated-bg, .stars, .whatsapp-float, .navbar, footer {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .card {
        border: 1px solid #ccc !important;
        background: white !important;
    }
}

/* Accessibility - Focus states */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .circle, .star, .shooting-star {
        display: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --bg-dark: #000;
        --bg-card: #111;
        --text: #fff;
        --text-muted: #ccc;
        --border: #444;
    }
}

/* Dark mode (already dark, but for consistency) */
@media (prefers-color-scheme: dark) {
    /* Site zaten dark theme, değişiklik gerekmez */
}
