:root {
	--pink: #e91e63;
	--yellow: #ffd633;
	--dark: #2e2e2e;
	--gray: #f5f5f5;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	background: #fff;
	color: #222;
}

a {
	text-decoration: none;
	color: inherit;
}

.wrapper {
	position: relative;
	background: #fff;
	max-width: 1200px;
	margin: 0 auto;
}

.pembearka {
	position: absolute;
	right: 0;
	top: 0;
	width: 297px;
	height: 100%;
	background: #d31555;
	z-index: 0;
}

.pembearka-harici {
	position: absolute;
    right: 40px;
    top: 0;
    width: 260px;
    height: 100%;
    background: #d31555;
    z-index: 0;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 60px;
	position: relative;
	z-index: 1;
	background: transparent;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--pink);
}

.logo img {
    max-width: 200px;
    margin-right: 5px;    
}

.nav-menu ul, .nav-menu-list {
    display: flex;
    gap: 20px;
    padding-bottom: 15px;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a, .nav-menu-list a {
    font-weight: 500;
    font-size: 15px;
    color: #000;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    font-size: 25px;
    padding: 3px 10px 0 10px;
    color: var(--pink);
    border: 2px solid var(--pink);
    border-radius: 7px;
    cursor: pointer;
}

.header-buttons {
	display: flex;
	gap: 10px;
	padding-bottom: 15px;
	z-index: 1;
}

.btn {
	padding: 8px 18px;
	border: none;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.3s ease;
}

.btn-login {
	background-color: #fff;
	color: #d31555;
	border: 1px solid #ccc;
}

.btn-contact {
	background-color: var(--pink);
	color: #fff;
}

.sohbetbolum {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0;
	gap: 40px;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.sohbetbolum-left {
	flex: 1;
	max-width: 450px;
}

.sohbetbolum-left h1 {
	font-size: 34px;
	line-height: 1.3;
	margin-bottom: 20px;
}

.sohbetbolum-left h1 span {
	color: var(--pink);
}

.sohbetbolum-subtext {
	font-size: 14px;
	color: #555;
	margin-bottom: 20px;
}

.form-info {
	font-size: 13px;
	color: #888;
	background: #f3f3f3;
	padding: 8px 12px;
	border-radius: 8px;
	margin: 10px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.form-info a {
	color: var(--pink);
	text-decoration: underline;
	font-weight: 500;
}

.app-info {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: #444;
	margin-top: 20px;
}

.app-info img {
	margin-top: 3px;
}

.form-group {
	position: relative;
	margin-bottom: 15px;
}

.input-note {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	color: #aaa;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.input-note.hidden {
	opacity: 0;
	visibility: hidden;
}

.form-group span {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	color: #888;
}

.form-group input {
	width: 100%;
	padding: 12px 12px 12px 40px;
	border: 1px solid #ccc;
	border-radius: 25px;
	font-size: 15px;
}

.form-group input:focus {
	outline: none;
	border-color: var(--pink);
}

.chat-submit {
	width: 100%;
	background-color: var(--pink);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	padding: 12px;
	border: 2px solid var(--pink);
	border-radius: 25px;
	margin-bottom: 10px;
	cursor: pointer;
}

.form-link {
    width: 100%;
	text-align: center;
	font-size: 14px;
	background-color: #fff;
	color: var(--pink);
	font-weight: 600;
	padding: 12px;
	border: 2px solid var(--pink);
	border-radius: 25px;
	cursor: pointer;
}

.sohbetbolum-right {
	flex: 1;
	min-width: 300px;
	text-align: center;
	display: flex;
}

.sohbetbolum-right img {
	max-width: 100%;
	height: auto;
	border-radius: 15px;
}

.ozellikler {
	background: #d31555;
	padding: 60px;
	text-align: center;
}

.ozellikler-title {
	font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

.ozellikler-intro {
	text-align: center;
	font-size: 16px;
	color: #d9d9d9;
}

.ozellik-kutular {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 15px;
	background: #d31555;
	flex-wrap: wrap;
	text-align: center;
}

.ozellik-kutu {
	flex: 1;
	min-width: 240px;
	max-width: 300px;
	background: #fff;
	padding: 30px 20px;
	border-radius: 20px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

.ozellik-kutu:hover {
	transform: translateY(-5px);
}

.ikon-daire {
	width: 64px;
	height: 64px;
	background: var(--pink);
	color: #fff;
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin: 0 auto 15px auto;
}

.ozellik-kutu span {
    display: block;
    margin-bottom: 10px;
	font-size: 18px;
    font-weight: bold;
    color: var(--pink);
}

.ozellik-kutu p {
	font-size: 14px;
	color: #555;
}

.sohbetet-section {
	background: #fff;
	padding: 60px 20px;
}

.sohbetet-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	max-width: 1100px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.sohbetet-image img {
	width: 100%;
	max-width: 500px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sohbetet-content {
	flex: 1;
	min-width: 280px;
}

.sohbetet-content h2 {
	font-size: 30px;
	margin-bottom: 20px;
	color: #222;
}

.sohbetet-content h2 span {
	color: var(--pink);
}

.sohbetet-content p {
	color: #555;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 25px;
}

.highlight-box {
	background-color: var(--pink);
	color: #fff;
	padding: 12px 20px;
	border-radius: 15px;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
}

.detay-section {
	background: #1d1d1d;
	padding: 80px 20px;
	color: #fff;
}

.detay-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
}

.detay-left {
	flex: 1;
	min-width: 280px;
}

.detay-right {
	flex: 1;
	min-width: 280px;
	text-align: center;
}

.detay-right img {
	max-width: 500px;
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.detay-title {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 40px;
	color: #fff;
}

.detay-title span {
	color: var(--pink);
}

.detay-subtext {
	font-size: 13px;
	color: #ccc;
	margin-bottom: 40px;
	line-height: 1.6;
	max-width: 500px;
}

.detay-container {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.detay-box {
	flex: 1;
	min-width: 160px;
	background: #2a2a2a;
	padding: 25px 20px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.detay-box h3 {
	font-size: 18px;
	color: var(--pink);
	margin-bottom: 8px;
}

.detay-box p {
	font-size: 14px;
	color: #ccc;
}
.arkadas-section {
	background: #fff;
	padding: 80px 20px;
}

.arkadas-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
}

.arkadas-left {
	flex: 1;
	min-width: 280px;
}

.arkadas-left h2 {
	font-size: 30px;
	font-weight: 700;
	color: #222;
	margin-bottom: 20px;
}

.arkadas-left h2 span {
	color: var(--pink);
}

.arkadas-left p {
	font-size: 15px;
	color: #555;
	line-height: 1.6;
	margin-bottom: 25px;
}

.highlight-box {
	background-color: var(--pink);
	color: #fff;
	padding: 12px 20px;
	border-radius: 15px;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
}

.arkadas-right {
	flex: 1;
	min-width: 280px;
	text-align: center;
}

.arkadas-right img {
	max-width: 400px;
	width: 100%;
	height: auto;
	border-radius: 20px;
}

.makale-section {
	background-color: #fbe8e8;
	padding: 100px 20px;
	color: #fff;
	text-align: center;
}

.makale-overlay {
	max-width: 1000px;
	margin: 0 auto;
}

.makale-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 30px;
	color: #222;
}

.makale-title span {
	color: var(--pink);
}

.makale-text {
	font-size: 16px;
	color: #555;
	line-height: 1.8;
	margin-bottom: 30px;
}

.makale-text.bold {
	font-size: 18px;
	font-weight: bold;
}

.makale-btn {
	background-color: var(--pink);
	color: #fff;
	padding: 12px 25px;
	border-radius: 25px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: background 0.3s;
}

.makale-btn:hover {
	background-color: #d31555;
}

.footer {
	background: #1d1d1d url('../images/footerbg.webp') center center no-repeat;
	background-size: cover;
	color: #fff;
	padding: 60px 20px 10px 20px;
	border-top: 3px solid var(--pink);
}

.footer-top {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto 40px auto;
	text-align: center;
}

.footer-top h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 20px;
}

.store-buttons img {
	max-width: 150px;
	margin: 0 10px;
	border-radius: 8px;
}

.footer-bottom {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	border-top: 1px solid #444;
	padding: 30px 0;
	font-size: 14px;
}

.footer-bottom.telif {
	padding: 30px 0 10px 0;
}

.footer-left {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.footer-left ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-left li {
    margin: 0;
    padding: 0;
}

.footer-left a {
    font-size: 13px;
    padding: 0 10px;
    border-right: 1px solid #444;
}

.footer-left li:last-child a {
    border-right: none;
}

.footer-left-copy {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 18px;
	margin-bottom: 10px;
}

.footer-logo img {
    max-width: 150px;
    margin-right: 5px;    
}

.footer-right a {
	margin-left: 15px;
}

.footer-right i {
    font-size: 1.75em;
    color: #ffbdd4;
}

#breadcrumb {
	position: relative;
	width: 100%;
	height: auto;
	min-height: 200px;
	background: #d31555;
	display: flex;
	align-items: center;
}
#breadcrumb .breadcrumb-content {
	position: relative;
	padding: 20px;
	text-align: center;
}
#breadcrumb h1 {
	margin: 0 0 10px;
	font-size: 32px;
	color: #fff;
	font-weight: 700;
}
.breadcrumb-row {
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}
.breadcrumb-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-size: 14px;
}
.breadcrumb-nav a, .breadcrumb-nav span {
	color: #f0f0f0;
	text-decoration: none;
}
.breadcrumb-nav i {
	margin: 0 8px;
	color: #f0f0f0;
}
.breadcrumb-nav a:hover {
	text-decoration: underline;
}

.about-section {
	padding: 60px 20px;
	background: #ffdbdb85 url(../images/yanbg.webp);
}

.container {
	max-width: 900px;
	margin: 0 auto;
}

.section-title {
	font-size: 32px;
	font-weight: 700;
	color: #e91e63;
	text-align: center;
	margin-bottom: 10px;
}

.section-intro {
	text-align: center;
	font-size: 16px;
	color: #555;
	margin-bottom: 40px;
}

.about-content p {
	font-size: 15px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 20px;
}

.contact-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 40px;
}

.contact-card {
	flex: 1 1 220px;
	background: #f9f9f9;
	border-left: 5px solid #ff4d6d;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 4px 8px #d3155557;
	transition: transform 0.3s;
}

.contact-card:hover {
	transform: translateY(-5px);
}

.icon-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.icon-title i {
	font-size: 22px;
	color: #ff4d6d;
}

.icon-title h4 {
	font-size: 18px;
	margin: 0;
	color: #333;
}

.contact-card p {
    position: relative;
    margin: 0;
}

.contact-card p, .contact-card a {
	font-size: 15px;
	color: #555;
	text-decoration: none;
}

.contact-card small {
    position: absolute;
    top: -15px;
    left: 0;
    font-size: 11px;
}

.help-section {
	padding: 60px 20px;
	background: #ffdbdb85 url(../images/yanbg.webp);
}
.help-section .section-title {
	font-size: 26px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 20px;
}
.help-summary p {
	max-width: 800px;
	margin: 0 auto 40px auto;
	text-align: center;
	color: #444;
}
.help-content {
	max-width: 800px;
	margin: 0 auto;
}
.accordion-item {
	background: #fff;
	border-radius: 8px;
	margin-bottom: 12px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
	overflow: hidden;
}
.accordion-title {
	width: 100%;
	background: var(--pink);
    color: #fff;
	border: none;
	padding: 15px 20px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	outline: none;
	transition: background 0.3s;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.accordion-icon {
	transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
	transform: rotate(180deg);
}

.accordion-body {
	display: none;
	padding: 15px 20px;
	background: #e3177733;
    color: #393939;
}

.accordion-item.active .accordion-body {
	display: block;
}

.radio-ozellikler {
    background: #fff;
    padding: 80px 40px;
    text-align: center;
}

.radio-player {
	background: #1d1d1d;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 25px;
	border-radius: 20px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
	max-width: 500px;
	margin: 0 auto;
	border: 2px solid var(--pink);
}

.radio-info h4 {
	font-size: 18px;
	margin-bottom: 5px;
	color: var(--pink);
}

.radio-info h4 i {
	color: #ccc;
    margin-right: 5px;
    font-size: 16px;
}

.radio-info p {
	font-size: 14px;
	color: #ccc;
}

.radio-play {
	background-color: var(--pink);
	color: #fff;
	border: none;
	font-size: 22px;
	padding: 10px 20px;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.3s ease;
}

.radio-play:hover {
	background-color: #c2185b;
}

.yukaricik {
    background-color: var(--pink);
    border: 1px solid var(--pink);
    border-radius: 50%;
    bottom: 20px;
    color: #fff;
    cursor: pointer;
    display: none;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    right: 20px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.5;
    z-index: 337;
}
.yukaricik:hover {
    background-color: #fff;
    color: var(--pink);
    border: 1px solid var(--pink);
    opacity: 1;
}

.section-latest {
    background: #fff;
	padding: 60px 0;
}

.latest-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.latest-header {
	text-align: center;
	margin-bottom: 30px;
}

.latest-header h2 {
	font-size: 28px;
	margin-bottom: 10px;
}

.latest-header h2 span {
    color: var(--pink);
}

.latest-header p {
	max-width: 800px;
	margin: 0 auto;
	font-size: 15px;
	color: #555;
}

.latest-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 25px;
}

.latest-card {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    height: auto;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.latest-thumb {
	display: block;
	overflow: hidden;
}

.latest-thumb img {
	width: 100%;
	height: 200px;
	display: block;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.latest-meta {
	display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    font-size: 11px;
    color: #777;
    padding: 0 10px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.latest-date {
	width: 50%;
    padding: 5px 0;
}

.latest-date i {
	color: var(--pink);
}

.latest-views {
	width: 50%;
    padding: 5px 0;
}

.latest-views i {
	color: var(--pink);
}

.latest-sep {
	width: 1px;
    height: 100%;
    margin: 0 5px;
    background: #ddd;
}

.latest-title {
    position: relative;
	font-size: 18px;
    padding: 0 15px;
    margin: 8px 0;
}

.latest-title:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 15px;
    width: 20%;
    height: 2px;
    background: var(--pink);
}

.latest-title a {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-decoration: none;
	color: #111;
	overflow: hidden;
	transition: color 0.2s ease;
}

.latest-excerpt {
	font-size: 14px;
    line-height: 1.6;
    color: #555;
    padding: 0 15px 15px 15px;
    margin: 0;
}

.latest-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 80px -10px rgba(31, 46, 74, 0.08);
}

.latest-card:hover .latest-thumb img {
	transform: scale(1.03);
}

.latest-card:hover .latest-title a, .latest-title a:hover {
	color: var(--pink);
}

.single-page {
    background: #ffdbdb85 url(../images/yanbg.webp);
}

.search-result {
    background: #fff;
    padding: 5px 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px #d3155557;
    text-align: center;
}

.search-info {
    font-size: 14px;
    color: #555;
    padding: 5px 20px;
}

.archive-page {
    background: #ffdbdb85 url(../images/yanbg.webp);
}

.archive-main {
    width: 100%;
    height: 100%;
    max-width: calc(70% - 30px);
}

.archive-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.archive-grid .latest-card {
    flex: 0 0 calc((100% - 50px) / 3);
    box-shadow: 0 8px 20px #d3155557;
}

.content-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.site-sidebar {
	width: 100%;
    height: 100%;
    max-width: 30%;
}

.sidebar-widget {
	background: #fff;
    border-radius: 10px;
    padding-bottom: 5px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px #d3155557;
}

.sidebar-title {
	font-size: 17px;
    margin: 0;
    border-bottom: 1px solid #eee;
    padding: 10px 20px;
    background: #d31555;
    color: #fff;
    border-radius: 10px 10px 0 0;
    text-align: center;
}
.sidebar-content {
    padding: 10px 20px;
}

.sidebar-chat-form .field {
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
}

.sidebar-chat-form label {
	font-size: 13px;
	margin-bottom: 4px;
	color: #555;
}

.sidebar-chat-form input {
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 8px 10px;
	font-size: 14px;
}

.btn-chat {
	margin-top: 5px;
	width: 100%;
	border: none;
	border-radius: 6px;
	padding: 9px 10px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	background: var(--pink);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.btn-chat i {
	font-size: 14px;
}

.sidebar-search-form {
	display: flex;
}

.sidebar-search-form input[type="search"] {
	flex: 1;
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 6px 0 0 6px;
	padding: 8px 10px;
	font-size: 14px;
}

.sidebar-search-form button {
	border: none;
	border-radius: 0 6px 6px 0;
	padding: 8px 10px;
	cursor: pointer;
	background: var(--pink);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.sidebar-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar-list li:nth-child(odd) {
	background-color: #f9f9f9;
}
.sidebar-list li:nth-child(even) {
	background-color: #fff;
}

.sidebar-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
	text-decoration: none;
	color: #333;
	padding: 7px 12px;;
	border-bottom: 1px dashed #eee;
}

.sidebar-list li:last-child a {
	border-bottom: none;
}

.sidebar-list a:hover {
	color: var(--pink);
}

.sidebar-list .item-label {
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.sidebar-list .item-count {
	font-size: 12px;
	color: #888;
}

.sidebar-post-list .post-title {
	font-size: 14px;
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.single-main {
    width: 100%;
    height: 100%;
    max-width: calc(70% - 30px);
}

.single-article {
	background: #fff;
	border-radius: 10px;
	padding: 20px 25px;
	box-shadow: 0 8px 20px #d3155557;
}

.single-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #666;
	margin-bottom: 10px;
}

.single-meta .meta-item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
}

.single-meta i {
	font-size: 13px;
	color: #999;
}

.single-meta .meta-sep {
	width: 1px;
	height: 14px;
	background: #ddd;
}

.single-divider {
	border: 0;
	border-bottom: 1px solid #eee;
	margin: 0 0 15px;
}

.single-title {
	font-size: 26px;
	margin: 0 0 18px;
	text-align: center;
}

.single-content {
	font-size: 15px;
	line-height: 1.8;
	color: #333;
}

.single-content img {
	max-width: 100%;
	height: auto;
}
.single-content a {
	color: #d31555;
	text-decoration: none;
}
.single-content a:hover {
	color: var(--pink);
	text-decoration: underline;
}
.single-content p {
	padding: 5px 0;
}
.single-content pre {
	white-space: normal;
}
.single-content blockquote {
	margin: 15px 0 15px 20px;
    padding: 10px 15px;
    border-left: 4px solid #d3155557;
    background: #e3177733;
    border-radius: 10px;
    color: #393939;
}
.single-content ul, .single-content ol {
	margin: 0;
	padding: 5px 0 5px 40px;
}
.single-content .wp-caption {
	max-width: 100%;
}

.single-tags {
	margin-top: 20px;
	font-size: 13px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}

.single-tags i {
	font-size: 13px;
	color: #999;
	margin-right: 4px;
}

.single-tags a {
	display: inline-block;
	background: #f3f3f7;
	color: #555;
	padding: 4px 8px;
	border-radius: 999px;
	font-size: 12px;
	text-decoration: none;
}

.single-tags a:hover {
	background: var(--pink);
	color: #fff;
}

.single-tags a i {
	font-size: 11px;
	color: #999;
	margin-right: 0;
}

.single-tags a:hover i {
	color: #fff;
}

.comments-area {
    margin: 40px 0;
    padding: 20px 25px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 20px #d3155557;
}
.comments-title {
	font-size: 24px;
	margin-bottom: 20px;
	color: #333;
	font-weight: 600;
}
.comment-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.comment-item {
	margin-bottom: 20px;
}
.comment-body {
	background: #f9f9f9;
	padding: 15px;
	border-radius: 8px;
	position: relative;
}
.comment-body::before {
	content: "";
	position: absolute;
	top: 10px;
	left: -10px;
	border-width: 10px 10px 10px 0;
	border-style: solid;
	border-color: transparent #f9f9f9 transparent transparent;
}
.comment-avatar {
	border-radius: 50%;
	background-color: #fff;
	float: left;
	margin-right: 10px;
}
.comment-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.comment-author {
	display: flex;
	align-items: center;
}
.comment-author .fn {
	font-weight: 600;
	color: #d31555;
}
.comment-author .fn a {
	font-weight: 600;
	color: #d31555;
}
.comment-author .fn a:hover {
	color: var(--pink);
}
.comment-metadata time {
	color: #777;
	font-size: 14px;
}
.comment-content {
	clear: both;
	font-size: 15px;
	line-height: 1.6;
	color: #333;
}
.comment-content a {
	color: #d31555;
	text-decoration: none;
}
.comment-content a:hover {
	color: var(--pink);
}
.comment-list .children {
	list-style: none;
	margin-left: 60px;
}
.comment-list .children .comment-body {
	background: #f9f9f9;
	padding: 15px;
	border-radius: 0 8px 8px 0;
	position: relative;
}
.comment-list .children .comment-body::before {
	content: "";
	position: absolute;
	top: 10px;
	left: -10px;
	border-width: 10px 10px 10px 0;
	border-style: solid;
	border-color: transparent #ddd transparent transparent;
}
.comment-list .children .comment-item {
	border-left: 3px solid #ddd;
}
.comment-reply {
	text-align: right;
}
.comment-reply .comment-reply-link {
	display: inline-block;
	margin-top: 10px;
	font-size: 14px;
	color: #d31555;
	text-decoration: none;
	transition: color 0.3s;
}
.comment-reply .comment-reply-link:hover {
	color: var(--pink);
}
.comment-reply-title a, .comment-reply-title small {
	color: #d31555;
	text-decoration: none;
}
.comment-reply-title a:hover, .comment-reply-title small:hover {
	color: var(--pink);
}
.comment-notes {
	font-size: 14px;
	color: #555;
	margin-top: 10px;
	padding: 10px!important;
	margin-bottom: 10px;
	background-image: linear-gradient(to right, #eaeaea, #fff);
}
.comment-form p {
	padding: 10px 0;
}
.comment-form p.form-submit {
	padding: 0 0 20px 0;
}
.comment-form-author, .comment-form-email {
	float: left;
	width: 48%;
	box-sizing: border-box;
}
.comment-form-email {
	margin-left: 4%!important;
	margin-bottom: 10px;
}
.comment-form-comment, .comment-submit {
	clear: both;
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.comment-form-author input, .comment-form-email input, .comment-form-comment textarea {
	font-family: 'Poppins', sans-serif;
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	color: #333;
	transition: border-color 0.3s;
}
.comment-form-author input:focus, .comment-form-email input:focus, .comment-form-comment textarea:focus {
	border-color: #d31555;
	outline: none;
}
.comment-form-author label, .comment-form-email label, .comment-form-comment label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	color: #444;
}
.comment-form .required {
	color: #d31555;
}
.comment-submit {
	background-color: var(--pink);
	color: #fff;
	margin: 0 0 -20px 0;
	padding: 10px 20px;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	cursor: pointer;
	transition: background-color 0.3s;
}
.comment-submit:hover {
	background-color: #d31555;
}
.comment-form-url, .comment-form-cookies-consent, .logged-in-as {
	display: none;
}

.pagination {
	display: block;
	width: 100%;
	margin: 60px 0 25px 0;
	text-align: center;
}
.pagination .page-numbers {
	display: inline-block;
	margin: 0 2px;
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #fff;
	color: #333;
	text-decoration: none;
}
.pagination .page-numbers:hover {
	border: 1px solid var(--pink);
	color: var(--pink);
}
.pagination .current {
	background-color: var(--pink);
	color: #fff;
	border-color: var(--pink);
}
.pagination .page-numbers.current {
	color: #fff;
}
.no-posts {
	font-size: 16px;
	color: #777;
}

.archive-main .no-posts {
    background: #fff;
    padding: 5px 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px #d3155557;
    text-align: center;
}

.sayfa404 {
	min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 60px 20px;
    background-color: #fff;
    text-align: center;
}
.sayfa404-ic {
	max-width: 600px;
	width: 100%;
}
.hata-gorsel img {
	width: 100%;
	max-width: 400px;
	height: auto;
	border-radius: 50%;
}
.hata-baslik {
	font-size: 2.5rem;
	font-weight: bold;
	color: #d31555;
	margin: 15px 0;
}
.hata-aciklama {
	color: #666;
	font-size: 1.15rem;
	line-height: 1.6;
	margin-bottom: 30px;
}
.hata-buton .btn-primary {
	display: inline-block;
	background-color: #d31555;
	border: 3px solid #d31555;
	color: #fff;
	padding: 12px 24px;
	border-radius: 5px;
	text-decoration: none;
	font-size: 1.1rem;
	transition: background-color .3s, border-color .3s;
}
.hata-buton .btn-primary:hover {
	background-color: var(--pink);
	border: 3px solid #d31555;
}

@media (max-width: 1200px) {
    .pembearka {
        right: 30px;
	}
    .pembearka-harici {
        right: 30px;
	}
    header {
        flex-wrap: wrap;
        gap: 10px;
        padding: 20px 50px;
	}
    .menu-toggle {
        display: block;
        margin-bottom: 20px;
    }
    
    .nav-menu {
        width: 100%;
    }

    .nav-menu ul, .nav-menu-list {
        display: none;
        flex-direction: column;
        gap: 2px;
        width: 100%;
        background: #fff;
        padding-bottom: 0;
    }

    .nav-menu a, .nav-menu-list a {
        display: block;
        border-top: 1px solid #333;
        padding: 10px 20px;
    }

    .nav-menu.active ul, .nav-menu.active .nav-menu-list {
        display: flex;
    }
	.header-buttons {
		display: none;   
	}
	.header-buttons.active {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 10px;
	}
    .header-buttons a {
        width: 100%;
        text-align: center;
	}
	.menu-toggle {
        color: #fff;
        border: 2px solid #fff;
	}
	
    .sohbetbolum {
        align-items: flex-end;
        padding: 0 30px;
	}
	.latest-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media screen and (orientation: landscape) and (max-width: 991px) {
	.footer-left {
        max-width: 50%;
	}
}

@media (max-width: 991px) {
    .pembearka {
	    top: unset;
        bottom: 0;
        width: 193px;
        height: 100%;
	}
	.pembearka-harici {
	    top: unset;
        bottom: 0;
        width: 193px;
        height: 100%;
	}
	header {
		flex-wrap: wrap;
		gap: 10px;
		padding: 20px 50px;
	}
    .menu-toggle {
        display: block;
        margin-bottom: 20px;
    }
    
    .nav-menu {
        width: 100%;
    }

    .nav-menu ul, .nav-menu-list {
        display: none;
        flex-direction: column;
        gap: 2px;
        width: 100%;
        background: #fff;
        padding-bottom: 0;
    }

    .nav-menu a, .nav-menu-list a {
        display: block;
        border-top: 1px solid #333;
        padding: 10px 20px;
    }

    .nav-menu.active ul, .nav-menu.active .nav-menu-list {
        display: flex;
    }
	.header-buttons {
		display: none;   
	}
	.header-buttons.active {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 10px;
	}
    .header-buttons a {
        width: 100%;
        text-align: center;
	}
	.menu-toggle {
        color: #fff;
        border: 2px solid #fff;
	}
	.breadcrumb-row {
		flex-direction: column;
		justify-content: center;
	}
	#breadcrumb .breadcrumb-content {
		text-align: center;
	}
	.breadcrumb-nav {
		justify-content: center;
	}
	.sohbetbolum {
	    align-items: flex-end;
        padding: 0 30px;
	}
    .sohbetbolum-left h1 {
        font-size: 30px;
	}
    .ozellik-kutular {
        justify-content: center;
	}
    .sohbetet-container {
        align-items: flex-start;
        gap: 20px;
	}
    .sohbetet-image img {
        max-width: 450px;
	}
    .detay-wrapper {
        align-items: flex-start;
	}
    .contact-card small {
        width: 100%;
	}
	.latest-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.archive-grid .latest-card {
        flex: 0 0 calc((100% - 25px) / 2);
    }
}

@media (max-width: 768px) {
	.pembearka {
	    top: unset;
        bottom: -1px;
        width: 142px;
        height: 350px;
	}
	.pembearka-harici {
	    display: none;
	}
	header {
		flex-wrap: wrap;
		gap: 10px;
		padding: 20px;
	}
    .menu-toggle {
        display: block;
        margin-bottom: 20px;
    }
    
    .nav-menu {
        width: 100%;
    }

    .nav-menu ul, .nav-menu-list {
        display: none;
        flex-direction: column;
        gap: 2px;
        width: 100%;
        background: #fff;
        padding-bottom: 0;
    }

    .nav-menu a, .nav-menu-list a {
        display: block;
        border-top: 1px solid #333;
        padding: 10px 20px;
    }

    .nav-menu.active ul, .nav-menu.active .nav-menu-list {
        display: flex;
    }
	.header-buttons {
		display: none;   
	}
	.header-buttons.active {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
	}
    .header-buttons a {
        width: 100%;
        text-align: center;
	}
	.menu-toggle {
	    color: var(--pink);
        border: 2px solid var(--pink);
	}
	.breadcrumb-row {
		flex-wrap: wrap;
		justify-content: center;
	}
	#breadcrumb .breadcrumb-content {
		text-align: center;
	}
	.breadcrumb-nav {
		justify-content: center;
	}
	.sohbetbolum {
		flex-direction: column;
		padding: 30px 30px 0 30px;
	}
	.sohbetbolum-left, .sohbetbolum-right {
		text-align: center;
	}
	.sohbetbolum-left h1 {
        font-size: 26px;
	}
    .sohbetbolum-right img {
        margin-bottom: -1px;
	}
    .app-info p {
        text-align: left;
	}
    .form-info.mobil {
        display: inline-block;
        text-align: left;
	}
	.form-info.inline {
	    display: inline-block;
        text-align: center;
        font-size: 12px;
        margin: 0 0 10px 0;
	}
	
	.ozellikler {
		padding: 30px;
	}
	.ozellik-kutular {
        justify-content: center;
	}
	.detay-wrapper {
		flex-direction: column;
		text-align: center;
	}
	.detay-container {
		flex-direction: column;
		align-items: center;
	}
	.detay-box {
		width: 100%;
		max-width: 300px;
	}
	.arkadas-wrapper {
		flex-direction: column;
		text-align: center;
	}
	.arkadas-left, .arkadas-right {
		text-align: center;
	}
	.highlight-box {
		margin: 0 auto;
	}
	.makale-title {
		font-size: 26px;
	}
	.makale-text {
		font-size: 15px;
	}
	.footer-left {
    	justify-content: center;
	}
	.footer-left ul {
        justify-content: center;
    }
    .footer-left-copy {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
	}
	.footer-bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.footer-right {
		margin-top: 20px;
		text-align: center;
	}
	.store-buttons img {
        max-width: 130px;
	}
	.radio-player {
        flex-direction: column;
        text-align: center;
        gap: 15px;
	}
	.section-latest {
		padding: 40px 0;
	}
	.latest-grid {
		grid-template-columns: 1fr;
	}
	.site-sidebar {
        max-width: 100%;
        order: 1;
    }
    .single-main, .archive-main {
        max-width: 100%;
    }
    .single-meta {
        justify-content: space-around;
    }
    .archive-grid .latest-card {
        flex: 0 0 100%;
    }
}

@media (min-width: 401px) and (max-width: 450px) {
	.pembearka {
        width: 154px;
        height: 380px;
	}
}