:root {
    --gold: #d4af37;
    --gold-light: #f4d875;
    --gold-dark: #a08020;
    --bg: #0a0a1a;
    --bg-card: #14142b;
    --bg-elev: #1a1a3a;
    --text: #f5f5f7;
    --text-muted: #a8a8c0;
    --text-dim: #6e6e85;
    --border: rgba(212, 175, 55, 0.15);
    --border-hover: rgba(212, 175, 55, 0.4);
    --serif: Georgia, 'Times New Roman', serif;
    --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.15), transparent),
        radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.1), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255,255,255,0.15), transparent);
    background-size: 250px 250px;
    z-index: -1;
    pointer-events: none;
}
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.site-header {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.logo { flex-shrink: 0; }
.logo img { display: block; height: 44px; width: auto; }
.main-nav { display: flex; gap: 8px; flex-wrap: wrap; }
.main-nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
    font-weight: 500;
}
.main-nav a:hover { color: var(--gold); background: rgba(212, 175, 55, 0.08); }
.hero { padding: 30px 0 24px; text-align: center; border-bottom: 1px solid var(--border); }
.hero-date {
    color: var(--gold) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem !important;
    margin-bottom: 8px !important;
    font-weight: 600;
}
.hero h1 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.hero p {
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 16px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.cosmic-snapshot {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
    padding: 10px 16px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--border);
    border-radius: 100px;
}
.cosmic-item { color: var(--text-muted); font-size: 0.8rem; padding: 0 8px; }
.cosmic-item strong { color: var(--gold-light); }
.cosmic-item.warning { color: #ff6b6b; }
.ad-container { max-width: 1200px; margin: 16px auto; padding: 0 16px; text-align: center; }
.ad-container ins { display: block; }
.ad-container:empty { display: none; }
.zodiac-grid-section { padding: 32px 0; }
.section-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--gold-light);
    text-align: center;
    margin-bottom: 24px;
    font-weight: 600;
}
.section-title::before, .section-title::after {
    content: '✦';
    color: var(--gold);
    margin: 0 12px;
    font-size: 0.8rem;
    vertical-align: middle;
    opacity: 0.6;
}
.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.zodiac-card {
    background: linear-gradient(135deg, var(--bg-elev) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.zodiac-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.25s;
}
.zodiac-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--bg-elev) 0%, #1f1f44 100%);
}
.zodiac-card:hover::before { opacity: 1; }
.zodiac-card .icon-wrap {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.zodiac-card img { width: 100%; height: 100%; }
.zodiac-card h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 4px;
    font-weight: 600;
}
.zodiac-card .dates {
    color: var(--text-dim);
    font-size: 0.75rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.zodiac-card .preview {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 12px;
    font-style: italic;
    flex: 1;
}
.zodiac-card .read-more {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}
.tools-section { padding: 32px 0; border-top: 1px solid var(--border); }
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    text-align: center;
}
.tool-card:hover { border-color: var(--border-hover); background: var(--bg-elev); }
.tool-card .emoji { font-size: 2rem; margin-bottom: 8px; display: block; }
.tool-card h3 { color: var(--gold-light); font-family: var(--serif); margin-bottom: 6px; font-size: 1.1rem; }
.tool-card p { color: var(--text-muted); font-size: 0.85rem; }
.faq-section { padding: 32px 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); padding: 16px 0; cursor: pointer; }
.faq-question {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.faq-question::after { content: '+'; color: var(--gold); font-size: 1.5rem; transition: transform 0.2s; }
details[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { color: var(--text-muted); font-size: 0.9rem; margin-top: 12px; line-height: 1.6; }
.sign-hero { padding: 32px 0 20px; text-align: center; border-bottom: 1px solid var(--border); }
.sign-hero img { width: 90px; height: 90px; margin-bottom: 12px; }
.sign-hero h1 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    color: var(--gold-light);
    margin-bottom: 6px;
}
.sign-hero .meta { color: var(--text-muted); font-size: 0.9rem; }
.horoscope-content { max-width: 720px; margin: 32px auto; padding: 0 16px; }
.horoscope-affirmation {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border-left: 3px solid var(--gold);
    padding: 20px 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--gold-light);
    font-style: italic;
    line-height: 1.5;
}
.horoscope-section { margin-bottom: 24px; }
.horoscope-section h2 {
    font-family: var(--serif);
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 6px;
}
.horoscope-section h3 { color: var(--gold-light); font-size: 1rem; margin: 16px 0 6px; }
.horoscope-section p { color: var(--text); margin-bottom: 10px; line-height: 1.7; }
.horoscope-section ul { padding-left: 20px; color: var(--text); }
.horoscope-section li { margin-bottom: 6px; }
.lucky-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin: 16px 0;
}
.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}
.stat-box .label {
    color: var(--text-dim);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.stat-box .value {
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
}
.other-signs { margin: 32px 0; padding: 24px 0; border-top: 1px solid var(--border); }
.other-signs h3 {
    font-family: var(--serif);
    color: var(--gold-light);
    text-align: center;
    margin-bottom: 16px;
    font-size: 1.1rem;
}
.other-signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
    max-width: 720px;
    margin: 0 auto;
}
.other-signs-grid a {
    text-align: center;
    padding: 10px 6px;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.2s;
}
.other-signs-grid a:hover { border-color: var(--gold); background: rgba(212, 175, 55, 0.05); }
.other-signs-grid img { width: 30px; height: 30px; display: block; margin: 0 auto 4px; }
.other-signs-grid span { color: var(--text-muted); font-size: 0.7rem; }
.site-footer {
    background: #050510;
    border-top: 1px solid var(--border);
    padding: 32px 0 16px;
    margin-top: 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}
.footer-col h4 {
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.footer-col p, .footer-col a { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; }
.footer-col ul { list-style: none; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.8rem;
}
.page-content { max-width: 720px; margin: 32px auto; padding: 0 16px; }
.page-content h1 { font-family: var(--serif); color: var(--gold-light); font-size: 2rem; margin-bottom: 16px; text-align: center; }
.page-content h2 { font-family: var(--serif); color: var(--gold); font-size: 1.4rem; margin: 24px 0 10px; }
.page-content p { color: var(--text); margin-bottom: 12px; line-height: 1.7; }
.compat-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    max-width: 520px;
    margin: 24px auto;
}
.compat-form label { display: block; color: var(--gold-light); margin-bottom: 6px; font-weight: 600; font-size: 0.9rem; }
.compat-form select {
    width: 100%;
    padding: 12px;
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 14px;
}
.compat-form button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.1s;
}
.compat-form button:hover { transform: translateY(-1px); }
.compat-result {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: 16px;
    margin: 24px auto;
    max-width: 520px;
}
.compat-score {
    font-size: 3rem;
    color: var(--gold-light);
    font-family: var(--serif);
    font-weight: 700;
    margin: 12px 0;
}
@media (max-width: 768px) {
    .container { padding: 0 12px; }
    .site-header { padding: 10px 0; }
    .logo img { height: 36px; }
    .main-nav a { padding: 6px 10px; font-size: 0.85rem; }
    .hero { padding: 20px 0 16px; }
    .hero h1 { font-size: 1.5rem; }
    .hero p { font-size: 0.85rem; }
    .cosmic-snapshot { padding: 8px 12px; }
    .cosmic-item { font-size: 0.7rem; }
    .zodiac-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .zodiac-card { padding: 14px 10px; }
    .zodiac-card .icon-wrap { width: 50px; height: 50px; margin-bottom: 8px; }
    .zodiac-card h3 { font-size: 1rem; }
    .zodiac-card .dates { font-size: 0.65rem; }
    .zodiac-card .preview { font-size: 0.75rem; }
    .zodiac-card .read-more { font-size: 0.7rem; }
    .section-title { font-size: 1.2rem; margin-bottom: 16px; }
    .horoscope-affirmation { font-size: 1rem; padding: 14px 16px; }
    .horoscope-section h2 { font-size: 1.15rem; }
    .other-signs-grid { grid-template-columns: repeat(6, 1fr); gap: 6px; }
    .other-signs-grid a { padding: 8px 4px; }
    .other-signs-grid img { width: 24px; height: 24px; }
    .other-signs-grid span { font-size: 0.6rem; }
}
@media (max-width: 380px) {
    .zodiac-grid { grid-template-columns: 1fr; }
}
