/* Theme Name: Prestige Sohbet Teması
Theme URI: www.QBilisim.com
Author: QBilisim
Author URI: Geliştirici Web Sayfası
Description: Qbilisim.com tema "Prestige" serisi.
Version: v1 */
:root {
    --primary: #6C5CE7;
    --primary-dark: #5849C4;
    --secondary: #00D9FF;
    --accent: #FF6B9D;
    --dark: #0F0F23;
    --dark-lighter: #1A1A35;
    --text: #E8E8F0;
    --text-muted: #A8A8C0;
    --success: #00E676;
    --glow: rgba(108, 92, 231, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
    zoom: 0.9;
}

/* Animated Background */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.03;
    pointer-events: none;
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    top: 10%;
    left: 5%;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    top: 60%;
    right: 10%;
    animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
    bottom: 20%;
    left: 15%;
    animation: float 30s ease-in-out infinite;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(5deg); }
    66% { transform: translateY(30px) rotate(-5deg); }
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    position: relative;
    overflow: hidden;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmerAnnouncement 3s infinite;
}

@keyframes shimmerAnnouncement {
    to { left: 100%; }
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.announcement-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Header */
header {
    position: relative;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(15, 15, 35, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 3s ease-in-out infinite;
    letter-spacing: -1px;
}
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(108, 92, 231, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(108, 92, 231, 0.6)); }
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px var(--glow);
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    animation: slideInLeft 1s ease-out;
}

.hero-badge svg {
    width: 20px;
    height: 20px;
}

.hero-content .baslik {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 1s ease-out 0.1s both;
    letter-spacing: -2px;
}

.hero-content .baslik .gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .aciklama {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.online-users {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 12px;
    width: fit-content;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.online-users-avatars {
    display: flex;
    margin-left: -10px;
}

.online-users-avatars span {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: 2px solid var(--dark);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.online-users-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.online-users-text strong {
    color: var(--success);
    font-size: 1.1rem;
    font-weight: 700;
}

.online-users-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Login Card */
.login-card {
    background: linear-gradient(135deg, rgba(26, 26, 53, 0.95) 0%, rgba(15, 15, 35, 0.9) 100%);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
    animation: slideInRight 1s ease-out;
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% 100%;
    animation: gradientSlide 3s ease infinite;
}

@keyframes gradientSlide {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

.login-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.login-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-card .subtitle {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.input-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px var(--glow);
}

.btn-primary {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    margin-top: 1rem;
    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.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -10px var(--glow);
}

.info-box {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 217, 255, 0.05);
    border-left: 3px solid var(--secondary);
    border-radius: 8px;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.info-box svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Features Section */
.features {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 53, 0.5) 0%, rgba(15, 15, 35, 0.3) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 0.03;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 20px 40px -15px var(--glow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Article Bar */
.article-bar {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.article-slider {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative;
}

.article-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: slideLight 5s infinite;
}

@keyframes slideLight {
    to { left: 150%; }
}

.article-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.article-slider-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-nav {
    display: flex;
    gap: 1rem;
}

.article-nav-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text);
}

.article-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.articles-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.articles-wrapper a {
    text-decoration: none;
}
.article-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.article-date {
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.article-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.blog {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: linear-gradient(135deg, rgba(26, 26, 53, 0.6) 0%, rgba(15, 15, 35, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(108, 92, 231, 0.4);
    box-shadow: 0 30px 60px -15px var(--glow);
}

.blog-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    position: relative;
    overflow: hidden;
}
.blog-image img {
    width: 100%;
    height: auto;
}
.blog-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
    from { transform: translateX(0); }
    to { transform: translateX(20px); }
}

.blog-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.3;
}

.blog-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.pageler {
    margin-top: 20px;
    padding: 17px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 10px;
}
.pageler .page-numbers {
    background: #101d25;
    padding: 5px 10px;
    border-radius: 5px;
    color: #f7f9fa;
    text-decoration: none;
}
.pageler .page-numbers:hover {
    background: #f7f9fa;
    color: #101d25;
}
.pageler .current {
    background: #101d25;
    color: #ff751f;
}
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
    color: var(--primary);
}

.read-more svg {
    transition: transform 0.3s ease;
}

.read-more:hover svg {
    transform: translateX(5px);
}


/* Sohbet Bar Section */
.sohbet-bar {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.sohbet-bar-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.sohbet-article {
    background: linear-gradient(135deg, rgba(26, 26, 53, 0.6) 0%, rgba(15, 15, 35, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.sohbet-article::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.15), transparent);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.sohbet-article-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.sohbet-article-icon {
    width: 50px;
    height: 50px;
}

.sohbet-article-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sohbet-article-content {
    position: relative;
    z-index: 1;
}

.sohbet-article-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.sohbet-article-content p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.sohbet-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: linear-gradient(135deg, rgba(26, 26, 53, 0.5) 0%, rgba(15, 15, 35, 0.3) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 92, 231, 0.1), transparent);
    transition: left 0.6s ease;
}

.sidebar-widget:hover::before {
    left: 100%;
}

.sidebar-widget:hover {
    border-color: rgba(108, 92, 231, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px -10px var(--glow);
}

.sidebar-widget:nth-child(1) {
    border-left: 3px solid var(--secondary);
}

.sidebar-widget:nth-child(2) {
    border-left: 3px solid var(--accent);
}

.sidebar-widget:nth-child(3) {
    border-left: 3px solid var(--primary);
}

.sidebar-widget-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.sidebar-widget-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.4s ease;
}

.sidebar-widget:hover .sidebar-widget-header::after {
    width: 100%;
}

.sidebar-widget-header svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 8px rgba(108, 92, 231, 0.6));
}

.sidebar-widget:nth-child(1) .sidebar-widget-header svg {
    color: var(--secondary);
}

.sidebar-widget:nth-child(2) .sidebar-widget-header svg {
    color: var(--accent);
}

.sidebar-widget:nth-child(3) .sidebar-widget-header svg {
    color: var(--primary);
}

.sidebar-widget-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.sidebar-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--secondary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-widget:nth-child(1) .sidebar-list-item::before {
    background: var(--secondary);
}

.sidebar-widget:nth-child(2) .sidebar-list-item::before {
    background: var(--accent);
}

.sidebar-widget:nth-child(3) .sidebar-list-item::before {
    background: var(--primary);
}

.sidebar-list-item:hover::before {
    transform: scaleY(1);
}

.sidebar-list-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(8px);
    border-color: rgba(108, 92, 231, 0.2);
}

.sidebar-list-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sidebar-widget:nth-child(1) .sidebar-list-item svg {
    color: var(--secondary);
}

.sidebar-widget:nth-child(2) .sidebar-list-item svg {
    color: var(--accent);
}

.sidebar-widget:nth-child(3) .sidebar-list-item svg {
    color: var(--primary);
}

.sidebar-list-item:hover svg {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 6px currentColor);
}

.sidebar-list-item span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.sidebar-list-item:hover span {
    color: var(--text);
}

.external-link-icon {
    margin-left: auto;
    width: 14px;
    height: 14px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.sidebar-list-item:hover .external-link-icon {
    opacity: 1;
    transform: translate(3px, -3px);
    color: var(--primary);
}

/* Footer */
footer {
    position: relative;
    z-index: 10;
    margin-top: 8rem;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 35, 0.8) 100%);
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.footer-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem 3rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 400px;
    margin-top: -15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.footer-logo a {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    gap: 11px;
    align-items: center;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.footer-logo-icon::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    from { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    to { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.footer-logo h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.newsletter {
    margin-top: 2rem;
}

.newsletter h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px var(--glow);
}

.social-section {
    margin-top: 2rem;
}

.social-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a svg {
    position: relative;
    z-index: 1;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
    box-shadow: 0 10px 25px -5px var(--glow);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    position: absolute;
    left: -20px;
    transition: all 0.3s ease;
    color: var(--secondary);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 10px;
}

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-badges {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 8px;
    color: var(--success);
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-badge svg {
    width: 18px;
    height: 18px;
}

.footer-badge.secure {
    background: rgba(108, 92, 231, 0.1);
    border-color: rgba(108, 92, 231, 0.3);
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--secondary);
    transform: scale(1.1);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(26, 26, 53, 0.98) 0%, rgba(15, 15, 35, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-menu-links li {
    opacity: 0;
    transform: translateX(20px);
    animation: slideInMenu 0.4s ease forwards;
}

.mobile-menu-links li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-links li:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu-links li:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu-links li:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu-links li:nth-child(5) { animation-delay: 0.3s; }

@keyframes slideInMenu {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu-links a {
    display: block;
    padding: 1rem 1.25rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-menu-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-menu-links a:hover::before {
    transform: scaleY(1);
}

.mobile-menu-links a:hover {
    background: rgba(108, 92, 231, 0.1);
    color: var(--secondary);
    padding-left: 1.5rem;
}

.mobile-menu-cta {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInMenu 0.4s ease 0.35s forwards;
}

.mobile-menu-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px var(--glow);
}
.yorum{
    color: white;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
}
.yorum a{
    color: #7862e0;
}
.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: #101d25;
    border: none;
    height: 50px;
    color: white;
    padding: 2px 10px;
}
.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
}
.scroll-top {
   position: fixed;
   bottom: 30px;
   right: 30px;
   width: 55px;
   height: 55px;
   background: linear-gradient(90deg, var(--primary), var(--accent));
   border: none;
   border-radius: 50%;
   color: white;
   font-size: 1.5rem;
   cursor: pointer;
   opacity: 1;
   visibility: hidden;
   transition: all 0.4s ease;
   box-shadow: 0 10px 30px rgba(255, 0, 102, 0.4);
   z-index: 9999;
}
.scroll-top.visible {
   visibility: visible;
}
/* Responsive */
@media (max-width: 968px) {
    .announcement-bar {
        font-size: 0.75rem;
        padding: 0.75rem 1rem;
    }

    .announcement-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        text-align: center;
        justify-content: center;
    }

    .announcement-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    nav {
        padding: 1rem 1.5rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo svg {
        width: 35px;
        height: 35px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 3rem;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

    .hero-content .baslik {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .hero-content .aciklama {
        font-size: 1.05rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .hero-stat-number {
        font-size: 1.75rem;
    }

    .hero-stat-label {
        font-size: 0.85rem;
    }

    .online-users {
        margin-left: auto;
        margin-right: auto;
        padding: 0.875rem 1.25rem;
    }

    .online-users-avatars span {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .login-card {
        padding: 2rem 1.5rem;
    }

    .login-card h2 {
        font-size: 1.75rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .room-category {
        padding: 2rem 1.5rem;
    }

    .article-slider {
        padding: 2rem 1.5rem;
    }

    .article-slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .article-slider-header h3 {
        font-size: 1.5rem;
    }

    .articles-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sohbet-bar {
        padding: 0 1.5rem;
    }

    .sohbet-bar-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sohbet-article {
        padding: 2rem 1.5rem;
    }

    .sohbet-article-header {
        flex-direction: row;
        gap: 1rem;
    }

    .sohbet-article-header h2 {
        font-size: 1.5rem;
    }

    .sohbet-article-icon {
        width: 40px;
        height: 40px;
    }

    .sohbet-article-content h3 {
        font-size: 1.25rem;
    }

    .sohbet-article-content p {
        font-size: 0.95rem;
    }

    .sidebar-widget {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .blog-card {
        margin: 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    .footer-container {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding-top: 1.5rem;
    }

    .footer-badges {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .footer-badge {
        width: 100%;
        justify-content: center;
    }

    .features-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-stats {
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
    .footer-brand {
        margin-top: 20px;
    }
    .online-users {
        width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}

/* Pulse Animation for Online Users */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.online-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s ease-in-out infinite;
}