/* ================= GLOBAL DEĞİŞKENLER VE TEMELLER ================= */
:root {
    /* Renk Paleti - Lüks Mistik Kozmos */
    --color-bg-deep: #07070c;
    --color-bg-space: #0f0c1b;
    --color-accent-gold: #d4af37;
    --color-accent-gold-rgb: 212, 175, 55;
    --color-accent-purple: #8e44ad;
    --color-accent-purple-rgb: 142, 68, 173;
    --color-accent-blue: #3498db;
    --color-accent-blue-rgb: 52, 152, 219;
    --color-accent-pink: #e84393;
    --color-accent-pink-rgb: 232, 67, 147;
    --color-text-primary: #f5f5f7;
    --color-text-secondary: #a1a1a6;
    
    /* Cam Efekti (Glassmorphism) */
    --glass-bg: rgba(15, 12, 30, 0.55);
    --glass-border: rgba(212, 175, 55, 0.12);
    --glass-border-hover: rgba(212, 175, 55, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-blur: blur(12px);

    /* Form ve Alan Girişleri */
    --input-bg: rgba(0, 0, 0, 0.3);
    --input-border: rgba(255, 255, 255, 0.08);

    /* Üst Menü & Alt Menü Renkleri */
    --header-bg: rgba(7, 7, 12, 0.8);
    --header-border: rgba(255, 255, 255, 0.05);
    --footer-bg: #040407;
    --footer-border: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] {
    --color-bg-deep: #f5f5f7;
    --color-bg-space: #e3e3eb;
    --color-text-primary: #0f0f14;
    --color-text-secondary: #4a4a58;
    
    /* Mistik Altın Rengini Açık Modda Daha Okunabilir Yapıyoruz */
    --color-accent-gold: #967216;
    --color-accent-gold-rgb: 150, 114, 22;
    
    /* Cam Efekti */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(150, 114, 22, 0.2);
    --glass-border-hover: rgba(150, 114, 22, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
    
    /* Form ve Alan Girişleri */
    --input-bg: rgba(255, 255, 255, 0.85);
    --input-border: rgba(0, 0, 0, 0.12);

    /* Üst Menü & Alt Menü Renkleri */
    --header-bg: rgba(245, 245, 247, 0.88);
    --header-border: rgba(0, 0, 0, 0.08);
    --footer-bg: #e3e3eb;
    --footer-border: rgba(0, 0, 0, 0.08);
    
    color-scheme: light;
}

/* Dinamik Tema Overrides (Açık Tema Seçildiğinde) */
[data-theme="light"] input[type="text"],
[data-theme="light"] input[type="email"],
[data-theme="light"] input[type="password"],
[data-theme="light"] input[type="date"],
[data-theme="light"] input[type="time"],
[data-theme="light"] select,
[data-theme="light"] textarea {
    background: var(--input-bg) !important;
    border: 1px solid var(--input-border) !important;
    color: var(--color-text-primary) !important;
}

[data-theme="light"] .plan-card-inner,
[data-theme="light"] .birth-chart-graphic-wrapper {
    background: var(--input-bg) !important;
    border: 1px solid var(--input-border) !important;
    box-shadow: none !important;
}

[data-theme="light"] .theme-toggle-btn {
    background: rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    color: var(--color-text-primary) !important;
}

[data-theme="light"] .nav-link {
    color: #2c2c35 !important;
}

[data-theme="light"] .nav-link:hover, 
[data-theme="light"] .nav-link.active {
    color: var(--color-accent-gold) !important;
}

[data-theme="light"] .footer-links ul a {
    color: #3a3a45 !important;
}

[data-theme="light"] .footer-links ul a:hover {
    color: var(--color-accent-gold) !important;
}

[data-theme="light"] .footer-tagline {
    color: #3a3a45 !important;
}

[data-theme="light"] .footer-copyright {
    color: #3a3a45 !important;
    opacity: 0.85 !important;
}

[data-theme="light"] .btn-secondary {
    background: rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: var(--color-text-primary) !important;
}

[data-theme="light"] .btn-secondary:hover {
    background: rgba(150, 114, 22, 0.12) !important;
    border-color: var(--color-accent-gold) !important;
    color: var(--color-accent-gold) !important;
}

[data-theme="light"] .ambient-btn {
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: var(--color-accent-gold) !important;
    color: var(--color-accent-gold) !important;
}

.theme-toggle-btn:hover {
    color: var(--color-accent-gold) !important;
    border-color: var(--color-accent-gold) !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3) !important;
    transform: scale(1.05);
}

:root {
    /* Fontlar */
    --font-serif: 'Cinzel', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Daireler & Gölgeler */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --max-width: 1200px;
    
    color-scheme: dark;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent-gold) var(--color-bg-deep);
}

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

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Kozmik Canvas ve Nebula Arka Planı */
#cosmic-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

.nebula-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 20% 30%, rgba(142, 68, 173, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(52, 152, 219, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(232, 67, 147, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* Özel Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-gold);
}

/* ================= TIPOGRAFİ VE BUTONLAR ================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--color-text-primary);
    font-weight: 600;
    letter-spacing: 1px;
}

a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: "✦";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: var(--color-accent-gold);
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.celestial-report-container {
    margin-bottom: 5rem;
}

.featured-horoscopes {
    margin-bottom: 4rem;
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-header.center {
    text-align: center;
}

/* Cam Efektli Kart (Glass Card) */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(212, 175, 55, 0.08);
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.95) !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, #b89326 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 40%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(30deg);
    transition: none;
    opacity: 0;
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
    background: linear-gradient(135deg, #f1c40f 0%, var(--color-accent-gold) 100%);
}

.btn-primary:hover::after {
    left: 140%;
    opacity: 1;
    transition: all 0.7s cubic-bezier(0.3, 1, 0.2, 1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.btn-block {
    width: 100%;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent-gold);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-back:hover {
    color: var(--color-text-primary);
    transform: translateX(-4px);
}

/* ================= LAYOUT GRIDS ================= */
.grid {
    display: grid;
    gap: 24px;
    margin-bottom: 2rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* ================= GLOBAL HEADER & NAV ================= */
.global-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--header-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--header-border);
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo-symbol {
    color: var(--color-accent-gold);
    font-size: 1.7rem;
    animation: pulseGlow 3s infinite ease-in-out;
}

.logo-text .highlight {
    color: var(--color-accent-gold);
    font-family: var(--font-sans);
    font-weight: 300;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-accent-gold);
}

.nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mistik Ses Kontrol Butonu */
.ambient-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(15, 12, 30, 0.85);
    border: 1px solid var(--color-accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
    color: var(--color-accent-gold);
}

.ambient-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.sound-wave {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 15px;
    position: absolute;
    opacity: 0;
    transition: var(--transition-smooth);
}

.sound-wave span {
    width: 2px;
    height: 100%;
    background-color: var(--color-accent-gold);
    animation: bounceWave 0.8s ease infinite alternate;
}

.sound-wave span:nth-child(2) { animation-delay: 0.15s; }
.sound-wave span:nth-child(3) { animation-delay: 0.3s; }
.sound-wave span:nth-child(4) { animation-delay: 0.45s; }

.ambient-btn.playing .sound-wave {
    opacity: 1;
}

.ambient-btn.playing .mute-icon,
.ambient-btn.playing .play-icon {
    display: none;
}

/* ================= SAYFA GÖRÜNÜM KONTROLLERİ ================= */
.view-section {
    display: none;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 24px;
    flex-grow: 1;
    width: 100%;
    animation: fadeInView 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.view-section.active {
    display: block;
}

@keyframes fadeInView {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= ANA SAYFA BÖLÜMÜ ================= */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 70vh;
    margin-bottom: 5rem;
}

.hero-content {
    flex: 1.2;
    max-width: 650px;
}

.celestial-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.25);
    animation: shimmer 4s infinite linear;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: var(--color-text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Usturlab (Astrolabe) Görsel Efekti */
.astrolabe-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(212, 175, 55, 0.2);
}

.outer-ring {
    width: 100%;
    height: 100%;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(212, 175, 55, 0.3) transparent;
    animation: rotateClockwise 25s infinite linear;
}

.middle-ring {
    width: 80%;
    height: 80%;
    border-color: rgba(142, 68, 173, 0.3) rgba(142, 68, 173, 0.1);
    animation: rotateCounterClockwise 15s infinite linear;
}

.inner-ring {
    width: 60%;
    height: 60%;
    border-width: 2px;
    border-color: rgba(212, 175, 55, 0.25) transparent;
    animation: rotateClockwise 10s infinite linear;
}

.celestial-center {
    font-size: 3rem;
    color: var(--color-accent-gold);
    animation: pulseSun 4s infinite ease-in-out;
}

/* Gökyüzü Durumu Kartları */
.celestial-card {
    text-align: center;
    position: relative;
}

.celestial-card-icon {
    font-size: 2.2rem;
    color: var(--color-accent-gold);
    margin-bottom: 1rem;
    display: inline-block;
}

.celestial-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.celestial-card-val {
    color: var(--color-accent-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.celestial-card-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* Element Kartları */
.element-card {
    cursor: pointer;
    text-align: center;
    border-top: 4px solid transparent;
}

.element-card.fire { border-top-color: var(--color-accent-pink); }
.element-card.earth { border-top-color: #2ecc71; }
.element-card.air { border-top-color: var(--color-accent-blue); }
.element-card.water { border-top-color: var(--color-accent-purple); }

.element-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.element-card.fire .element-icon { color: var(--color-accent-pink); }
.element-card.earth .element-icon { color: #2ecc71; }
.element-card.air .element-icon { color: var(--color-accent-blue); }
.element-card.water .element-icon { color: var(--color-accent-purple); }

.element-card h3 {
    margin-bottom: 0.5rem;
}

.element-desc {
    color: var(--color-text-secondary);
    margin-bottom: 1.2rem;
}

.element-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ================= BURÇLAR GÖRÜNÜMÜ ================= */
.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.zodiac-card {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 35px 24px;
}

.zodiac-symbol-img {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    transition: var(--transition-smooth);
}

.zodiac-symbol-img svg {
    width: 64px;
    height: 64px;
    display: inline-block;
}

.zodiac-card:hover .zodiac-symbol-img {
    transform: scale(1.15) rotate(10deg);
}

.zodiac-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.zodiac-date {
    color: var(--color-accent-gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.zodiac-meta {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 10px;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.zodiac-badge {
    padding: 2px 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
}

/* ================= BURÇ DETAY BÖLÜMÜ ================= */
.back-navigation {
    margin-bottom: 2rem;
}

.horoscope-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.horoscope-aside-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.horoscope-aside-panel .zodiac-symbol-large {
    font-size: 7rem;
    margin-bottom: 1.5rem;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2));
    display: flex;
    justify-content: center;
    align-items: center;
}

.horoscope-aside-panel .zodiac-symbol-large svg {
    width: 120px;
    height: 120px;
    display: inline-block;
}

.horoscope-aside-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.horoscope-aside-panel .zodiac-date-range {
    color: var(--color-accent-gold);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.zodiac-props-list {
    width: 100%;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.zodiac-props-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.zodiac-props-list li span:first-child {
    color: var(--color-text-secondary);
}

.zodiac-props-list li span:last-child {
    font-weight: 600;
    color: var(--color-accent-gold);
}

/* Detay Yorum Kartı */
.horoscope-content-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tabs-container {
    display: flex;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    font-family: var(--font-sans);
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
    color: var(--color-accent-gold);
    background: rgba(212, 175, 55, 0.08);
}

.tab-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.compatibility-checker-mini {
    margin-top: 2rem;
}

.compat-grid-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 1rem;
}

.compat-select {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--color-text-primary);
    padding: 12px;
    border-radius: 8px;
    outline: none;
    font-family: var(--font-sans);
}

.compat-result-box {
    margin-top: 1rem;
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border: 1px dashed var(--color-accent-gold);
    text-align: center;
    font-weight: 500;
}

/* ================= VİDEOLAR BÖLÜMÜ ================= */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--color-accent-gold);
    color: #000;
    border-color: var(--color-accent-gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.video-card {
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    cursor: pointer;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.video-card:hover .video-thumbnail {
    transform: scale(1.05);
    opacity: 1;
}

.play-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--color-accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-gold);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.video-card:hover .play-overlay-btn {
    background: var(--color-accent-gold);
    color: #000;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.video-info-box {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-badge {
    align-self: flex-start;
    padding: 2px 10px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-accent-gold);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.video-info-box h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-duration {
    margin-top: auto;
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ================= MAĞAZA VE ÜRÜNLER ================= */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.product-icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.product-card-banner {
    width: calc(100% + 48px);
    margin: -30px -24px 24px -24px;
    height: 180px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.product-card:hover .product-card-banner {
    opacity: 0.9;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-description {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
    margin-top: 15px;
}

.product-price {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--color-accent-gold);
}

/* Ürün Satın Alma / Doğum Detay Formu Görünümü */
.product-purchase-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 40px;
}

.product-side-info {
    display: flex;
    flex-direction: column;
}

.purchase-product-icon {
    font-size: 3.5rem;
    color: var(--color-accent-gold);
    margin-bottom: 1.5rem;
}

.product-side-info h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.purchase-price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    margin-bottom: 1.5rem;
}

.purchase-benefits {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.purchase-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.purchase-benefits li i {
    color: var(--color-accent-gold);
}

/* Kozmik Form Yapısı */
.cosmic-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-secondary);
    transition: var(--transition-smooth);
}

.cosmic-form input,
.cosmic-form select,
.cosmic-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 12px 15px 12px 42px;
    color: var(--color-text-primary);
    font-family: var(--font-sans);
    outline: none;
    transition: var(--transition-smooth);
}

.cosmic-form textarea {
    padding: 12px 15px;
}

.cosmic-form input:focus,
.cosmic-form select:focus,
.cosmic-form textarea:focus {
    border-color: var(--color-accent-gold);
    background: rgba(212, 175, 55, 0.04);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.cosmic-form input:focus + .input-icon,
.cosmic-form select:focus + .input-icon {
    color: var(--color-accent-gold);
}

/* Uyum Simülatörü İkili Arayüz */
.synastry-forms-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.partner-box-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-accent-gold);
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 5px;
}

/* Lüks Ödeme Modülü (Mock Payment) */
.checkout-panel-premium {
    text-align: center;
}

.payment-animation-sphere {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 2rem auto;
}

.pulse-ring-pay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-accent-gold);
    animation: radarRipple 2s infinite ease-out;
}

.inner-sphere-pay {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.4) 0%, rgba(20, 16, 38, 0.9) 100%);
    border: 1px solid var(--color-accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-accent-gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.checkout-success-box {
    margin-top: 1.5rem;
    border: 1px solid var(--color-accent-gold);
    background: rgba(212, 175, 55, 0.05);
    padding: 20px;
    border-radius: 12px;
}

.order-detail-summary {
    list-style: none;
    text-align: left;
    margin: 1.5rem auto;
    max-width: 400px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.order-detail-summary li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
}

.order-detail-summary li span:first-child {
    color: var(--color-text-secondary);
}

.order-detail-summary li span:last-child {
    font-weight: 500;
}

/* ================= HAKKIMDA VE İLETİŞİM ================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.about-avatar-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem auto;
}

.about-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent-gold);
    position: relative;
    z-index: 2;
}

.avatar-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    animation: rotateClockwise 15s infinite linear;
    z-index: 1;
}

.about-info-panel {
    text-align: center;
    height: 100%;
}

.about-name {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.about-title {
    color: var(--color-accent-gold);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-bio {
    color: var(--color-text-secondary);
    text-align: left;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-channels {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.social-channels h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--color-text-secondary);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    color: #000;
    transform: translateY(-3px) scale(1.05);
}

.social-icon.youtube:hover { background: #ff0000; border-color: #ff0000; }
.social-icon.instagram:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: #e6683c; }
.social-icon.twitter:hover { background: #1da1f2; border-color: #1da1f2; }
.social-icon.spotify:hover { background: #1ed760; border-color: #1ed760; }

.contact-form-panel {
    display: flex;
    flex-direction: column;
}

.contact-desc {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.success-alert {
    text-align: center;
    padding: 40px 20px;
    animation: scaleIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.success-icon {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.6s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.success-alert h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.success-alert p {
    color: var(--color-text-secondary);
    max-width: 400px;
    margin: 0 auto;
}

.hidden {
    display: none !important;
}

/* ================= YOUTUBE VİDEO MODAL ================= */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 24px;
}

.modal-content {
    max-width: 800px;
    width: 100%;
    position: relative;
    padding: 30px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--color-accent-gold);
    transform: rotate(90deg);
}

.video-player-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.video-player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.modal-video-title {
    font-size: 1.3rem;
}

/* ================= GLOBAL FOOTER ================= */
.global-footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--footer-border);
    padding: 50px 0 30px 0;
    margin-top: auto;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.footer-branding {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-tagline {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--color-accent-gold);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.footer-links ul a {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.footer-links ul a:hover {
    color: var(--color-accent-gold);
    padding-left: 5px;
}

.footer-copyright {
    grid-column: 1 / -1;
    border-top: 1px solid var(--footer-border);
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
    color: var(--color-text-secondary);
    opacity: 0.6;
    font-size: 0.85rem;
}

/* ================= ANIMASYONLAR ================= */
@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.8;
        text-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
    }
}

@keyframes pulseSun {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.4));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    }
}

@keyframes rotateClockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateCounterClockwise {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes radarRipple {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceWave {
    from { height: 3px; }
    to { height: 15px; }
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

/* ================= YAPAY ZEKA ROZETLER VE YÜKLEME ANİMASYONLARI ================= */
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.2), rgba(52, 152, 219, 0.2));
    border: 1px solid rgba(142, 68, 173, 0.35);
    color: #b39ddb;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.ai-loading-skeleton {
    text-align: center;
    padding: 30px 20px;
    animation: fadeInView 0.4s ease forwards;
}

/* ================= MOBİL UYUMLULUK (RESPONSIVE) ================= */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
        min-height: auto;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .horoscope-detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .product-purchase-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Mobilde js ile toggle edilebilir */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--header-bg);
        backdrop-filter: var(--glass-blur);
        border-bottom: 1px solid var(--header-border);
        padding: 20px;
        box-shadow: 0 10px 20px var(--glass-shadow);
    }
    
    .nav-menu.mobile-active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    
    .synastry-forms-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* ================= YÖNETİCİ PANELİ (ADMIN) STİLLERİ ================= */
.admin-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Giriş Kartı */
.admin-login-card {
    max-width: 450px;
    margin: 60px auto;
    text-align: center;
    padding: 40px 30px;
}

.cosmic-admin-icon {
    font-size: 3rem;
    color: var(--color-accent-gold);
    display: inline-block;
    margin-bottom: 15px;
    animation: pulseGlow 3s infinite ease-in-out;
}

.admin-login-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.admin-login-header p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Dashboard Kartı */
.admin-dashboard-card {
    padding: 30px;
    margin: 20px auto;
}

.admin-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.admin-dashboard-header h2 {
    font-size: 1.8rem;
    color: var(--color-accent-gold);
}

.admin-dashboard-header p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* Sekmeler */
.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
    flex-wrap: wrap;
}

.admin-tab-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-secondary);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-tab-btn:active {
    transform: scale(0.95);
}

.admin-tab-btn:hover, .admin-tab-btn.active {
    color: var(--color-accent-gold);
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Sekme İçerikleri */
.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
    animation: fadeInView 0.4s ease-out forwards;
}

/* Grid Layout */
.admin-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

.admin-form-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 20px;
    border-radius: 12px;
}

.admin-form-panel h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-accent-gold);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.admin-list-panel h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-text-primary);
}

/* Liste Konteyneri */
.admin-list-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 5px;
}

.admin-list-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.admin-list-item-info {
    flex-grow: 1;
}

.admin-list-item-info h4 {
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 6px;
}

.admin-list-item-info span {
    font-size: 0.8rem;
    color: var(--color-accent-blue);
    background: rgba(52, 152, 219, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

.btn-delete-admin {
    background: rgba(232, 67, 147, 0.1);
    color: var(--color-accent-pink);
    border: 1px solid rgba(232, 67, 147, 0.2);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-delete-admin:hover {
    background: var(--color-accent-pink);
    color: #fff;
    transform: scale(1.08) translateY(-1px);
}

.btn-delete-admin:active {
    transform: scale(0.92);
}

/* Tablolar */
.admin-orders-table-container {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.admin-table th, .admin-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table th {
    font-family: var(--font-serif);
    color: var(--color-accent-gold);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.02);
}

.admin-table td {
    font-size: 0.95rem;
}

.admin-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Gelen Mesajlar */
.admin-messages-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 5px;
}

.admin-message-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px;
}

.admin-message-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-message-card-header h4 {
    font-size: 1.1rem;
    font-family: var(--font-sans);
    font-weight: 600;
}

.admin-message-card-header .subject {
    font-size: 0.85rem;
    color: var(--color-accent-gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

.admin-message-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-primary);
}

.admin-message-card .meta {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-top: 10px;
    display: flex;
    gap: 15px;
}

/* Mağaza Fiyat Editörü */
.admin-store-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-store-item-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
}

.admin-store-item-card h4 {
    font-size: 1.2rem;
    color: var(--color-accent-gold);
    margin-bottom: 15px;
}

.admin-store-fields {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

@media (max-width: 900px) {
    .admin-grid-layout {
        grid-template-columns: 1fr;
    }
    .admin-store-fields {
        grid-template-columns: 1fr;
    }
}

/* ================= YÖNETİCİ PANELİ EK GELİŞTİRMELERİ ================= */
.badge-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border: 1px solid transparent;
}
.badge-pending {
    background: rgba(255, 179, 0, 0.15);
    color: var(--color-accent-gold);
    border-color: rgba(255, 179, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 179, 0, 0.1);
}
.badge-preparing {
    background: rgba(0, 184, 212, 0.15);
    color: var(--color-accent-cyan);
    border-color: rgba(0, 184, 212, 0.3);
    box-shadow: 0 0 10px rgba(0, 184, 212, 0.1);
}
.badge-completed {
    background: rgba(0, 230, 118, 0.15);
    color: #00e676;
    border-color: rgba(0, 230, 118, 0.3);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.1);
}
.select-status-admin {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.85rem;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.3s ease;
}
.select-status-admin:focus {
    outline: none;
    border-color: var(--color-accent-gold);
    background: rgba(255, 255, 255, 0.1);
}
.btn-action-admin {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-action-admin:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
    transform: translateY(-1px);
}
.btn-action-admin:active {
    transform: scale(0.94);
}
.admin-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.admin-modal-backdrop.active {
    opacity: 1;
}
.admin-modal-content {
    background: rgba(18, 11, 35, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-celestial);
    border-radius: 16px;
    width: 90%;
    max-width: 750px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.admin-modal-backdrop.active .admin-modal-content {
    transform: scale(1);
}
.admin-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}
.admin-modal-close:hover {
    color: var(--color-accent-pink);
}
.admin-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
@media (max-width: 700px) {
    .admin-details-grid {
        grid-template-columns: 1fr;
    }
}
.admin-detail-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
}
.admin-detail-box h5 {
    color: var(--color-accent-gold);
    font-size: 1rem;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 6px;
    font-family: var(--font-serif);
}
.admin-detail-box p {
    font-size: 0.9rem;
    margin: 8px 0;
    color: var(--color-text-secondary);
}
.admin-detail-box p strong {
    color: var(--color-text-primary);
}
.admin-video-thumbnail-mini {
    width: 60px;
    height: 45px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================= ASTROLOJİ DETAY H4 VE H3 BAŞLIKLARI ================= */
.zodiac-detail-header {
    font-family: var(--font-serif);
    color: var(--color-accent-gold);
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 6px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.zodiac-detail-header::before {
    content: '✦';
    font-size: 0.9rem;
    color: var(--color-accent-gold);
    text-shadow: 0 0 5px var(--color-accent-gold);
}
.zodiac-detail-subheader {
    font-family: var(--font-serif);
    color: var(--color-accent-cyan);
    font-size: 1.15rem;
    margin-top: 20px;
    margin-bottom: 8px;
}
.zodiac-detail-title {
    font-family: var(--font-serif);
    color: var(--color-text-primary);
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
}

/* ================= KOZMİK PORTAL VE ÜYE PROFİLİ STILLERI ================= */

.portal-container {
    animation: fadeIn 0.6s ease-out;
}

.portal-tab-btn:hover {
    color: var(--color-text-primary) !important;
}

.portal-tab-btn.active {
    color: var(--color-accent-gold) !important;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.plan-card input[type="radio"]:checked + .plan-card-inner {
    border-color: var(--color-accent-gold) !important;
    background: rgba(212, 175, 55, 0.08) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
    transform: scale(1.02);
}

.plan-card:hover .plan-card-inner {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.03);
}

.plan-card-inner {
    transition: var(--transition-smooth);
}

/* Plan Rozet Renkleri */
.plan-badge.premium {
    color: var(--color-accent-pink) !important;
}
.plan-badge.vip {
    color: var(--color-accent-blue) !important;
}

.plan-card input[type="radio"]:checked + .plan-card-inner .plan-price {
    text-shadow: 0 0 8px currentColor;
}

/* Profil Sayfası Düzenleri */
.profile-container {
    animation: fadeIn 0.6s ease-out;
}

@media (max-width: 900px) {
    .profile-container {
        grid-template-columns: 1fr !important;
    }
    .profile-chart-grid {
        grid-template-columns: 1fr !important;
    }
    .portal-plans-grid {
        grid-template-columns: 1fr !important;
    }
}

.profile-avatar-wrapper:hover .avatar-change-overlay {
    background: var(--color-accent-pink) !important;
    color: #fff !important;
    transform: scale(1.1);
}

/* Gezegen Pozisyonları Tablosu */
.positions-table th {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-serif);
}

.positions-table td {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.positions-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Astro.com SVG Doğum Haritası Stilleri */
.birth-chart-svg {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    max-width: 100%;
    height: auto;
}

.zodiac-wheel-segment {
    transition: fill 0.3s ease;
    cursor: pointer;
}

.zodiac-wheel-segment:hover {
    fill-opacity: 0.25 !important;
}

.planet-marker {
    transition: transform 0.3s ease;
    cursor: help;
}

.planet-marker:hover {
    transform: scale(1.3);
}

.aspect-line {
    stroke-dasharray: 4, 4;
    animation: aspectGlow 4s infinite linear;
}

.aspect-line.conjunction {
    stroke: #ffffff;
    stroke-width: 1.5;
    stroke-dasharray: none;
}

.aspect-line.trine {
    stroke: #3498db; /* Mavi */
    stroke-width: 1.5;
}

.aspect-line.square {
    stroke: #e84393; /* Kırmızı */
    stroke-dasharray: 3, 3;
    stroke-width: 1.5;
}

.aspect-line.opposition {
    stroke: #e84393; /* Kırmızı düz */
    stroke-dasharray: none;
    stroke-width: 1.8;
}

.aspect-line.sextile {
    stroke: #2ecc71; /* Yeşil */
    stroke-width: 1.2;
}

@keyframes aspectGlow {
    0% { stroke-opacity: 0.5; }
    50% { stroke-opacity: 0.95; }
    100% { stroke-opacity: 0.5; }
}

/* Helper sınıflar */
.logged-in-only.hidden {
    display: none !important;
}

.logged-out-only.hidden {
    display: none !important;
}

.avatars-grid-selection img {
    width: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.avatars-grid-selection img:hover {
    border-color: var(--color-accent-gold);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.avatars-grid-selection img.selected {
    border-color: var(--color-accent-pink);
    box-shadow: 0 0 12px rgba(232, 67, 147, 0.5);
}

.form-section-title {
    font-weight: 500;
}

/* ================= KOZMİK GÜNLÜK RİTÜELLER BÖLÜMÜ (Retention Features) ================= */
.cosmic-rituals-section {
    margin-top: 4rem;
    margin-bottom: 5rem;
}

.ritual-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 30px 24px;
    min-height: 420px;
    justify-content: space-between;
}

.ritual-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, #b89326 100%);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.25);
    white-space: nowrap;
    z-index: 10;
}

/* 1. Tarot Kartı Çekme Alanı */
.tarot-scene {
    width: 140px;
    height: 220px;
    perspective: 1000px;
    margin: 20px auto;
}

.tarot-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.tarot-card-inner.flipped {
    transform: rotateY(180deg);
}

.tarot-card-front, .tarot-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    overflow: hidden;
}

.tarot-card-front {
    background: radial-gradient(circle, #1a1630 0%, #0d0a1b 100%);
    border: 2px solid var(--color-accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.tarot-design {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tarot-design::before, .tarot-design::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.tarot-design::before { top: 5px; left: 5px; border-right: none; border-bottom: none; }
.tarot-design::after { bottom: 5px; right: 5px; border-left: none; border-top: none; }

.tarot-center-symbol {
    font-size: 2.5rem;
    color: var(--color-accent-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    animation: rotateSlow 20s infinite linear;
}

.tarot-card-back {
    background: #0f0c1b;
    border: 2px solid var(--color-accent-gold);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
}

.tarot-card-back img {
    width: 100%;
    height: 165px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tarot-card-name {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--color-accent-gold);
    font-weight: 600;
    text-align: center;
    margin-top: 5px;
}

.ritual-content {
    width: 100%;
    margin-top: 15px;
}

.tarot-intro-text {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.tarot-result {
    width: 100%;
    animation: fadeIn 0.5s ease;
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    margin-top: 10px;
}

.tarot-title {
    font-size: 1.1rem;
    color: var(--color-accent-gold);
    margin-bottom: 5px;
    font-family: var(--font-serif);
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 5px;
}

.tarot-desc {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}

.tarot-cooldown-text {
    font-size: 0.75rem;
    color: var(--color-accent-pink);
    text-align: center;
    margin-top: 5px;
    font-weight: 500;
}

/* 2. Streak Alanı */
.streak-visual-container {
    margin: 20px auto;
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.streak-circle-outer {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: conic-gradient(var(--color-accent-gold) 0%, rgba(212, 175, 55, 0.1) 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 1s ease;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.streak-circle-inner {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: var(--color-bg-deep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.streak-fire-icon {
    font-size: 1.8rem;
    color: var(--color-text-secondary);
    transition: var(--transition-smooth);
    margin-bottom: 2px;
}

.streak-fire-icon.active {
    color: var(--color-accent-pink);
    text-shadow: 0 0 15px rgba(232, 67, 147, 0.6);
    animation: pulse 1.5s infinite ease-in-out;
}

.streak-number {
    font-size: 2.2rem;
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1;
    color: var(--color-text-primary);
}

.streak-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    letter-spacing: 1px;
}

.streak-title {
    font-size: 1.2rem;
    color: var(--color-accent-gold);
    margin-bottom: 5px;
    font-family: var(--font-serif);
}

.streak-desc {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
    margin-bottom: 15px;
}

.streak-success-msg {
    font-size: 0.9rem;
    color: #2ecc71;
    font-weight: 600;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* 3. Uğurlular Alanı */
.lucky-items-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.lucky-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.lucky-item:hover {
    border-color: rgba(212, 175, 55, 0.25);
    background: rgba(212, 175, 55, 0.03);
}

.lucky-item-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lucky-item-label i {
    color: var(--color-accent-gold);
}

.lucky-item-val {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    font-family: var(--font-serif);
}

.color-preview {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Light Theme Overrides */
[data-theme="light"] .tarot-card-front {
    background: radial-gradient(circle, #fcfbf7 0%, #f5f3e9 100%);
}
[data-theme="light"] .tarot-card-back {
    background: #fdfcf9;
}
[data-theme="light"] .streak-circle-inner {
    background: var(--color-bg-deep);
}
[data-theme="light"] .lucky-item {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .tarot-result {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(150, 114, 22, 0.2);
}

/* ================= YENİ KOZMİK MAĞAZA VE TRANSIT ABONELİK STILLERI ================= */
.shop-subheading {
    font-family: var(--font-serif);
    color: var(--color-accent-gold);
    font-size: 1.6rem;
    text-align: left;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 10px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.shop-subheading::before {
    content: '✦';
    color: var(--color-accent-gold);
    text-shadow: 0 0 8px var(--color-accent-gold);
}

/* Switch Toggle (Custom Slider) */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transition: .4s;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
input:checked + .slider {
  background-color: rgba(212, 175, 55, 0.35);
  border-color: var(--color-accent-gold);
}
input:checked + .slider:before {
  transform: translateX(22px);
  background-color: var(--color-accent-gold);
  box-shadow: 0 0 8px var(--color-accent-gold);
}

/* Donut SVG Gauge */
.donut {
  animation: donutRotate 1.5s ease-out forwards;
}
.donut-segment {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
@keyframes donutRotate {
  from { stroke-dasharray: 0 100; }
}

