:root {
    --gp-nav-bg-1: #34486a;
    --gp-nav-bg-2: #2b3d5b;
    --gp-nav-bg-3: #22314b;
    --gp-nav-bg-4: #1b263b;

    --gp-accent: #f1b24d;
    --gp-accent-soft: rgba(241, 178, 77, 0.12);
    --gp-accent-border: rgba(241, 178, 77, 0.28);
    --gp-accent-border-strong: rgba(241, 178, 77, 0.48);

    --gp-text-main: #f4f7fb;
    --gp-text-soft: #d4dcea;
    --gp-text-muted: #9fb0c7;

    --gp-shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.18);
    --gp-shadow-strong: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.gp-footer {
    position: relative;
    background:
            radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.06) 0%, transparent 22%),
            radial-gradient(circle at 86% 18%, rgba(241, 178, 77, 0.10) 0%, transparent 18%),
            linear-gradient(115deg, var(--gp-nav-bg-1) 0%, var(--gp-nav-bg-2) 34%, var(--gp-nav-bg-3) 70%, var(--gp-nav-bg-4) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.gp-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0) 40%);
    pointer-events: none;
}

.gp-footer-container {
    position: relative;
    z-index: 1;
}

.gp-footer-shell {
    position: relative;
    z-index: 1;
}

.gp-footer-brand-block,
.gp-footer-list {
    position: relative;
}

.gp-footer-title,
.gp-footer-heading {
    color: #f5d59b !important;
    font-weight: 700 !important;
    letter-spacing: 0.15px;
    line-height: 1.3;
}

.gp-footer-title {
    font-size: 1rem;
}

.gp-footer-heading {
    font-size: 0.98rem;
    padding-bottom: 0.45rem;
    margin-bottom: 0.9rem !important;
    border-bottom: 1px solid rgba(241, 178, 77, 0.14);
}

.gp-footer-description {
    color: #f4f7fb !important;
    line-height: 1.62;
    font-size: 0.94rem;
    max-width: 420px;
    margin-bottom: 0.8rem;
}

.gp-footer-copy {
    color: #f5d59b !important;
    font-weight: 600;
    line-height: 1.45;
}

.gp-footer-tail {
    color: var(--gp-text-soft) !important;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.gp-footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.gp-footer-item {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    line-height: 1.3;
    min-height: 18px;
}

.gp-footer-icon {
    flex: 0 0 auto;
    color: #f1b24d;
    font-size: 0.92rem;
    margin-top: 0.18rem;
}

.gp-footer-icon-reddit {
    color: #ff4500;
}

.gp-footer-icon-youtube {
    color: #ff4d4f;
}

.gp-footer-link {
    color: var(--gp-text-soft) !important;
    font-weight: 500;
    text-decoration: none;
    transition:
            color 0.18s ease,
            transform 0.18s ease,
            opacity 0.18s ease;
}

.gp-footer-link:hover,
.gp-footer-link:focus {
    color: #fff2d4 !important;
    text-decoration: underline;
    transform: translateX(1px);
}

.gp-footer a {
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

@media (min-width: 992px) {
    .gp-footer-shell {
        padding-top: 1.45rem !important;
        padding-bottom: 1.45rem !important;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

@media (max-width: 991.98px) {
    .gp-footer-shell {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }

    .gp-footer-heading {
        margin-top: 0.4rem;
    }
}

@media (max-width: 767.98px) {
    .gp-footer {
        text-align: left;
    }

    .gp-footer-title,
    .gp-footer-heading {
        font-size: 0.96rem;
    }

    .gp-footer-description,
    .gp-footer-tail,
    .gp-footer-link {
        font-size: 0.92rem;
    }

    .gp-footer-list {
        gap: 0.5rem;
    }
}