:root {
	/* Mobil görünümler için kolay kontrol değişkenleri */
	--mobile-map-gap: 0px;
	/* Haritaların alt alta aralarındaki boşluk */
	--mobile-map-padding: 0px;
	/* Haritaların ekranın sağ ve sol kenarlarına olan boşluğu */
	-webkit-tap-highlight-color: transparent;
}

@font-face {
	font-family: 'SF Pro Display';
	src: url('../fonts/SFProDisplay-Medium.woff2') format('woff2');
	font-weight: 500;
}

@font-face {
	font-family: 'SF Pro Display';
	src: url('../fonts/SFProDisplay-Bold.woff2') format('woff2');
	font-weight: bold;
}

@font-face {
	font-family: 'SF Pro Display';
	src: url('../fonts/SFProDisplay-Black.woff2') format('woff2');
	font-weight: 900;
}

@font-face {
	font-family: 'SF Pro Rounded';
	src: url('../fonts/SFProRounded-Bold.woff2') format('woff2');
	font-weight: bold;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'SF Pro Display', sans-serif;
	background: #fff;
	color: #000;
	/* min-height: 100vh; */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding-top: 10px;
}

.creator-profile-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 5px 20px 10px;
}

.profile-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.profile-info img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid #eaeaea;
	background-color: #f0f0f0;
}

.creator-nickname {
	font-weight: 700;
	font-size: 16px;
	color: #111;
	font-family: 'SF Pro Rounded', sans-serif;
}

.twitter-follow-btn {
	background-color: #1DA1F2;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	padding: 8px 16px;
	border-radius: 9999px;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
	font-family: 'SF Pro Rounded', 'SF Pro Display', sans-serif;
}

@media (hover: hover) {
	.twitter-follow-btn:hover {
		background-color: #1a91da;
		transform: translateY(-1px);
	}
}

#turkey-map {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

svg {
	width: 100%;
	height: auto;
	display: block;
}

.header-container {
	text-align: center;
	padding: 0 20px;
	margin-top: 10px;
	margin-bottom: 40px;
}

.header-container h1 {
	font-size: 32px;
	font-weight: 600;
	color: #111;
	margin-bottom: 8px;
	letter-spacing: -0.5px;
}

.header-container p {
	font-size: 16px;
	font-weight: 500;
	color: #777;
}

@media (max-width: 768px) {
	.header-container {
		margin-top: 20px;
		margin-bottom: 20px;
	}

	.header-container h1 {
		font-size: 24px;
	}

	.header-container p {
		font-size: 14px;
	}
}

svg path {
	fill: #ddd;
	stroke: #fff;
	stroke-width: 1px;
	cursor: pointer;
	transition: fill 0.3s ease-in-out;
}

svg text {
	font-size: 12px;
	fill: #000;
	stroke: none;
	text-anchor: middle;
	pointer-events: none;
	font-weight: bold;
	font-family: 'SF Pro Rounded', 'SF Pro Display', sans-serif;
}

svg circle {
	display: none;
}

svg path:hover {
	fill: #999 !important;
}

.hidden {
	display: none !important;
}

#vote-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	align-items: center;
	display: flex;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

#vote-modal.show {
	opacity: 1;
	visibility: visible;
}

.modal-content {
	background: #fff;
	padding: 20px 24px;
	min-width: 250px;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	transform: scale(0.9);
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#vote-modal.show .modal-content {
	transform: scale(1);
}

.modal-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 16px;
}

#modal-city-name {
	font-size: 22px;
	font-weight: 600;
	color: #111;
}

.rating-badge {
	padding: 4px 8px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	color: #000;
}

.vote-buttons {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
	justify-content: center;
	font-family: 'SF Pro Rounded', sans-serif !important;
}

.vote-buttons button {
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background: #f0f0f0;
	color: #111;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	transition: all 0.2s ease;
	font-family: 'SF Pro Rounded', sans-serif !important;
	outline: none;
	-webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
	.vote-buttons button:hover {
		transform: translateY(-2px);
	}

	.vote-buttons button:nth-child(1):hover {
		background: #ff4d4d;
		color: #fff;
	}

	.vote-buttons button:nth-child(2):hover {
		background: #ffa64d;
		color: #000;
	}

	.vote-buttons button:nth-child(3):hover {
		background: #ffff4d;
		color: #000;
	}

	.vote-buttons button:nth-child(4):hover {
		background: #a6ff4d;
		color: #000;
	}

	.vote-buttons button:nth-child(5):hover {
		background: #4dff4d;
		color: #000;
	}
}

.close-btn {
	width: 100%;
	padding: 10px;
	border: none;
	border-radius: 8px;
	background: #f0f0f0;
	color: #333;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	transition: background 0.2s ease;
	font-family: 'SF Pro Display', sans-serif;
}

.close-btn:hover {
	background: #e0e0e0;
}

#toast {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #000;
	color: #fff;
	padding: 10px 20px;
}

.mobile-west,
.mobile-east {
	display: none;
}

.desktop-map {
	display: block;
}

@media (max-width: 768px) {
	.desktop-map {
		display: none !important;
	}

	.mobile-west,
	.mobile-east {
		display: block;
		width: calc(100% - (var(--mobile-map-padding) * 2));
		margin: 0 auto;
		margin-bottom: var(--mobile-map-gap);
		overflow: hidden;
	}
}

.rankings-container {
	display: flex;
	justify-content: center;
	gap: 40px;
	width: 100%;
	max-width: 1000px;
	margin: 10px auto 40px;
	padding: 0 20px;
}

.ranking-section {
	flex: 1;
	background: #fbfbfb;
	border-radius: 16px;
	padding: 24px;
	border: 1px solid #eee;
}

.ranking-section h3 {
	text-align: center;
	margin-bottom: 20px;
	font-size: 20px;
	color: #111;
	font-weight: 800;
	letter-spacing: -0.3px;
	font-family: 'SF Pro Rounded', sans-serif;
}

.city-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.city-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
	.city-list li:hover {
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	}
}

.rank-number {
	font-weight: 900;
	color: #aaa;
	width: 25px;
	font-size: 15px;
}

.city-name {
	font-weight: 600;
	font-size: 16px;
	flex: 1;
	color: #222;
}

.city-rating {
	padding: 4px 10px;
	border-radius: 8px;
	font-weight: bold;
	font-size: 14px;
	color: #000;
	min-width: 35px;
	text-align: center;
	font-family: 'SF Pro Rounded', sans-serif;
}

@media (max-width: 768px) {
	.rankings-container {
		flex-direction: column;
		gap: 20px;
		padding: 0 15px;
		margin-bottom: 30px;
	}

	.ranking-section {
		padding: 20px 15px;
	}
}