#temple{

    min-height:100vh;

    padding:140px 48px 80px;

}

.temple-hero{

    max-width:900px;

    margin:0 auto 60px;

    text-align:center;

}

.temple-hero h1{

    font-size:64px;

    margin-bottom:18px;

}

.temple-hero p{

    color:var(--text-muted);

    font-size:20px;

    max-width:700px;

    margin:auto;

}

.worship-banner{

    width:min(1200px,100%);

    margin:0 auto 50px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    padding:42px 48px;

    border:none;

    border-radius:28px;

    background:linear-gradient(

        135deg,

        rgba(108,197,255,.12),

        rgba(255,255,255,.04)

    );

    border:1px solid rgba(108,197,255,.20);

    backdrop-filter:blur(16px);

    box-shadow:0 20px 60px rgba(0,0,0,.25);

    cursor:pointer;

    text-align:left;

    color:inherit;

    transition:.25s;

}

.worship-banner:hover{

    transform:translateY(-6px);

    border-color:rgba(108,197,255,.45);

    box-shadow:0 25px 70px rgba(0,0,0,.35);

}

.worship-banner-content{

    max-width:720px;

}

.worship-banner h2{

    margin-bottom:18px;

    font-size:42px;

}

.worship-banner p{

    color:var(--text-muted);

    font-size:18px;

    line-height:1.8;

}

.worship-arrow{

    flex-shrink:0;

    font-size:20px;

    font-weight:bold;

    color:var(--primary-light);

    transition:.25s;

}

.worship-banner:hover .worship-arrow{

    transform:translateX(8px);

}

.temple-grid{

    width:min(1200px,100%);

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:28px;

}

.temple-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:32px;

    text-align:left;

    backdrop-filter:blur(12px);

    cursor:pointer;

    transition:.25s;

}

.temple-card:hover{

    transform:translateY(-6px);

    border-color:rgba(108,197,255,.45);

    box-shadow:0 18px 50px rgba(0,0,0,.25);

}

.temple-card h2{

    margin-bottom:16px;

}

.temple-card p{

    color:var(--text-muted);

    line-height:1.6;

    margin-bottom:28px;

}

.temple-card span{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(108,197,255,.15);

    color:var(--primary-light);

    font-size:.9rem;

}

.sacred-teachings{

    width:min(1000px,100%);

    margin:90px auto 0;

}

.teachings-header{

    text-align:center;

    margin-bottom:40px;

}

.teachings-header h2{

    font-size:42px;

    margin-bottom:14px;

}

.teachings-header p{

    color:var(--text-muted);

    font-size:18px;

}

.sacred-teachings details{

    margin-bottom:18px;

    padding:22px 26px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(10px);

    transition:.25s;

}

.sacred-teachings details:hover{

    border-color:rgba(108,197,255,.35);

}

.sacred-teachings summary{

    cursor:pointer;

    list-style:none;

    font-size:22px;

    font-weight:bold;

}

.sacred-teachings summary::-webkit-details-marker{

    display:none;

}

.sacred-teachings details p{

    margin-top:18px;

    line-height:1.8;

    color:var(--text-muted);

}

.final-prayer{

    margin-top:70px;

    padding:50px 40px;

    text-align:center;

    border-radius:22px;

    background:linear-gradient(

        180deg,

        rgba(108,197,255,.08),

        rgba(255,255,255,.03)

    );

    border:1px solid rgba(108,197,255,.18);

}

.final-prayer h3{

    font-size:36px;

    margin-bottom:28px;

}

.final-prayer blockquote{

    margin:0;

    font-size:34px;

    font-family:"Cinzel", serif;

    color:var(--primary-light);

    text-shadow:0 0 20px rgba(108,197,255,.35);

}

.final-prayer p{

    margin-top:22px;

    color:var(--text-muted);

}