* {
    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.6;
}

.container {
    max-width: 1200px;
    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;
}

.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);
}

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,248,240,0.95));
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    border: 3px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-hero::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;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

.hero-decoration {
    position: relative;
    width: 200px;
    height: 200px;
    z-index: 2;
}

.golden-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.8) 0%, rgba(255,165,0,0.6) 50%, rgba(255,215,0,0.3) 100%);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

.sacred-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 48px;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    transform: translate(-50%, -50%);
    animation: symbolRotate 10s linear infinite;
}

@keyframes symbolRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,248,240,0.98));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.card-image {
    height: 200px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    position: relative;
    overflow: hidden;
}

.card-image.image-2 {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.card-image.image-3 {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.card-image.image-4 {
    background: linear-gradient(135deg, #ff8c00, #ffd700);
}

.card-image.image-5 {
    background: linear-gradient(135deg, #ffd700, #ffe4b3);
}

.card-image.image-6 {
    background: linear-gradient(135deg, #ffe4b3, #ffd700);
}

.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;
    transition: opacity 0.3s ease;
}

.blog-card:hover .image-overlay {
    opacity: 0.9;
}

.article-category {
    position: absolute;
    top: 20px;
    left: 20px;
    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;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.card-content {
    padding: 25px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .article-title {
    color: #667eea;
}

.article-excerpt {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.article-preview {
    background: linear-gradient(135deg, rgba(255,248,240,0.8), rgba(255,255,255,0.8));
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.preview-bullets {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bullet {
    font-size: 14px;
    color: #2c1810;
    font-weight: 500;
}

.read-more-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c1810;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(44, 24, 16, 0.2);
}

.read-more-button:hover {
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,248,240,0.95));
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    border: 3px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 40px;
    text-align: center;
}

.newsletter-title {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.newsletter-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    font-size: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,248,240,0.9));
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.subscribe-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(118, 75, 162, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.subscribe-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(118, 75, 162, 0.4);
    background: linear-gradient(135deg, #764ba2, #667eea);
}

.form-note {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* Blog Footer */
.blog-footer {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,248,240,0.95));
    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);
    text-align: center;
}

.footer-text {
    font-size: 18px