/* =========================================
   GLOBAL COMPONENTS & UTILITIES
   Added dynamically to all pages for scalable UI
========================================= */

.btn-liquid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 32px;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-top-color: rgba(255, 255, 255, .4);
    border-left-color: rgba(255, 255, 255, .4);
    border-radius: 100px;
    backdrop-filter: blur(12px) saturate(220%) contrast(140%) brightness(130%);
    -webkit-backdrop-filter: blur(12px) saturate(220%) contrast(140%) brightness(130%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
    font-size: 14px;
    font-weight: 600;
    color: #fff !important; /* Force white text */
    text-decoration: none;
    transition: all .3s ease;
    cursor: pointer;
}

.btn-liquid i {
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
}

.btn-liquid:hover {
    background: rgba(56, 189, 248, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(56, 189, 248, .25);
    color: #fff !important;
}

/* PILL LABELS (Eyebrow replacements) */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

/* DETAILS / SUMMARY RESET (Hide default black arrows for custom components) */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
