/* ⭐ BASIC PAGE LAYOUT ⭐ */
body {
    margin: 0;
    padding: 20px;

    /* MATCH ROOM INDEX FONT CHAIN */
    font-family: "Poppins", "Segoe UI", sans-serif;

    background: #dce9dc; /* soft gentle green */
    color: #222;
}

/* ⭐ PURE GLYPH BUTTONS — BOLD BLUE ⭐ */
.home-btn,
.music-btn {
    font-family: "Poppins", "Segoe UI", sans-serif;
    font-size: 20px; /* bold, readable */
    font-weight: 650; /* thicker glyph */
    color: #345f8f; /* bright blue */
    text-shadow: 0 0 8px #4da3ff; /* glowing aura */
    padding: 8px 10px;
    border: 2px solid #d4af37; /* gold border */
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.25); /* cinematic dark glass */
    cursor: pointer;
    transition: 0.2s ease;
}

.home-btn:hover,
.music-btn:hover {
    color: #7fc6ff;
    text-shadow: 0 0 12px #7fc6ff;
}

/* ⭐ SEARCH BAR ⭐ */
#searchInput {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    margin-bottom: 25px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #b5c9b5;
    background: #ffffff;
    color: #222;
    box-sizing: border-box;
}

/* ⭐ CARD GRID ⭐ */
#card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

/* ⭐ CARD STYLE ⭐ */
.disciple-card {
    background: #ffffff;
    padding: 18px;
    border-radius: 10px;
    border: 2px solid #d4af37; /* gold border */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.disciple-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

/* ⭐ CARD TEXT ⭐ */
.disciple-card h3 {
    margin-top: 0;
    font-size: 20px;
    color: #000;
    position: relative; /* Fix underline positioning */
}

/* ⭐ TITLE ACCENT UNDERLINE ⭐ */
.disciple-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #d4af37, transparent);
    border-radius: 2px;
}

.disciple-card p {
    margin: 5px 0;
    color: #555;
}

/* ⭐ Glow block ⭐ */
.disciple-card::before {
    content: "";
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.disciple-card:hover::before {
    opacity: 1;
}

/* ⭐ TOP BAR ⭐ */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

/* Title */
.disciple-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

/* Right-side controls */
.top-controls {
    display: flex;
    gap: 15px;
}

/* ⭐ LINK ROW — 12 buttons as a wall */
.disciple-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 buttons across */
    gap: 20px;
    margin: 40px auto;
    max-width: 900px;
    justify-items: center;
}

.disciple-btn {
    padding: 10px 18px;
    background: #f3e9c9; 
    border: 2px solid #d4af37;
    border-radius: 8px;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
    text-decoration: none;

    /* MATCH ROOM INDEX FONT CHAIN */
    font-family: "Poppins", "Segoe UI", sans-serif;
}

.disciple-btn:hover {
    background: rgba(255,255,255,0.25);
    box-shadow: 0 0 10px rgba(0,150,255,0.6), 
                0 0 18px rgba(212,175,55,0.4); /* blue + gold aura */
    transform: translateY(-3px);
}


