:root {
    --bs-primary: #208236;
    --bs-primary-rgb: 32, 130, 54;
    --bs-secondary: #1a6b3e;
    --bs-secondary-rgb: 26, 107, 62;
    --bs-accent: #166534;
    --bs-accent-rgb: 22, 101, 52;
    --bs-dark-bg: #27272a;
    --bs-card-bg: #27272a;
    --bs-text-light: #e6e6fa;
}

[data-theme=dark] {
    --bs-secondary-bg: #0A1F12;
    --bs-secondary-bg-rgb: 10, 31, 18;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-y: auto;
    overflow-x: hidden;
}

body {
    overflow-y: auto;
}

::-webkit-scrollbar {
    width: 20px;
    height: 20px;
}

::-webkit-scrollbar-button {
    display: none;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(34, 197, 94, 0.5);
    border-radius: 4px;
    border: 3px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(34, 197, 94, 0.7);
}

* {
    scrollbar-width: auto;
    scrollbar-color: rgba(34, 197, 94, 0.5) rgba(255, 255, 255, 0.05);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #fff;
    background-color: #27272a;
    overflow-x: hidden;
    overflow-y: auto;
}

body[data-theme=dark] {
    background-color: #27272a;
}

h1, h2, h3, h4, h5, h6 {
    color: #fff;
    font-weight: 800;
}

p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

p, span, div, li, a, button {
    font-weight: 400;
}

.card {
    background: rgba(39, 39, 42, 0.6);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #fff;
    backdrop-filter: blur(10px);
}

.site-wrapper {
    min-height: 100vh;
    position: relative;
    background: #27272a;
    overflow-x: hidden;
}

.navbar-brand-mobile img {
    height: 40px;
    margin-right: 10px;
}

.section-heading {
    letter-spacing: 0.5px;
}

.resources-content {
    max-width: 60ch;
}

.reveal { opacity: 0; will-change: transform, opacity; }
.anim-up { opacity: 0; }
.anim-down { opacity: 0; }
.anim-in { opacity: 0; }
.in-view.anim-up { animation: fadeUp .6s ease-out .1s both; }
.in-view.anim-down { animation: fadeDown .6s ease-out .1s both; }
.in-view.anim-in { animation: fadeIn .8s ease-out .2s both; }
.stagger > * { opacity: 0; }
.stagger.in-view > * { animation: fadeUp .6s ease-out both; }
.stagger.in-view > *:nth-child(1) { animation-delay: .1s; }
.stagger.in-view > *:nth-child(2) { animation-delay: .2s; }
.stagger.in-view > *:nth-child(3) { animation-delay: .3s; }
.stagger.in-view > *:nth-child(4) { animation-delay: .4s; }
.stagger.in-view > *:nth-child(5) { animation-delay: .5s; }
.stagger.in-view > *:nth-child(6) { animation-delay: .6s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.content {
    margin-top: 7rem;
    margin-bottom: 5rem;
    padding-top: 4rem;
    position: relative;
    pointer-events: auto;
    z-index: 10;
}

.content * {
    pointer-events: auto;
}

.content .row.mb-5 {
    margin-bottom: 4rem !important;
}

.discord-section {
    margin-top: -280px;
    position: relative;
    z-index: 5;
}

.content-home .discord-section {
    margin-top: 0;
}


a {
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.hero-section {
    position: relative;
    height: calc(100vh - 140px);
    min-height: 450px;
    z-index: 3;
}

.discord-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.discord-card .text-start {
    max-width: 60ch;
}

.discord-card .text-start p {
    font-size: 1.05rem;
    line-height: 1.5;
}

.footer {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.footer h3 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.footer .social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer .social-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer .social-links a:hover {
    color: rgba(255, 255, 255, 1);
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: rgba(255, 255, 255, 1);
}

.footer .text-body {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer .row.mt-4 a,
.footer span a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease;
}

.footer .row.mt-4 a:hover,
.footer span a:hover {
    color: rgba(255, 255, 255, 1) !important;
}


.navbar .nav-item {
    margin-left: 0;
    margin-right: 0;
    background: transparent !important;
    border: none !important;
}

.navbar-glass .navbar-nav .nav-item {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.navbar .nav-item .nav-link {
    --bs-nav-link-color: var(--bs-body-color);
    text-transform: uppercase;
    font-weight: bold;
    background: none !important;
    border: none !important;
}

.navbar .nav-item .nav-link.active,
.navbar .nav-item .nav-link.router-link-active,
.navbar .nav-item .nav-link.router-link-exact-active,
.navbar-socials .nav-link {
    color: #156231;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.navbar .nav-item .dropdown-toggle::after {
    border-top: 0.3em solid rgba(255, 255, 255, 0.7);
}

.navbar .nav-item .dropdown-toggle.active::after {
    border-top: 0.3em solid #156231;
}

.navbar-glass {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin: 0;
    width: fit-content;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .navbar.navbar-glass {
    width: auto;
    flex: 1;
}

.navbar-glass .container {
  padding: 0.5rem 0.75rem;
}

.navbar-glass .navbar-nav {
  margin-left: 2rem;
}

.navbar-brand-mobile {
    display: none;
}

.navbar-glass .navbar-nav .nav-link,
.navbar-glass .navbar-nav .nav-link * {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    padding: 0.75rem 0.5rem;
    border-radius: 0 !important;
    transition: color 0.3s ease;
    margin: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    transform: none;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.navbar-glass .navbar-nav .nav-link:hover,
.navbar-glass .navbar-nav .nav-link:focus,
.navbar-glass .navbar-nav .nav-link:active {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.95) !important;
    transform: none;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

.navbar-glass .navbar-nav .nav-link.active,
.navbar-glass .navbar-nav .nav-link.router-link-active,
.navbar-glass .navbar-nav .nav-link.router-link-exact-active {
    background: transparent !important;
    color: rgba(255, 255, 255, 1) !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

.navbar-glass .dropdown-menu {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    min-width: 180px;
    max-width: 220px;
}

.navbar-glass .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin: 0.25rem;
    transition: all 0.3s ease;
}

.navbar-glass .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 1);
    transform: none;
}

.navbar-glass .dropdown-item.active {
    background: rgba(21, 98, 49, 0.3);
    color: #156231;
    font-weight: 600;
}

.navbar-glass .navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 0.65rem 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.navbar-glass .navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.navbar-glass .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(21, 98, 49, 0.3);
    outline: none;
}

.navbar-glass .navbar-toggler-icon {
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

[data-bs-theme="dark"] .navbar-glass {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .navbar-glass .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    background: none !important;
    border: none !important;
}

[data-bs-theme="dark"] .navbar-glass .navbar-nav .nav-link:hover {
    background: none !important;
    color: rgba(255, 255, 255, 1) !important;
}

[data-bs-theme="dark"] .navbar-glass .dropdown-menu {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .navbar-glass .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
}

[data-bs-theme="dark"] .navbar-glass .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1);
}

[data-bs-theme="dark"] .navbar-glass .navbar-toggler {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

[data-bs-theme="dark"] .navbar-glass .navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767.98px) {
    [data-bs-theme="dark"] .navbar-glass .navbar-collapse {
        background: rgba(0, 0, 0, 0.5);
    }

    [data-bs-theme="dark"] .navbar-glass .navbar-nav .nav-link {
        background: none !important;
        border: none !important;
    }

    [data-bs-theme="dark"] .navbar-glass .navbar-nav .nav-link:hover {
        background: none !important;
    }
}

/* Boutons unifiés - style btn-gradient */
.btn,
.nav-btn,
.btn-discord,
.btn-partner,
.btn-bbb,
.btn-auth {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    min-height: 48px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-variant: small-caps;
    letter-spacing: 1.5px;
    background: #208236 !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover,
.nav-btn:hover,
.btn-discord:hover,
.btn-partner:hover,
.btn-bbb:hover,
.btn-auth:hover {
    background: #1a6b3e !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
}

.btn i:not(.spinner),
.nav-btn i:not(.spinner),
.btn-discord i:not(.spinner),
.btn-partner i:not(.spinner),
.btn-bbb i:not(.spinner),
.btn-auth i:not(.spinner) {
    display: none !important;
}

.btn .spinner,
.nav-btn .spinner,
.btn-discord .spinner,
.btn-partner .spinner,
.btn-bbb .spinner,
.btn-auth .spinner {
    display: inline-block !important;
}

.btn .with-spinner,
.nav-btn .with-spinner,
.btn-discord .with-spinner,
.btn-partner .with-spinner,
.btn-bbb .with-spinner,
.btn-auth .with-spinner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn:active,
.nav-btn:active,
.btn-discord:active,
.btn-partner:active,
.btn-bbb:active,
.btn-auth:active {
    transform: translateY(0);
}

.btn:focus,
.nav-btn:focus,
.btn-discord:focus,
.btn-partner:focus,
.btn-bbb:focus,
.btn-auth:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
}

@media (max-width: 991.98px) {
    .navbar-glass {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-radius: 0;
        margin: 0;
        width: auto;
        min-width: auto;
        position: fixed;
        top: 0;
        left: 0;
        transform: none;
        padding: 0.5rem 0.75rem;
        pointer-events: none;
        z-index: 1000;
    }

    .navbar-glass .navbar-toggler {
        pointer-events: auto;
    }

    .navbar-glass .navbar-collapse {
        pointer-events: auto;
    }

    .navbar-glass .container {
        position: relative;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: .5rem;
        padding: 0;
        width: 100%;
    }

    .navbar-brand-mobile {
        display: flex;
        align-items: center;
        text-decoration: none;
        margin: 0;
    }

    .navbar-brand-mobile .site-logo {
        color: rgba(255, 255, 255, 0.95);
        font-weight: 800;
        font-size: 1.2rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .navbar-glass .navbar-collapse {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        position: absolute;
        top: calc(100% + 0.5rem);
        left: -1rem;
        right: -1rem;
        min-width: 250px;
        width: auto;
    }

    .navbar-glass .navbar-nav {
        gap: 0;
    }

    .navbar-glass .navbar-nav .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0.5rem;
        border-radius: 0;
        background: none !important;
        border: none !important;
    }

    .navbar-glass .navbar-nav .nav-link:hover {
        background: none !important;
    }

    [data-bs-theme="dark"] .navbar-glass .navbar-collapse {
        background: rgba(0, 0, 0, 0.5);
    }

    [data-bs-theme="dark"] .navbar-glass .navbar-nav .nav-link {
        background: none !important;
        border: none !important;
    }

    [data-bs-theme="dark"] .navbar-glass .navbar-nav .nav-link:hover {
        background: none !important;
    }

    [data-bs-theme="dark"] .navbar-brand-mobile .site-logo {
        color: rgba(255, 255, 255, 0.9);
    }

    .content {
        margin-top: 5rem;
        padding-top: 2rem;
    }

    .discord-section {
        margin-top: -200px;
    }

    .hero-section {
        height: calc(100vh - 100px);
        min-height: 350px;
    }

    .discord-card {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .discord-card .text-start p {
        font-size: 0.95rem;
    }

    .footer {
        margin: 10px;
    }
}

@media (max-width: 767.98px) {
    .navbar-glass {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-radius: 0;
        margin: 0;
        width: auto;
        position: fixed;
        top: 0;
        left: 0;
        transform: none;
        padding: 0.4rem 0.6rem;
        pointer-events: none;
    }

    .navbar-glass .navbar-toggler {
        margin-left: 0;
        pointer-events: auto;
    }

    .navbar-glass .navbar-collapse {
        pointer-events: auto;
    }

    .navbar-glass .container {
        justify-content: flex-start;
        width: auto;
    }

    .navbar-glass .navbar-nav .nav-link {
        font-size: 1rem;
    }

    .content {
        margin-top: 4rem;
        padding-top: 1.5rem;
        margin-bottom: 3rem;
    }

    .content .row.mb-5 {
        margin-bottom: 2.5rem !important;
    }

    .discord-section {
        margin-top: -150px;
    }

    .hero-section {
        height: 50vh;
        min-height: 300px;
    }

    .discord-card {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .discord-card .card-body {
        padding: 1rem !important;
    }

    .discord-card .text-start {
        max-width: 100%;
    }

    .discord-card .text-start p {
        font-size: 0.9rem;
    }

    .discord-card h3 {
        font-size: 1.1rem;
    }

    .btn,
    .nav-btn,
    .btn-discord,
    .btn-partner,
    .btn-bbb,
    .btn-auth {
        padding: 0 1.25rem;
        height: 44px;
        font-size: 0.8rem;
        width: 100%;
        border-radius: 6px;
    }

    .footer h3 {
        font-size: 1.2rem;
    }

    .footer .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

@media (max-width: 575.98px) {
    .navbar-glass {
        margin: 0;
        padding: 0.4rem 0.6rem;
        pointer-events: none;
    }

    .navbar-glass .navbar-toggler {
        padding: 0.6rem 0.7rem;
        pointer-events: auto;
    }

    .navbar-glass .navbar-collapse {
        pointer-events: auto;
    }

    .navbar-glass .navbar-toggler-icon {
        width: 24px;
        height: 24px;
    }

    .navbar-brand-mobile .site-logo {
        font-size: 1rem;
    }

    .navbar-glass .navbar-collapse {
        max-width: calc(100vw - 30px);
    }

    .content {
        margin-top: 3rem;
        padding-top: 1rem;
    }

    .discord-section {
        margin-top: -100px;
    }

    .hero-section {
        height: 40vh;
        min-height: 250px;
    }

    .discord-card h3 {
        font-size: 1rem;
    }

    .discord-card .text-start p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .btn,
    .nav-btn,
    .btn-discord,
    .btn-partner,
    .btn-bbb,
    .btn-auth {
        padding: 0 1rem;
        height: 42px;
        font-size: 0.75rem;
        border-radius: 6px;
    }

    .btn:active,
    .nav-btn:active,
    .btn-discord:active,
    .btn-partner:active,
    .btn-bbb:active,
    .btn-auth:active {
        transform: translateY(0);
    }

    .footer {
        margin: 5px;
    }

    .footer h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
}

/* ==========================================
   === TheNavbar ===
   ========================================== */

.navbar-modern {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(39, 39, 42, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: 1px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar-modern .nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-modern .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #208236, #1a6b3e);
  transition: width 0.3s ease;
}

.navbar-modern .nav-link:hover,
.navbar-modern .nav-link.active {
  color: #fff;
}

.navbar-modern .nav-link:hover::after,
.navbar-modern .nav-link.active::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-menu-container {
  position: relative;
}

.account-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.account-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(32, 130, 54, 0.5);
  color: #fff;
}

.account-btn i {
  font-size: 1.3rem;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: rgba(39, 39, 42, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.user-info {
  padding: 0.75rem;
  background: rgba(32, 130, 54, 0.1);
  border-radius: 12px;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
}

.user-details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.user-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.user-email {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.5rem 0;
}

.navbar-modern .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.navbar-modern .dropdown-item:hover {
  background: rgba(32, 130, 54, 0.15);
  color: rgba(255, 255, 255, 1);
}

.navbar-modern .dropdown-item.logout {
  color: rgba(236, 72, 153, 0.9);
}

.navbar-modern .dropdown-item.logout:hover {
  background: rgba(236, 72, 153, 0.15);
  color: rgba(236, 72, 153, 1);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-toggle i {
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .navbar-modern {
    padding: 1rem;
  }

  .navbar-menu {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(39, 39, 42, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navbar-menu.mobile-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .navbar-modern .nav-link {
    padding: 1rem;
    width: 100%;
    text-align: center;
  }

  .navbar-modern .nav-link::after {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .account-btn {
    display: none;
  }

  .logo-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.1rem;
  }
}

/* ==========================================
   === TheFooter ===
   ========================================== */

.footer-minimal {
  background: rgba(30, 30, 35, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: 100%;
  margin: 0;
  padding: 3rem 0;
  border-top: 2px solid rgba(34, 197, 94, 0.3);
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-minimal .logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-minimal .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: 1px;
}

.footer-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: 0.5px;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-minimal .social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.25rem;
}

.footer-minimal .social-link:hover {
  background: rgba(34, 197, 94, 0.4);
  border-color: rgba(34, 197, 94, 0.6);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-minimal {
    padding: 2rem 0;
  }

  .footer-content {
    padding: 0 1.5rem;
    gap: 1.25rem;
  }

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

  .footer-minimal .logo-text {
    font-size: 1.25rem;
  }

  .footer-tagline {
    font-size: 0.9rem;
  }

  .footer-minimal .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* ==========================================
   === DiscordSection ===
   ========================================== */

.discord-card-nav {
  background: rgba(39, 39, 42, 0.6);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 2px solid rgba(32, 130, 54, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.discord-section .nav-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: 1px;
}

.discord-section .nav-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.discord-section .nav-btn {
  background: #208236 !important;
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.95);
  border: none;
  transition: all 0.3s ease;
}

.discord-section .nav-btn:hover {
  background: #1a6b3e !important;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .discord-card-nav {
    padding: 2rem 1.5rem;
  }

  .discord-section .nav-title {
    font-size: 1.4rem;
  }

  .discord-section .nav-description {
    font-size: 0.9rem;
  }

  .discord-section .nav-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* ==========================================
   === ResourcesSection ===
   ========================================== */

.bbb-card-nav {
  background: rgba(39, 39, 42, 0.6);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 2px solid rgba(32, 130, 54, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.bbb-card-nav .nav-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: 1px;
}

.bbb-card-nav .nav-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.bbb-card-nav .nav-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.bbb-card-nav .nav-btn {
  background: #208236 !important;
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.95);
  border: none;
  transition: all 0.3s ease;
}

.bbb-card-nav .nav-btn:hover {
  background: #1a6b3e !important;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .bbb-card-nav {
    padding: 2rem 1.5rem;
  }

  .bbb-card-nav .nav-title {
    font-size: 1.4rem;
  }

  .bbb-card-nav .nav-description {
    font-size: 0.9rem;
  }

  .bbb-card-nav .nav-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }

  .bbb-card-nav .nav-buttons {
    flex-direction: column;
    width: 100%;
  }

  .bbb-card-nav .nav-btn {
    width: 100%;
  }
}

/* ==========================================
   === index.vue (HomePage) ===
   ========================================== */

.home-page {
  min-height: 100vh;
  overflow: hidden;
}

.home-page .hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.home-page .hero-section::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 800px;
  background: radial-gradient(circle, rgba(32, 130, 54, 0.5) 0%, rgba(32, 130, 54, 0.15) 40%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.home-page .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.home-page .hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-page .hero-text > * {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.home-page .hero-greeting {
  animation-delay: 0.1s;
}

.home-page .hero-title {
  animation-delay: 0.3s;
}

.home-page .hero-subtitle {
  animation-delay: 0.5s;
}

.home-page .hero-description {
  animation-delay: 0.7s;
}

.home-page .hero-actions {
  animation-delay: 0.9s;
}

.home-page .hero-image {
  opacity: 0;
  animation: fadeInRight 1s ease 0.5s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.home-page .hero-greeting {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: 1px;
  margin: 0;
}

.home-page .hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: 2px;
}

.home-page .hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: 1px;
}

.home-page .text-gradient {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}

.home-page .hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0.5rem 0 1.5rem;
  max-width: 500px;
  line-height: 1.7;
  font-weight: 500;
}

.home-page .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.home-page .hero-socials-inline {
  display: flex;
  gap: 0.75rem;
}

.home-page .hero-socials-inline .social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.home-page .hero-socials-inline .social-link:hover {
  background: rgba(32, 130, 54, 0.2);
  border-color: rgba(32, 130, 54, 0.5);
  color: #208236;
  transform: translateY(-2px);
}

.home-page .hero-socials-inline .social-link i {
  font-size: 1.3rem;
}

.btn-gradient,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 1.5rem;
  min-height: 48px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-gradient i,
.btn-outline i {
  transition: transform 0.3s ease;
}

.btn-gradient:hover i,
.btn-outline:hover i {
  transform: translateX(4px);
}

.btn-gradient {
  background: #208236;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-gradient:hover {
  background: #1a6b3e;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.home-page .hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-page .image-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
}

.home-page .hero-avatar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-15px);
  }
}

.home-page .floating-card {
  position: absolute;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.home-page .floating-card i {
  display: block;
  font-size: 1.5rem;
  color: #fff;
}

.home-page .card-1 {
  top: 10%;
  left: 0;
  animation: float 5s ease-in-out infinite;
}

.home-page .card-2 {
  top: 60%;
  left: -5%;
  animation: float 7s ease-in-out infinite 1s;
}

.home-page .card-3 {
  bottom: 15%;
  right: 0;
  animation: float 6s ease-in-out infinite 0.5s;
}

.home-page .content-home {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.home-page .container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.creations-section {
  padding: 2rem 0 10rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1s forwards;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

.creations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.creation-card {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  animation: fadeInScale 0.6s ease forwards;
}

.creation-card:nth-child(1) { animation-delay: 1.2s; }
.creation-card:nth-child(2) { animation-delay: 1.3s; }
.creation-card:nth-child(3) { animation-delay: 1.4s; }
.creation-card:nth-child(4) { animation-delay: 1.5s; }
.creation-card:nth-child(5) { animation-delay: 1.6s; }
.creation-card:nth-child(6) { animation-delay: 1.7s; }

.creation-card:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.creation-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.creation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creation-card:hover .creation-image img {
  transform: scale(1);
}

.creation-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(32, 130, 54, 0.9);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

.creations-actions {
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.6s ease 1.8s forwards;
}

@media (max-width: 992px) {
  .home-page .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .home-page .hero-text {
    align-items: center;
  }

  .home-page .hero-title {
    font-size: 3rem;
  }

  .home-page .hero-actions {
    justify-content: center;
  }

  .home-page .image-wrapper {
    width: 320px;
    height: 320px;
  }

  .home-page .hero-avatar {
    width: 220px;
  }
}

@media (max-width: 576px) {
  .home-page .container {
    padding: 0 1rem;
  }

  .home-page .hero-section {
    padding-top: 70px;
  }

  .home-page .hero-title {
    font-size: 2.5rem;
  }

  .home-page .hero-subtitle {
    font-size: 1.1rem;
  }

  .home-page .hero-description {
    font-size: 0.95rem;
  }

  .home-page .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-gradient,
  .btn-outline {
    justify-content: center;
  }

  .home-page .image-wrapper {
    width: 250px;
    height: 250px;
  }

  .home-page .hero-avatar {
    width: 170px;
  }

  .home-page .floating-card {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .home-page .card-1 {
    top: 5%;
    left: -5%;
  }

  .home-page .card-2 {
    top: 55%;
    left: -10%;
  }

  .home-page .card-3 {
    bottom: 10%;
    right: -5%;
  }
}

/* ==========================================
   === projets.vue (PortfolioPage) ===
   ========================================== */

.portfolio-page {
  min-height: 100vh;
  padding-top: 80px;
}

.portfolio-header {
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.portfolio-page .page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: 2px;
  margin: 0 0 2rem 0;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.category-btn {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover {
  background: rgba(32, 130, 54, 0.2);
  border-color: rgba(32, 130, 54, 0.3);
  color: #fff;
}

.category-btn.active {
  background: rgba(32, 130, 54, 0.3);
  border-color: rgba(32, 130, 54, 0.5);
  color: #fff;
}

.portfolio-content {
  padding: 2rem;
  padding-top: 0;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(255, 255, 255, 0.4);
}

.projects-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.project-figure {
  margin: 0;
  aspect-ratio: 1 / 1;
}

.project-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid rgba(32, 130, 54, 0.6);
  background: rgba(39, 39, 42, 0.6);
}

@media (max-width: 768px) {
  .projects-section {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  .portfolio-header {
    padding: 1rem;
  }

  .portfolio-content {
    padding: 1rem;
  }
}

/* ==========================================
   === a-propos.vue (AboutPage) ===
   ========================================== */

.about-page {
  min-height: 100vh;
  padding-top: 100px;
}

.about-page .container {
  max-width: 800px;
  padding: 2rem;
  text-align: center;
}

.about-page .page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: 2px;
  margin: 0 0 3rem 0;
}

.about-content {
  background: rgba(39, 39, 42, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(32, 130, 54, 0.2);
  border-radius: 16px;
  padding: 3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-content :deep(h1),
.about-content :deep(h2),
.about-content :deep(h3) {
  color: #fff;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: 1px;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.about-content :deep(p) {
  margin-bottom: 1rem;
}

.about-content :deep(ul),
.about-content :deep(ol) {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.about-content :deep(li) {
  margin-bottom: 0.5rem;
}

.about-content :deep(a) {
  color: #208236;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-content :deep(a:hover) {
  color: #1a6b3e;
}

.about-socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.about-page .social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.about-page .social-link:hover {
  background: rgba(34, 197, 94, 0.4);
  border-color: rgba(34, 197, 94, 0.6);
  color: #fff;
  transform: translateY(-3px);
}
