:root {
    /* Mysterious, dark, and elegant color palette */
    --bg-color: #0b0c10;
    --card-bg: rgba(26, 26, 36, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #e0e2e4;
    --text-secondary: #a0a5b0;
    --accent-gold: #d4af37;
    --accent-gold-hover: #f1c40f;
    --accent-purple: #4a235a;
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Noto Serif JP', serif;
}

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

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

/* Background Effect Container */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #1b1c2b 0%, #0b0c10 100%);
}

/* Main Layout */
.glass-container {
    max-width: 900px;
    margin: 2rem auto;
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 1;
    position: relative;
}

/* Header Start */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;
}

.header-logo-container {
    text-align: left;
}

.donation-nav-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.95rem;
    margin-right: 1.5rem;
    font-family: var(--font-heading);
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
}

.donation-nav-link:hover {
    color: var(--text-primary);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

/* Content Sections */
.hidden-section {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.active-section {
    display: block;
    animation: fadeIn 0.8s ease-in-out forwards;
}

/* Input Area */
.input-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-card h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-gold);
    text-align: center;
}

.helper-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

textarea {
    width: 100%;
    min-height: 120px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.3s;
}

textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.reading-type-selector {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.spread-option {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.spread-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.spread-label-text {
    display: block;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--text-secondary);
    border-radius: 8px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
}

.spread-option:hover .spread-label-text {
    border-color: var(--accent-gold);
    color: var(--text-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.spread-option input[type="radio"]:checked ~ .spread-label-text {
    background: rgba(74, 35, 90, 0.4); /* Accent purple bg */
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    font-weight: bold;
}

.mystic-btn {
    background: linear-gradient(135deg, var(--accent-purple), #2c1630);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
    width: 250px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.mystic-btn:hover {
    background: linear-gradient(135deg, #592b6a, #3d1f43);
    color: var(--accent-gold-hover);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* Loading Animation */
.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.mystic-loader {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--accent-gold);
    border-bottom-color: var(--accent-purple);
    animation: spin 1.5s linear infinite;
    position: relative;
    margin-bottom: 2rem;
}

.mystic-loader:after {
    content: '';
    position: absolute;
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-left-color: var(--accent-gold);
    border-right-color: var(--text-primary);
    animation: spin 1s linear infinite reverse;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

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

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Result Section Styles */
.result-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeIn 1s ease-in;
}

.cards-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.three-cards-layout {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
}

.three-cards-layout .card-image-container {
    flex: 1 1 200px;
    max-width: 250px;
}

.card-position-title {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.card-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.tarot-card-img {
    max-width: 250px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--accent-gold);
    transition: transform 0.3s;
}

.tarot-card-img:hover {
    transform: scale(1.05);
}

.tarot-img-wrapper {
    position: relative;
    display: inline-block;
    line-height: 0; /* Remove bottom space */
}

.symbol-highlight-box {
    position: absolute;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 0 15px var(--accent-gold), inset 0 0 10px var(--accent-gold);
    border-radius: 8px;
    background-color: rgba(212, 175, 55, 0.15);
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease, top 0.3s ease, left 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.symbol-highlight-box.active {
    opacity: 1;
}

.card-info {
    text-align: center;
}

.card-info h2 {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.card-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.reading-content {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}

.user-context-echo {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-style: italic;
    color: var(--text-secondary);
}

.user-context-echo strong {
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.5rem;
    font-style: normal;
}

.reading-text h3, .interactive-symbols h3 {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-purple);
    padding-left: 10px;
}

.reading-text {
    margin-bottom: 2rem;
    line-height: 1.8;
    white-space: pre-wrap;
}

.interactive-symbols {
    background: rgba(74, 35, 90, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.symbol-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
}

.symbol-tag {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: help;
    transition: all 0.3s;
}

.symbol-tag:hover {
    background: var(--accent-gold);
    color: var(--bg-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}

.action-btn {
    width: 250px;
    font-size: 1.1rem;
}

.x-share-btn {
    background: #000;
    color: #fff;
    border-color: #333;
}

.x-share-btn:hover {
    background: #222;
    color: #fff;
    border-color: #555;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.ig-share-btn {
    background: #000;
    color: #fff;
    border: 1px solid #333;
}

.ig-share-btn:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
    background: #1a1a1a;
    border-color: #444;
}

.restart-btn {
    width: 250px;
    font-size: 1rem;
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-primary);
}

.restart-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
    box-shadow: none;
}

/* Philosophy Section Styles */
.philosophy-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px dashed var(--glass-border);
    text-align: center;
    animation: fadeIn 1s ease-in;
}

.philosophy-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
}

.philosophy-lead {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.philosophy-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem auto;
    max-width: 600px;
    text-align: left;
    transition: transform 0.3s, border-color 0.3s;
}

.philosophy-card:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.philosophy-card h4 {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.philosophy-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.philosophy-card strong {
    color: var(--text-primary);
}

/* Donation Section Styles */
.donation-section {
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
    background: rgba(42, 33, 56, 0.4); /* Subtle purple base */
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.donation-title {
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.donation-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.donation-buttons {
    display: inline-block;
    transition: transform 0.2s;
}

.donation-buttons:hover {
    transform: scale(1.05);
}

/* Symbol Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.symbol-modal-content {
    background: rgba(20, 15, 30, 0.95);
    border: 1px solid var(--accent-gold);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.modal-overlay.active .symbol-modal-content {
    transform: translateY(0);
}

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

.close-btn:hover {
    color: var(--accent-gold);
}

.symbol-header h3 {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.5rem;
}

.symbol-body p {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Esoteric Data Styling */
.esoteric-section {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.esoteric-title {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.esoteric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
}

.eso-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.8rem;
    text-align: center;
    transition: border-color 0.3s ease;
}

.eso-item:hover {
    border-color: rgba(212, 175, 55, 0.6);
}

.eso-label {
    display: block;
    color: #a78bfa; /* subtle purple */
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.eso-value {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.esoteric-detail-item {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255,255,255,0.1);
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-align: center;
}

/* Premium AI Chat Section */
.premium-ai-chat-section {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(42, 33, 56, 0.6);
    border: 1px solid var(--accent-gold);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.premium-chat-header {
    text-align: center;
    margin-bottom: 1rem;
}

.premium-chat-header h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-gold-hover);
}

.premium-badge {
    background: linear-gradient(135deg, #d4af37, #f3e5ab);
    color: #1a1a1a;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: bold;
    text-transform: uppercase;
    vertical-align: middle;
    margin-right: 8px;
}

.chat-messages-container {
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding-right: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-message {
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    max-width: 85%;
}

.chat-message.user {
    align-self: flex-end;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--accent-gold);
    color: var(--text-primary);
}

.chat-message.ai {
    align-self: flex-start;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
}

.chat-input-area {
    display: flex;
    gap: 10px;
}

.chat-input-area .mystic-input {
    flex: 1;
    margin-bottom: 0;
}

.chat-input-area .action-btn {
    width: auto;
    padding: 0.8rem 1.5rem;
}

@media (min-width: 768px) {
    .result-card {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .cards-display {
        flex: 0 0 35%;
    }
    
    .result-card.three-card-result {
        flex-direction: column;
    }
    
    .result-card.three-card-result .cards-display {
        flex: 1 1 100%;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .reading-content {
        flex: 1;
    }
}

/* Upgrade Button */
.upgrade-btn {
    background: linear-gradient(135deg, #ffd700, #b8860b);
    color: #1a1a2e;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.upgrade-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    filter: brightness(1.2);
}

.upgrade-btn:disabled {
    background: #444;
    color: #888;
    cursor: not-allowed;
    box-shadow: none;
}

.premium-badge-ui {
    background: linear-gradient(135deg, #ffd700, #b8860b) !important;
    color: #1a1a2e !important;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Premium Feature Lock Styles */
.spread-option.locked .spread-label-text {
    opacity: 0.5;
    cursor: not-allowed;
    position: relative;
}

.spread-option.locked:hover .spread-label-text {
    border-color: var(--text-secondary);
    color: var(--text-secondary);
    box-shadow: none;
}

.lock-icon {
    display: block;
    font-size: 0.7rem;
    margin-top: 5px;
    color: #ffd700;
    letter-spacing: 0.05em;
}

.locked-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    border: 1px dashed rgba(255, 215, 0, 0.3);
}

.locked-content {
    text-align: center;
}

.lock-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.8rem;
}

.locked-content p {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.lock-sub {
    font-size: 0.85rem !important;
    color: var(--text-secondary) !important;
    margin-bottom: 1rem !important;
}

.lock-upgrade-btn {
    font-size: 0.9rem;
    padding: 8px 20px;
}

/* ================================ */
/* Thelema Philosophy Section       */
/* ================================ */
.thelema-section {
    margin-top: 4rem;
    padding: 3rem 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.thelema-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.thelema-star {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 0.8rem;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; text-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
    50% { opacity: 1; text-shadow: 0 0 25px rgba(212, 175, 55, 0.8); }
}

.thelema-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d4af37;
    letter-spacing: 0.15em;
    margin-bottom: 0.3rem;
}

.thelema-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: 0.3em;
}

.thelema-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 2;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.thelema-meaning {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: #d4af37;
}

/* Pillars */
.thelema-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 750px;
    margin: 0 auto 3rem;
}

.thelema-pillar {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(74, 35, 90, 0.3));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.thelema-pillar:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.pillar-number {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.pillar-title {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.pillar-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.thelema-quote {
    border-left: 3px solid #d4af37;
    padding: 0.8rem 1.2rem;
    margin: 1rem 0;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: #e8d5a3;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.pillar-text {
    font-size: 0.92rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.pillar-text strong {
    color: #d4af37;
}

/* Empowerment */
.thelema-empowerment {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    padding: 2.5rem;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08), transparent 70%);
    border-radius: 16px;
}

.empowerment-stars {
    font-size: 1.2rem;
    color: #d4af37;
    letter-spacing: 1em;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.empowerment-quote {
    font-size: 1.3rem;
    color: #e8d5a3;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    border: none;
    padding: 0;
}

.quote-jp {
    font-size: 1.1rem;
    font-style: normal;
    color: #d4af37;
    display: block;
    margin-top: 0.5rem;
    font-weight: bold;
}

.empowerment-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

/* Footer Quote */
.thelema-footer-quote {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-law {
    font-size: 0.85rem;
    color: rgba(212, 175, 55, 0.5);
    font-style: italic;
    letter-spacing: 0.15em;
}

/* Responsive: Pillars in 2-column on wider screens */
@media (min-width: 768px) {
    .thelema-pillars {
        grid-template-columns: 1fr 1fr;
        max-width: 900px;
    }
    
    .thelema-section {
        padding: 4rem 2rem;
    }
}

