:root {
    --dark-blue: #1e1f37;
    --black: #000;
    --gray: #707070;
    --light-gold: #cfc6c3;
    --light-silver: #cdd6db;
    --dark-brown: #433f3f;
    --main-font-family: "Noto Sans", sans-serif;
    --header-height: 110px;
}

@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }
}

body {
    font-family: var(--main-font-family);
    padding-top: var(--header-height);
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.footer {
    font-size: 20px;
    font-weight: 200;
    padding-bottom: 40px;
}

.bg-silver {
    background-color: var(--light-silver);
}

.bg-gold {
    background-color: var(--light-gold);
}

.bg-off-white {
    background-color: #f5f5f5;
}

.btn-bordered-white {
    background-color: #fff;
    border: 1px solid #ccc;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-bordered-white:hover {
    background-color: #eee;
    color: #000;
}

.col-gray {
    color: var(--gray);
}

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-bottom: 90px;
}

/* Button Utils */
.btn-ga {
    display: inline-block;
    padding: 0 clamp(20px, 5vw, 50px);
    background-color: var(--gray);
    color: #fff;
    text-decoration: none;
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 360;
    transition: opacity 0.3s ease;
    border: none;
    cursor: pointer;
    max-width: 100%;
    text-align: center;
    white-space: normal;
}

.btn-ga:hover {
    opacity: 0.8;
    color: #fff;
}

.btn-more {
    display: inline-block;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 300;
    color: var(--dark-brown);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--dark-brown);
    transition: opacity 0.3s ease;
    cursor: pointer;
    margin-top: 20px;
}

.btn-more:hover {
    opacity: 0.7;
    color: var(--dark-brown);
}


.selectable {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Admin Controls Pill */
.admin-controls {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 10000;
    pointer-events: none;
}

.admin-pill {
    display: flex;
    align-items: center;
    background: rgba(30, 31, 55, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    max-width: 46px;
    height: 46px;
    white-space: nowrap;
    pointer-events: auto;
}

.admin-pill:hover {
    max-width: 280px;
    padding-right: 20px;
    background: var(--dark-blue);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.admin-icon-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.6s ease;
}

.admin-pill:hover .admin-icon-main {
    transform: rotate(90deg);
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 12px;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    pointer-events: none;
}

.admin-pill:hover .admin-actions {
    opacity: 1;
    pointer-events: auto;
}

.admin-link-item {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    opacity: 0.8;
}

.admin-link-item:hover {
    color: var(--light-gold);
    opacity: 1;
    transform: translateY(-1px);
}

.admin-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 576px) {
    .admin-controls {
        bottom: 15px;
        left: 15px;
    }
    .admin-pill:hover {
        max-width: 210px;
        padding-right: 15px;
    }
    .admin-actions {
        gap: 8px;
        margin-left: 8px;
    }
    .admin-link-item span {
        font-size: 13px;
    }
}