html, body {
    height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    background-image: url('newtomb.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ✔ BUTTON CONTAINER — controls placement */
.disciple-buttons {
    position: absolute;
    right: 100px;
    top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    z-index: 10;
}

/* ✔ BUTTON STYLE — controls appearance */
.disciple-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 180px;
    padding: 0.6rem 1.8rem;
    cursor: pointer;

    font-family: "Poppins", "Segoe UI", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    font-weight: 600;

    color: #fff;
    background: rgba(255,255,255,0.12);
    border: 1px solid #0a2a6f;
    border-radius: 6px;

    backdrop-filter: blur(4px);
    text-decoration: none;
    overflow: hidden;

    transition: background 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease,
                transform 0.3s ease;
}

/* 🌟 Radiant Golden Light — DESKTOP BUTTONS ONLY */
.disciple-btn {
    color: #ffeb7a;
    text-shadow:
        0 0 4px #ffeb7a,
        0 0 12px rgba(255,235,122,0.8),
        0 0 22px rgba(255,235,122,0.55);
}

/* ⭐ HOVER GLOW + LIFT */
.disciple-btn:hover {
    background: rgba(255,255,255,0.20);
    border-color: #1a4bb8;
    box-shadow: 0 0 14px rgba(255,255,255,0.55),
                0 0 28px rgba(10,42,111,0.45);
    transform: translateY(-4px);
}

/* ✔ MOBILE STYLES */
@media (max-width: 1024px) {

    .disciple-buttons {
        right: 50px;
        top: 150px;
        gap: 20px;
    }

    .disciple-btn {
        width: 300px;
        padding: 0.7rem 1.5rem;
        font-size: 2.0rem;
        border-radius: 5px;
    }

    /* 🌟 Radiant Golden Light — MOBILE BUTTONS */
    .disciple-btn {
        color: #ffeb7a;
        text-shadow:
            0 0 4px #ffeb7a,
            0 0 12px rgba(255,235,122,0.8),
            0 0 22px rgba(255,235,122,0.55);
    }
}

/* CARD GRID */
#discipleGrid {
    position: absolute;
    left: 120px;
    top: 200px;
    width: 60%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    padding-bottom: 80px;
    z-index: 5;
}

/* CARD STYLE */
.disciple-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid #0a2a6f;
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(6px);
    color: #fff;
    font-family: "Poppins", "Segoe UI", sans-serif;
    transition: background 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease,
                transform 0.3s ease;
}

/* CARD HOVER */
.disciple-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-6px);
}

/* CARD TEXT */
.disciple-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
}

.disciple-card p {
    margin: 4px 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* CARD LINK */
.disciple-card a {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: background 0.3s ease;
}

/* TITLE — stays white */
.disciple-title {
    font-family: "Poppins", "Segoe UI", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 12px rgba(255,255,255,0.6);
}

.disciple-btn {
    cursor: pointer !important;
}

/* 🌟 Special Portal Button — Golden Doorway */
.portal-btn {
    border: 2px solid #d4af37 !important;
    color: #fff !important;
    text-shadow:
        0 0 6px #d4af37,
        0 0 14px rgba(212,175,55,0.8),
        0 0 24px rgba(212,175,55,0.6) !important;
    font-weight: 700 !important;
}

/* ⭐⭐⭐ TILT MESSAGE — BASE STYLE ⭐⭐⭐ */
.tilt-message {
    display: none;
    text-align: center;
    font-size: 14px;
    color: #3a3a3a;
    margin-top: 12px;
    font-family