:root {
    --zodiac-accent: #dc3545;
    --zodiac-accent-2: #c82333;
    --zodiac-hero-icon: url("/assets/aries-160x160.png");
}

/* Zodiac list page (burclar) */
.zodiacs-page {
    background: #fff;
}

.zodiacs-hero {
    padding: 100px 0;
    background-image: url("/assets/Burclar%20sayfas%C4%B1%20bur%C3%A7lar/pink_background-640x400.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.zodiacs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.zodiacs-hero .container {
    position: relative;
    z-index: 2;
}

.zodiacs-hero h1 {
    font-size: 3.8rem;
    color: var(--astro-dark-red);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.zodiac-item {
    transition: all 0.4s ease;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none !important;
    display: block;
    color: inherit;
}

.zodiac-item:hover {
    transform: translateY(-10px);
    background-color: #fff9fb;
}

.zodiac-item img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    transition: transform 0.4s ease;
    display: block;
    margin: 0 auto;
}

.zodiac-item:hover img {
    transform: scale(1.1);
}

.zodiac-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--astro-dark-red);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.zodiac-date {
    font-size: 0.9rem;
    color: var(--astro-wood);
    margin: 0;
}

@media (max-width: 768px) {
    .zodiac-item img {
        width: 100px;
        height: 100px;
    }

    .zodiac-name {
        font-size: 1.1rem;
    }

    .zodiac-date {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .zodiac-item {
        padding: 15px;
    }

    .zodiac-item img {
        width: 90px;
        height: 90px;
    }

    .zodiac-name {
        font-size: 1rem;
    }
}

/* Modern Zodiac Page Styles */
/* Yatay scroll'u engelle */
.zodiac-modern-main {
    background: linear-gradient(135deg, #f7f6f8 0%, #e8e4ea 100%);
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Row margin kontrolü - Bootstrap negatif margin'i engelle */
.zodiac-modern-main .row {
    margin-right: 0;
    margin-left: 0;
}

.zodiac-hero-section {
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

.zodiac-hero-background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    opacity: 0.2;
    pointer-events: none;
}

.zodiac-hero-background::before,
.zodiac-hero-background::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.zodiac-hero-background::before {
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--zodiac-accent);
}

.zodiac-hero-background::after {
    bottom: 10%;
    left: 10%;
    width: 350px;
    height: 350px;
    background: var(--zodiac-accent-2);
}

.zodiac-hero-card-modern {
    background-image: url("/assets/hero_yellow.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.15);
    position: relative;
}

@media (min-width: 992px) {
    .zodiac-hero-card-modern {
        min-height: 400px;
    }
}

@media (max-width: 991.98px) {
    .zodiac-hero-card-modern {
        border-radius: 15px;
    }
}

.zodiac-hero-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(250, 237, 205, 0.95) 0%, rgba(245, 235, 224, 0.9) 100%);
    z-index: 1;
}

.zodiac-hero-card-modern::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 50%;
    height: 80%;
    transform: translateY(-50%);
    background-image: var(--zodiac-hero-icon);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    mix-blend-mode: multiply;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .zodiac-hero-card-modern::after {
        display: none;
    }
}

.zodiac-hero-content-modern {
    position: relative;
    z-index: 2;
    border-radius: 15px;
    margin: 1rem;
}

@media (min-width: 768px) {
    .zodiac-hero-content-modern {
        margin: 1.25rem;
        border-radius: 18px;
    }
}

@media (min-width: 992px) {
    .zodiac-hero-content-modern {
        margin: 1.5rem;
        border-radius: 20px;
    }
}

.zodiac-badge-fire,
.zodiac-badge-earth,
.zodiac-badge-air,
.zodiac-badge-water {
    background: rgba(220, 53, 69, 0.15);
    color: var(--zodiac-accent);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(220, 53, 69, 0.3);
    font-size: 0.7rem;
    letter-spacing: 1px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .zodiac-badge-fire,
    .zodiac-badge-earth,
    .zodiac-badge-air,
    .zodiac-badge-water {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

.zodiac-hero-title-modern {
    font-size: 2rem;
    font-weight: 900;
    color: #7F5539;
    line-height: 1.1;
}

@media (min-width: 576px) {
    .zodiac-hero-title-modern {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .zodiac-hero-title-modern {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .zodiac-hero-title-modern {
        font-size: 3.5rem;
    }
}

.zodiac-date-badge {
    color: #7F5539;
    border-radius: 10px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .zodiac-date-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

.zodiac-hero-description {
    color: #5a4a3a;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 100%;
    font-weight: 400;
}

@media (min-width: 768px) {
    .zodiac-hero-description {
        font-size: 0.95rem;
        max-width: 600px;
    }
}

@media (min-width: 992px) {
    .zodiac-hero-description {
        font-size: 1rem;
    }
}

.zodiac-info-section {
    background: transparent;
}

.zodiac-info-card-modern {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
    height: 100%;
}

.zodiac-info-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.zodiac-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.zodiac-icon-mars,
.zodiac-icon-venus,
.zodiac-icon-mercury,
.zodiac-icon-moon,
.zodiac-icon-sun,
.zodiac-icon-jupiter,
.zodiac-icon-saturn,
.zodiac-icon-uranus,
.zodiac-icon-neptune,
.zodiac-icon-pluto,
.zodiac-icon-earth,
.zodiac-icon-air,
.zodiac-icon-water,
.zodiac-icon-fire,
.zodiac-icon-color {
    background: rgba(220, 53, 69, 0.1);
    color: var(--zodiac-accent);
}

.zodiac-icon-stone {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.zodiac-info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #6c757d;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.zodiac-info-value {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
}

.zodiac-tabs-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.zodiac-tabs-container {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}

.zodiac-tabs-container::-webkit-scrollbar {
    display: none;
}

.zodiac-tab-btn {
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: #6c757d;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.zodiac-tab-btn i {
    font-size: 1rem;
}

.zodiac-tab-btn:hover {
    color: var(--zodiac-accent);
    background: rgba(220, 53, 69, 0.05);
}

.zodiac-tab-btn.active {
    color: var(--zodiac-accent);
    font-weight: 700;
    border-bottom-color: var(--zodiac-accent);
    background: rgba(220, 53, 69, 0.05);
}

.zodiac-tab-content-wrapper {
    position: relative;
}

.zodiac-tab-content-modern {
    display: none;
}

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

.zodiac-content-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.zodiac-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.zodiac-title-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(220, 53, 69, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zodiac-accent);
    font-size: 1.25rem;
}

.zodiac-content-text {
    color: #495057;
    line-height: 1.8;
    margin: 0;
}

.zodiac-compatibility-item-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s;
}

.zodiac-compatibility-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.zodiac-compatibility-high-card {
    border-left: 4px solid #22c55e;
}

.zodiac-compatibility-medium-card {
    border-left: 4px solid #FFD700;
}

.zodiac-compatibility-low-card {
    border-left: 4px solid #ef4444;
    opacity: 0.8;
}

.zodiac-compatibility-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.zodiac-badge-koc { background: linear-gradient(135deg, #dc3545, #c82333); }
.zodiac-badge-boga { background: linear-gradient(135deg, #27AE60, #2ECC71); }
.zodiac-badge-ikizler { background: linear-gradient(135deg, #FFD700, #FFA500); }
.zodiac-badge-yengec { background: linear-gradient(135deg, #2980B9, #6DD5FA); }
.zodiac-badge-aslan { background: linear-gradient(135deg, #FF6347, #FF4500); }
.zodiac-badge-basak { background: linear-gradient(135deg, #27AE60, #2ECC71); }
.zodiac-badge-terazi { background: linear-gradient(135deg, #A855F7, #7C3AED); }
.zodiac-badge-akrep { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.zodiac-badge-yay { background: linear-gradient(135deg, #FF6347, #FF4500); }
.zodiac-badge-oglak { background: linear-gradient(135deg, #34495E, #2C3E50); }
.zodiac-badge-kova { background: linear-gradient(135deg, #0EA5E9, #0284C7); }
.zodiac-badge-balik { background: linear-gradient(135deg, #3B82F6, #2563EB); }

.zodiac-badge-success,
.zodiac-badge-love,
.zodiac-badge-career {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
}

.zodiac-badge-success { background: linear-gradient(135deg, #22c55e, #16a34a); }
.zodiac-badge-love { background: linear-gradient(135deg, #ec4899, #db2777); }
.zodiac-badge-career { background: linear-gradient(135deg, #0ea5e9, #0284c7); }

.zodiac-compatibility-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #212529;
}

.zodiac-compatibility-percent {
    font-size: 0.75rem;
    font-weight: 700;
}

.zodiac-percent-high {
    color: #22c55e;
}

.zodiac-percent-medium {
    color: #FFD700;
}

.zodiac-percent-low {
    color: #ef4444;
}

.zodiac-compatibility-desc {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.zodiac-famous-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.05);
    font-size: 0.85rem;
    font-weight: 500;
    color: #495057;
}

.zodiac-motto-card {
    background: var(--zodiac-accent);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(220, 53, 69, 0.3);
}

.zodiac-motto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
    opacity: 0.1;
}

.zodiac-motto-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
}

.zodiac-motto-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.zodiac-motto-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Sign overrides via class */
.zodiac--koc {
    --zodiac-accent: #dc3545;
    --zodiac-accent-2: #c82333;
    --zodiac-hero-icon: url("/assets/aries-160x160.png");
}

.zodiac--boga {
    --zodiac-accent: #198754;
    --zodiac-accent-2: #157347;
    --zodiac-hero-icon: url("/assets/taurus-160x160.png");
}

.zodiac--ikizler {
    --zodiac-accent: #f59e0b;
    --zodiac-accent-2: #d97706;
    --zodiac-hero-icon: url("/assets/gemini-160x160.png");
}

.zodiac--yengec {
    --zodiac-accent: #2980B9;
    --zodiac-accent-2: #1f6fa5;
    --zodiac-hero-icon: url("/assets/cancer-160x160.png");
}

.zodiac--aslan {
    --zodiac-accent: #ff6347;
    --zodiac-accent-2: #ff4500;
    --zodiac-hero-icon: url("/assets/leo-160x160.png");
}

.zodiac--basak {
    --zodiac-accent: #16a34a;
    --zodiac-accent-2: #15803d;
    --zodiac-hero-icon: url("/assets/virgo-160x160.png");
}

.zodiac--terazi {
    --zodiac-accent: #db2777;
    --zodiac-accent-2: #be185d;
    --zodiac-hero-icon: url("/assets/libra-160x160.png");
}

.zodiac--akrep {
    --zodiac-accent: #7c3aed;
    --zodiac-accent-2: #6d28d9;
    --zodiac-hero-icon: url("/assets/anasayfa%20bur%C3%A7lar/scorpio-160x160.png");
}

.zodiac--yay {
    --zodiac-accent: #ef4444;
    --zodiac-accent-2: #dc2626;
    --zodiac-hero-icon: url("/assets/sagittarius-160x160.png");
}

.zodiac--oglak {
    --zodiac-accent: #334155;
    --zodiac-accent-2: #0f172a;
    --zodiac-hero-icon: url("/assets/capricorn-160x160.png");
}

.zodiac--kova {
    --zodiac-accent: #0ea5e9;
    --zodiac-accent-2: #0284c7;
    --zodiac-hero-icon: url("/assets/aquarius-160x160.png");
}

.zodiac--balik {
    --zodiac-accent: #3b82f6;
    --zodiac-accent-2: #2563eb;
    --zodiac-hero-icon: url("/assets/pisces-1-160x160.png");
}

