/* Theme Name: Keyif Sohbet Teması
Theme URI: www.QBilisim.com
Author: QBilisim
Author URI: Geliştirici Web Sayfası
Description: Qbilisim.com tema "Keyif" serisi.
Version: v1 */



* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #0e00ff;
	--secondary: #ec4848;
	--tertiary: #ff9800;
	--accent: #facc15;
	--bg-light: #ffffff;
	--bg-secondary: #f8f9fa;
	--text-dark: #1a1a1a;
	--text-gray: #6c757d;
}

/* ... mevcut kodunuzun başlangıcı ... */

:root {
	/* ... mevcut renk değişkenleriniz ... */
	--primary: #0e00ff;
	/* ... diğer değişkenler ... */

	/* FLUID TIPOGRAFI SON DÜZENLEME (Bu kısımları aynen bırakabilirsiniz) */
	--fluid-heading-lg: clamp(2.2rem, 3vw + 1rem, 3.8rem); 
	/* ... diğer fluid değişkenler ... */
}

body {
	font-family: 'Inter', sans-serif;
	background: var(--bg-light);
	color: var(--text-dark);
	overflow-x: hidden;
    
    /* GEREKLİ YENİ SIFIRLAMA VE KÜÇÜLTME STILLERİ */
    position: absolute; /* Vücudu akıştan çıkarır */
    top: 0; 
    left: 0; 
    width: 125%;   /* 1/0.8 = 1.25 -> Küçültme sonrası boşluğu kapatmak için genişletme */
    height: 125%;  /* Yüksekliği de genişletme */
    min-height: 100vh; /* min-height değerini koruma */
    
    transform-origin: top left; /* Küçültme merkezini sol üst köşe yapar */
    transform: scale(0.8); /* İstenen küçültme efekti */
}
@media (min-width: 1400px) {
    body {
        position: static; /* body'yi normal akışına döndürür */
        width: 100%;      /* Genişletmeyi iptal eder */
        height: auto;     /* Yüksekliği otomatik hale getirir */
        transform-origin: initial;
        transform: none; /* Küçültme efektini tamamen kaldırır */
    }
    
    /* Navigasyon için bir düzeltme gerekiyorsa: */
    nav {
        transform: translateX(-50%); /* Navigasyonu ortalamayı geri yükler (scale kaldırıldığı için) */
        /* Ek küçültme transform'u varsa (örn: transform: translateX(-50%) scale(0.8);) */
        /* buraya transform: translateX(-50%); olarak eklenmelidir. */
    }
}
/* ... mevcut kodunuzun devamı ... */

/* Animated Light Background */
.bg-gradient {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
	radial-gradient(circle at 20% 30%, rgba(14, 0, 255, 0.05) 0%, transparent 50%),
	radial-gradient(circle at 80% 70%, rgba(236, 72, 72, 0.05) 0%, transparent 50%),
	radial-gradient(circle at 40% 80%, rgba(255, 152, 0, 0.04) 0%, transparent 50%);
	z-index: -2;
	animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.7; }
}

.grid-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
	linear-gradient(rgba(14, 0, 255, 0.02) 1px, transparent 1px),
	linear-gradient(90deg, rgba(14, 0, 255, 0.02) 1px, transparent 1px);
	background-size: 60px 60px;
	z-index: -1;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 95%;
	max-width: 1400px;
	z-index: 1000;
	padding: 1.5rem 0;
}

.nav-container {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(14, 0, 255, 0.08);
	border-radius: 100px;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 10px 40px rgba(14, 0, 255, 0.08);
}

.logo {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--tertiary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -1px;
	position: relative;
	z-index: 10;
}

.nav-links {
	display: flex;
	gap: 0.5rem;
	list-style: none;
}

.nav-links a {
	color: var(--text-gray);
	text-decoration: none;
	padding: 0.8rem 1.5rem;
	border-radius: 50px;
	font-weight: 500;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
	color: var(--text-dark);
	background: rgba(14, 0, 255, 0.05);
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.nav-cta {
	background: linear-gradient(135deg, var(--tertiary), var(--secondary));
	color: var(--bg-light);
	padding: 0.8rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
}

.nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 10;
	position: relative;
}

.mobile-menu-btn span {
	width: 28px;
	height: 3px;
	background: linear-gradient(135deg, var(--tertiary), var(--accent));
	border-radius: 3px;
	transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
	display: none;
	position: fixed;
	top: 90px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 400px;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(30px);
	border: 1px solid rgba(14, 0, 255, 0.1);
	border-radius: 25px;
	padding: 1.5rem;
	box-shadow: 0 20px 60px rgba(14, 0, 255, 0.15);
	z-index: 999;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
	opacity: 1;
	pointer-events: all;
	top: 100px;
}

.mobile-menu-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.mobile-menu-links a {
	display: block;
	color: var(--text-dark);
	text-decoration: none;
	padding: 1rem 1.5rem;
	border-radius: 15px;
	font-weight: 600;
	transition: all 0.3s;
	background: rgba(14, 0, 255, 0.02);
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
	background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(250, 204, 21, 0.1));
	transform: translateX(5px);
}

.mobile-menu-cta {
	display: block;
	text-align: center;
	background: linear-gradient(135deg, var(--tertiary), var(--secondary));
	color: var(--bg-light);
	padding: 1rem 2rem;
	border-radius: 15px;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s;
	box-shadow: 0 5px 20px rgba(255, 152, 0, 0.2);
}

.mobile-menu-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8rem 2rem 4rem;
	position: relative;
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%);
}

.hero-content {
	max-width: 1400px;
	width: 100%;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-text .baslik {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(3rem, 8vw, 4rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -2px;
	color: var(--text-dark);
}

.gradient-text {
	background: linear-gradient(135deg, var(--tertiary), var(--accent), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradientFlow 5s ease infinite;
	background-size: 200% 200%;
}

@keyframes gradientFlow {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.hero-text p {
	font-size: 1.3rem;
	line-height: 1.8;
	color: var(--text-gray);
	margin-bottom: 3rem;
	max-width: 600px;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
	padding: 1.2rem 3rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: linear-gradient(135deg, var(--tertiary), var(--accent));
	color: var(--text-dark);
	border: none;
	box-shadow: 0 10px 30px rgba(255, 152, 0, 0.2);
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255, 152, 0, 0.3);
}

.btn-secondary {
	background: var(--bg-light);
	color: var(--text-dark);
	border: 2px solid rgba(14, 0, 255, 0.15);
}

.btn-secondary:hover {
	background: rgba(14, 0, 255, 0.03);
	border-color: rgba(14, 0, 255, 0.3);
	transform: translateY(-3px);
}

/* Chat Box Card */
.chat-card {
	background: var(--bg-light);
	border: 1px solid rgba(14, 0, 255, 0.1);
	border-radius: 30px;
	padding: 3rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(14, 0, 255, 0.08);
}

.chat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--secondary), var(--tertiary));
	background-size: 200% 100%;
	animation: borderFlow 3s linear infinite;
}

.chat-decoration {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 1;
}

.chat-bubbles {
	opacity: 0.6;
}

.chat-stars {
	opacity: 0.5;
}

.chat-sparkles {
	opacity: 0.7;
}

@keyframes borderFlow {
	0% { background-position: 0% 0%; }
	100% { background-position: 200% 0%; }
}

.chat-header {
	text-align: center;
	margin-bottom: 2.5rem;
	position: relative;
	z-index: 2;
}

.chat-header .gbaslik {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 2rem;
	margin-bottom: 0.5rem;
	font-weight: 800;
	color: var(--text-dark);
}

.chat-header p {
	color: var(--text-gray);
	font-size: 0.95rem;
}

.input-group {
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 2;
}

.input-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--text-dark);
}

.input-group input {
	width: 100%;
	padding: 1rem 1.5rem;
	background: var(--bg-secondary);
	border: 1px solid rgba(14, 0, 255, 0.1);
	border-radius: 15px;
	color: var(--text-dark);
	font-size: 1rem;
	transition: all 0.3s;
}

.input-group input:focus {
	outline: none;
	background: var(--bg-light);
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(14, 0, 255, 0.08);
}

.input-group input::placeholder {
	color: var(--text-gray);
}

.chat-submit {
	width: 100%;
	padding: 1.2rem;
	background: linear-gradient(135deg, var(--secondary), var(--tertiary));
	border: none;
	border-radius: 15px;
	color: var(--bg-light);
	font-weight: 700;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.3s;
	margin-top: 1rem;
}

.chat-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(236, 72, 72, 0.3);
}

.divider {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 2rem 0;
}

.divider span {
	color: var(--text-gray);
	font-size: 0.9rem;
}

.divider::before,
.divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(14, 0, 255, 0.1);
}

.social-login {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.social-btn {
	padding: 0.9rem;
	background: var(--bg-light);
	border: 1px solid rgba(14, 0, 255, 0.1);
	border-radius: 12px;
	color: var(--text-dark);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	text-decoration: none;
}

.social-btn:hover {
	background: var(--bg-secondary);
	border-color: rgba(14, 0, 255, 0.2);
	transform: translateY(-2px);
}

/* Stats Section */
.stats {
	padding: 6rem 2rem;
	max-width: 1400px;
	margin: 0 auto;
	background: var(--bg-light);
}

.stats-header {
	text-align: center;
	margin-bottom: 4rem;
}

.stats-header .baslik {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 900;
	margin-bottom: 1rem;
	letter-spacing: -1px;
	color: var(--text-dark);
}

.stats-header p {
	color: var(--text-gray);
	font-size: 1.2rem;
	max-width: 600px;
	margin: 0 auto;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.stat-card {
	background: var(--bg-light);
	border: 1px solid rgba(14, 0, 255, 0.08);
	border-radius: 25px;
	padding: 2.5rem;
	transition: all 0.4s;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(14, 0, 255, 0.03), rgba(236, 72, 72, 0.03));
	opacity: 0;
	transition: opacity 0.4s;
}

.stat-card:hover::before {
	opacity: 1;
}

.stat-card:hover {
	transform: translateY(-10px);
	border-color: rgba(14, 0, 255, 0.15);
	box-shadow: 0 20px 60px rgba(14, 0, 255, 0.1);
}

.stat-icon-wrapper {
	position: relative;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.stat-icon {
	font-size: 3rem;
	position: relative;
	z-index: 2;
	animation: float 3s ease-in-out infinite;
}

.stat-glow {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(14, 0, 255, 0.1), rgba(236, 72, 72, 0.1));
	border-radius: 20px;
	filter: blur(10px);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

@keyframes pulse {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.1); }
}

.stat-card:nth-child(2) .stat-icon { animation-delay: 0.5s; }
.stat-card:nth-child(3) .stat-icon { animation-delay: 1s; }
.stat-card:nth-child(4) .stat-icon { animation-delay: 1.5s; }

.stat-content {
	position: relative;
	z-index: 1;
}

.stat-number {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 2.5rem;
	font-weight: 900;
	background: linear-gradient(135deg, var(--tertiary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.stat-label {
	color: var(--text-dark);
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.stat-trend {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-gray);
	font-size: 0.9rem;
}

.trend-icon {
	font-size: 1rem;
}

.trend-text {
	font-weight: 500;
}

/* Features Section */
.features {
	padding: 6rem 2rem;
	max-width: 1400px;
	margin: 0 auto;
	background: var(--bg-secondary);
}

.section-title {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title .baslik {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	margin-bottom: 1rem;
	letter-spacing: -1px;
	color: var(--text-dark);
}

.section-title p {
	color: var(--text-gray);
	font-size: 1.2rem;
	max-width: 600px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
}

.feature-card {
	background: var(--bg-light);
	border: 1px solid rgba(14, 0, 255, 0.08);
	border-radius: 25px;
	padding: 2.5rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.feature-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at top right, rgba(14, 0, 255, 0.03), transparent);
	opacity: 0;
	transition: opacity 0.4s;
}

.feature-card:hover::after {
	opacity: 1;
}

.feature-card:hover {
	transform: translateY(-10px);
	border-color: rgba(14, 0, 255, 0.15);
	box-shadow: 0 20px 60px rgba(14, 0, 255, 0.1);
}

.feature-number {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 3rem;
	font-weight: 900;
	color: rgba(14, 0, 255, 0.05);
	z-index: 0;
}

.feature-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, rgba(14, 0, 255, 0.1), rgba(236, 72, 72, 0.1));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
	color: var(--primary);
}

.feature-icon svg {
	width: 32px;
	height: 32px;
}

.feature-card .kbaslik {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
	position: relative;
	z-index: 1;
	color: var(--text-dark);
}

.feature-card p {
	color: var(--text-gray);
	line-height: 1.7;
	position: relative;
	z-index: 1;
	margin-bottom: 1.5rem;
}

.feature-list {
	list-style: none;
	padding: 0;
	position: relative;
	z-index: 1;
}

.feature-list li {
	color: var(--text-gray);
	padding: 0.5rem 0;
	font-size: 0.95rem;
}

.feature-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	position: relative;
	z-index: 1;
}

.mini-stat {
	background: rgba(14, 0, 255, 0.05);
	padding: 1rem;
	border-radius: 12px;
	text-align: center;
}

.mini-stat-value {
	display: block;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.3rem;
}

.mini-stat-label {
	font-size: 0.85rem;
	color: var(--text-gray);
}

.feature-icons-grid {
	display: flex;
	gap: 1rem;
	position: relative;
	z-index: 1;
}

.feature-mini-icon {
	width: 50px;
	height: 50px;
	background: rgba(14, 0, 255, 0.05);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.platform-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	position: relative;
	z-index: 1;
}

.badge {
	background: rgba(14, 0, 255, 0.05);
	color: var(--text-dark);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
}

.feature-highlight {
	position: relative;
	z-index: 1;
}

.highlight-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: var(--bg-light);
	padding: 0.7rem 1.5rem;
	border-radius: 50px;
	font-size: 0.95rem;
	font-weight: 700;
}

.ai-features {
	display: flex;
	gap: 0.8rem;
	position: relative;
	z-index: 1;
}

.ai-badge {
	background: rgba(14, 0, 255, 0.05);
	color: var(--text-dark);
	padding: 0.6rem 1.2rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
}

.features-cta {
	text-align: center;
	margin-top: 4rem;
	padding: 3rem;
	background: var(--bg-light);
	border-radius: 25px;
	border: 1px solid rgba(14, 0, 255, 0.08);
}

.features-cta p {
	color: var(--text-dark);
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.cta-button {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: var(--bg-light);
	padding: 1rem 2.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s;
	box-shadow: 0 10px 30px rgba(14, 0, 255, 0.2);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(14, 0, 255, 0.3);
}

/* Blog Section */
.blog {
	padding: 6rem 2rem;
	max-width: 1400px;
	margin: 0 auto;
	background: var(--bg-light);
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.blog-card {
	background: var(--bg-light);
	border: 1px solid rgba(14, 0, 255, 0.08);
	border-radius: 25px;
	overflow: hidden;
	transition: all 0.4s;
	cursor: pointer;
}

.blog-card:hover {
	transform: translateY(-10px);
	border-color: rgba(14, 0, 255, 0.15);
	box-shadow: 0 20px 60px rgba(14, 0, 255, 0.1);
}

.blog-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
	position: relative;
}

.blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s;
}

.blog-card:hover .blog-image img {
	transform: scale(1.1);
}

.blog-category {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: linear-gradient(135deg, var(--accent), var(--tertiary));
	color: var(--text-dark);
	padding: 0.4rem 1rem;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 600;
}

.blog-content {
	padding: 2rem;
}

.blog-meta {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1rem;
	font-size: 0.85rem;
	color: var(--text-gray);
}

.blog-content .altbaslik {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
	color: var(--text-dark);
}

.blog-content p {
	color: var(--text-gray);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.read-more {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s;
}

.read-more:hover {
	gap: 1rem;
	color: var(--secondary);
}

.pageler {
	margin-top: 20px;
	padding: 17px;
	background: linear-gradient(135deg, var(--tertiary), var(--secondary));
	border-radius: 10px;
}
.pageler .page-numbers {
	background: #101d25;
	padding: 5px;
	border-radius: 5px;
	color: #f7f9fa;
	text-decoration: none;
}
.pageler .page-numbers:hover {
	background: #f7f9fa;
	color: #101d25;
}
.pageler .current {
	background: #101d25;
	color: #ff751f;
}
.yorum{
	color: #100F0D;
	padding: 10px;
	border-radius: 10px;
	margin-top: 10px;
}
.yorum a{
	color: #C1FF72;
}
.yorum li{
	margin-bottom: 10px;
	padding: 10px;
	border: 1px solid #2F748E;
	list-style-type: none;
	border-radius: 5px
}
.yorum textarea{
	width: 100%;
	height: 100px;
	border-radius: 5px
}
.yorum input[type=text]{
	width: 100%;
	border-radius: 5px;
	background: #F3F5F9;
	border: none;
}
.yorum input[type=submit]{
	background: #101d25;
	color: #f7f9fa;
	border-radius: 10px;
	text-align: center;
	padding: 10px;
	border: none;
}
.yorum input[type=submit]:hover {
	background: #81cdb7;
	color: #2B3465;
}
.yorum .comment-form-url{
	display: none
}
/* Article Section */
.article-section {
	padding: 6rem 2rem;
	background: var(--bg-secondary);
}

.article-container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 3rem;
}

.article-main {
	background: var(--bg-light);
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(14, 0, 255, 0.05);
}

.article-content {
	padding: 3rem;
}

.article-header {
	margin-bottom: 2.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(14, 0, 255, 0.08);
}

.article-category {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: var(--bg-light);
	padding: 0.5rem 1.2rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.article-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	color: var(--text-dark);
	line-height: 1.2;
	margin-bottom: 1.5rem;
	letter-spacing: -1px;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	color: var(--text-gray);
	font-size: 0.95rem;
}

.meta-item {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.article-body {
	margin-bottom: 2.5rem;
}

.article-subtitle {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--text-dark);
	margin: 2rem 0 1.2rem;
}

.article-body p {
	color: var(--text-gray);
	line-height: 1.9;
	font-size: 1.05rem;
	margin-bottom: 1.5rem;
	text-align: justify;
}

.article-footer {
	padding-top: 2rem;
	border-top: 1px solid rgba(14, 0, 255, 0.08);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.article-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.tag {
	background: rgba(14, 0, 255, 0.05);
	color: var(--primary);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	transition: all 0.3s;
}

.tag:hover {
	background: rgba(14, 0, 255, 0.1);
	transform: translateY(-2px);
}

.article-share {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.share-text {
	color: var(--text-gray);
	font-weight: 600;
}

.share-btn {
	width: 40px;
	height: 40px;
	background: rgba(14, 0, 255, 0.05);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 1.2rem;
	transition: all 0.3s;
}

.share-btn:hover {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(14, 0, 255, 0.2);
}

/* Article Sidebar */
.article-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.sidebar-widget {
	background: var(--bg-light);
	border: 1px solid rgba(14, 0, 255, 0.08);
	border-radius: 25px;
	padding: 2rem;
	transition: all 0.3s;
}

.sidebar-widget:hover {
	box-shadow: 0 10px 30px rgba(14, 0, 255, 0.08);
	transform: translateY(-5px);
}

.widget-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
}

.rules-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.rule-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.rule-number {
	min-width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: var(--bg-light);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.rule-content h4 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 0.3rem;
}

.rule-content p {
	color: var(--text-gray);
	font-size: 0.9rem;
	line-height: 1.6;
}

.tips-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.tip-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: rgba(14, 0, 255, 0.03);
	border-radius: 12px;
	transition: all 0.3s;
}

.tip-item:hover {
	background: rgba(14, 0, 255, 0.06);
	transform: translateX(5px);
}

.tip-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
}

.tip-item p {
	color: var(--text-dark);
	font-size: 0.9rem;
	font-weight: 500;
	margin: 0;
}

.widget-cta {
	background: linear-gradient(135deg, rgba(14, 0, 255, 0.05), rgba(236, 72, 72, 0.05));
	text-align: center;
}

.widget-cta p {
	color: var(--text-gray);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.widget-button {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: var(--bg-light);
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s;
	box-shadow: 0 5px 20px rgba(14, 0, 255, 0.2);
}

.widget-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(14, 0, 255, 0.3);
}

/* Footer */
footer {
	background: var(--bg-secondary);
	border-top: 1px solid rgba(14, 0, 255, 0.08);
	padding: 4rem 2rem 2rem;
	margin-top: 6rem;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-brand h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 2rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, var(--primary), var(--secondary), var(--tertiary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-brand p {
	color: var(--text-gray);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-link {
	width: 45px;
	height: 45px;
	background: var(--bg-light);
	border: 1px solid rgba(14, 0, 255, 0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 1.2rem;
	transition: all 0.3s;
}

.social-link:hover {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	border-color: transparent;
	transform: translateY(-3px);
	box-shadow: 0 5px 20px rgba(14, 0, 255, 0.2);
}

.footer-section h4 {
	font-family: 'Space Grotesk', sans-serif;
	margin-bottom: 1.5rem;
	font-weight: 700;
	color: var(--text-dark);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: var(--text-gray);
	text-decoration: none;
	transition: all 0.3s;
	display: inline-block;
}

.footer-links a:hover {
	color: var(--primary);
	transform: translateX(5px);
}

.footer-bottom {
	max-width: 1400px;
	margin: 0 auto;
	padding-top: 2rem;
	border-top: 1px solid rgba(14, 0, 255, 0.08);
	text-align: center;
	color: var(--text-gray);
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.chat-card {
		max-width: 500px;
		margin: 0 auto;
		padding: 40px;
	}

	.footer-content {
		grid-template-columns: 1fr 1fr;
	}

	.article-container {
		grid-template-columns: 1fr;
	}

	.article-sidebar {
		order: -1;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.nav-cta {
		display: none;
	}

	.mobile-menu-btn {
		display: flex;
	}

	.mobile-menu {
		display: block;
	}

	.hero-text .baslik {
		font-size: 2.5rem;
	}

	.stats-grid,
	.features-grid,
	.blog-grid {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
	}

	.social-login {
		grid-template-columns: 1fr;
	}

	.article-content {
		padding: 2rem;
	}

	.article-title {
		font-size: 1.8rem;
	}

	.article-meta {
		flex-direction: column;
		gap: 0.8rem;
	}

	.article-footer {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* Loading Animation */
.loading-dots {
	display: inline-flex;
	gap: 0.3rem;
}

.loading-dots span {
	width: 8px;
	height: 8px;
	background: currentColor;
	border-radius: 50%;
	animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
	0%, 80%, 100% { transform: scale(0); }
	40% { transform: scale(1); }
}
/* Page & Single Template Styles */
.page-content {
	padding: 150px 0 80px;
	min-height: 100vh;
}

.page-article,
.single-article {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(14, 0, 255, 0.08);
	border-radius: 30px;
	padding: 60px;
	box-shadow: 0 20px 60px rgba(14, 0, 255, 0.08);
}

.page-header {
	margin-bottom: 50px;
	padding-bottom: 30px;
	border-bottom: 2px solid rgba(14, 0, 255, 0.08);
}

.page-title,
.article-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px;
	line-height: 1.2;
}

.page-excerpt {
	font-size: 1.25rem;
	color: var(--text-gray);
	line-height: 1.8;
}

.article-header {
	margin-bottom: 50px;
}

.article-meta {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 30px;
	padding: 20px;
	background: rgba(14, 0, 255, 0.03);
	border-radius: 15px;
}

.article-meta span {
	font-size: 0.95rem;
	color: var(--text-gray);
	display: flex;
	align-items: center;
	gap: 5px;
}

.article-thumbnail {
	border-radius: 20px;
	overflow: hidden;
	margin-top: 30px;
	box-shadow: 0 10px 40px rgba(14, 0, 255, 0.1);
}

.article-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

.page-body,
.article-body {
	font-size: 1.1rem;
	line-height: 1.9;
	color: var(--text-dark);
}

.page-body h2,
.article-body h2 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-dark);
	margin: 40px 0 20px;
}

.page-body h3,
.article-body h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-dark);
	margin: 30px 0 15px;
}

.page-body p,
.article-body p {
	margin-bottom: 20px;
}

.page-body ul,
.article-body ul {
	margin: 20px 0;
	padding-left: 30px;
}

.page-body ul li,
.article-body ul li {
	margin-bottom: 10px;
	position: relative;
}

.page-body ul li::marker,
.article-body ul li::marker {
	color: var(--primary);
}

.page-body a,
.article-body a {
	color: var(--primary);
	text-decoration: none;
	border-bottom: 2px solid rgba(14, 0, 255, 0.2);
	transition: all 0.3s ease;
}

.page-body a:hover,
.article-body a:hover {
	border-bottom-color: var(--primary);
}

.article-footer {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 2px solid rgba(14, 0, 255, 0.08);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.article-tags {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.article-tags .tag {
	display: inline-block;
	padding: 8px 20px;
	background: linear-gradient(135deg, rgba(14, 0, 255, 0.1), rgba(236, 72, 72, 0.1));
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-dark);
	border: 1px solid rgba(14, 0, 255, 0.15);
	transition: all 0.3s ease;
}

.article-tags .tag:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(14, 0, 255, 0.15);
}

.article-share {
	display: flex;
	align-items: center;
	gap: 15px;
}

.share-text {
	font-weight: 600;
	color: var(--text-dark);
}

.share-btn {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(14, 0, 255, 0.08);
	font-size: 1.2rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.share-btn:hover {
	transform: translateY(-3px) scale(1.1);
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	box-shadow: 0 10px 30px rgba(14, 0, 255, 0.3);
}

.page-comments,
.article-comments {
	margin-top: 60px;
	padding: 40px;
	background: rgba(14, 0, 255, 0.02);
	border-radius: 20px;
	border: 1px solid rgba(14, 0, 255, 0.08);
}

/* Logo Link Fix */
.logo a {
	text-decoration: none;
	color: inherit;
}

/* Navigation Menu Items */
.nav-links li.active a,
.mobile-menu-links li.active a {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: white !important;
}

/* Responsive for Page Templates */
@media (max-width: 768px) {
	.page-article,
	.single-article {
		padding: 30px 20px;
	}

	.page-title,
	.article-title {
		font-size: 2rem;
	}

	.article-meta {
		flex-direction: column;
		gap: 10px;
	}

	.article-footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.page-body,
	.article-body {
		font-size: 1rem;
	}
}
