:root {
  --default-font: "lexend", "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Rowdies", "lexend", "Raleway",  sans-serif;
  --nav-font: "lexend", "Montserrat",  sans-serif;
}

:root { 
  --accent-color: #f9b73f;
  --background-color: #1f1d18;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #171717;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #ffffff;
  --nav-hover-color: #f9b73f;
  --nav-mobile-background-color: #2b2a28;
  --nav-dropdown-background-color: #2b2a28;
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: #f9b73f;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #eaf9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #081b12;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1f3028;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #077f46;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #2a8f5f;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 2000;
}

#header2 {
  top: 80px;
  z-index: 1100;
}

#header2 .header-container {
  background-color: var(--accent-color);  
}

#header2 .header-container a {
  margin: auto;
  text-align: center;
  color: var(--surface-color);
  font-weight: 700;
}

.header .header-container {
  background: rgba(23, 23, 23, 0.9);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

#logo {
  border-radius: 5px;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 22px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 1400px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .navmenu {
    order: 3;    
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1400px) {
  .navmenu {
    padding: 0;
    width: 100%;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;    
    justify-content: space-around;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1399.98px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 2000;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 2000;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;    
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    backdrop-filter: blur(50px);
    transition: 0.3s;
    z-index: 2000;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--surface-color);
  font-size: 14px;
  padding: 80px 40px;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a,
.footer .footer-links a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

.footer .footer-links a:hover {
  color: var(--accent-color);
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .social-links a i {
  font-size: 16px;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 20px;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 25%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 140px 0 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@media (max-width: 1200px) {
  .hero {
    padding: 100px 0 60px;
  }
}

.hero h1 {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

.hero .hero-content {
  width: 100%;
}

.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero .hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 30%);
}

#categories-container {
  padding-top: 100px;
  padding-bottom: 100px;
  z-index: 1000;
}

#categories-container .stack-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  width: 300px;
  margin: auto;
  box-shadow: 0 4px 22px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#categories-container .stack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--default-color), transparent 86%);
}

#categories-container .stack-card .stack-media {
  position: relative;
  height: 300px;
  margin: 0;
}

#categories-container .stack-card .stack-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*--------------------------------------------------------------
# Twitch Stream Section
--------------------------------------------------------------*/
.twitch-stream {
  padding-top: 100px;
  padding-bottom: 100px;
}

/*--------------------------------------------------------------
# Galeries Section
--------------------------------------------------------------*/
.help,
.about,
.stuffs,
.dofus,
.avis,
.combats-tactiques,
.donjons,
.mentions-legales,
.confidentialite {
  position: relative;
  padding: 200px 0 60px;
  min-height: 100vh;
  display: flex;
}

@media (max-width: 1200px) {
  .help,
  .about,
  .stuffs,
  .dofus,
  .avis,
  .combats-tactiques,
  .donjons,
  .mentions-legales,
  .confidentialite {
    padding: 180px 0 60px;
  }
}

#help-explanation,
#stuffs-explanation,
#dofus-explanation,
#avis-explanation,
#combats-tactiques-explanation,
#donjons-explanation {
  text-align: center;
}

.help h1,
.about h1,
.stuffs h1,
.dofus h1,
.avis h1,
.combats-tactiques h1,
.donjons h1,
.mentions-legales h1,
.confidentialite h1 {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .help h1,
  .about h1,
  .stuffs h1,
  .dofus h1,
  .avis h1,
  .combats-tactiques h1,
  .donjons h1,
  .mentions-legales h1,
  .confidentialite h1 {
    font-size: 2.5rem;
  }
}

.stuffs .search-input,
.dofus .search-input,
.avis .search-input,
.combats-tactiques .search-input,
.donjons .search-input {
  width: 70%;
  margin: auto;
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  background-color: var(--surface-color);
  color: var(--default-color);
}

@media (max-width: 768px) {
  .stuffs .search-input,
  .dofus .search-input,
  .avis .search-input,
  .combats-tactiques .search-input,
  .donjons .search-input {
    width: 95%;
  }
}

.stuffs .search-input::placeholder,
.dofus .search-input::placeholder,
.avis .search-input::placeholder,
.combats-tactiques .search-input::placeholder,
.donjons .search-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.dofus .dofus-filters,
.avis .avis-filters,
.combats-tactiques .combats-tactiques-filters,
.donjons .donjons-filters {
  list-style: none;
  margin-bottom: 2rem;
  padding-left: 0;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dofus .dofus-filters li,
.avis .avis-filters li,
.combats-tactiques .combats-tactiques-filters li,
.donjons .donjons-filters li {
  cursor: pointer;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  color: var(--heading-color);
  background-color: var(--surface-color);
  border: none;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 600;
}

.dofus .dofus-filters li.filter-active,
.dofus .dofus-filters li:hover,
.avis .avis-filters li.filter-active,
.avis .avis-filters li:hover,
.combats-tactiques .combats-tactiques-filters li.filter-active,
.combats-tactiques .combats-tactiques-filters li:hover,
.donjons .donjons-filters li.filter-active,
.donjons .donjons-filters li:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 2px 12px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.isotope-item .card .body {
  /*height: 150px;*/
  height: 100px;
  text-align: center;
}

.stuffs .isotope-item .card .body {
  height: 150px;
}

.isotope-item .card img {
  /*height: 400px*/
  height: 300px;  
  width: 100%;
  margin: auto;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Détails Pages Section
--------------------------------------------------------------*/
.details-dofus,
.details-avis,
.details-combat-tactique,
.details-donjon {
  position: relative;
  padding: 200px 0 60px;
  min-height: 100vh;
  display: flex;
}

.card-no-anim {
  background: var(--surface-color);
  color: white;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 22px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-no-anim .media {
  position: relative;
  margin: 0;
}

.card-no-anim h3 {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

.card-no-anim .body {
  padding: 18px;
}

.card-no-anim #screen {
  object-fit: fill;
  width: 100%;
  border-radius: 16px;
}

.card-no-anim #gif {
  width: 250px;
  border-radius: 16px;
}

#localisation {
  border: none;
}

.details-dofus #localisation img,
.details-avis #localisation img,
.details-combat-tactique #localisation img,
.details-donjon #localisation img {
  object-fit: fill;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

#main-card h1 {
  text-align: center;
}

#main-card #special_strat {
  text-align: center;
}

#main-card h2 {
  line-height: 50px;
}

@media (max-width: 768px) {
  #main-card h2 {
    text-align: center;
  }
}

#picto_dungeons,
#picto_vulnerable,
#picto_invulnerable {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

#picto_tactical_fights,
#picto_quests,
#picto_kamas,
#picto_spells,
#picto_legendary_hunts,
#picto_ocre {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

#stats {
  border: none;
  width: 600px;
  height: auto;
  margin: auto;
}

@media (max-width: 768px) {
  #stats {
    width: 100%;
  }
}

.details-avis #stats img
.details-combat-tactique #stats img,
.details-donjon #stats img {
  object-fit: cover;
  width: 100%;
  border-radius: 16px;
}

#video-card h1 {
  text-align: center;
}

#video-card .media {
  margin: 0;
}

.table-corruption {
    width: 100%;
    border-collapse: collapse;
    border-radius: 6px;
    overflow: hidden;
}

.table-corruption th,
.table-corruption td {
    background-color: #1e1e1e;
    border: 1px solid #2c2c2c;
    padding: 12px 14px;
    color: #e0e0e0;
    vertical-align: top;
}

.table-corruption thead th {
    background-color: #232323;
}

.table-corruption tbody tr:nth-child(even) td {
    background-color: #1a1a1a;
}

.table-corruption tbody tr:hover td {
    background-color: #262626;
    transition: background-color 0.2s ease;
}

.go-back-btn {
  display: inline-flex;
  align-items: center;
  margin: auto;
  gap: 8px;
  padding: 12px 24px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.go-back-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 40%);
  color: var(--contrast-color) !important;
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.card {
  background: var(--surface-color);
  color: white;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 22px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--default-color), transparent 86%);
}

.card .media {
  position: relative;
  margin: 0;
}

.card h3 {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

.card .body {
  padding: 18px;
}

.benefits-list {
  margin-bottom: 2.5rem;
}

.benefits-list .benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .benefits-list .benefit-item {
    justify-content: flex-start;
  }
}

.benefits-list .benefit-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefits-list .benefit-item span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--default-color);
}

.card .links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-no-anim .links ul {
  list-style: none;
}

.card .links ul li,
.card-no-anim .links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.card .links ul li:hover,
.card-no-anim .links ul li:hover {
  transform: translateX(5px);
}

.card .links ul a,
.card .links,
.card-no-anim ul a,
.card-no-anim .links {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

.card .links a:hover,
.card-no-anim .links a:hover {
  color: var(--accent-color);
}

.card .links ul a:hover,
.card-no-anim .links ul a:hover {
  color: var(--accent-color);
}

.card .links ul a i,
.card-no-anim .links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .profile .profile-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about .profile .profile-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about .profile .profile-image img {
    height: 400px;
  }
}

.about .profile-content {
  padding-left: 40px;
}

.about .profile-content h2 {
  font-size: 2.5rem;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.about .profile-content .profile-presentation {  
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 25px 0;
  padding: 0;
  border: none;
}

.about .profile-content .social-links {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.about .profile-content .social-links .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.about .profile-content .social-links .social-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .about .profile-content {
    padding-left: 0;
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Stuffs Section
--------------------------------------------------------------*/
.stuffs .classes {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.stuffs .classes .class {
  width: 60px;
  height: 60px;  
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.stuffs .classes .class:hover {
  transform: translateY(-2px);
}

.stuffs .classes .class {
  border-radius: 8px;  
  object-fit: fill;
}