/* Burçlar Sayfası */
.burclar-page {
    min-height: 100vh;
	background: radial-gradient(circle at top, #1f2937 0%, #020617 55%, #020617 100%);
    padding: 20px 0 40px;
}

/* Başlık */
.burclar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 20px;
	background: rgba(15,23,42,0.85);
	border-radius: 12px;
	border: 1px solid rgba(148,163,184,0.45);
	box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.burclar-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.burclar-icon {
    font-size: 28px;
}

.burclar-title h1 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.burclar-date {
    color: #a0c4ff;
    font-size: 14px;
    font-weight: 500;
}

/* Burç Kartları Grid */
.burclar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

/* Burç Kartı */
.burc-card {
	background: rgba(15,23,42,0.92);
	padding: 20px 18px 18px;
	text-align: center;
	text-decoration: none;
	transition: all 0.25s ease;
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	border: 1px solid rgba(148,163,184,0.5);
}

.burc-card:hover {
	transform: translateY(-6px) scale(1.01);
	box-shadow: 0 22px 45px rgba(0,0,0,0.55);
}

.burc-card::before {
    content: '';
    position: absolute;
	top: -40px;
	right: -40px;
	width: 120px;
	height: 120px;
	background: radial-gradient(circle at center, rgba(248,250,252,0.2), transparent 70%);
	opacity: 0.7;
	pointer-events: none;
}

.burc-emoji {
		width: 64px;
		height: 64px;
		margin: 0 auto 12px;
		border-radius: 999px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: radial-gradient(circle at top, var(--burc-color) 0%, rgba(15,23,42,1) 70%);
		box-shadow: 0 12px 28px rgba(15,23,42,0.9);
		font-size: 30px;
}

.burc-emoji img {
		width: 40px;
		height: 40px;
		object-fit: contain;
		display: block;
}

.burc-sembol {
	font-size: 20px;
	color: #e5e7eb;
	margin-bottom: 4px;
}

.burc-ad {
    font-size: 18px;
    font-weight: 700;
	color: #f9fafb;
    margin-bottom: 5px;
}

.burc-tarih {
    font-size: 12px;
	color: #9ca3af;
    margin-bottom: 10px;
}

.burc-element {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
	color: #e5e7eb;
	background: rgba(15,23,42,0.9);
    padding: 4px 10px;
    margin-bottom: 12px;
}

.burc-yorum-kisa {
	font-size: 13px;
		color: #d1d5db;
	margin-bottom: 10px;
	min-height: 42px;
}

.burc-yorum-empty {
	color: #9ca3af;
	font-style: italic;
}

.burc-detay-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--burc-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Detay Sayfası */
.burc-detail-layout {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 20px;
}

.burc-detail-card {
		background: rgba(15,23,42,0.96);
		padding: 22px 20px;
		border-radius: 16px;
		border: 1px solid rgba(148,163,184,0.6);
		box-shadow: 0 22px 50px rgba(0,0,0,0.6);
}

.burc-detail-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 15px;
}

.burc-detail-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.burc-detail-right {
	text-align: right;
	font-size: 13px;
		color: #e5e7eb;
}

/* Tab Sekmeler */
.burc-detail-tabs {
	width: 100%;
}

.tabs-nav {
	display: flex;
	gap: 0;
	border-bottom: 2px solid rgba(148,163,184,0.3);
	margin-bottom: 20px;
}

.tab-btn {
	padding: 12px 20px;
	background: transparent;
	border: none;
	color: #9ca3af;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
}

.tab-btn:hover {
	color: #e5e7eb;
}

.tab-btn.active {
	color: #fbbf24;
	border-bottom-color: #fbbf24;
}

.tab-content {
	display: none;
	animation: fadeIn 0.3s ease;
}

.tab-content.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.burc-detail-body h2 {
	font-size: 18px;
	margin: 0 0 8px;
}

.burc-detail-body p {
	font-size: 14px;
	line-height: 1.6;
		color: #e5e7eb;
}

.burc-detail-meta {
	margin-top: 15px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.burc-detail-meta span {
		background: rgba(15,23,42,0.9);
	padding: 4px 10px;
	font-size: 12px;
		color: #e5e7eb;
}

.burc-detail-sidebar {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.back-to-list {
	display: inline-block;
	padding: 8px 12px;
	background: rgba(255,255,255,0.12);
	color: #e5e7eb;
	font-size: 13px;
	text-decoration: none;
	border: 1px solid rgba(255,255,255,0.18);
}

.other-signs-title {
	color: #e5e7eb;
	font-size: 14px;
	font-weight: 600;
}

.other-signs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

.other-sign-item {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 8px;
	background: rgba(15,23,42,0.3);
	border: 1px solid rgba(148,163,184,0.4);
	color: #e5e7eb;
	text-decoration: none;
	font-size: 13px;
}

.other-sign-item.active {
	border-color: #fbbf24;
	background: rgba(251,191,36,0.08);
}

.other-sign-emoji {
	font-size: 16px;
}

.other-sign-name {
	flex: 1;
}

.burc-detay-link span {
    transition: transform 0.3s;
}

.burc-card:hover .burc-detay-link span {
    transform: translateX(5px);
}

/* Bilgi Kartları */
.burclar-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.info-card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    text-align: center;
}

.info-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.info-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.info-desc {
    font-size: 13px;
    color: #a0c4ff;
}

/* Responsive */
@media (max-width: 992px) {
	.burclar-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.burc-detail-layout {
		grid-template-columns: 1fr;
	}
    .burclar-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .burclar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .burclar-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .burclar-title h1 {
        font-size: 18px;
    }
		.burc-card {
			padding: 16px 14px 14px;
		}
		.burc-emoji {
			width: 56px;
			height: 56px;
			font-size: 26px;
			margin-bottom: 10px;
		}
		.burc-detail-card {
			padding: 18px 16px;
		}
		.burc-detail-header {
			flex-direction: column;
			align-items: flex-start;
			text-align: left;
		}
		.burc-detail-right {
			text-align: left;
		}
		.tabs-nav {
			overflow-x: auto;
		}
		.burc-detail-header {
			flex-direction: column;
			text-align: left;
		}
}

@media (max-width: 480px) {
    .burclar-grid {
        grid-template-columns: 1fr;
    }
    .burclar-info {
        grid-template-columns: 1fr;
    }
		.other-signs-grid {
			grid-template-columns: 1fr;
		}
		.tabs-nav {
			flex-wrap: wrap;
		}
		.tab-btn {
			flex: 1 1 50%;
			text-align: center;
			padding: 8px 6px;
			font-size: 13px;
		}
}

