/*
Theme Name: SesliAsk
Theme URI: https://www.sesliask.com/
Author: SesliAsk Ekibi
Author URI: https://www.sesliask.com/
Description: SesliAsk.com icin cok mikrofonlu mobil sesli sohbet temasi. Orijinal statik HTML/CSS/JS temadan WordPress'e donusturulmustur.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: sesliask
*/

:root {
    --bg-deep: #0a021a;
    --bg-card: rgba(25, 10, 50, 0.85);
    --neon-pink: #ff2d88;
    --neon-purple: #a855f7;
    --neon-cyan: #06b6d4;
    --accent-gold: #fbbf24;
    --text-main: #f8fafc;
    --text-muted: #cbd5e1;
    --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --radius-full: 9999px;
    --transition-smooth: all 0.3s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-stack);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 90px;
}

/* YETKİLİ VE DUYURU KAYAN ŞERİT */
.coded-ticker-top {
    background: linear-gradient(90deg, #180536, #2d0b5e, #180536);
    border-bottom: 1px solid rgba(255, 45, 136, 0.3);
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}

.coded-ticker-track {
    display: inline-block;
    animation: scrollTicker 45s linear infinite;
    padding-left: 100%;
}

.coded-ticker-track:hover {
    animation-play-state: paused;
}

.coded-ticker-item-el {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 40px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 45, 136, 0.3);
}

.coded-ticker-item-el i {
    color: var(--accent-gold);
}

@keyframes scrollTicker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* ARKA PLAN VE YÜZEN KALPLER */
.coded-cosmos {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at 50% 40%, #290b52 0%, #0a021a 75%);
    will-change: transform;
    overflow: hidden;
}

.coded-cosmos::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.floating-heart-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-item {
    position: absolute;
    bottom: -50px;
    font-size: 20px;
    animation: floatUpAndFade 16s linear infinite;
    opacity: 0;
    user-select: none;
}

@keyframes floatUpAndFade {
    0% { transform: translateY(0) scale(0.6) rotate(0deg); opacity: 0; }
    15% { opacity: 0.7; }
    85% { opacity: 0.7; }
    100% { transform: translateY(-110vh) scale(1.4) rotate(360deg); opacity: 0; }
}

.coded-shell {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.coded-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 2, 26, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.coded-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.coded-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
}

.coded-logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 45, 136, 0.15), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(255, 45, 136, 0.4);
    padding: 6px 16px 6px 8px;
    border-radius: var(--radius-full);
    box-shadow: 0 0 20px rgba(255, 45, 136, 0.25);
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.coded-logo-box:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 45, 136, 0.4);
}

.coded-logo-icon-pulse {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 0 15px var(--neon-pink);
    position: relative;
    animation: pulseLogoGlow 2s infinite ease-in-out;
}

@keyframes pulseLogoGlow {
    0% { transform: scale(1); box-shadow: 0 0 10px var(--neon-pink); }
    50% { transform: scale(1.06); box-shadow: 0 0 22px var(--neon-pink); }
    100% { transform: scale(1); box-shadow: 0 0 10px var(--neon-pink); }
}

.coded-logo-texts {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.coded-logo-title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.coded-logo-title span {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 45, 136, 0.5);
}

.coded-logo-subtitle {
    font-size: 10px;
    font-weight: 600;
    color: var(--neon-cyan);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.coded-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.coded-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.coded-menu a:hover, .coded-menu a.active, .coded-menu li.current-menu-item a {
    color: var(--neon-pink);
}

.coded-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.coded-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
}

.coded-btn-gradient {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 45, 136, 0.4);
}

.coded-btn-gradient:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 45, 136, 0.6);
}

.coded-btn-lg-grown {
    padding: 15px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 0 25px rgba(255, 45, 136, 0.5);
    display: inline-flex;
    width: auto;
}

.coded-hamburger {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
}

.coded-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #14052e;
    border-left: 1px solid rgba(255, 45, 136, 0.3);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    transition: right 0.3s ease-in-out;
    box-shadow: -10px 0 30px rgba(0,0,0,0.7);
}

.coded-mobile-menu.active {
    right: 0;
}

.coded-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.coded-mobile-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 22px;
    cursor: pointer;
}

.coded-mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.coded-mobile-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.coded-mobile-links a:hover, .coded-mobile-links a.active {
    color: var(--neon-pink);
    padding-left: 6px;
}

.coded-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.coded-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.coded-hero {
    padding: 50px 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.coded-badge-mic {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.4);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: #e9d5ff;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.coded-hero-content h1 {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
}

.coded-hero-content h1 span {
    color: var(--neon-pink);
    display: block;
}

.coded-hero-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.coded-site-founders {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coded-founders-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
}

.coded-founders-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.coded-founder-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 45, 136, 0.3);
    padding: 6px 16px 6px 6px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    backdrop-filter: blur(6px);
}

.coded-founder-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--neon-pink);
    background: #180536;
}

.coded-founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coded-founder-info b {
    font-size: 13px;
    display: block;
    color: #fff;
}

.coded-founder-info span {
    font-size: 11px;
    color: var(--neon-cyan);
    display: block;
}

.coded-audio-system {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 440px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(25, 10, 50, 0.9), rgba(42, 12, 75, 0.6));
    border: 1px solid rgba(255, 45, 136, 0.35);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(168, 85, 247, 0.15);
    backdrop-filter: blur(12px);
}

.coded-audio-system::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    border-radius: 30px 30px 0 0;
}

.coded-central-mic {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 0 30px rgba(255, 45, 136, 0.5);
    margin-bottom: 25px;
    position: relative;
}

.coded-audio-waves {
    position: absolute;
    display: flex;
    gap: 4px;
    align-items: center;
    top: -28px;
    width: 120px;
    justify-content: center;
}

.coded-wave-bar {
    width: 3px;
    background: var(--neon-pink);
    border-radius: 2px;
    animation: soundWave 1.2s ease-in-out infinite alternate;
}

.coded-wave-bar:nth-child(1) { height: 10px; animation-delay: 0.1s; }
.coded-wave-bar:nth-child(2) { height: 18px; animation-delay: 0.3s; }
.coded-wave-bar:nth-child(3) { height: 30px; animation-delay: 0.2s; }
.coded-wave-bar:nth-child(4) { height: 18px; animation-delay: 0.4s; }
.coded-wave-bar:nth-child(5) { height: 24px; animation-delay: 0.1s; }

@keyframes soundWave {
    0% { transform: scaleY(0.4); opacity: 0.5; }
    100% { transform: scaleY(1.3); opacity: 1; }
}

.coded-orbit-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.coded-orbit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 45, 136, 0.25);
    padding: 10px 16px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    transition: var(--transition-smooth);
    position: relative;
}

.coded-orbit-item:hover {
    border-color: rgba(255, 45, 136, 0.6);
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
    box-shadow: 0 0 15px rgba(255, 45, 136, 0.2);
}

.coded-orbit-icon-box {
    position: relative;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(255, 45, 136, 0.2), rgba(168, 85, 247, 0.3));
    border: 2px solid var(--neon-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.coded-orbit-text-area {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.coded-orbit-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.coded-orbit-status {
    font-size: 11px;
    color: var(--text-muted);
}

.coded-orbit-heart-badge {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 45, 136, 0.15);
    border: 1px solid rgba(255, 45, 136, 0.35);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--neon-pink);
    animation: heartBeatPulse 1.8s infinite ease-in-out;
}

@keyframes heartBeatPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); box-shadow: 0 0 10px rgba(255, 45, 136, 0.4); }
}

.coded-mic-section {
    margin: 40px 0 20px;
}

.coded-mic-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.coded-mic-head i {
    color: var(--neon-pink);
}

.coded-mic-ticker-wrapper {
    background: linear-gradient(135deg, rgba(25, 10, 50, 0.9), rgba(42, 12, 75, 0.6));
    border: 1px solid rgba(255, 45, 136, 0.35);
    border-radius: 20px;
    padding: 14px 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
}

.coded-mic-track {
    display: flex;
    gap: 14px;
    direction: ltr;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 4px 0;
    scroll-behavior: smooth;
    animation: scrollChatUsers 25s linear infinite;
    width: max-content;
}

.coded-mic-ticker-wrapper:hover .coded-mic-track {
    animation-play-state: paused;
}

.coded-mic-track::-webkit-scrollbar {
    display: none;
}

@keyframes scrollChatUsers {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.coded-mic-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 45, 136, 0.3);
    padding: 6px 14px 6px 6px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 45, 136, 0.15);
    transition: var(--transition-smooth);
    flex-shrink: 0;
    position: relative;
}

.coded-mic-badge-pill:hover {
    border-color: var(--neon-pink);
    background: rgba(255, 45, 136, 0.15);
}

.coded-mic-avatar-small {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: visible;
    border: 1.5px solid var(--neon-pink);
    background: #180536;
    flex-shrink: 0;
    position: relative;
}

.coded-mic-avatar-small img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.gender-icon.male {
    position: absolute;
    bottom: -3px;
    right: -3px;
    background: #2563eb;
    color: white;
    font-size: 0.6rem;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid #1e293b;
    z-index: 5;
}

.coded-section {
    margin: 50px 0;
}

.coded-section-head h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.coded-section-head h2 i {
    color: var(--neon-pink);
}

.coded-rooms-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 10px 0;
    scroll-behavior: smooth;
    width: 100%;
}

.coded-rooms-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.coded-rooms-scroll-container::-webkit-scrollbar-track {
    background: #1e293b;
    border-radius: 4px;
}

.coded-rooms-scroll-container::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 4px;
}

.coded-room-card {
    min-width: 220px;
    max-width: 220px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: visible;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    cursor: grab;
}

.coded-room-card:active {
    cursor: grabbing;
}

.coded-room-card:hover {
    border-color: rgba(255, 45, 136, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255, 45, 136, 0.25);
}

.coded-room-card.pinned {
    border: 2px solid #fbbf24;
    background: linear-gradient(135deg, rgba(25, 10, 50, 0.95) 0%, rgba(42, 12, 75, 0.9) 100%);
}

.coded-room-card.pinned::after {
    content: "📌 Sabit Oda";
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.65rem;
    background: #fbbf24;
    color: #0f172a;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    z-index: 10;
}

.coded-room-img-container {
    width: 100%;
    height: 110px;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    flex-shrink: 0;
}

.coded-room-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.coded-room-card:hover .coded-room-img-container img {
    transform: scale(1.08);
}

.coded-room-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.coded-room-content b {
    font-size: 14px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 50px;
}

.coded-room-content p {
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.coded-room-users-row {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-top: 4px;
}

.coded-room-avatar-wrap {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #475569;
}

.coded-room-avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.coded-room-footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--neon-cyan);
    margin-top: 4px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 6px;
}

.coded-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.coded-blog-card {
    background: linear-gradient(145deg, rgba(25, 10, 50, 0.9), rgba(15, 5, 35, 0.95));
    border: 1px solid rgba(255, 45, 136, 0.2);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-main);
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.coded-blog-card:hover {
    border-color: var(--neon-pink);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(255, 45, 136, 0.25);
}

.coded-blog-img-wrapper {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.coded-blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.coded-blog-card:hover .coded-blog-img-wrapper img {
    transform: scale(1.08);
}

.coded-blog-floating-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(10, 2, 26, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 45, 136, 0.4);
    color: #ff80bf;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.coded-blog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.coded-blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: var(--neon-cyan);
    margin-bottom: 12px;
}

.coded-blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.coded-blog-body b {
    font-size: 18px;
    line-height: 1.35;
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.coded-blog-card:hover .coded-blog-body b {
    color: #ff80bf;
}

.coded-blog-body p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.coded-blog-footer-row {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.coded-blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.coded-blog-author img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--neon-pink);
}

.coded-blog-readmore-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 45, 136, 0.15);
    border: 1px solid rgba(255, 45, 136, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-pink);
    font-size: 12px;
    transition: var(--transition-smooth);
}

.coded-blog-card:hover .coded-blog-readmore-btn {
    background: var(--neon-pink);
    color: #fff;
    transform: translateX(3px);
}

.coded-footer {
    background: linear-gradient(180deg, #090217 0%, #05010f 100%);
    border-top: 1px solid rgba(255, 45, 136, 0.25);
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.coded-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
}

.coded-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.coded-footer-col {
    display: flex;
    flex-direction: column;
}

.coded-footer-col.center-align {
    align-items: center;
    text-align: center;
}

.coded-footer-col h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coded-footer-col h3 i {
    color: var(--neon-pink);
    font-size: 14px;
}

.coded-footer-col p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.6;
    margin-top: 14px;
}

.coded-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.coded-footer-col.center-align .coded-footer-links {
    align-items: center;
}

.coded-footer-links a, .coded-footer-links span {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13.5px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.coded-footer-links a i {
    font-size: 10px;
    color: var(--neon-cyan);
    transition: transform 0.3s ease;
}

.coded-footer-links a:hover {
    color: var(--neon-pink);
    padding-left: 4px;
}

.coded-footer-links a:hover i {
    transform: translateX(3px);
    color: var(--neon-pink);
}

.coded-footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.coded-social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 45, 136, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.coded-social-btn:hover {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(255, 45, 136, 0.5);
}

.coded-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.coded-copy {
    color: var(--text-muted);
    font-size: 13px;
}

.coded-copy span {
    color: var(--neon-pink);
    font-weight: 600;
}

.coded-footer-legal-links {
    display: flex;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.coded-footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12.5px;
    transition: var(--transition-smooth);
}

.coded-footer-legal-links a:hover {
    color: var(--neon-cyan);
}

.coded-footer-seo-notice {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.85;
}

.coded-radio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(14, 4, 33, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 45, 136, 0.4);
    z-index: 2000;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7);
}

.coded-radio-inner {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.coded-radio-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.coded-radio-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 0 15px var(--neon-pink);
    position: relative;
}

.coded-radio-icon.playing {
    animation: pulseLogoGlow 1.5s infinite ease-in-out;
}

.coded-radio-texts {
    display: flex;
    flex-direction: column;
}

.coded-radio-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coded-radio-title span {
    color: var(--neon-pink);
    font-size: 11px;
    background: rgba(255, 45, 136, 0.15);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 45, 136, 0.3);
}

.coded-radio-status {
    font-size: 12px;
    color: var(--neon-cyan);
    font-weight: 500;
}

.coded-radio-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.coded-radio-play-btn {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 45, 136, 0.5);
    transition: var(--transition-smooth);
}

.coded-radio-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(255, 45, 136, 0.8);
}

.coded-radio-volume {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.coded-radio-volume input[type="range"] {
    width: 90px;
    accent-color: var(--neon-pink);
    cursor: pointer;
}

/* WordPress varsayilan siniflari icin temel uyum */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.screen-reader-text { position: absolute; left: -9999px; }

@media (max-width: 968px) {
    .coded-hero { grid-template-columns: 1fr; text-align: center; }
    .coded-hero-btns { justify-content: center; width: 100%; display: flex; flex-direction: column; align-items: center; }
    .coded-site-founders { align-items: center; }
    .coded-audio-system { max-width: 100%; margin: 20px 0; }
    .coded-blog-grid { grid-template-columns: 1fr; }
    .coded-footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .coded-footer-col.center-align { align-items: flex-start; text-align: left; }
    .coded-footer-col.center-align .coded-footer-links { align-items: flex-start; }
    .coded-menu { display: none; }
    .coded-hamburger { display: block; }
    .coded-radio-volume { display: none; }
}
