:root {
    --brand-blue: #0A1C30;
    --brand-teal: #006670;
    --brand-crimson: #8B0000;
    --brand-gold: #C5A028;
    --brand-gold-hover: #A4831B;
    --light-bg: #F3F5F7;
    --gold-bg: #FAF4E6;
    --silk-white: #FAF8F5;
    --text-dark: #1E2229;
    --text-secondary: #5A6578;
}

.ary-clone-body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--silk-white);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

.ary-clone-body h1, .ary-clone-body h2, .ary-clone-body h3, .ary-clone-body h4 {
    font-family: 'Playfair Display', serif;
    color: var(--brand-blue);
    font-weight: 700;
}

/* --- Global Architectural Elements --- */
.section-padding {
    padding: 120px 0;
}
.bg-light-custom { background-color: var(--light-bg); }
.bg-gold-custom { background-color: var(--gold-bg); }

.section-heading {
    font-size: 2.75rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}
.section-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--brand-crimson);
    margin: 18px auto 0 auto;
    border-radius: 2px;
}

/* --- Elegant Sticky Navbar --- */
.navbar-custom {
    background-color: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(10, 28, 48, 0.05);
    padding: 16px 0;
    transition: all 0.3s ease;
}
.navbar-custom .navbar-brand {
    font-family: 'Playfair Display', serif;
    color: var(--brand-blue);
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 1.35rem;
}
.navbar-custom .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0 14px;
    transition: color 0.2s ease, transform 0.2s ease;
}
.navbar-custom .nav-link:hover {
    color: var(--brand-crimson);
    transform: translateY(-1px);
}

/* --- Hero Section with Geometric Underlay --- */
.hero-section {
    background: radial-gradient(circle at 80% 20%, rgba(139, 0, 0, 0.04) 0%, rgba(250, 248, 245, 0) 60%),
                linear-gradient(180deg, var(--silk-white) 0%, #E9EDF0 100%);
    padding: 180px 0 120px 0;
    position: relative;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(10, 28, 48, 0.015) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(10, 28, 48, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 75%);
    pointer-events: none;
}
.hero-title {
    font-size: 3.75rem;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: var(--brand-blue);
}
@media (max-width: 991px) {
    .hero-title { font-size: 2.75rem; }
    .section-padding { padding: 80px 0; }
}

.hero-image-container {
    position: relative;
    display: inline-block;
    margin-top: 20px;
}
.hero-img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    border: 10px solid var(--silk-white);
    box-shadow: 0 30px 60px rgba(10, 28, 48, 0.12);
    position: relative;
    z-index: 2;
}
.hero-img-ring {
    position: absolute;
    inset: -20px;
    border: 1.5px dashed var(--brand-gold);
    border-radius: 50%;
    opacity: 0.4;
    animation: ary-spin 160s linear infinite;
    z-index: 1;
}
@keyframes ary-spin { 100% { transform: rotate(360deg); } }

/* --- Spiritual Buttons --- */
.btn-spiritual {
    background-color: var(--brand-teal);
    color: #FFFFFF !important;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 18px rgba(0, 102, 112, 0.25);
}
.btn-spiritual:hover {
    background-color: var(--brand-blue);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(10, 28, 48, 0.2);
}
.btn-spiritual-gold {
    background-color: var(--brand-gold);
    box-shadow: 0 4px 18px rgba(197, 160, 40, 0.25);
}
.btn-spiritual-gold:hover {
    background-color: var(--brand-gold-hover);
}
.btn-outline-dark {
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    transition: all 0.25s ease;
}
.btn-outline-dark:hover {
    background-color: var(--brand-blue);
    color: #FFFFFF;
}

/* --- Cards Architecture --- */
.spiritual-card {
    background: #FFFFFF;
    border: 1px solid rgba(10, 28, 48, 0.04);
    border-radius: 24px;
    padding: 40px 35px;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(10, 28, 48, 0.01);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.spiritual-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(10, 28, 48, 0.07);
    border-color: rgba(0, 102, 112, 0.2);
}
.card-icon {
    font-size: 2.5rem;
    color: var(--brand-crimson);
    margin-bottom: 24px;
    display: inline-block;
    line-height: 1;
}
.spiritual-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--brand-blue);
}
.spiritual-card p {
    line-height: 1.6;
}

/* --- Video & Media Configuration --- */
.video-item {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(10, 28, 48, 0.02);
    border: 1px solid rgba(10, 28, 48, 0.03);
    height: 100%;
    transition: transform 0.3s ease;
}
.video-item:hover {
    transform: scale(1.01);
}
.video-title {
    font-size: 1.15rem;
    font-weight: 700;
    padding: 22px 28px;
    margin: 0;
    color: var(--brand-blue);
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* --- Sacred Path Support Banner --- */
.donation-banner {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #050E17 100%);
    color: #FFFFFF;
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(10, 28, 48, 0.25);
}
.donation-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(197, 160, 40, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.donation-banner h3 {
    color: #FFFFFF;
    font-size: 2.25rem;
    margin-bottom: 18px;
}
.qr-frame {
    background: #FFFFFF;
    padding: 14px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.qr-frame:hover {
    transform: scale(1.05);
}

/* --- Social Connections Alignment --- */
.social-link {
    transition: all 0.25s ease;
    padding: 8px 16px;
    border-radius: 30px;
}
.social-link:hover {
    background: rgba(10, 28, 48, 0.04);
    transform: translateY(-2px);
}

/* --- Premium Obsidian Footer --- */
.app-footer {
    background-color: #050B12;
    color: rgba(250, 248, 245, 0.65);
    padding: 70px 0;
    border-top: 6px solid var(--brand-gold);
}
