/* ================================================================
   GoldenConquer GLOBAL FOOTER
   Single source of truth for the shared site footer.
================================================================ */
.ft {
    --ft-storm: #0B0B0C;
    --ft-surface: #141416;
    --ft-electric: #B67A35;
    --ft-lightning: #D09A55;
    --ft-border: #33291F;
    --ft-text: #FFFFFF;
    --ft-muted: #B8B2AA;

    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 28px !important;
    color: var(--ft-text) !important;
    background:
        linear-gradient(135deg, rgba(182,122,53,.055), transparent 34%),
        linear-gradient(180deg, var(--ft-surface), var(--ft-storm)) !important;
    border: 0 !important;
    border-top: 1px solid var(--ft-border) !important;
    border-radius: 0 !important;
    box-shadow: 0 -12px 42px rgba(0,0,0,.22), inset 0 1px 0 rgba(208,154,85,.04) !important;
    font-family: 'Rajdhani', Arial, sans-serif;
}

.ft,
.ft * {
    box-sizing: border-box;
}

.ft a {
    text-decoration: none;
}

.ft ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ft-topline {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ft-electric), var(--ft-lightning), transparent) !important;
    opacity: .78;
    animation: none !important;
}

.ft-main {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 38px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 28px 44px 18px;
}

.ft-brand,
.ft-col {
    min-width: 0;
}

.ft-logo-link {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 10px;
}

.ft-logo {
    display: block;
    width: 250px !important;
    height: 70px !important;
    max-width: 100% !important;
    object-fit: contain !important;
    opacity: .96;
    filter: brightness(0) saturate(100%) invert(63%) sepia(45%) saturate(1050%) hue-rotate(351deg) brightness(92%) contrast(90%) drop-shadow(0 4px 12px rgba(182,122,53,.16)) !important;
    transition: filter .24s ease, opacity .24s ease;
}

.ft-logo:hover {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(72%) sepia(36%) saturate(880%) hue-rotate(350deg) brightness(96%) contrast(90%) drop-shadow(0 5px 14px rgba(208,154,85,.20)) !important;
}

.ft-logo-text {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--ft-lightning) !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: var(--ft-lightning) !important;
    font-family: 'Cinzel Decorative', cursive;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
    animation: none !important;
}

.ft-desc {
    max-width: 310px;
    margin: 0 0 14px;
    color: var(--ft-muted) !important;
    font-size: 13px;
    line-height: 1.55;
}

.ft-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ft-soc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--ft-lightning) !important;
    background: linear-gradient(180deg, rgba(22,22,24,.98), rgba(11,11,12,.98)) !important;
    border: 1px solid var(--ft-border) !important;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.045);
    transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease;
}

.ft-soc:hover {
    color: var(--ft-text) !important;
    background: linear-gradient(180deg, rgba(31,27,22,.98), rgba(14,14,16,.98)) !important;
    border-color: rgba(208,154,85,.52) !important;
    box-shadow: 0 16px 36px rgba(0,0,0,.48), 0 0 20px rgba(208,154,85,.12), inset 0 1px 0 rgba(255,255,255,.06) !important;
    transform: translateY(-2px);
}

.ft-soc .icon-ui,
.ft-soc svg {
    width: 16px;
    height: 16px;
    color: inherit !important;
}

.ft-col-title {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 14px;
    padding: 0 0 9px;
    color: var(--ft-lightning) !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: var(--ft-lightning) !important;
    border-bottom: 1px solid var(--ft-border) !important;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-shadow: none !important;
    text-transform: uppercase;
}

.ft-col-ico,
.ft-rune {
    color: var(--ft-lightning) !important;
    font-variant-emoji: text;
    filter: grayscale(1) brightness(1.55);
}

.ft-col-ico {
    font-size: 14px;
}

.ft-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ft-links li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 0;
    color: var(--ft-muted) !important;
    border-left: 2px solid transparent;
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 0;
    transition: color .2s ease, border-color .2s ease, padding .2s ease;
}

.ft-links li a:hover {
    padding-left: 8px;
    color: var(--ft-lightning) !important;
    border-left-color: var(--ft-electric);
}

.ft-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 10px 44px 4px;
    border-top: 1px solid var(--ft-border) !important;
}

.ft-bottom-left {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--ft-muted) !important;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0;
}

.ft-bottom-left strong {
    color: var(--ft-text) !important;
}

.ft-rune {
    font-size: 13px;
    animation: none !important;
}

.ft-devline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 2px 44px 10px;
    color: var(--ft-muted) !important;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0;
    font-variant-emoji: text;
}

.ft-devline strong {
    color: var(--ft-text) !important;
}

.ft-devline span {
    color: var(--ft-border) !important;
}

.ft-devline a {
    color: var(--ft-lightning) !important;
    text-shadow: none !important;
    transition: color .2s ease;
}

.ft-devline a:hover {
    color: var(--ft-text) !important;
    text-shadow: none !important;
}

@media (max-width: 1200px) {
    .ft-main {
        grid-template-columns: 1.8fr 1fr 1fr;
        gap: 36px;
        padding: 52px 28px 36px;
    }

    .ft-main .ft-col:last-child {
        display: none;
    }

    .ft-bottom {
        padding: 18px 28px;
    }
}

@media (max-width: 900px) {
    .ft-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 44px 22px 30px;
    }

    .ft-brand {
        grid-column: 1 / -1;
    }

    .ft-main .ft-col:last-child {
        display: block;
    }
}

@media (max-width: 600px) {
    .ft-main {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
        padding: 36px 16px 24px;
    }

    .ft-bottom {
        flex-direction: column;
        padding: 16px;
        text-align: center;
    }

    .ft-bottom-left {
        justify-content: center;
        flex-wrap: wrap;
    }

    .ft-desc {
        max-width: 100%;
    }

    .ft-devline {
        padding: 0 16px 20px;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .ft-main {
        grid-template-columns: 1fr;
    }
}


/* ================================================================
   FOOTER COMPACT SOURCE OF TRUTH
   Compact on every page; columns sit slightly lower without dead space.
================================================================ */
.ft {
    margin-top: 28px !important;
}

.ft-main {
    align-items: start;
    gap: 38px !important;
    padding: 28px 44px 18px !important;
}

.ft-brand {
    padding-top: 0;
}

.ft-main > .ft-col {
    padding-top: 18px;
}

.ft-logo-link {
    margin-bottom: 10px !important;
}

.ft-logo {
    width: 250px !important;
    height: 70px !important;
}

.ft-desc {
    max-width: 310px;
    margin: 0 0 14px !important;
    line-height: 1.55 !important;
}

.ft-col-title {
    margin-bottom: 14px !important;
    padding-bottom: 9px !important;
}

.ft-links {
    gap: 6px !important;
}

.ft-links li a {
    padding: 3px 0 !important;
}

/* Match the right-side social dock: transparent/dark, bronze outline and icon. */
.ft-socials {
    gap: 8px !important;
}

.ft-soc {
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
    color: #D09A55 !important;
    border-color: rgba(208,154,85,.24) !important;
    background: linear-gradient(180deg, rgba(22,22,24,.98), rgba(11,11,12,.98)) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.045) !important;
}

.ft-soc:hover {
    color: #E8C27A !important;
    background: linear-gradient(180deg, rgba(31,27,22,.98), rgba(14,14,16,.98)) !important;
    border-color: rgba(208,154,85,.52) !important;
    box-shadow: 0 16px 36px rgba(0,0,0,.48), 0 0 20px rgba(208,154,85,.12), inset 0 1px 0 rgba(255,255,255,.06) !important;
}

.ft-bottom {
    justify-content: center !important;
    gap: 6px !important;
    padding: 10px 44px 4px !important;
}

.ft-bottom-left {
    justify-content: center;
    gap: 7px !important;
    text-align: center;
}

.ft-devline {
    padding: 2px 44px 10px !important;
    gap: 7px !important;
}

@media (max-width: 1200px) {
    .ft-main {
        gap: 30px !important;
        padding: 26px 28px 16px !important;
    }
    .ft-main > .ft-col {
        padding-top: 14px;
    }
}

@media (max-width: 900px) {
    .ft-main {
        gap: 22px !important;
        padding: 24px 22px 16px !important;
    }
    .ft-main > .ft-col {
        padding-top: 6px;
    }
}

@media (max-width: 600px) {
    .ft {
        margin-top: 20px !important;
    }
    .ft-main {
        gap: 18px !important;
        padding: 22px 16px 14px !important;
    }
    .ft-main > .ft-col {
        padding-top: 0;
    }
    .ft-bottom {
        padding: 8px 16px 3px !important;
    }
    .ft-devline {
        padding: 2px 16px 8px !important;
    }
}


/* Footer social icons — match the right-side social dock icon treatment. */
.ft-soc {
    position: relative !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 14px !important;
    color: #D09A55 !important;
    border: 1px solid rgba(208,154,85,.24) !important;
    background: linear-gradient(180deg, rgba(22,22,24,.98), rgba(11,11,12,.98)) !important;
    box-shadow: 0 14px 34px rgba(0,0,0,.52), inset 0 1px 0 rgba(255,255,255,.045) !important;
}
.ft-soc::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 10px;
    border: 1px solid rgba(208,154,85,.10);
    pointer-events: none;
}
.ft-soc:hover {
    color: #E8C27A !important;
    background: linear-gradient(180deg, rgba(31,27,22,.98), rgba(14,14,16,.98)) !important;
    border-color: rgba(208,154,85,.52) !important;
    box-shadow: 0 18px 42px rgba(0,0,0,.62), 0 0 24px rgba(208,154,85,.16), inset 0 1px 0 rgba(255,255,255,.07) !important;
    transform: translateY(-2px) scale(1.03);
}
.ft-soc-icon {
    position: relative;
    z-index: 1;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    filter: drop-shadow(0 0 7px rgba(208,154,85,.24));
}
.ft-soc-icon svg {
    width: 22px !important;
    height: 22px !important;
    display: block;
    color: inherit !important;
}
.ft-soc-icon .icon-ui {
    width: 22px !important;
    height: 22px !important;
    color: inherit !important;
    font-size: 10px;
    font-weight: 800;
}
@media (max-width: 600px) {
    .ft-soc {
        width: 42px !important;
        height: 42px !important;
        border-radius: 13px !important;
    }
    .ft-soc-icon,
    .ft-soc-icon svg {
        width: 19px !important;
        height: 19px !important;
    }
}
