* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    min-height: 100vh;
    color: #2c1810;
    line-height: 1.7;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Golden Sacred Background Elements */
.golden-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.golden-mandala {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    background: 
        radial-gradient(circle, rgba(255,215,0,0.3) 1px, transparent 2px) center/60px 60px,
        radial-gradient(circle, rgba(255,165,0,0.2) 1px, transparent 2px) center/120px 120px,
        conic-gradient(from 0deg, transparent, rgba(255,215,0,0.1), transparent, rgba(255,215,0,0.1), transparent);
    animation: mandalaRotate 80s linear infinite;
    border-radius: 50%;
}

@keyframes mandalaRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.golden-light-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(255,215,0,0.2) 0%, transparent 70%),
        linear-gradient(45deg, rgba(255,215,0,0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255,215,0,0.1) 0%, transparent 50%),
        repeating-linear-gradient(90deg, rgba(255,215,0,0.05) 0px, rgba(255,215,0,0.05) 2px, transparent 3px, transparent 6px);
    animation: goldenLightMove 20s ease-in-out infinite;
}

@keyframes goldenLightMove {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(30px); }
}

.floating-golden-petals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.golden-petal {
    position: absolute;
    font-size: 28px;
    opacity: 0.8;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: goldenFloatUp 25s linear infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes goldenFloatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.golden-dust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,215,0,0.6), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,215,0,0.6), transparent),
        radial-gradient(2px 2px at 60px 100px, rgba(255,215,0,0.6), transparent),
        radial-gradient(2px 2px at 80px 140px, rgba(255,215,0,0.6), transparent),
        radial-gradient(2px 2px at 100px 180px, rgba(255,215,0,0.6), transparent);
    background-repeat: repeat;
    animation: dustTwinkle 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes dustTwinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Main Content */
.brand-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(44, 24, 16, 0.2);
}

.brand-logo {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.brand-subtitle {
    color: rgba(44, 24, 16, 0.8);
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Back to Home Button */
.back-to-home-container {
    text-align: left;
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.back-to-home-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(118, 75, 162, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.back-to-home-button:hover {
    transform: translateX(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(118, 75, 162, 0.4);
    background: linear-gradient(135deg, #764ba2, #667eea);
}

/* Article Detail */
.article-detail {
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,248,240,0.98));
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    border: 3px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.article-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Article Header */
.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.article-category {
    background: rgba(44, 24, 16, 0.8);
    color: #ffd700;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.article-date, .article-read-time {
    color: #666;
}

.article-title {
    font-size: 42px;
    font-weight: 800;
    color: #2c1810;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.article-subtitle {
    font-size: 18px;
    color: #555;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.article-image {
    height: 300px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 16px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.article-image.image-2 {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.article-image.image-3 {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.1), rgba(44, 24, 16, 0.3));
    opacity: 0.7;
}

/* Article Content */
.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin: 40px 0 20px;
    font-family: 'Playfair Display', serif;
    text-align: left;
}

.article-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c1810;
    margin: 30px 0 15px;
    font-family: 'Playfair Display', serif;
}

.article-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #667eea;
    margin: 25px 0 15px;
}

.article-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.7;
}

/* Lists */
.technique-list, .practice-list, .sacred-list, .challenge-list, .science-list, .benefit-box ul, .warning-box ul, .wisdom-box ul {
    list-style: none;
    padding-left: 0;
}

.technique-list li, .practice-list li, .sacred-list li, .challenge-list li, .science-list li {
    position: relative;
    padding: 10px 0 10px 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.technique-list li:last-child, .practice-list li:last-child, .sacred-list li:last-child, .challenge-list li:last-child, .science-list li:last-child {
    border-bottom: none;
}

.technique-list li::before, .practice-list li::before, .sacred-list li::before, .challenge-list li::before, .science-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Wisdom Box */
.wisdom-box {
    background: linear-gradient(135deg, rgba(255,248,240,0.9), rgba(255,255,255,0.9));
    border-radius: 16px;
    padding: 20px;
    margin: 25px 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.wisdom-box h3 {
    color: #667eea;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.wisdom-box p {
    font-size: 16px;
    color: #555;
    font-style: italic;
    margin: 0;
}

/* Benefit Box */
.benefit-box {
    background: linear-gradient(135deg, rgba(240, 255, 248, 0.9), rgba(255,255,255,0.9));
    border-radius: 16px;
    padding: 20px;
    margin: 25px 0;
    border: 2px solid rgba(76, 175, 80, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-box h4 {
    color: #2E8B57;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.benefit-box ul {
    margin: 0;
}

.benefit-box li {
    padding: 5px 0;
    font-size: 16px;
    color: #333;
}

.benefit-box li::before {
    content: '✓';
    color: #2E8B57;
    font-weight: bold;
    margin-right: 10px;
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, rgba(255, 240, 240, 0.9), rgba(255,255,255,0.9));
    border-radius: 16px;
    padding: 20px;
    margin: 25px 0;
    border: 2px solid rgba(220, 53, 69, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.warning-box h4 {
    color: #B22222;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.warning-box p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

/* Practice Tip */
.practice-tip {
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.9), rgba(255,255,255,0.9));
    border-radius: 16px;
    padding: 20px;
    margin: 25px 0;
    border: 2px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.practice-tip h4 {
    color: #667eea;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.practice-tip p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

/* Sacred Moments List */
.sacred-moments-list li {
    padding: 10px 0;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* Closing Wisdom */
.closing-wisdom {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,248,240,0.95));
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.blessing {
    font-size: 20px;
    color: #667eea;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    margin-top: 20px;
    line-height: 1.6;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-logo {
        font-size: 28px;
    }
    
    .article-title {
        font-size: 28px;
    }
    
    .article-subtitle {
        font-size: 16px;
    }
    
    .article-detail {
        padding: 25px 20px;
    }
    
    .article-image {
        height: 200px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .article-content h3 {
        font-size: 20px;
    }
    
    .article-content p {
        font-size: 16px;
    }
}