:root {
    --brand-500: #a532ff;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
}

@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    margin: 0;
    font-family: 'Inter', 'Poppins', sans-serif; /* More professional font stack */
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

/* Improved animations: subtle and professional */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

/* Estilo para el contenedor del GIF hero: animación de pulso y fondo con gradiente */
.hero-gif-container {
    position: relative;
    background: linear-gradient(135deg, rgba(165, 50, 255, 0.05) 0%, rgba(98, 95, 255, 0.05) 100%);
    border-radius: 1rem;
    padding: 2rem;
    border: 10px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
}

/* Estilo para el header/nav: barra fija con blur, fondo semi-transparente, borde y sombra */
.header-nav {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background-color: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Estilo para el contenedor interno del nav: centrado con max-width */
.nav-container {
    margin: 0 auto;
    max-width: 80rem;
    padding: 0 1rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Estilo para el enlace del logo: flex con gap */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Estilo para el logo del sitio: tamaño responsivo */
.site-logo {
    height: 36px;
    max-height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}
@media (min-width: 640px) {
    .site-logo {
        height: 54px;
        max-height: 64px;
    }
}
@media (min-width: 1024px) {
    .site-logo {
        height: 64px;
        max-height: 80px;
    }
}

/* Estilo para los enlaces del nav desktop: ocultos en mobile, con hover */
.nav-links {
    display: none;
}
@media (min-width: 640px) {
    .nav-links {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        font-weight: 500;
        letter-spacing: 0.025em;
    }
}
.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}
.nav-links a:hover {
    color: white;
}

/* Estilo para los botones del nav desktop: ocultos en mobile */
.nav-buttons {
    display: none;
}
@media (min-width: 640px) {
    .nav-buttons {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}

/* Estilo para el botón de descarga: shiny-wrap con gradiente */
.download-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    background-color: var(--brand-500);
    padding: 0.75rem 1.25rem;
    color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s;
}
.download-btn:hover {
    opacity: 0.95;
}

/* Estilo para el span dentro del botón de descarga */
.download-span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Estilo para el botón de admin desktop */
.admin-btn {
    display: none;
}
@media (min-width: 640px) {
    .admin-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 0.75rem;
        border-radius: 0.375rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        background: transparent;
        margin-left: 0.5rem;
    }
}

/* Estilo para el indicador online: pulso y tooltip */
.online-indicator {
    position: relative;
    cursor: pointer;
}
.online-indicator::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: #10b981;
    opacity: 0.5;
    animation: pulseRing 2s infinite;
}
.online-dot {
    position: relative;
    display: block;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.9);
}
.online-tooltip {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: 100;
}
.online-indicator:hover .online-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(8px);
}

/* Estilo para el botón de menú mobile */
.menu-btn {
    display: inline-flex;
    height: 36px;
    width: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    color: white;
    transition: background-color 0.3s;
}
.menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
@media (min-width: 640px) {
    .menu-btn {
        display: none;
    }
}

/* Estilo para el menú mobile: oculto por defecto, con transición */
.mobile-menu {
    display: none;
}
@media (max-width: 639px) {
    .mobile-menu {
        background-color: rgba(10, 10, 10, 0.94);
        backdrop-filter: blur(24px);
        transition: all 0.3s;
        overflow: hidden;
        max-height: 0;
    }
    .mobile-menu-open {
        max-height: 900px;
        padding: 12px 0;
    }
}

/* Estilo para el contenedor del menú mobile */
.mobile-menu-content {
    padding: 0 1rem 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    font-weight: 600;
}

/* Estilo para el logo en mobile */
.mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Estilo para los enlaces del menú mobile */
.mobile-links a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    transition: color 0.3s;
}
.mobile-links a:hover {
    color: white;
}

/* Estilo para el botón de descarga en mobile */
.mobile-download {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    background-color: var(--brand-500);
    padding: 0.75rem 1.25rem;
    color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s;
    width: 100%;
    margin-top: 0.5rem;
}
.mobile-download:hover {
    opacity: 0.95;
}

/* Estilo para el span en mobile download */
.mobile-download-span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Media queries para mobile */
@media (max-width: 640px) {
    img {
        max-width: 100%;
        height: auto;
    }
    .hero-gif-container {
        padding: 1rem;
    }
    .shiny-wrap {
        padding-left: 14px;
        padding-right: 14px;
    }
    h1 {
        font-size: clamp(20px, 6vw, 56px);
    }
}

/* Estilo para la primera sección hero: gradiente de fondo, padding, centrado de contenido y min-height para colocar debajo del header */
.section-hero {
    position: relative;
    background: linear-gradient(to bottom, black, #0a0a0d, black);
    padding-top: 1rem; /* Cambiado de 0.25rem a 4rem para compensar la altura del header fijo (4rem) */
    display: flex; /* Usa flexbox para centrar el contenido */
    align-items: center; /* Centra verticalmente */
    justify-content: center; /* Centra horizontalmente */
    min-height: 50vh; /* Altura mínima para colocar la imagen debajo del header */
}

/* Estilo para el contenedor del GIF hero: centrado, padding y borde */
.hero-gif-container {
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Estilo para la imagen del GIF: tamaño responsivo y sombra */
.hero-gif {
    height: 3rem;
    width: auto;
}

@media (min-width: 640px) {
    .hero-gif {
        height: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-gif {
        height: 6rem;
    }
}

.hero-gif {
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.5));
    margin: 0 auto;
}

/* Estilo para el contenedor de flex centrado */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Estilo para el gradiente absoluto */
.gradient-overlay {
    position: absolute;
    inset: 0 1rem 2rem 1rem;
    background: linear-gradient(to top, black, transparent, transparent);
    z-index: 1;
}

/* Estilo para el grid centrado */
.grid-center {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 2;
}

/* Estilo para el texto centrado con animación */
.text-center-animated {
    text-align: center;
    display: grid;
    gap: 1.5rem;
    padding: 0 1rem;
    animation: fadeInUp 1s ease-out;
}

/* Estilo para el enlace de descarga: apariencia de botón */
.download-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background-color: var(--brand-500);
    padding: 2rem 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: opacity 0.3s, transform 0.3s;
    font-weight: 600;
    font-size: 1.125rem;
}

.download-link:hover {
    opacity: 0.95;
    transform: scale(1.05);
}

/* Estilo para el span dentro del enlace */
.link-span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Estilo para la segunda sección: fondo blanco, texto negro, imagen de fondo */
.section-welcome {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    background-image: url('https://i.postimg.cc/J0TRZ6md/Design-sans-titre1.png');
    background-size: cover;
    position: relative;
}

.gradient-overlay-welcome {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.7));
}

.container-welcome {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

/* Estilo para el contenedor de grid de imágenes */
.grid-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
}

/* Estilo para las imágenes de mapas */
.map-image {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.map-image:hover {
    transform: scale(1.05);
}

/* Estilo para la tercera sección: fondo de marca */
.section-heroes {
    background-color: var(--brand-500);
    position: relative;
    overflow: hidden;
}

/* Estilo para el gradiente de fondo de la sección heroes */
.gradient-heroes {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-500), #7c3aed, #3b82f6);
}

/* Estilo para el contenedor de heroes */
.container-heroes {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem 5rem 1.5rem;
    position: relative;
    z-index: 10;
}

/* Estilo para el flex de heroes */
.flex-heroes {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .flex-heroes {
        flex-direction: row;
    }
}

/* Estilo para la imagen oculta en lg */
.hidden-lg {
    display: none;
}

@media (min-width: 1024px) {
    .hidden-lg {
        display: block;
        max-width: 50%;
        animation: fadeInUp 1s ease-out;
    }
}

/* Estilo para la imagen de personajes */
.heroes-image {
    width: 100%;
    max-width: 100%;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s;
}

.heroes-image:hover {
    transform: scale(1.05);
}

/* Estilo para el contenedor de grid de texto de heroes */
.grid-heroes-text {
    max-width: 50%;
    display: grid;
    gap: 1.5rem;
}

/* Estilo para el título de heroes */
.heroes-title {
    font-size: 4rem;
    line-height: 4rem;
    font-weight: 800;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.5));
}

@media (min-width: 640px) {
    .heroes-title {
        font-size: 5rem;
        line-height: 5rem;
    }
}

/* Estilo para el span amarillo en el título */
.yellow-span {
    color: #fbbf24;
}

/* Estilo para el subtítulo de heroes */
.heroes-subtitle {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 640px) {
    .heroes-subtitle {
        font-size: 1.125rem;
    }
}

/* Estilo para el párrafo de heroes */
.heroes-p {
    font-size: 0.875rem;
    line-height: 1.75rem;
    color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 640px) {
    .heroes-p {
        font-size: 1rem;
    }
}

/* Estilo para el enlace de heroes */
.heroes-link {
    width: max-content;
    padding: 1rem 2rem;
    background-color: black;
    color: white;
    transition: all 0.3s;
    border-radius: 0.75rem;
    font-weight: 600;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.heroes-link:hover {
    background-color: #fbbf24;
    color: black;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

/* Estilo para la cuarta sección: gradiente beige */
.section-maps {
    background: linear-gradient(135deg, #ece8e1, #d4cfc4);
    color: black;
    position: relative;
}

/* Estilo para el contenedor de maps */
.container-maps {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem 5rem 1.5rem;
}

/* Estilo para el flex de maps */
.flex-maps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .flex-maps {
        flex-direction: row;
    }
}

/* Estilo para el grid de texto de maps */
.grid-maps-text {
    display: grid;
    gap: 1.5rem;
    max-width: 60%;
}

/* Estilo para el título de maps */
.maps-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--brand-500);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

@media (min-width: 640px) {
    .maps-title {
        font-size: 3rem;
    }
}

/* Estilo para el subtítulo de maps */
.maps-subtitle {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #374151;
}

@media (min-width: 640px) {
    .maps-subtitle {
        font-size: 1.125rem;
    }
}

/* Estilo para el párrafo de maps */
.maps-p {
    font-size: 0.875rem;
    line-height: 2rem;
    color: #374151;
}

@media (min-width: 640px) {
    .maps-p {
        font-size: 1rem;
    }
}

/* Estilo para el enlace de maps */
.maps-link {
    width: max-content;
    padding: 1rem 2rem;
    background-color: var(--brand-500);
    color: white;
    transition: all 0.3s;
    border-radius: 0.75rem;
    font-weight: 600;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.maps-link:hover {
    background-color: #4f46e5;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

/* Estilo para el contenedor de imagen de maps */
.maps-image-container {
    max-width: 40%;
    position: relative;
    display: grid;
    place-items: center;
}

/* Estilo para el gradiente de la imagen de maps */
.gradient-maps {
    position: absolute;
    inset: -1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-500), #7c3aed);
    filter: blur(2rem);
    opacity: 0.5;
    z-index: 1;
}

.gradient-maps:hover {
    opacity: 0.75;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.gradient-maps {
    animation: pulse 2s infinite;
}

/* Estilo para la imagen de maps */
.maps-image {
    position: relative;
    width: 20rem;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 50%;
    border: 2rem solid white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s;
    z-index: 2;
}

.maps-image:hover {
    transform: scale(1.05);
}

/* Estilo para la quinta sección: fondo de imagen */
.section-adventure {
    position: relative;
    background-image: url('/resources/bananas-on-ship.jpg');
    background-size: cover;
    background-position: center;
}

/* Estilo para el overlay negro */
.overlay-adventure {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Estilo para el contenedor de texto de adventure */
.container-adventure {
    position: relative;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem 7rem 1.5rem;
    text-align: center;
    color: white;
}

/* Estilo para el título grande de adventure */
.adventure-title {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 1rem;
    pointer-events: none;
    user-select: none;
}

@media (min-width: 640px) {
    .adventure-title {
        font-size: 6rem;
    }
}

/* Estilo para el h3 de adventure */
.adventure-h3 {
    font-size: 1.125rem;
}

/* Estilo para el h2 de adventure */
.adventure-h2 {
    font-size: 1.875rem;
    font-weight: 700;
}

@media (min-width: 640px) {
    .adventure-h2 {
        font-size: 2.25rem;
    }
}

/* Estilo para el párrafo de adventure */
.adventure-p {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 640px) {
    .adventure-p {
        font-size: 1rem;
    }
}

/* Estilo para el contenedor de flex de enlace */
.flex-center-link {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

/* Estilo para el enlace de source code */
.source-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    background-color: var(--brand-500);
    padding: 0.625rem 1.25rem;
    color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s;
}

.source-link:hover {
    opacity: 0.95;
}

/* Estilo para el span de source */
.source-span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Estilo para la sexta sección: fondo gris */
.section-community {
    background-color: #292929;
}

/* Estilo para el contenedor de community */
.container-community {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem 2rem 1rem;
}

/* Estilo para el flex de community */
.flex-community {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
    text-align: center;
}

/* Estilo para el h1 de community */
.community-h1 {
    font-size: 1rem;
}

@media (min-width: 640px) {
    .community-h1 {
        font-size: 1.125rem;
    }
}

/* Estilo para el enlace de discord */
.discord-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estilo para la imagen de discord */
.discord-image {
    height: 2rem;
    width: 2rem;
    object-fit: contain;
    transition: transform 0.3s;
}

@media (min-width: 640px) {
    .discord-image {
        height: 3rem;
        width: 3rem;
    }
}

.discord-image:hover {
    transform: scale(1.1);
}

/* Estilo para el menú de navegación: lista sin viñetas, con enlaces estilizados como botones */
.menu-nav {
    list-style: none; /* Quita las viñetas de la lista */
    padding: 0; /* Sin padding interno */
    display: flex; /* Hace la lista horizontal */
    flex-direction: column; /* Opcional: vertical si prefieres */
    gap: 0.75rem; /* Espacio entre elementos */
}

.menu-nav a {
    text-decoration: none; /* Quita el subrayado de los enlaces */
    color: var(--text-primary);
    padding: 0.75rem 1.5rem; /* Padding interno para hacerlos botones */
    background-color: var(--bg-secondary);
    border-radius: 0.5rem; /* Bordes redondeados */
    display: inline-block; /* Comportamiento de bloque inline */
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; /* Transición suave para hover */
    font-weight: 600; /* Texto en negrita */
    text-align: center; /* Centra el texto */
    border: 1px solid #e5e7eb;
}

.menu-nav a:hover {
    background-color: var(--brand-500);
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(165, 50, 255, 0.2);
}

/* Table styles moved from HTML for professionalism */
.factions-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border: 2px solid #e5e7eb;
    font-family: inherit;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
}

.factions-table th, .factions-table td {
    border: 1px solid #e5e7eb;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
}

.factions-table .main-header th {
    background-color: #1f2937;
    color: #ffffff;
    font-size: 1.25rem;
    padding: 1.5rem;
}

.factions-table .faction-header th {
    background-color: inherit; /* Use specific colors below */
    color: #1f2937;
    font-weight: 600;
}

.factions-table .blue-plains { background-color: #7997ea; }
.factions-table .cornfields { background-color: #ffff80; }
.factions-table .nicelands { background-color: #ff99cc; }
.factions-table .sandylands { background-color: #f7e6c4; }
.factions-table .useless-swamp { background-color: #4a5d30; color: #fff; }
.factions-table .rainbow { background-color: #9933cc; color: #fff; }

.factions-table .image-cell {
    background-color: #f9fafb;
}

.factions-table .image-cell img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 200px;
    border-radius: 0.375rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer: professional design with gradient and effects */
footer {
    background: linear-gradient(to top, #1f2937, #374151);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

footer a {
    transition: color 0.3s ease, transform 0.3s ease;
}

footer a:hover {
    color: #a532ff;
    transform: translateY(-2px);
}

footer img {
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

footer img:hover {
    filter: brightness(1);
}
