:root {
    --asp-red: #e31b23;
    --text: #ffffff;
    --muted: rgba(255,255,255,.70);
}

html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    color: var(--text);
    background: linear-gradient( rgba(6,10,16,.88), rgba(6,10,16,.88) ), url('/images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* =========================================
   HEADER
========================================= */

.site-header {
    background: rgba(0,0,0,.30);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

.site-logo {
    height: 40px;
    width: auto;
    display: block;
}

/* =========================================
   MAIN
========================================= */

.site-main {
    flex: 1;
}

/* =========================================
   DIRECTORY
========================================= */

.directory-page {
    padding: 20px 0;
}

.directory-region {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* =========================================
   REGION HEADER
========================================= */

.region-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.region-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.region-content h2 {
    margin: 0;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
}

.region-content p {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
}

/* =========================================
   LINKS
========================================= */

.directory-link {
    height: 58px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 18px;
    text-decoration: none;
    color: #fff;
    transition: .25s;
}

.link-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .link-left i {
        width: 20px;
        text-align: center;
    }

.directory-link:hover {
    background: var(--asp-red);
    border-color: var(--asp-red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(227,27,35,.35);
}

.directory-link .fa-chevron-right {
    font-size: .8rem;
    opacity: .6;
}

.directory-link:hover .fa-chevron-right {
    opacity: 1;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: rgba(0,0,0,.30);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.75);
    text-align: center;
    padding: 14px 0;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:992px) {

    .site-header {
        position: sticky;
        top: 0;
        background: rgba(0,0,0,.75);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
}

@media(max-width:768px) {

    .header-inner {
        padding: 15px 0;
    }

    .site-logo {
        height: 30px;
    }
}

@media(max-width:768px) {
   
    .directory-region {
        padding: 18px;
    }

    .region-icon {
        width: 48px;
        height: 48px;
        font-size: 1.6rem;
    }

    .region-content h2 {
        font-size: 1.5rem;
    }

    .region-content p {
        font-size: .85rem;
    }

    .directory-link {
        height: 52px;
    }
}
