body {
    background-color: #5B5B5B;
    font-family: 'Lora', serif;
    color: #eee;
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    justify-content: center;
    display: flex;
}

.page-container {
    position: relative;
    max-width: 520px;
    width: 100%;
    /*      margin: 0 auto;*/
    margin: 3rem 1rem;
    padding: 2rem 1.5rem;
    background: url('/images/texture.png') repeat;
    /* subtle temple texture */
    border-radius: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 30, 30, 0.6), rgba(0, 0, 0, 0.6));
    /*background: white;*/
    border-radius: 24px;
    pointer-events: none;
    z-index: 0;
}

a {
    color: #bf93e2;
}

details a {
    color: #A3A3A3;
}

.getting-started {
    margin-bottom: 3rem;
}

.getting-started li {
    margin-bottom: 1.5rem;
}

@counter-style getting-started {
    system: fixed;
    symbols: "👉" "🎧" "📲" "💸";
    suffix: " ";
}

.getting-started {
    list-style: getting-started;
    font-size: 1.4rem;
}

.content {
    position: relative;
    z-index: 1;
}

details {
    margin-bottom: 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Alegreya', serif;
    font-weight: bold;
    color: #ffd700;
    /* goldish for temple feel */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

h1 {
    margin: 2rem 0;
    text-align: center;
}

h2 {
    margin-bottom: 1rem;
    margin-top: 2rem;
    text-align: left;
}

ul,
ol {
    margin-bottom: 1em;
    line-height: 1.5;
}

li {
    margin-bottom: 0.5em;
}

details {
    margin-bottom: 1rem;
    padding: 1rem;
    cursor: pointer;
    background-color: rgba(24, 18, 28, 0.8);
    border-radius: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

details:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

summary {
    display: block;
    /*padding: 1rem;*/
    cursor: pointer;
    font-family: 'Alegreya Sans', sans-serif;
    margin: 0;
    font-size: 1.4rem;
    font-weight: normal;
}

details p {
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 2rem;
    /*color: #fff;*/
}

.ritual-separator {
    text-align: center;
    margin: 2rem 0;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 75%;
    max-width: 95%;
    box-sizing: border-box;
    margin: 2rem auto;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    font-family: 'Alegreya Sans', sans-serif;
    /*    font-weight: bold;*/
    color: #eeeeee;
    background: #18121c;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.7);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px) translateX(-1px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.75);
}

@media (max-width: 600px) {
    .overlay {
        border-radius: 0px;
    }

    h1 {
        font-size: 2rem;
        /*white-space: nowrap;*/
    }
}

footer {
    text-align: center;
}