/* Yaş Hesaplama — Zaman kategorisi #00897B */
.age-calc .age-row.calc-input-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.age-calc .calc-input-col input.calc-field, .age-calc .calc-input-col button.calc-field { width: 100%; padding: 0.75rem 1rem; font-size: 1rem; border: 1px solid #e0e0e0; border-radius: 8px; background-color: #fff; color: #1e293b; height: 46px; font-family: inherit; }
.age-calc .calc-input-col button.calc-field:hover { background-color: #f8fafc; }
.age-calc .calc-input-col input.calc-field:focus { outline: none; border-color: var(--cat-bg, #00897B); box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.15); }
.age-calc .calc-input-col label { display: block; margin-bottom: 0.5rem; font-weight: 700; color: #1e293b; font-size: 0.95rem; }
.age-calc .age-results.calc-results-grid, .age-calc .age-results-extra.calc-results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1rem; }
.age-calc .age-results-extra .res-box { background: #f8fafc; }
.age-calc .calc-content-box { background: #fafafa; border: 1px solid #e5e7eb; border-radius: 8px; padding: 2rem 2.25rem; margin-top: 2rem; line-height: 1.7; color: #334155; }
.age-calc .calc-content-box h2 { font-size: 1.5rem; font-weight: 700; color: var(--cat-bg, #00897B); margin: 1.75rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid #e5e7eb; }
.age-calc .calc-content-box h2:first-child { margin-top: 0; }
.age-calc .calc-content-box h3 { font-size: 1.15rem; font-weight: 700; color: #1e293b; margin: 1.5rem 0 0.75rem; }
.age-calc .calc-content-box p { margin: 0 0 1rem; }
.age-calc .calc-content-box ul, .age-calc .calc-content-box ol { margin: 0 0 1rem 1.5rem; }
.age-calc .calc-content-box li { margin-bottom: 0.5rem; }
.age-calc .calc-content-box code { background: #fff; border: 1px solid #e5e7eb; border-radius: 4px; padding: 0.15rem 0.4rem; font-family: inherit; font-size: 0.9em; color: #be185d; }
@media (max-width: 768px) {
    .age-calc .age-row.calc-input-row { grid-template-columns: 1fr; gap: 1rem; }
    .age-calc .age-results.calc-results-grid, .age-calc .age-results-extra.calc-results-grid { grid-template-columns: 1fr; }
    .age-calc .calc-content-box { padding: 1.5rem 1.25rem; }
}

/* === Burcun (Zodiac) Section === */
.age-calc .age-zodiac-section { margin-top: 1.5rem; }
.age-calc .age-zodiac-title { font-size: 1.15rem; font-weight: 800; color: #1e293b; margin: 0 0 0.85rem; display: flex; align-items: center; gap: 0.5rem; }
.age-calc .age-zodiac-title i { color: var(--cat-bg, #00897B); font-size: 1.25rem; }
.age-calc .age-zodiac-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.age-calc .age-zodiac-card {
    color: #fff;
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.age-calc .age-zodiac-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22); }
.age-calc .age-zodiac-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    pointer-events: none;
}
.age-calc .age-zodiac-card > * { position: relative; z-index: 1; }
/* Unicode astrological + CJK glyph — plain text karakter */
.age-calc .age-zodiac-glyph {
    display: block;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: #fff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
    font-variant-emoji: text;
    font-family: "Apple Symbols", "Segoe UI Symbol", "Noto Sans Symbols2", "Symbola", system-ui, serif;
    font-weight: 400;
    text-rendering: optimizeLegibility;
}
.age-calc .age-zodiac-glyph-c {
    font-family: "Noto Serif CJK TC", "PingFang TC", "Microsoft JhengHei", "Heiti TC", "SimSun", system-ui, serif;
    font-size: 4.5rem;
    font-weight: 700;
}
.age-calc .age-zodiac-card .z-name { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.25rem; letter-spacing: 0.3px; }
.age-calc .age-zodiac-card .z-meta { font-size: 0.85rem; opacity: 0.92; margin-bottom: 0.5rem; }
.age-calc .age-zodiac-card .z-traits { font-size: 0.9rem; opacity: 0.95; font-style: italic; line-height: 1.45; }
@media (max-width: 640px) {
    .age-calc .age-zodiac-grid { grid-template-columns: 1fr; }
    .age-calc .age-zodiac-glyph { font-size: 4rem; }
    .age-calc .age-zodiac-glyph-c { font-size: 3.5rem; }
    .age-calc .age-zodiac-card .z-name { font-size: 1.3rem; }
}
