: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;
}

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  {
	display: flex;
	gap: 20px;
	padding-bottom: 15px;
}

.nav-menu a {
	font-weight: 500;
	font-size: 15px;
	color: #000;
}

.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);
}

.form-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 {
	text-align: center;
	display: block;
	font-size: 14px;
	color: var(--pink);
	font-weight: 600;
	padding: 12px;
	border: 2px solid var(--pink);
	border-radius: 25px;
}

.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: #fbe8e8 url('../img/makalebg.webp');
	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('../img/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 a {
    font-size: 15px;
	padding: 0 10px;
	border-right: 1px solid #444;
}

.footer-left a:last-child {
	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;
}

.about-section {
	padding: 60px 20px;
	background: #ffdbdb85 url(../img/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: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.04);
	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: 30px;
    font-size: 11px;
}

.help-section {
	padding: 60px 20px;
	background: #ffdbdb85 url(../img/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: #fff;
	color: #333;
}

.accordion-item.active .accordion-body {
	display: block;
}

.radio-ozellikler {
    background: #d31555;
    padding: 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;
}

@media (max-width: 1200px) {
    .pembearka {
        right: 30px;
	}
    header {
        flex-wrap: wrap;
        gap: 10px;
        padding: 20px 50px;
	}
    .menu-toggle {
        display: block;
        margin-bottom: 20px;
	}
	
    .nav-menu {
		display: none;
		flex-direction: column;
		gap: 2px;
		width: 100%;
		background: #fff;
		padding-bottom: 0;
	}
	
	.nav-menu a {
		border-top: 1px solid #333;
		padding: 10px 20px;
	}
	
	.nav-menu.active {
		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;
	}
}

@media (max-width: 991px) {
    .pembearka {
	    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 {
		display: none;
		flex-direction: column;
		gap: 2px;
		width: 100%;
		background: #fff;
		padding-bottom: 0;
	}
	
	.nav-menu a {
		border-top: 1px solid #333;
		padding: 10px 20px;
	}
	
	.nav-menu.active {
		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;
	}
    .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%;
	}
    .footer-left {
        max-width: 50%;
	}
}

@media (max-width: 768px) {
	.pembearka {
	    top: unset;
        bottom: -1px;
        width: 142px;
        height: 350px;
	}
	header {
		flex-wrap: wrap;
		gap: 10px;
		padding: 20px;
	}
    .menu-toggle {
        display: block;
        margin-bottom: 20px;
	}
	
    .nav-menu {
		display: none;
		flex-direction: column;
		gap: 2px;
		width: 100%;
		background: #fff;
		padding-bottom: 0;
	}
	
	.nav-menu a {
		border-top: 1px solid #333;
		padding: 10px 20px;
	}
	
	.nav-menu.active {
		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);
	}
	.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-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;
	}
}

@media (min-width: 401px) and (max-width: 450px) {
	.pembearka {
        width: 154px;
        height: 380px;
	}
}