/*
Theme Name: Faldora
Theme URI: https://faldora.fr
Author: Faldora
Author URI: https://faldora.fr
Description: Thème WordPress médiéval fantastique Liquid Glass conçu pour le serveur Minecraft Java Faldora.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: faldora
License: GPL-2.0-or-later
*/

:root {
    --fd-bg: #050908;
    --fd-bg-soft: #0a1210;
    --fd-text: #f6f1e6;
    --fd-text-soft: #c6c7bd;
    --fd-muted: #929b92;
    --fd-gold: #e9bd70;
    --fd-gold-light: #ffe3a7;
    --fd-green: #64d5a1;
    --fd-red: #e77c7c;
    --fd-glass: rgba(255, 255, 255, 0.065);
    --fd-border: rgba(255, 255, 255, 0.12);
    --fd-shadow:
        0 25px 80px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    --fd-container: 1180px;
    --fd-radius: 28px;
    --fd-radius-large: 40px;
    --fd-pill: 999px;
    --fd-ease: cubic-bezier(.2, .8, .2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--fd-text);
    background:
        radial-gradient(circle at 15% 10%, rgba(40, 135, 94, .18), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(233, 189, 112, .13), transparent 28%),
        linear-gradient(180deg, #07100e, var(--fd-bg) 58%, #080a09);
    font-family:
        Inter, ui-sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    color: #07100e;
    background: var(--fd-gold-light);
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

.fd-container {
    width: min(calc(100% - 40px), var(--fd-container));
    margin-inline: auto;
}

.fd-screen-reader {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.fd-background {
    position: fixed;
    inset: 0;
    z-index: -5;
    overflow: hidden;
    pointer-events: none;
}

.fd-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 9, 8, .15), rgba(5, 9, 8, .78) 75%, #050908),
        radial-gradient(circle at center, transparent, rgba(0, 3, 2, .45) 90%);
}

.fd-orb {
    position: absolute;
    top: -180px;
    right: -180px;
    width: 550px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(233, 189, 112, .11);
    filter: blur(100px);
    animation: fd-orb 13s ease-in-out infinite alternate;
}

.fd-orb-two {
    top: 48%;
    right: auto;
    left: -280px;
    background: rgba(59, 209, 151, .09);
    animation-delay: -5s;
}

.fd-mist {
    position: absolute;
    left: -20%;
    bottom: 0;
    width: 140%;
    height: 270px;
    opacity: .23;
    filter: blur(55px);
    background: radial-gradient(ellipse, rgba(191, 218, 204, .28), transparent 65%);
    animation: fd-mist 16s ease-in-out infinite alternate;
}

.fd-castle {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(1500px, 145vw);
    transform: translateX(-50%);
    color: rgba(14, 29, 24, .93);
}

@keyframes fd-orb {
    to {
        transform: translate3d(-70px, 55px, 0) scale(1.12);
    }
}

@keyframes fd-mist {
    to {
        transform: translateX(9%);
        opacity: .14;
    }
}

.fd-glass {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--fd-border);
    background:
        linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035));
    box-shadow: var(--fd-shadow);
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.fd-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    background:
        radial-gradient(
            500px circle at var(--mouse-x, 50%) var(--mouse-y, 0%),
            rgba(255, 226, 165, .13),
            transparent 43%
        );
    transition: opacity .3s ease;
}

.fd-glass:hover::before {
    opacity: 1;
}

.fd-glass > * {
    position: relative;
    z-index: 1;
}

/* Header */

.fd-header {
    position: fixed;
    z-index: 1000;
    top: 18px;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.fd-navbar {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 10px 12px 10px 18px;
    border-radius: var(--fd-pill);
    pointer-events: auto;
}

.fd-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.fd-logo {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,.3));
}

.custom-logo {
    width: auto;
    max-width: 170px;
    max-height: 48px;
}

.fd-brand-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.fd-brand-name span {
    color: var(--fd-gold);
}

.fd-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fd-menu li {
    margin: 0;
}

.fd-menu a {
    display: inline-flex;
    padding: 10px 14px;
    color: var(--fd-text-soft);
    border-radius: var(--fd-pill);
    font-size: .91rem;
    font-weight: 700;
    transition: color .2s ease, background .2s ease;
}

.fd-menu a:hover,
.fd-menu a:focus-visible,
.fd-menu .current-menu-item > a {
    color: var(--fd-text);
    background: rgba(255,255,255,.08);
}

.fd-menu-toggle {
    display: none;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--fd-border);
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    cursor: pointer;
}

/* Buttons */

.fd-button {
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 23px;
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-pill);
    cursor: pointer;
    font-weight: 850;
    transition:
        transform .22s var(--fd-ease),
        box-shadow .22s ease,
        border-color .22s ease,
        background .22s ease;
}

.fd-button:hover {
    transform: translateY(-3px);
}

.fd-button-primary {
    color: #171006;
    border-color: rgba(255,225,160,.4);
    background: linear-gradient(135deg, var(--fd-gold-light), var(--fd-gold));
    box-shadow: 0 14px 35px rgba(233,189,112,.2);
}

.fd-button-secondary {
    color: var(--fd-text);
    background: rgba(255,255,255,.065);
    backdrop-filter: blur(16px);
}

.fd-button-secondary:hover {
    border-color: rgba(255,255,255,.25);
    background: rgba(255,255,255,.1);
}

.fd-nav-play {
    min-height: 48px;
    padding-inline: 20px;
    flex-shrink: 0;
}

/* Hero */

.fd-hero {
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: 150px 0 85px;
}

.fd-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    align-items: center;
    gap: 70px;
}

.fd-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 8px 13px;
    color: var(--fd-gold-light);
    border: 1px solid rgba(233,189,112,.2);
    border-radius: var(--fd-pill);
    background: rgba(233,189,112,.075);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.fd-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fd-green);
    box-shadow: 0 0 16px var(--fd-green);
}

.fd-hero h1 {
    max-width: 850px;
    margin: 0 0 23px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 8vw, 7.2rem);
    line-height: .92;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.fd-hero h1 em {
    color: var(--fd-gold);
    font-style: normal;
    text-shadow: 0 0 45px rgba(233,189,112,.17);
}

.fd-hero-description {
    max-width: 690px;
    margin: 0 0 33px;
    color: var(--fd-text-soft);
    font-size: clamp(1rem, 2vw, 1.19rem);
    line-height: 1.8;
}

.fd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Server card */

.fd-server-card {
    padding: 29px;
    border-radius: 35px;
    transform: rotate(1.5deg);
    transition: transform .45s var(--fd-ease);
}

.fd-server-card:hover {
    transform: rotate(0) translateY(-5px);
}

.fd-server-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 48px;
}

.fd-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--fd-text-soft);
    font-size: .88rem;
    font-weight: 750;
}

.fd-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #858b87;
    box-shadow: 0 0 0 6px rgba(133,139,135,.08);
}

.fd-status.online .fd-status-dot {
    background: var(--fd-green);
    box-shadow:
        0 0 0 6px rgba(98,213,160,.1),
        0 0 20px rgba(98,213,160,.6);
}

.fd-status.offline .fd-status-dot {
    background: var(--fd-red);
}

.fd-edition {
    padding: 7px 10px;
    color: var(--fd-muted);
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-pill);
    background: rgba(255,255,255,.04);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.fd-server-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    color: var(--fd-gold);
    border: 1px solid rgba(233,189,112,.23);
    border-radius: 25px;
    background: linear-gradient(145deg, rgba(233,189,112,.15), rgba(255,255,255,.03));
}

.fd-label {
    margin: 0 0 5px;
    color: var(--fd-muted);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.fd-server-ip {
    margin: 0 0 27px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 4vw, 2.65rem);
    line-height: 1.1;
    word-break: break-word;
}

.fd-server-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.fd-meta {
    min-width: 0;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background: rgba(255,255,255,.035);
}

.fd-meta span {
    display: block;
    margin-bottom: 3px;
    color: var(--fd-muted);
    font-size: .72rem;
    font-weight: 750;
    text-transform: uppercase;
}

.fd-meta strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fd-copy-full {
    width: 100%;
}

/* Sections */

.fd-section {
    padding: 110px 0;
}

.fd-heading {
    max-width: 740px;
    margin-bottom: 46px;
}

.fd-heading-center {
    margin-inline: auto;
    text-align: center;
}

.fd-kicker {
    display: block;
    margin-bottom: 13px;
    color: var(--fd-gold);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.fd-heading h2,
.fd-content-title {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    line-height: 1.03;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.fd-heading p {
    margin: 0;
    color: var(--fd-text-soft);
    font-size: 1.05rem;
}

/* Features */

.fd-features {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.fd-feature {
    grid-column: span 4;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    padding: 27px;
    border-radius: var(--fd-radius);
    transition: transform .35s var(--fd-ease), border-color .25s ease;
}

.fd-feature:first-child,
.fd-feature:nth-child(4) {
    grid-column: span 8;
}

.fd-feature:hover {
    transform: translateY(-7px);
    border-color: rgba(233,189,112,.25);
}

.fd-feature-icon {
    width: 51px;
    height: 51px;
    display: grid;
    place-items: center;
    margin-bottom: auto;
    color: var(--fd-gold);
    border: 1px solid rgba(233,189,112,.18);
    border-radius: 16px;
    background: rgba(233,189,112,.08);
    font-size: 1.25rem;
}

.fd-feature h3 {
    margin: 35px 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.48rem;
}

.fd-feature p {
    margin: 0;
    color: var(--fd-muted);
}

/* Join */

.fd-join-panel {
    padding: clamp(27px, 6vw, 65px);
    border-radius: var(--fd-radius-large);
}

.fd-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 45px;
}

.fd-step {
    padding: 24px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--fd-radius);
    background: rgba(255,255,255,.035);
}

.fd-step-number {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    color: #171006;
    border-radius: 13px;
    background: var(--fd-gold);
    font-weight: 900;
}

.fd-step h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.fd-step p {
    margin: 0;
    color: var(--fd-muted);
    font-size: .92rem;
}

.fd-join-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 35px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.09);
}

.fd-join-ip small {
    display: block;
    color: var(--fd-muted);
}

.fd-join-ip strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
}

/* News */

.fd-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.fd-news-card {
    border-radius: var(--fd-radius);
    transition: transform .35s var(--fd-ease);
}

.fd-news-card:hover {
    transform: translateY(-7px);
}

.fd-news-image {
    height: 200px;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 30%, rgba(233,189,112,.18), transparent 30%),
        linear-gradient(145deg, #15261f, #0b1210);
}

.fd-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--fd-ease);
}

.fd-news-card:hover .fd-news-image img {
    transform: scale(1.05);
}

.fd-news-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.34);
    font-size: 2.5rem;
}

.fd-news-content {
    padding: 24px;
}

.fd-news-date {
    display: block;
    margin-bottom: 11px;
    color: var(--fd-gold);
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fd-news-content h3 {
    margin: 0 0 9px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    line-height: 1.2;
}

.fd-news-content p {
    margin: 0;
    color: var(--fd-muted);
    font-size: .92rem;
}

.fd-news-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--fd-gold-light);
    font-size: .9rem;
    font-weight: 800;
}

/* CTA */

.fd-cta-section {
    padding: 40px 0 120px;
}

.fd-cta {
    padding: clamp(40px, 8vw, 85px) 30px;
    border-radius: 44px;
    text-align: center;
}

.fd-cta::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    bottom: -280px;
    width: 620px;
    aspect-ratio: 1;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(233,189,112,.14);
    filter: blur(75px);
}

.fd-cta h2 {
    max-width: 760px;
    margin: 0 auto 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.fd-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--fd-text-soft);
}

.fd-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* Standard WordPress content */

.fd-page-main {
    min-height: 70vh;
    padding: 150px 0 100px;
}

.fd-content-card {
    max-width: 920px;
    margin-inline: auto;
    padding: clamp(25px, 5vw, 60px);
    border-radius: var(--fd-radius-large);
}

.fd-entry-meta {
    margin-bottom: 25px;
    color: var(--fd-muted);
    font-size: .9rem;
}

.fd-entry-content {
    color: var(--fd-text-soft);
}

.fd-entry-content h2,
.fd-entry-content h3,
.fd-entry-content h4 {
    color: var(--fd-text);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.2;
}

.fd-entry-content a {
    color: var(--fd-gold-light);
    text-decoration: underline;
}

.fd-entry-content img {
    height: auto;
    border-radius: 20px;
}

.fd-entry-content blockquote {
    margin: 30px 0;
    padding: 18px 25px;
    color: var(--fd-text);
    border-left: 3px solid var(--fd-gold);
    background: rgba(255,255,255,.04);
}

.fd-pagination {
    margin-top: 35px;
}

.fd-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.fd-pagination .page-numbers {
    display: grid;
    min-width: 42px;
    min-height: 42px;
    place-items: center;
    padding: 5px 12px;
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-pill);
    background: rgba(255,255,255,.05);
}

.fd-pagination .current {
    color: #171006;
    background: var(--fd-gold);
}

.fd-empty {
    text-align: center;
}

/* Footer */

.fd-footer {
    padding: 34px 0;
    color: var(--fd-muted);
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .84rem;
}

.fd-footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.fd-footer-title {
    color: var(--fd-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.fd-footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fd-footer-menu a:hover {
    color: var(--fd-text);
}

.fd-footer-copy {
    text-align: right;
}

/* Toast */

.fd-toast {
    position: fixed;
    z-index: 2000;
    left: 50%;
    bottom: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    color: var(--fd-text);
    border: 1px solid rgba(98,213,160,.25);
    border-radius: var(--fd-pill);
    background: rgba(10,20,17,.9);
    box-shadow: var(--fd-shadow);
    backdrop-filter: blur(20px);
    transform: translate(-50%, 30px);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity .26s ease,
        transform .26s var(--fd-ease),
        visibility .26s ease;
}

.fd-toast.visible {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}

.fd-toast-check {
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    color: #06110d;
    border-radius: 50%;
    background: var(--fd-green);
    font-weight: 900;
}

/* Reveal */

.fd-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s var(--fd-ease), transform .75s var(--fd-ease);
}

.fd-reveal.visible {
    opacity: 1;
    transform: none;
}

.fd-delay-1 {
    transition-delay: .1s;
}

.fd-delay-2 {
    transition-delay: .2s;
}

/* Responsive */

@media (max-width: 960px) {
    .fd-desktop-menu,
    .fd-nav-play {
        display: none;
    }

    .fd-menu-toggle {
        display: grid;
    }

    .fd-mobile-menu {
        position: fixed;
        top: 100px;
        left: 20px;
        right: 20px;
        display: none;
        padding: 14px;
        border: 1px solid var(--fd-border);
        border-radius: 27px;
        background: rgba(8,14,13,.96);
        box-shadow: var(--fd-shadow);
        backdrop-filter: blur(24px);
    }

    .fd-mobile-menu.open {
        display: block;
    }

    .fd-mobile-menu .fd-menu {
        flex-direction: column;
        align-items: stretch;
    }

    .fd-mobile-menu .fd-menu a {
        display: flex;
        padding: 14px;
    }

    .fd-hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .fd-hero-copy {
        text-align: center;
    }

    .fd-hero-description {
        margin-inline: auto;
    }

    .fd-actions,
    .fd-hero .fd-eyebrow {
        justify-content: center;
    }

    .fd-server-card {
        width: min(100%, 560px);
        margin-inline: auto;
        transform: none;
    }

    .fd-feature,
    .fd-feature:first-child,
    .fd-feature:nth-child(4) {
        grid-column: span 6;
    }

    .fd-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fd-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fd-footer-copy {
        text-align: center;
    }
}

@media (max-width: 680px) {
    .fd-container {
        width: min(calc(100% - 24px), var(--fd-container));
    }

    .fd-header {
        top: 10px;
    }

    .fd-navbar {
        min-height: 64px;
        padding: 7px 8px 7px 13px;
    }

    .fd-brand-name {
        font-size: 1.1rem;
    }

    .fd-logo {
        width: 40px;
        height: 40px;
    }

    .fd-hero {
        padding-top: 125px;
    }

    .fd-hero h1 {
        font-size: clamp(3rem, 16vw, 5rem);
    }

    .fd-actions {
        flex-direction: column;
    }

    .fd-actions .fd-button {
        width: 100%;
    }

    .fd-server-card {
        padding: 21px;
        border-radius: 28px;
    }

    .fd-section {
        padding: 80px 0;
    }

    .fd-features,
    .fd-steps,
    .fd-news-grid {
        grid-template-columns: 1fr;
    }

    .fd-feature,
    .fd-feature:first-child,
    .fd-feature:nth-child(4) {
        grid-column: auto;
    }

    .fd-feature {
        min-height: 235px;
    }

    .fd-join-action {
        align-items: stretch;
        flex-direction: column;
    }

    .fd-join-action .fd-button {
        width: 100%;
    }

    .fd-footer-menu {
        flex-direction: column;
        gap: 8px;
    }
}

:focus-visible {
    outline: 3px solid rgba(255,225,160,.72);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .fd-reveal {
        opacity: 1;
        transform: none;
    }
}

@supports not (backdrop-filter: blur(20px)) {
    .fd-glass,
    .fd-navbar {
        background: rgba(13,21,19,.97);
    }
}