@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap');

/* =========================================================================
   1. VARIABLES & SYSTEME DE DESIGN
   ========================================================================= */
:root {
    --bg-deep: #07080a;
    --bg-main: #0c0e12;
    --bg-card: rgba(16, 19, 26, 0.85);
    --bg-nav: rgba(8, 10, 14, 0.9);

    --color-orange: #ff5500;
    --color-orange-glow: rgba(255, 85, 0, 0.4);
    --color-orange-hover: #ff7722;

    --color-green: #00ffcc;
    --color-green-glow: rgba(0, 255, 204, 0.4);
    --color-red: #ff3344;

    --text-bright: #f2f5fa;
    --text-normal: #acb6c5;
    --text-dark: #626d7f;

    --border-color: rgba(255, 85, 0, 0.15);
    --border-light: rgba(255, 255, 255, 0.05);

    --font-title: 'Rajdhani', sans-serif;
    --font-text: 'Outfit', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --glow: 0 0 20px var(--color-orange-glow);
    --glow-green: 0 0 20px var(--color-green-glow);
}

/* =========================================================================
   2. REINITIALISATIONS & BASES
   ========================================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    background-image:
        radial-gradient(circle at 50% 10%, rgba(255, 85, 0, 0.07) 0%, transparent 60%),
        linear-gradient(rgba(12, 14, 18, 0.95), rgba(7, 8, 10, 0.98)),
        url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.015"/></svg>');
    color: var(--text-normal);
    font-family: var(--font-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Barre de défilement personnalisée */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-main);
    border: 2px solid var(--bg-deep);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-orange);
    box-shadow: 0 0 10px var(--color-orange);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: 1px;
    text-transform: uppercase;
}

section {
    padding: 100px 20px 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Titre de section standardisé */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background: var(--color-orange);
    margin: 10px auto 0 auto;
    box-shadow: 0 0 10px var(--color-orange);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

/* =========================================================================
   3. DESIGN HUD (Coins biseautés et bordures)
   ========================================================================= */
.hud-border {
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    position: relative;
    clip-path: polygon(0 0,
            calc(100% - 15px) 0,
            100% 15px,
            100% 100%,
            15px 100%,
            0 calc(100% - 15px));
}

.hud-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-orange);
    border-left: 2px solid var(--color-orange);
    pointer-events: none;
}

.hud-border::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--color-orange);
    border-right: 2px solid var(--color-orange);
    pointer-events: none;
}

/* =========================================================================
   4. NAVIGATION (NAVBAR)
   ========================================================================= */
header.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--bg-nav);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

header.navbar .brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

header.navbar .brand img {
    height: 45px;
    filter: drop-shadow(0 0 8px var(--color-orange-glow));
}

header.navbar .brand span {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-bright);
}

header.navbar .nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

header.navbar .nav-links a {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-normal);
    position: relative;
    padding: 5px 0;
}

header.navbar .nav-links a:hover,
header.navbar .nav-links a.active {
    color: var(--color-orange);
    text-shadow: 0 0 8px var(--color-orange-glow);
}

header.navbar .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange);
    transition: var(--transition);
    box-shadow: 0 0 8px var(--color-orange);
}

header.navbar .nav-links a:hover::after,
header.navbar .nav-links a.active::after {
    width: 100%;
}

/* Connexion Steam Bouton / Profil */
.steam-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #171a21 0%, #0d0f13 100%);
    border: 1px solid var(--border-color);
    padding: 4px 15px;
    border-radius: 5px;
    font-family: var(--font-title);
    font-size: 1.0rem;
    font-weight: 300;
    color: var(--text-bright);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    clip-path: polygon(0 0, 92% 0, 100% 25%, 100% 100%, 8% 100%, 0 75%);
}

.steam-login-btn span {
    margin-right: 14px;
}

.steam-login-btn i {
    font-size: 1.1rem;
    color: var(--color-orange);
    transition: var(--transition);
    margin-left: 14px;
}

.steam-login-btn:hover {
    background: linear-gradient(135deg, #202530 0%, #131720 100%);
    border-color: var(--color-orange);
    color: var(--color-orange);
    box-shadow: var(--glow);
}

.steam-login-btn:hover i {
    color: var(--text-bright);
    transform: scale(1.1);
}

.user-profile {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #171a21 0%, #0d0f13 100%);
    border: 1px solid var(--border-color);
    padding: 4px 15px;
    border-radius: 5px;
    font-family: var(--font-title);
    font-size: 1.0rem;
    font-weight: 300;
    color: var(--text-bright);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    clip-path: polygon(0 0, 92% 0, 100% 25%, 100% 100%, 8% 100%, 0 75%);
}

.user-profile:hover {
    background: linear-gradient(135deg, #202530 0%, #131720 100%);
    border-color: var(--color-orange);
    color: var(--color-orange);
    box-shadow: var(--glow);
}

.user-profile img.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--color-orange);
    box-shadow: 0 0 8px var(--color-orange-glow);
}

.user-profile .name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-bright);
}

.user-profile .logout-icon {
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.user-profile .logout-icon:hover {
    color: var(--color-red);
    transform: scale(1.1);
}

/* Burger Menu Mobile */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: var(--text-bright);
    transition: var(--transition);
}

/* =========================================================================
   5. HERO SECTION & ACCUEIL
   ========================================================================= */
.hero {
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-top: 40px;
}

.hero-content {
    flex: 1.2;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-title);
    background: rgba(255, 85, 0, 0.15);
    border: 1px solid var(--color-orange);
    color: var(--color-orange);
    padding: 4px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(255, 85, 0, 0.1);
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.hero-content h1 span {
    color: var(--color-orange);
    display: block;
    font-size: 4.5rem;
    text-shadow: 0 0 20px var(--color-orange-glow);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-normal);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Boutons */
.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 32px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--color-orange);
    color: #fff;
    border: none;
    box-shadow: var(--glow);
    clip-path: polygon(0 0, 92% 0, 100% 35%, 100% 100%, 8% 100%, 0 65%);
}

.btn-primary:hover {
    background: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 85, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-bright);
    border: 1px solid var(--text-bright);
    clip-path: polygon(0 0, 92% 0, 100% 35%, 100% 100%, 8% 100%, 0 65%);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-orange);
    color: var(--color-orange);
    transform: translateY(-2px);
}

/* Widget Statut Serveur */
.server-status-card {
    flex: 0.8;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
}

.status-badge {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid var(--color-green);
    color: var(--color-green);
    padding: 5px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.1);
}

.status-badge.offline {
    background: rgba(255, 51, 68, 0.1);
    border-color: var(--color-red);
    color: var(--color-red);
}

.status-badge .dot {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 10px currentColor;
    }
}

.server-status-card h3 {
    font-size: 1.8rem;
}

.player-count {
    font-family: var(--font-title);
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-bright);
    margin: 10px 0;
}

.player-count span {
    color: var(--color-orange);
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-orange), var(--color-orange-hover));
    box-shadow: 0 0 10px var(--color-orange);
    transition: width 1.5s cubic-bezier(0.1, 0.8, 0.2, 1);
}

.server-info-details {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    font-size: 0.95rem;
}

.server-info-details div span {
    display: block;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-bright);
}

/* =========================================================================
   6. BOUTIQUE (BOUTIQUE PACKAGES)
   ========================================================================= */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 30px;
}

.shop-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    transition: var(--transition);
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
    border-color: var(--color-orange);
}

.shop-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.shop-card-badge {
    background: var(--color-orange);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0 70%);
}

.shop-card-price {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-bright);
}

.shop-card-price span {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.shop-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.shop-card p {
    font-size: 0.95rem;
    color: var(--text-normal);
    margin-bottom: 25px;
    min-height: 50px;
}

.shop-card-features {
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.shop-card-features li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.shop-card-features li::before {
    content: '➔';
    color: var(--color-orange);
    font-size: 0.8rem;
    margin-top: 2px;
}

/* =========================================================================
   7. REGLES SECTION
   ========================================================================= */
.rules-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: flex-start;
}

.rules-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rules-tab-btn {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    color: var(--text-normal);
    padding: 16px 24px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    clip-path: polygon(0 0, 95% 0, 100% 20%, 100% 100%, 5% 100%, 0 80%);
}

.rules-tab-btn:hover {
    background: rgba(255, 85, 0, 0.05);
    border-color: rgba(255, 85, 0, 0.3);
    color: var(--text-bright);
}

.rules-tab-btn.active {
    background: var(--color-orange);
    color: #fff;
    border-color: var(--color-orange);
    box-shadow: var(--glow);
}

.rules-content-panel {
    min-height: 350px;
    padding: 40px;
}

.rules-content-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--color-orange);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rules-list li {
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
}

.rules-list li::before {
    content: '01';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-orange);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.85rem;
}

/* Incrémenter automatiquement le numéro des règles */
.rules-list li:nth-child(1)::before {
    content: '01';
}

.rules-list li:nth-child(2)::before {
    content: '02';
}

.rules-list li:nth-child(3)::before {
    content: '03';
}

.rules-list li:nth-child(4)::before {
    content: '04';
}

.rules-list li:nth-child(5)::before {
    content: '05';
}

.rules-list li:nth-child(6)::before {
    content: '06';
}

.rules-list li:nth-child(7)::before {
    content: '07';
}

.rules-list li:nth-child(8)::before {
    content: '08';
}

/* =========================================================================
   8. STAFF SECTION
   ========================================================================= */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.staff-card {
    text-align: center;
    padding: 30px;
    transition: var(--transition);
}

.staff-card:hover {
    border-color: var(--color-orange);
    box-shadow: var(--glow);
    transform: translateY(-5px);
}

.staff-avatar-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px auto;
}

.staff-avatar-container img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--color-orange);
    box-shadow: 0 0 15px var(--color-orange-glow);
    object-fit: cover;
}

.staff-avatar-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 85, 0, 0.4);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.staff-card h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.staff-role {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-orange);
    margin-bottom: 15px;
}

.staff-card .btn-steam-profile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    padding: 5px 12px;
    border-radius: 20px;
    transition: var(--transition);
}

.staff-card .btn-steam-profile:hover {
    color: #66c0f4;
    border-color: rgba(102, 192, 244, 0.3);
    background: rgba(102, 192, 244, 0.05);
}

/* =========================================================================
   9. PIED DE PAGE (FOOTER)
   ========================================================================= */
footer {
    background: #050608;
    border-top: 1px solid var(--border-light);
    padding: 60px 40px 30px 40px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .logo img {
    height: 40px;
}

.footer-brand .logo span {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-bright);
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-dark);
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-normal);
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--color-orange);
    border-color: var(--color-orange);
    box-shadow: 0 0 10px var(--color-orange-glow);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0 auto;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-dark);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom a:hover {
    color: var(--color-orange);
}

/* =========================================================================
   10. POPUPS & NOTIFICATIONS
   ========================================================================= */
.toast {
    position: fixed;
    bottom: 30px;
    right: -350px;
    /* Masqué par défaut */
    background: var(--bg-card);
    border-left: 4px solid var(--color-orange);
    border-top: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    color: var(--text-bright);
    padding: 16px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--glow);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    font-weight: 500;
    transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 95% 100%, 0 100%);
}

.toast.show {
    right: 30px;
}

.toast.success {
    border-left-color: var(--color-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--glow-green);
}

/* =========================================================================
   11. MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================= */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
        min-height: auto;
    }

    .hero-content {
        margin-bottom: 30px;
    }

    .btn-group {
        justify-content: center;
    }

    .server-status-card {
        width: 100%;
        max-width: 500px;
    }

    .rules-container {
        grid-template-columns: 1fr;
    }

    .rules-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .rules-tab-btn {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    header.navbar {
        padding: 0 20px;
    }

    header.navbar .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-nav);
        flex-direction: column;
        padding: 40px 0;
        gap: 30px;
        transition: var(--transition);
        border-top: 1px solid var(--border-light);
    }

    header.navbar .nav-links.active {
        left: 0;
    }

    .burger-menu {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content h1 span {
        font-size: 3.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .footer-brand {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}