/* --------------- Globals & Resets --------------- */

@media only screen and (min-width: 992px) {
    :root {
        --scrollbar-width: 0.5rem;
    }
    ::-webkit-scrollbar {
        height: 4px;
        width: var(--scrollbar-width);
    }
    ::-webkit-scrollbar-thumb {
        background: #414141;
        border-radius: 10px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #505050;
    }
    ::-webkit-scrollbar-track {
        background: #2b2b2b;
        border-radius: 10px;
        box-shadow: inset 7px 10px 12px 0 #151515;
        height: 2px !important;
    }
}
html,
body {
    background: #0d0d16;
    font-family: Barlow, sans-serif;
    overflow-x: hidden;
    width: 100%;
}

* {
    font-family: Barlow;
}

::selection {
    background: rgba(56, 56, 56, 0.863);
    color: #fff;
}

:root {
    --white: 255, 255, 255;
    --blue: 44, 162, 241;
    --green: 51, 254, 162;
    --danger: 255, 148, 148;
    --pink: 233, 103, 226;
    --purple: 80, 13, 232;
    --red: 250, 82, 110;
    --body: 6, 6, 10;
    --primary-light: var(--pink);
    --primary: var(--purple);
    --color-rgb: 255, 255, 255;
    --success: 151, 254, 162;
    --cyan: 148, 244, 255;
    --color-scheme: green;
    --scrollbar-width: 0px;
}

html {
    --header-size: 75px;
}


/* --------------- General & Utilities --------------- */

button {
    background: transparent;
    border: 0;
}

a {
    text-decoration: none !important;
}

.row {
    --bs-gutter-y: 1.5rem;
    --bs-gutter-x: 1.5rem;
}

i.bi {
    pointer-events: none;
}

.item-label {
    display: inline-block;
    transition: transform 0.3s ease;
}

.heart-pulse {
    color: #ff4d4d;
    display: inline-block;
    margin-left: 3px;
    animation: pulseHeart 1.5s infinite;
    font-size: 0.7rem;
    vertical-align: middle;
}

.wiregency-link {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.wiregency-link:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.wiregency-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
    opacity: 0.5;
}

.wiregency-link:hover::after {
    width: 100%;
}

.content {
    background: rgba(6, 6, 10, 0.4235294118);
    border: 1px solid hsla(0, 0%, 100%, 0.039);
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    height: 100%;
    padding: 1rem 2rem;
    position: relative;
    z-index: 1;
}

.server-ip-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-right: 1rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.text-gold {
    color: #fbbd44;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.online {
    background: #23a55a;
    box-shadow: 0 0 6px rgba(35, 165, 90, 0.6);
}

.status-dot.total {
    background: #b5bac1;
}


/* --------------- Animations --------------- */

@keyframes shopTopBubbles {
    0% {
        background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
    }
    50% {
        background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
        background-size: 15% 15%, 25% 25%, 20% 20%, 25% 25%, 22% 22%, 15% 15%, 20% 20%, 15% 15%, 22% 22%;
    }
    100% {
        background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

@keyframes shopBottomBubbles {
    0% {
        background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
    }
    50% {
        background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
        background-size: 15% 15%, 25% 25%, 20% 20%, 25% 25%, 22% 22%, 15% 15%, 20% 20%;
    }
    100% {
        background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

@keyframes pulseHeart {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulseStatus {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.6);
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatWumpus {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}


/* --------------- Header & Navigation --------------- */

.header {
    backdrop-filter: blur(40px);
    background: rgba(0, 0, 0, 0.55);
    left: 0;
    right: 0;
    position: fixed;
    top: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: visible !important;
    z-index: 9999 !important;
    width: 100%;
    margin: 0;
    padding: 0;
    height: var(--header-size);
}

.header .navbar {
    height: 100%;
    padding: 0;
}

.header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}

@media (min-width: 992px) {
    .header-container {
        position: relative;
    }
    .navbar-nav.mx-auto {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
}

@media (max-width: 991px) {
    .header {
        position: fixed;
        height: var(--header-size);
    }
    .header-container {
        display: flex !important;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }
    .header .navbar {
        padding: 0;
    }
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: #fff !important;
    font-size: 1.8rem;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 3000;
    position: relative;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
}

.navbar-nav>*:not(:last-child)::before {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 4px !important;
    height: 4px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    z-index: 10 !important;
    display: block !important;
    pointer-events: none !important;
}

.nav-dropdown {
    position: relative !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
}

@media (min-width: 991px) {
    .nav-dropdown {
        display: flex !important;
        align-items: center !important;
    }
    .nav-dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) translateY(0) !important;
        pointer-events: auto !important;
    }
}

.dropdown-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.nav-dropdown:hover .dropdown-indicator {
    opacity: 1;
    transform: rotate(180deg);
}

.nav-dropdown .dropdown-menu {
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(5px) !important;
    margin-top: 0 !important;
    position: absolute !important;
}

.navbar-item {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: all 0.3s ease;
}

.shop-link.navbar-item {
    color: #fbbd44 !important;
    text-shadow: 0 0 10px rgba(251, 189, 68, 0.2);
}

.shop-link.navbar-item:hover {
    color: #fff !important;
    text-shadow: 0 0 15px rgba(251, 189, 68, 0.5);
}

.bubbles {
    display: inline-block;
    position: relative;
    z-index: 5;
    color: inherit;
}

.bubbles::before,
.bubbles::after {
    background-image:
        radial-gradient(circle, #fbbd44 20%, transparent 20%),
        radial-gradient(circle, transparent 20%, #fbbd44 20%, transparent 30%),
        radial-gradient(circle, #fbbd44 20%, transparent 20%),
        radial-gradient(circle, #fbbd44 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, #fbbd44 15%, transparent 20%),
        radial-gradient(circle, #fbbd44 20%, transparent 20%),
        radial-gradient(circle, #fbbd44 20%, transparent 20%),
        radial-gradient(circle, #fbbd44 20%, transparent 20%),
        radial-gradient(circle, #fbbd44 20%, transparent 20%);
    background-repeat: no-repeat;
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
    content: "";
    display: block;
    height: 100%;
    left: -20%;
    position: absolute;
    width: 140%;
    z-index: -1;
    opacity: 0;
}

.bubbles::before {
    top: -75%;
}

.bubbles::after {
    bottom: -75%;
}

.shop-link:hover .bubbles::before {
    animation: shopTopBubbles 0.75s ease-in-out forwards;
    opacity: 1;
}

.shop-link:hover .bubbles::after {
    animation: shopBottomBubbles 0.75s ease-in-out forwards;
    opacity: 1;
}

.navbar-item:hover {
    color: #fff !important;
}

.shop-link.navbar-item:hover {
    color: #fff0b3 !important;
    text-shadow: 0 0 15px rgba(251, 189, 68, 0.5);
}

.navbar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    opacity: 0.5;
}

.nav-auth-register {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 5px !important;
    padding: 0.4rem 1.5rem !important;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease !important;
    margin-left: 1rem !important;
    font-size: 0.82rem;
    font-weight: 500;
}

.nav-auth-register:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff !important;
}

.nav-auth-register::after {
    display: none !important;
}

.nav-auth-mobile-btn {
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-auth-mobile-btn.btn-filled {
    background: #fbbd44;
    color: #000;
    border: 1px solid #fbbd44;
    box-shadow: 0 5px 15px rgba(251, 189, 68, 0.2);
}

.dropdown-menu {
    background: #000 !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    padding: 0.5rem 0;
    margin-top: 0.5rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    display: block;
    transform: translateY(5px);
    transition: all 0.3s ease;
    pointer-events: none;
    width: max-content;
    min-width: 160px;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.6rem 2rem 0.6rem 1rem !important;
    border-radius: 0;
    font-size: 0.82rem;
    text-align: right !important;
    transition: all 0.3s ease;
    text-transform: none;
    display: block;
    width: 100%;
    position: relative;
}

.dropdown-item:hover .item-label {
    transform: translateX(-10px);
}

.dropdown-item::after {
    content: "→";
    position: absolute;
    right: 0.7rem;
    top: 50%;
    transform: translateY(-50%) translateX(3px);
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary, #fff);
}

.dropdown-item:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.dropdown-menu li:last-child {
    border-bottom: none !important;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
    content: "";
    border: none;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    position: relative;
    top: -2px;
}

.navbar-item:hover::after {
    width: 20px;
}

@media (max-width: 991px) {
    .offcanvas {
        background: rgba(0, 0, 0, 0.85) !important;
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        width: 300px !important;
        z-index: 10000 !important;
    }
    .offcanvas-backdrop {
        z-index: 9999 !important;
    }
    .offcanvas-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 2rem;
    }
    .offcanvas-title {
        color: #fff;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    .offcanvas-body {
        padding: 2rem;
    }
    .navbar-nav {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .navbar-item {
        font-size: 1.1rem;
        padding: 0.5rem 0 !important;
        margin: 0;
        color: rgba(255, 255, 255, 0.6) !important;
    }
    .navbar-item::after {
        left: 0 !important;
        transform: none !important;
        bottom: -5px;
    }
    .navbar-nav>*:not(:last-child)::before {
        content: none !important;
        display: none !important;
    }
    .offcanvas .nav-dropdown .dropdown-menu {
        display: none !important;
        position: static !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        padding: 0 !important;
        margin-top: 0.5rem !important;
    }
    .offcanvas .nav-dropdown .dropdown-menu.show {
        display: block !important;
    }
    .offcanvas .nav-dropdown .nav-link.show .dropdown-indicator {
        transform: rotate(180deg);
        opacity: 1;
    }
    .offcanvas .dropdown-item {
        padding: 0.5rem 0 0.5rem 1.5rem !important;
        text-align: left !important;
        background: transparent !important;
    }
    .offcanvas .dropdown-item .item-label {
        transform: none !important;
    }
    .offcanvas .dropdown-item::after {
        display: none !important;
    }
    .offcanvas .dropdown-indicator {
        display: inline-flex !important;
        opacity: 0.5;
    }
}

.dropdown-toggle:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown-toggle:after {
    display: none;
}

.dropdown {
    align-items: center;
    background: #000;
    border-radius: 5px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    position: absolute;
    transform: translateY(100%);
    transition: all 0.3s ease;
    visibility: hidden;
}

.dropdown-item {
    border-radius: 5px;
    font-weight: 400;
    padding: 1rem 1.5rem;
    text-align: right;
    text-transform: none;
    transition: all 0.3s ease !important;
}

.dropdown-item,
.dropdown-item:hover {
    background: #000 !important;
}

@media only screen and (max-width: 991px) {
    html {
        --header-size: 60px;
    }
    .header {
        position: fixed;
        width: 100%;
    }
    .navbar-toggler {
        margin-left: 0;
        padding-left: 0;
    }
}


/* --------------- Hero Section --------------- */

.hero-logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-logo {
    height: 150px;
    width: auto;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.15));
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-logo-blur {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 200px;
    width: 200px;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .hero-logo {
        height: 110px;
    }
    .hero-logo-blur {
        height: 180px;
        width: 180px;
    }
}

.hero-section {
    position: relative;
    height: 560px;
    width: 100%;
    margin-top: var(--header-size);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #0d0d16;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #0d0d16 0%, rgba(13, 13, 22, 0) 50%, rgba(13, 13, 22, 0.4) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 5;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    margin: 0 auto;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, #0d0d16, transparent);
    z-index: 4;
}

@media (max-width: 991px) {
    .hero-section {
        height: 480px;
        margin-top: var(--header-size);
    }
    .hero-container {
        margin-top: 0;
    }
}

.hero-play-btn {
    display: block;
    min-width: 220px;
    width: max-content;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    color: #78350f !important;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    background: linear-gradient(90deg, #ffd465, #f8a528);
    box-shadow: 0 0 0 8px hsla(0, 0%, 100%, 0.05),
        0 4px 0px #78350f,
        inset 0 2px 0px rgba(255, 255, 255, 0.4);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.hero-play-btn:hover,
.hero-play-btn:active {
    background: linear-gradient(0deg, hsla(0, 0%, 100%, 0.2), hsla(0, 0%, 100%, 0.2)),
        linear-gradient(90deg, #ffd465, #f8a528);
    box-shadow: 0 0 0 8px hsla(0, 0%, 100%, 0.1),
        0 2px 0px #78350f,
        inset 0 2px 0px rgba(255, 255, 255, 0.4) !important;
    transform: translateY(2px);
    outline: none !important;
}

.hero-play-btn:focus {
    box-shadow: 0 0 0 8px hsla(0, 0%, 100%, 0.1),
        0 2px 0px #78350f,
        inset 0 2px 0px rgba(255, 255, 255, 0.4) !important;
    outline: none !important;
}

.hero-player-count {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 5;
    position: relative;
}

.hero-player-count span {
    color: #fff;
    font-weight: 700;
}

.join-section .hero-play-btn,
.join-section .discord-play-btn {
    min-width: 180px;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

.join-section .hero-play-btn {
    box-shadow: 0 0 0 6px hsla(0, 0%, 100%, 0.05),
        0 3px 0px #78350f,
        inset 0 2px 0px rgba(255, 255, 255, 0.4);
}

.join-section .hero-play-btn:hover,
.join-section .hero-play-btn:active,
.join-section .hero-play-btn:focus {
    box-shadow: 0 0 0 6px hsla(0, 0%, 100%, 0.1),
        0 1px 0px #78350f,
        inset 0 2px 0px rgba(255, 255, 255, 0.4) !important;
}

@media (max-width: 576px) {
    .join-section .hero-play-btn,
    .join-section .discord-play-btn {
        width: 100%;
    }
    .join-box-content {
        padding: 2rem 1.2rem;
    }
    .join-input-fake {
        padding: 0.8rem 1rem;
    }
    .join-input-fake.with-btn {
        padding-right: 0.4rem;
    }
    .server-ip-text {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    .join-copy-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}


/* --------------- Join Section --------------- */

.join-section {
    padding: 2rem 0 6rem;
    position: relative;
    background: transparent;
}

@media (min-width: 992px) {
    .join-section {
        margin-top: -60px;
        z-index: 10;
    }
}

.join-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.join-title span {
    color: #fbbd44;
}

.join-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.join-box-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.join-badge {
    position: absolute;
    top: -15px;
    left: -15px;
    background: linear-gradient(90deg, #ffd465, #f8a528);
    color: #000;
    padding: 0.4rem 1.2rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(251, 189, 68, 0.4);
    letter-spacing: 1px;
}

.join-box {
    background: rgba(13, 13, 22, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    position: relative;
}

.join-box-content {
    padding: 2.5rem 1.5rem 2.5rem 2.5rem;
    z-index: 2;
    width: 70%;
}

.join-field label {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
    letter-spacing: 0.5px;
}

.join-input-fake {
    background: #0d0d16;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.join-input-fake.with-btn {
    padding-right: 0.5rem;
}

.join-copy-btn {
    background: linear-gradient(90deg, #ffd465, #f8a528);
    box-shadow: 0 0 0 4px hsla(0, 0%, 100%, 0.05),
        0 4px 0px #78350f,
        inset 0 2px 0px rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 6px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #78350f !important;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.3rem;
}

.join-copy-btn:hover,
.join-copy-btn:active {
    background: linear-gradient(0deg, hsla(0, 0%, 100%, 0.2), hsla(0, 0%, 100%, 0.2)),
        linear-gradient(90deg, #ffd465, #f8a528);
    box-shadow: 0 0 0 4px hsla(0, 0%, 100%, 0.1),
        0 2px 0px #78350f,
        inset 0 2px 0px rgba(255, 255, 255, 0.4) !important;
    transform: translateY(2px);
    outline: none !important;
}

.join-section .discord-play-btn {
    box-shadow: 0 0 0 6px rgba(88, 101, 242, 0.05),
        0 3px 0px #2c388c,
        inset 0 2px 0px rgba(255, 255, 255, 0.3);
}

.join-section .discord-play-btn:hover,
.join-section .discord-play-btn:active,
.join-section .discord-play-btn:focus {
    box-shadow: 0 0 0 6px rgba(88, 101, 242, 0.1),
        0 1px 0px #2c388c,
        inset 0 2px 0px rgba(255, 255, 255, 0.3) !important;
}

.join-character-wrapper {
    position: absolute;
    right: -5%;
    bottom: 0;
    height: 130%;
    width: 40%;
    z-index: 5;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.join-character {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(-10px 10px 20px rgba(0, 0, 0, 0.5));
}

@media (max-width: 991px) {
    .join-box-wrapper {
        max-width: 680px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .join-character-wrapper {
        display: none;
    }
    .join-box-content {
        width: 100%;
        padding: 2.5rem 1.5rem;
    }
    .join-badge {
        left: 50%;
        transform: translateX(-50%);
        top: -15px;
    }
}


/* --------------- About Section --------------- */

.about-section {
    padding: 6rem 0;
    position: relative;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    z-index: 10;
}

.about-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.about-title span {
    color: #fbbd44;
}

.about-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.about-section .carousel {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-section .carousel-img {
    height: 410px;
    object-fit: cover;
}

.about-section .carousel-item {
    position: relative;
}

.about-section .carousel-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(13, 13, 22, 0.9) 0%, transparent 100%);
    pointer-events: none;
}

.about-section .carousel-caption {
    z-index: 5;
    padding-bottom: 2rem;
    text-align: left;
    left: 10%;
    right: 10%;
}

.about-section .carousel-caption h5 {
    color: #fbbd44;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-section .carousel-caption p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.about-section .carousel-indicators [data-bs-target] {
    background-color: #fff;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    margin: 0 5px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.about-section .carousel-indicators .active {
    background-color: #fbbd44;
    opacity: 1;
    transform: scale(1.2);
}

.about-section .carousel-control-prev,
.about-section .carousel-control-next {
    width: 10%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-section .carousel:hover .carousel-control-prev,
.about-section .carousel:hover .carousel-control-next {
    opacity: 0.7;
}

.about-section .carousel-control-prev:hover,
.about-section .carousel-control-next:hover {
    opacity: 1;
}

.about-features {
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .about-features {
        margin: 0;
    }
}

.about-feature {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: rgba(251, 189, 68, 0.03);
    border-color: rgba(251, 189, 68, 0.2);
    transform: translateX(5px);
}

.about-feature-icon {
    font-size: 1.25rem;
    color: #fbbd44;
    line-height: 1;
    margin-top: 0.15rem;
    text-shadow: 0 0 10px rgba(251, 189, 68, 0.3);
}

.about-feature-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.05rem;
}

.about-feature-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-section {
        padding: 4rem 0;
    }
    .about-title, .blog-title {
        font-size: 1.8rem;
    }
    .about-section .carousel-img {
        height: 300px;
    }
    .blog-section {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .about-section .carousel-img {
        height: 240px;
    }
    .about-section .carousel-caption h5 {
        font-size: 1.1rem;
    }
    .about-section .carousel-caption p {
        font-size: 0.8rem;
    }
    .blog-article-card-content {
        padding: 1.4rem;
    }
}


/* --------------- Blog Section --------------- */

.blog-section {
    padding: 6rem 0;
    position: relative;
    background: transparent;
    z-index: 10;
}

.blog-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3.5rem;
    text-align: center;
}

.blog-article-card {
    display: block;
    background: rgba(13, 13, 22, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    text-decoration: none !important;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.3s ease;
}

.blog-article-card:hover {
    transform: translateY(-8px);
    border-color: #fbbd44;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 
                0 0 25px rgba(251, 189, 68, 0.15);
}

.blog-article-img-wrapper {
    position: relative;
    height: 210px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.blog-article-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-25deg);
    z-index: 2;
}

.blog-article-card:hover .blog-article-img-wrapper::after {
    left: 150%;
    transition: left 0.75s ease-in-out;
}

.blog-article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-article-card:hover .blog-article-img {
    transform: scale(1.06);
}

.blog-article-card-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 210px);
}

.blog-article-card-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
    width: fit-content;
    transition: color 0.3s ease;
}

.blog-article-card-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fbbd44;
    transition: width 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-article-card:hover .blog-article-card-title::after {
    width: 100%;
}

.blog-article-card:hover .blog-article-card-title {
    color: #fbbd44;
}

.blog-article-card-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-article-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.blog-article-card-meta .author-name {
    color: #fbbd44;
    font-weight: 700;
}

.blog-more-btn {
    display: inline-block;
    width: auto;
    min-width: 280px;
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    color: #78350f !important;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    background: linear-gradient(90deg, #ffd465, #f8a528);
    box-shadow: 0 0 0 8px hsla(0, 0%, 100%, 0.05),
        0 4px 0px #78350f,
        inset 0 2px 0px rgba(255, 255, 255, 0.4);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none !important;
}

.blog-more-btn:hover,
.blog-more-btn:active {
    background: linear-gradient(0deg, hsla(0, 0%, 100%, 0.2), hsla(0, 0%, 100%, 0.2)),
        linear-gradient(90deg, #ffd465, #f8a528);
    box-shadow: 0 0 0 8px hsla(0, 0%, 100%, 0.1),
        0 2px 0px #78350f,
        inset 0 2px 0px rgba(255, 255, 255, 0.4) !important;
    transform: translateY(2px);
    outline: none !important;
}

.blog-more-btn:focus {
    box-shadow: 0 0 0 8px hsla(0, 0%, 100%, 0.1),
        0 2px 0px #78350f,
        inset 0 2px 0px rgba(255, 255, 255, 0.4) !important;
    outline: none !important;
}


/* --------------- FAQ Section --------------- */

.faq-section {
    padding: 6rem 0;
    position: relative;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    z-index: 10;
    overflow: hidden;
}

.faq-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 189, 68, 0.08) 0%, rgba(13, 13, 22, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.faq-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.faq-title span {
    color: #fbbd44;
    text-shadow: 0 0 15px rgba(251, 189, 68, 0.3);
}

.accordion-custom {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.accordion-custom .accordion-item {
    background: rgba(22, 22, 33, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.accordion-custom .accordion-item:hover {
    border-color: rgba(251, 189, 68, 0.25);
    background: rgba(25, 25, 36, 0.85);
}

.accordion-custom .accordion-button {
    background: transparent !important;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    transition: color 0.2s ease;
}

.accordion-custom .accordion-button:hover {
    color: #fbbd44;
}

.accordion-custom .accordion-button:not(.collapsed) {
    color: #fbbd44;
}

.accordion-custom .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transition: transform 0.3s ease;
}

.accordion-custom .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fbbd44'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-custom .accordion-body {
    background: rgba(13, 13, 22, 0.4);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 991px) {
    .faq-section {
        padding: 4rem 0;
    }
    .faq-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 576px) {
    .accordion-custom .accordion-button {
        font-size: 0.95rem;
        padding: 1rem 1.2rem;
    }
    .accordion-custom .accordion-body {
        font-size: 0.85rem;
        padding: 1rem 1.2rem;
    }
}


/* --------------- Discord Section --------------- */

.discord-play-btn {
    display: inline-block;
    width: 220px;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    background: linear-gradient(90deg, #5865f2, #4752c4);
    box-shadow: 0 0 0 8px rgba(88, 101, 242, 0.05),
        0 4px 0px #2c388c,
        inset 0 2px 0px rgba(255, 255, 255, 0.3);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
}

.discord-play-btn:hover,
.discord-play-btn:active {
    background: linear-gradient(0deg, hsla(0, 0%, 100%, 0.15), hsla(0, 0%, 100%, 0.15)),
        linear-gradient(90deg, #5865f2, #4752c4);
    box-shadow: 0 0 0 8px rgba(88, 101, 242, 0.1),
        0 2px 0px #2c388c,
        inset 0 2px 0px rgba(255, 255, 255, 0.3) !important;
    transform: translateY(2px);
    outline: none !important;
}

.discord-play-btn:focus {
    box-shadow: 0 0 0 8px rgba(88, 101, 242, 0.1),
        0 2px 0px #2c388c,
        inset 0 2px 0px rgba(255, 255, 255, 0.3) !important;
    outline: none !important;
}

.discord-section {
    padding: 6rem 0;
    position: relative;
    background: rgba(88, 101, 242, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    z-index: 10;
}

.discord-wumpus-wrapper {
    position: relative;
    display: inline-block;
    animation: floatWumpus 6s ease-in-out infinite;
}

.discord-wumpus-img {
    max-width: 100%;
    height: auto;
    max-height: 240px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.discord-wumpus-wrapper:hover .discord-wumpus-img {
    transform: scale(1.04) rotate(-3deg);
}

.discord-channel-welcome {
    position: relative;
}

.discord-channel-title {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.discord-channel-title span {
    color: #5865f2;
    text-shadow: 0 0 15px rgba(88, 101, 242, 0.25);
}

.discord-channel-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    max-width: 650px;
}

.discord-meta-info {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.discord-status-online,
.discord-status-members {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.discord-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.6rem;
    border-radius: 0.5rem;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    background: #5865f2;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.15),
        0 3px 0px #2c388c,
        inset 0 2px 0px rgba(255, 255, 255, 0.3);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none !important;
    border: none;
}

.discord-channel-btn:hover,
.discord-channel-btn:active {
    background: linear-gradient(0deg, hsla(0, 0%, 100%, 0.15), hsla(0, 0%, 100%, 0.15)),
        linear-gradient(90deg, #5865f2, #4752c4);
    box-shadow: 0 0 0 8px rgba(88, 101, 242, 0.1),
        0 2px 0px #2c388c,
        inset 0 2px 0px rgba(255, 255, 255, 0.3) !important;
    transform: translateY(2px);
    outline: none !important;
}

.discord-channel-btn:focus {
    box-shadow: 0 0 0 8px rgba(88, 101, 242, 0.1),
        0 2px 0px #2c388c,
        inset 0 2px 0px rgba(255, 255, 255, 0.3) !important;
    outline: none !important;
}

@media (max-width: 991px) {
    .discord-section {
        padding: 4rem 0;
    }
    .discord-channel-title {
        font-size: 1.4rem;
    }
    .discord-channel-text {
        font-size: 0.88rem;
    }
    .discord-wumpus-img {
        max-height: 200px;
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .discord-channel-title {
        font-size: 1.3rem;
    }
    .discord-channel-btn {
        width: 100%;
        justify-content: center;
    }
}


/* --------------- Footer --------------- */

.footer {
    margin-top: 0;
    overflow: hidden;
    padding-bottom: 2rem;
    padding-top: 3rem;
    position: relative;
    z-index: 1;
}

.footer:before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.footer-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.footer-brand {
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-logo {
    height: 8rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: auto;
    z-index: 2;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo-blur {
    filter: blur(6rem);
    height: 20rem;
    left: 50%;
    opacity: 0.4;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    z-index: 1;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 750px;
}

.footer-desc-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.footer-social {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
    color: #fff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    transform: translateY(-3px);
}

.footer-navigation {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

.footer-navigation-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-navigation-text:hover {
    color: #fff;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #fff;
}

.footer-azuriom-logo {
    height: 16px;
    margin-right: 4px;
    filter: grayscale(100%);
    opacity: 0.4;
    vertical-align: middle;
    position: relative;
    top: -3.5px;
    transition: all 0.3s ease;
}

.footer-copyright a:hover .footer-azuriom-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

@media only screen and (max-width: 768px) {
    .footer {
        margin-top: 2rem;
    }
    .footer-logo {
        height: 5.5rem;
    }
    .footer-description {
        font-size: 1rem;
        padding: 0 1.5rem;
    }
    .footer-navigation {
        gap: 1rem;
    }
}


/* --------------- Global & Responsive --------------- */

@media only screen and (max-width: 1200px) {}

/* User Dropdown Fixes */
.user-dropdown-menu .dropdown-item {
    text-align: left !important;
    padding: 0.6rem 1.5rem !important;
}

.user-dropdown-menu .dropdown-item::after {
    display: none !important;
}

.user-dropdown-menu .dropdown-item:hover .item-label {
    transform: translateX(5px);
}

.dropdown-menu-center {
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, 5px) !important;
}

@media (min-width: 992px) {
    .nav-dropdown:hover .dropdown-menu-center {
        transform: translate(-50%, 0) !important;
    }
}
