/* Rotating Quotes header */
.quote-box-floating {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-family: Georgia, serif;
    z-index: 1050;
}
.quote-box-floating cite {
    display: block;
    text-align: right;
    font-size: 0.85rem;
    color: #666;
}

body .quote-box {
    background-color: #eaeaea;
    font-family: georgia, serif;
    font-size: 150%;
    line-height: 0.5em;
}
.quote-hide {
    display: none;
}
.quote-box {
    text-align: center;
    padding: 1em;
}
cite {
    font-size: 80%;
    color: #999;
}

/* Social Media Icons (Font Awesome brand glyphs) */
.fa-brands {
    margin: 0 10px;
    width: 30px;
    height: 30px;
    text-align: center;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        opacity 0.3s ease;
    opacity: 0.5;
}
.fa-brands:hover {
    opacity: 0.9;
    transform: scale(2);
}

/* Brand colors */
.fa-facebook-f {
    background: #3b5998;
    color: #fff;
}
.fa-twitter {
    background: #55acee;
    color: #fff;
}
.fa-instagram {
    background: #ad0000;
    color: #fff;
}
.fa-linkedin {
    background: #1f85d3;
    color: #fff;
}
.fa-github {
    background: #344b5e;
    color: #fff;
}
.fa-youtube {
    background: #ff0000;
    color: #fff;
}
.fa-spotify {
    background: #1db954;
    color: #fff;
}
.fa-discord {
    background: #7289da;
    color: #fff;
}
.fa-letterboxd {
    background: #00d8ff;
    color: #fff;
}
.fa-steam {
    background: #587dd3;
    color: #fff;
}

.nav-link {
    transition:
        color 0.3s ease,
        text-shadow 0.3s ease;
}
.nav-link:hover {
    color: #00ff00;
    text-shadow:
        0 0 8px #00ff00,
        0 0 16px #00ff00;
}

/* Background binary gradient text layer */
.navbar-background-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: left;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(to bottom, #e0ffcc, #262626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Ensure long binary strings wrap to fill width */
    white-space: normal;
    overflow-wrap: anywhere; /* modern browsers */
    word-break: break-word; /* fallback */
    line-height: 1.1;
}

/* Brand text under the logo */
.navbar-text.brand-text {
    margin-top: -10px;
    font-size: 1.2rem;
    line-height: 1;
}

/* Optional: logo sizing tweak if needed */
.navbar-logo {
    display: block;
}
