/* Celestial Soul - Shared Content Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #0A0A0F 0%, #1a1a2e 50%, #0A0A0F 100%);
    background-attachment: fixed;
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.7;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo {
    font-size: 48px;
    margin-bottom: 10px;
}

h1 {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 10px;
    font-weight: 600;
}

.subtitle {
    color: #888;
    font-size: 1.1rem;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #D4AF37;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #666;
    margin: 0 8px;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.card-accent {
    border-left: 3px solid #D4AF37;
    background: rgba(212, 175, 55, 0.05);
}

h2 {
    color: #D4AF37;
    font-size: 1.4rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

h2 .emoji {
    font-size: 1.5rem;
}

h3 {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
    color: #c0c0c0;
}

ul, ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

li {
    margin-bottom: 8px;
    color: #c0c0c0;
}

.highlight {
    color: #D4AF37;
    font-weight: 500;
}

a {
    color: #D4AF37;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Quick Facts Box */
.quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.fact-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.fact-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.fact-value {
    font-size: 1.2rem;
    color: #D4AF37;
    font-weight: 600;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(139, 92, 246, 0.1));
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    margin-bottom: 12px;
}

.cta-box p {
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #D4AF37, #F5D77A);
    color: #000;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    text-decoration: none;
}

/* Related Links */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.related-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.2s;
    text-decoration: none;
}

.related-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
    text-decoration: none;
}

.related-item .emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.related-item .title {
    color: #e0e0e0;
    font-weight: 500;
}

/* Ad Placeholder */
.ad-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin: 30px 0;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
}

footer nav {
    margin-bottom: 20px;
}

footer nav a {
    color: #888;
    margin: 0 15px;
    font-size: 0.9rem;
}

footer nav a:hover {
    color: #D4AF37;
}

.copyright {
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    
    .card {
        padding: 20px;
    }
    
    .quick-facts {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Schema markup helper - hidden */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
