@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Fjalla One",  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: "Fjalla One",  sans-serif;
  --nav-font: "Fjalla One",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #2e1065; /* Background color for the entire website, including individual sections */
  --default-color: #ddd6fe; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #f5f3ff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #8b5cf6; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #421791; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ddd6fe;  /* The default color of the main navmenu links */
  --nav-hover-color: #8b5cf6; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #421791; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #421791; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ddd6fe; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #8b5cf6; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* 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: #2e1065;
  --surface-color: #561ebd;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --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);
}

body .main,
body #footer {
  transition: opacity 0.18s ease, transform 0.18s ease, filter 0.18s ease;
}

body.is-leaving .main,
body.is-leaving #footer {
  opacity: 0;
  transform: translateY(8px);
  filter: blur(2px);
}

body.is-entering .main,
body.is-entering #footer {
  opacity: 0;
  transform: translateY(6px);
  filter: blur(2px);
}

@media (prefers-reduced-motion: reduce) {
  body .main,
  body #footer {
    transition: none !important;
  }

  body.is-leaving .main,
  body.is-leaving #footer,
  body.is-entering .main,
  body.is-entering #footer {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.index-page .header {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

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

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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.nav-discord a {
    font-size: 22px;
    padding: 18px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navmenu li.nav-discord a i {
    font-size: 30px;
    margin-left: 0;
    transform: translateY(1px);
  }

  .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.link-external {
    justify-content: flex-start;
    gap: 8px;
  }

  .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: 1199px) {
  .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: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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: space-between;
    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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

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

  .navmenu .dropdown ul a.link-external {
    justify-content: flex-start;
    gap: 8px;
  }

  .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;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

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

/* ========================================
   Bouton Rejoindre animé (Version combinée)
======================================== */

.btn-rejoindre-custom {
  position: relative;
  display: inline-block;
  overflow: hidden;

  background-color: #B02BF0 !important;
  border: none !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  padding: 10px 22px !important;
  font-size: 14px !important;
  letter-spacing: 1px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);

  transform: rotate(-3deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover principal */
.btn-rejoindre-custom:hover {
  transform: rotate(0deg) scale(1.08) translateY(-3px);
  box-shadow: 0 15px 35px rgba(176, 43, 240, 0.55);
}

/* Effet shine */
.btn-rejoindre-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn-rejoindre-custom:hover::before {
  left: 130%;
}

/* Shake animation */
@keyframes shake {
  0% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
  100% { transform: rotate(-3deg); }
}

/* À appliquer sur un wrapper pour éviter conflit */
.shake-animation {
  display: inline-block;
  animation: shake 0.6s ease-in-out infinite;
}

/* ========================================
   Bouton Violet Premium (nouvelle classe)
======================================== */

.btn-purple-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;

  background: linear-gradient(135deg, #B02BF0, #8b5cf6);
  border: none;
  color: #ffffff;
  border-radius: 12px;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease;
}

/* Hover */
.btn-purple-premium:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 15px 35px rgba(176, 43, 240, 0.55);
  color: #ffffff;
}

/* Shine effect */
.btn-purple-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn-purple-premium:hover::before {
  left: 130%;
}

/* ========================================
   Bouton Violet Outline (secondaire)
======================================== */

.btn-purple-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: transparent;
  border: 2px solid #8b5cf6;
  color: #8b5cf6;
  border-radius: 12px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;

  transition: all 0.3s ease;
}

.btn-purple-outline:hover {
  background: #8b5cf6;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}

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

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;

  width: 40px;
  height: 40px;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: var(--accent-color);
  cursor: pointer;

  /* 🔴 Caché par défaut */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: opacity 0.3s ease,
              visibility 0.3s ease,
              transform 0.3s ease,
              box-shadow 0.3s ease,
              background-color 0.3s ease;
}

/* 🟢 Visible uniquement quand le JS ajoute .active */
.scroll-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top span {
  font-size: 20px;
  font-weight: 700;
  color: var(--contrast-color) !important;
  transition: transform 0.3s ease;
}

/* Hover */
.scroll-top:hover {
  background-color: #B02BF0;
  transform: rotate(45deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.scroll-top:hover span {
  transform: rotate(-45deg);
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.page-title .article-meta {
  color: var(--contrast-color) !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: 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 100px;
  padding-bottom: 60px;
}

.index-page .hero {
  padding-top: 52px;
}

@media (max-width: 768px) {
  .index-page .hero {
    padding-top: 36px;
  }
}

.hero .hero-badge {
  display: inline-block;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 50px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero .hero-heading {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

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

.hero .hero-description {
  font-size: 1.1rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero .hero-actions .btn-primary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero .hero-actions .btn-primary-action:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-actions .btn-primary-action i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.hero .hero-actions .btn-primary-action:hover i {
  transform: translateX(4px);
}

.hero .hero-actions .btn-outline-action {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero .hero-actions .btn-outline-action:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.hero .hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero .hero-stats .stat-item h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.15rem;
}

.hero .hero-stats .stat-item p {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  font-weight: 500;
}

.hero .mosaic-gallery {
  display: flex;
  gap: 1rem;
  position: relative;
}

@media (max-width: 576px) {
  .hero .mosaic-gallery {
    gap: 0.75rem;
  }
}

.hero .mosaic-gallery .mosaic-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

@media (max-width: 576px) {
  .hero .mosaic-gallery .mosaic-col {
    gap: 0.75rem;
  }
}

.hero .mosaic-gallery .mosaic-col-left {
  padding-top: 2.5rem;
}

@media (max-width: 576px) {
  .hero .mosaic-gallery .mosaic-col-left {
    padding-top: 1.5rem;
  }
}

.hero .mosaic-gallery .mosaic-col-right {
  padding-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .hero .mosaic-gallery .mosaic-col-right {
    padding-bottom: 1.5rem;
  }
}

.hero .mosaic-gallery .mosaic-img {
  overflow: hidden;
  border-radius: 16px;
}

.hero .mosaic-gallery .mosaic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero .mosaic-gallery .mosaic-img img:hover {
  transform: scale(1.06);
}

.hero .mosaic-gallery .mosaic-large {
  flex: 1.6;
}

.hero .mosaic-gallery .mosaic-small {
  flex: 1;
}

.hero .mosaic-gallery .floating-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background-color: var(--surface-color);
  border-radius: 50px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  white-space: nowrap;
  z-index: 2;
}

.hero .mosaic-gallery .floating-badge i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.hero .mosaic-gallery .floating-badge span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 100px;
  position: relative;
  overflow: visible;
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, var(--background-color) 50%, color-mix(in srgb, var(--accent-color), transparent 96%) 100%);
  padding-bottom: 120px;
  /* Floating Decorative Elements */
  /* Offering Card Styles */
  /* Responsive adjustments */
}

.about .container {
  position: relative;
}

.about .floating-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.about .floating-deco--circle {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), #ff006e 40%));
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  opacity: 0.12;
  top: -60px;
  right: -40px;
}

.about .floating-deco--ring {
  width: 160px;
  height: 160px;
  border: 4px dashed color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50%;
  bottom: 40px;
  left: -50px;
}

.about .floating-deco--dots {
  width: 100px;
  height: 100px;
  background-image: radial-gradient(color-mix(in srgb, var(--accent-color), transparent 60%) 2px, transparent 2px);
  background-size: 14px 14px;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
}

.about .offering-card {
  position: relative;
  z-index: 1;
  background: var(--surface-color);
  padding: 48px 36px 40px;
  border-radius: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  /* Decorative Blob */
  /* Icon Wrap */
  /* Card Link */
}

.about .offering-card--tilt-left {
  transform: rotate(-1.5deg);
}

.about .offering-card--tilt-right {
  transform: rotate(1.5deg);
}

.about .offering-card--raised {
  transform: translateY(-8px);
}

.about .offering-card:hover {
  transform: translateY(-10px) rotate(0deg) !important;
  box-shadow: 0 24px 56px color-mix(in srgb, var(--accent-color), transparent 78%);
  border-color: var(--accent-color);
}

.about .offering-card__blob {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 70%), color-mix(in srgb, var(--accent-color), #ff006e 30%));
  border-radius: 50% 50% 50% 20%;
  opacity: 0.15;
  transition: all 0.45s ease;
  z-index: -1;
}

.about .offering-card:hover .about .offering-card__blob {
  transform: scale(1.6) rotate(20deg);
  opacity: 0.22;
}

.about .offering-card__icon-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff006e 35%));
  border-radius: 20px;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about .offering-card:hover .about .offering-card__icon-wrap {
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 45%);
  border-radius: 24px 16px 24px 8px;
}

.about .offering-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.about .offering-card h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
  background-image: linear-gradient(var(--accent-color), var(--accent-color));
  background-size: 0% 3px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 2px;
  transition: background-size 0.4s ease, color 0.3s ease;
}

.about .offering-card:hover h3 a {
  color: var(--accent-color);
  background-size: 100% 3px;
}

.about .offering-card p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 24px;
  flex-grow: 1;
}

.about .offering-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.35s ease;
  margin-top: auto;
}

.about .offering-card__link i {
  font-size: 16px;
  transition: transform 0.35s ease;
}

.about .offering-card__link:hover {
  color: color-mix(in srgb, var(--accent-color), #ff006e 30%);
  gap: 14px;
}

.about .offering-card__link:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .about {
    padding: 70px 0 80px;
  }

  .about .offering-card {
    padding: 36px 28px 32px;
  }

  .about .offering-card--tilt-left,
  .about .offering-card--tilt-right {
    transform: rotate(0deg);
  }

  .about .offering-card--raised {
    transform: translateY(0);
  }

  .about .floating-deco {
    display: none;
  }
}

@media (max-width: 576px) {
  .about .offering-card {
    padding: 32px 24px 28px;
    border-radius: 20px;
  }

  .about .offering-card__icon-wrap {
    width: 60px;
    height: 60px;
    font-size: 26px;
    border-radius: 16px;
    margin-bottom: 22px;
  }

  .about .offering-card h3 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .steps .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .steps .steps-grid {
    gap: 1.5rem;
  }
}

.steps .step-card {
  background: var(--surface-color);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.steps .step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.steps .step-card:hover .step-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.steps .step-card:hover .step-arrow {
  transform: translateX(5px);
}

.steps .step-card .step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 80%) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.steps .step-card .step-number {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 1rem;
}

.steps .step-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

@media (max-width: 576px) {
  .steps .step-card h3 {
    font-size: 1.2rem;
  }
}

.steps .step-card p {
  font-size: 0.95rem;
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.steps .step-card .step-arrow {
  position: absolute;
  top: 50%;
  right: -15px;
  width: 30px;
  height: 30px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  z-index: 2;
}

@media (max-width: 991px) {
  .steps .step-card .step-arrow {
    display: none;
  }
}

.steps .step-card:last-child .step-arrow {
  display: none;
}

@media (max-width: 991px) {
  .steps .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .steps .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps .step-card {
    padding: 2rem 1.5rem;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  padding-top: 60px;
  overflow: hidden;
  padding-bottom: 60px;
}

.gallery .gallery-container {
  padding: 20px 0 40px;
  position: relative;
}

.gallery .swiper-wrapper {
  height: auto !important;
  align-items: center;
  padding: 30px 0;
}

.gallery .gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.gallery .gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery .gallery-img img {
  transition: transform 0.6s ease;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery .gallery-img .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery .gallery-img .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 3rem;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.gallery .gallery-img:hover img {
  transform: scale(1.1);
}

.gallery .gallery-img:hover .gallery-overlay {
  opacity: 1;
}

.gallery .gallery-img:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid var(--accent-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.2);
}

.gallery .swiper-button-next,
.gallery .swiper-button-prev {
  color: var(--accent-color);
  background: var(--surface-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery .swiper-button-next:after,
.gallery .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.gallery:hover .swiper-button-next,
.gallery:hover .swiper-button-prev {
  opacity: 0.9;
}

.gallery:hover .swiper-button-next:hover,
.gallery:hover .swiper-button-prev:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .gallery .gallery-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

  .gallery .swiper-button-next,
  .gallery .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 767px) {
  .gallery .swiper-wrapper {
    padding: 15px 0;
  }

  .gallery .gallery-img .gallery-overlay i {
    font-size: 2rem;
  }
}



/*--------------------------------------------------------------
# Post Details 2 Section
--------------------------------------------------------------*/
.post-details-2 {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.post-details-2 .article-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.post-details-2 .article-header .meta-categories {
  margin-bottom: 1.5rem;
}

.post-details-2 .article-header .meta-categories .category {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  margin: 0 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.post-details-2 .article-header .meta-categories .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.post-details-2 .article-header .title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .post-details-2 .article-header .title {
    font-size: 2.2rem;
  }
}

.post-details-2 .article-header .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.post-details-2 .article-header .article-meta .author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-details-2 .article-header .article-meta .author .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.post-details-2 .article-header .article-meta .author .author-info {
  text-align: left;
}

.post-details-2 .article-header .article-meta .author .author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.post-details-2 .article-header .article-meta .author .author-info span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.post-details-2 .article-header .article-meta .post-info {
  display: flex;
  gap: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.post-details-2 .article-header .article-meta .post-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .post-details-2 .article-header .article-meta {
    justify-content: center;
    text-align: center;
  }

  .post-details-2 .article-header .article-meta .post-info {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.post-details-2 .article-featured-image {
  margin: 0 -2rem 3rem;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

.post-details-2 .article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .post-details-2 .article-featured-image {
    margin: 0 -1rem 2rem;
    height: 300px;
  }
}

.post-details-2 .article-wrapper {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 3rem;
  position: relative;
}

@media (max-width: 992px) {
  .post-details-2 .article-wrapper {
    grid-template-columns: 1fr;
  }
}

.post-details-2 .article-wrapper .table-of-contents {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .post-details-2 .article-wrapper .table-of-contents {
    display: none;
  }
}

.post-details-2 .article-wrapper .table-of-contents h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.post-details-2 .article-wrapper .table-of-contents nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-details-2 .article-wrapper .table-of-contents nav ul li {
  margin-bottom: 0.75rem;
}

.post-details-2 .article-wrapper .table-of-contents nav ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding-left: 1rem;
  position: relative;
}

.post-details-2 .article-wrapper .table-of-contents nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-color);
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.post-details-2 .article-wrapper .table-of-contents nav ul li a:hover,
.post-details-2 .article-wrapper .table-of-contents nav ul li a.active {
  color: var(--heading-color);
}

.post-details-2 .article-wrapper .table-of-contents nav ul li a:hover::before,
.post-details-2 .article-wrapper .table-of-contents nav ul li a.active::before {
  opacity: 1;
}

.post-details-2 .article-wrapper .article-content {
  font-size: 1.15rem;
  line-height: 1.8;
}

.post-details-2 .article-wrapper .article-content .content-section {
  margin-bottom: 4rem;
}

.post-details-2 .article-wrapper .article-content .content-section .lead {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.post-details-2 .article-wrapper .article-content .content-section h2 {
  font-size: 2.2rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.post-details-2 .article-wrapper .article-content .content-section .highlight-quote {
  margin: 3rem 0;
  padding: 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.post-details-2 .article-wrapper .article-content .content-section .highlight-quote::before {
  content: "“";
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.post-details-2 .article-wrapper .article-content .content-section .highlight-quote blockquote {
  padding-left: 3rem;
}

.post-details-2 .article-wrapper .article-content .content-section .highlight-quote blockquote p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.post-details-2 .article-wrapper .article-content .content-section .highlight-quote blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-details-2 .article-wrapper .article-content .content-section .image-with-caption {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.post-details-2 .article-wrapper .article-content .content-section .image-with-caption.right {
  float: right;
  max-width: 450px;
  margin: 0 0 2rem 2rem;
}

@media (max-width: 768px) {
  .post-details-2 .article-wrapper .article-content .content-section .image-with-caption.right {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.post-details-2 .article-wrapper .article-content .content-section .image-with-caption img {
  width: 100%;
}

.post-details-2 .article-wrapper .article-content .content-section .image-with-caption figcaption {
  padding: 1rem;
  background: var(--surface-color);
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-details-2 .article-wrapper .article-content .content-section .feature-points {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.post-details-2 .article-wrapper .article-content .content-section .feature-points .point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.post-details-2 .article-wrapper .article-content .content-section .feature-points .point i {
  font-size: 2rem;
  color: var(--accent-color);
}

.post-details-2 .article-wrapper .article-content .content-section .feature-points .point h4 {
  margin: 0 0 0.5rem;
  color: var(--heading-color);
}

.post-details-2 .article-wrapper .article-content .content-section .feature-points .point p {
  margin: 0;
  font-size: 1rem;
}

.post-details-2 .article-wrapper .article-content .content-section .comparison-grid {
  margin: 2rem 0;
}

.post-details-2 .article-wrapper .article-content .content-section .comparison-grid .comparison-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.post-details-2 .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon {
  margin-bottom: 1rem;
}

.post-details-2 .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.post-details-2 .article-wrapper .article-content .content-section .comparison-grid .comparison-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.post-details-2 .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.post-details-2 .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul li {
  margin-bottom: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.post-details-2 .article-wrapper .article-content .content-section .key-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .post-details-2 .article-wrapper .article-content .content-section .key-principles {
    grid-template-columns: 1fr;
  }
}

.post-details-2 .article-wrapper .article-content .content-section .key-principles .principle {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.post-details-2 .article-wrapper .article-content .content-section .key-principles .principle .number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.post-details-2 .article-wrapper .article-content .content-section .key-principles .principle h4 {
  color: var(--heading-color);
  margin: 1rem 0;
}

.post-details-2 .article-wrapper .article-content .content-section .key-principles .principle p {
  margin: 0;
  font-size: 0.95rem;
}

.post-details-2 .article-wrapper .article-content .content-section .info-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  margin: 2rem 0;
}

.post-details-2 .article-wrapper .article-content .content-section .info-box .icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.post-details-2 .article-wrapper .article-content .content-section .info-box .content h4 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.post-details-2 .article-wrapper .article-content .content-section .info-box .content p {
  margin: 0;
}

.post-details-2 .article-wrapper .article-content .content-section .future-trends {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .post-details-2 .article-wrapper .article-content .content-section .future-trends {
    grid-template-columns: 1fr;
  }
}

.post-details-2 .article-wrapper .article-content .content-section .future-trends .trend {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.post-details-2 .article-wrapper .article-content .content-section .future-trends .trend:hover {
  transform: translateY(-5px);
}

.post-details-2 .article-wrapper .article-content .content-section .future-trends .trend i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.post-details-2 .article-wrapper .article-content .content-section .future-trends .trend h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.post-details-2 .article-wrapper .article-content .content-section .future-trends .trend p {
  margin: 0;
  font-size: 0.95rem;
}

.post-details-2 .article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.post-details-2 .article-footer h4 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.post-details-2 .article-footer .share-article {
  margin-bottom: 3rem;
}

.post-details-2 .article-footer .share-article .share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.post-details-2 .article-footer .share-article .share-buttons .share-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--surface-color);
  border-radius: 30px;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-details-2 .article-footer .share-article .share-buttons .share-button i {
  font-size: 1.2rem;
}

.post-details-2 .article-footer .share-article .share-buttons .share-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.post-details-2 .article-footer .share-article .share-buttons .share-button.twitter:hover {
  background: #1DA1F2;
}

.post-details-2 .article-footer .share-article .share-buttons .share-button.facebook:hover {
  background: #4267B2;
}

.post-details-2 .article-footer .share-article .share-buttons .share-button.linkedin:hover {
  background: #0077B5;
}

.post-details-2 .article-footer .article-tags .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.post-details-2 .article-footer .article-tags .tags .tag {
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-details-2 .article-footer .article-tags .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.75;
}

.privacy .policy-sidebar {
  position: sticky;
  top: 100px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 5px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .policy-sidebar .effective-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.privacy .policy-sidebar .effective-badge i {
  font-size: 1rem;
}

.privacy .policy-sidebar h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.privacy .policy-sidebar .sidebar-intro {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.privacy .policy-sidebar .policy-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 25px;
}

.privacy .policy-sidebar .policy-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 10px;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.privacy .policy-sidebar .policy-nav .nav-link:hover,
.privacy .policy-sidebar .policy-nav .nav-link.active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.privacy .policy-sidebar .policy-nav .nav-link:hover .nav-number,
.privacy .policy-sidebar .policy-nav .nav-link.active .nav-number {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.privacy .policy-sidebar .policy-nav .nav-link .nav-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.privacy .policy-sidebar .policy-nav .nav-link .nav-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.privacy .policy-sidebar .contact-card {
  padding: 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 12px;
}

.privacy .policy-sidebar .contact-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.privacy .policy-sidebar .contact-card p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.privacy .policy-sidebar .contact-card .contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.privacy .policy-sidebar .contact-card .contact-email i {
  font-size: 1.1rem;
}

.privacy .policy-sidebar .contact-card .contact-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.privacy .policy-sidebar .contact-card .contact-address i {
  font-size: 1rem;
  margin-top: 2px;
}

.privacy .policy-content {
  padding-left: 20px;
}

.privacy .policy-content .policy-section {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .policy-content .policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy .policy-content .policy-section .section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.privacy .policy-content .policy-section .section-header .section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
}

.privacy .policy-content .policy-section .section-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.privacy .policy-content .policy-section .section-body p {
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.privacy .policy-content .policy-section .section-body p:last-child {
  margin-bottom: 0;
}

.privacy .policy-content .policy-section .section-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 25px 0 15px;
}

.privacy .policy-content .policy-section .section-body h3 i {
  margin-right: 10px;
  color: var(--accent-color);
}

.privacy .policy-content .policy-section .section-body ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.privacy .policy-content .policy-section .section-body ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.privacy .policy-content .policy-section .section-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.privacy .policy-content .policy-section .section-body ul li:last-child {
  margin-bottom: 0;
}

.privacy .info-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
}

.privacy .info-card:last-child {
  margin-bottom: 0;
}

.privacy .info-card h3 {
  margin-top: 0 !important;
}

.privacy .usage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.privacy .usage-grid .usage-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.privacy .usage-grid .usage-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.privacy .usage-grid .usage-item i {
  font-size: 1.4rem;
  color: var(--accent-color);
}

.privacy .usage-grid .usage-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
}

.privacy .sharing-item {
  margin-bottom: 25px;
}

.privacy .sharing-item:last-child {
  margin-bottom: 0;
}

.privacy .sharing-item h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
}

.privacy .security-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.privacy .security-features .feature {
  display: flex;
  gap: 20px;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.privacy .security-features .feature .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  flex-shrink: 0;
}

.privacy .security-features .feature .feature-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.privacy .security-features .feature .feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.privacy .security-features .feature .feature-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.privacy .rights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.privacy .rights-list .right-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
}

.privacy .rights-list .right-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .rights-list .right-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.privacy .rights-list .right-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.privacy .rights-list .right-item p {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.privacy .update-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 10px;
  margin-top: 25px;
}

.privacy .update-notice i {
  font-size: 1.3rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.privacy .update-notice span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .privacy .policy-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .privacy .policy-sidebar .policy-nav {
    display: none;
  }

  .privacy .policy-content {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .privacy .usage-grid {
    grid-template-columns: 1fr;
  }

  .privacy .rights-list {
    grid-template-columns: 1fr;
  }

  .privacy .policy-content .policy-section .section-header h2 {
    font-size: 1.4rem;
  }

  .privacy .policy-content .policy-section .section-header .section-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .privacy .security-features .feature {
    flex-direction: column;
    text-align: center;
  }

  .privacy .security-features .feature .feature-icon {
    margin: 0 auto;
  }
}

@media print {
  .privacy .policy-sidebar {
    display: none;
  }

  .privacy .policy-content {
    padding-left: 0;
  }

  .privacy .policy-content .policy-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 992px) {
  .faq .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.faq .faq-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}

@media (max-width: 992px) {
  .faq .faq-categories {
    position: static;
  }
}

.faq .faq-categories .nav-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: none;
  width: 100%;
}

@media (max-width: 992px) {
  .faq .faq-categories .nav-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.faq .faq-categories .nav-tabs .nav-item {
  width: 100%;
}

@media (max-width: 992px) {
  .faq .faq-categories .nav-tabs .nav-item {
    flex: 1;
    min-width: 140px;
    width: auto;
  }
}

.faq .category-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface-color);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  width: 100%;
  text-align: left;
}

@media (max-width: 992px) {
  .faq .category-card {
    padding: 16px 20px;
  }
}

@media (max-width: 576px) {
  .faq .category-card {
    padding: 14px 16px;
    gap: 12px;
  }
}

.faq .category-card:hover {
  border-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .faq .category-card:hover {
    transform: translateY(-4px);
  }
}

.faq .category-card.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.faq .category-card.active .category-icon {
  background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
  color: var(--contrast-color);
}

.faq .category-card.active .category-info h5 {
  color: var(--contrast-color);
}

.faq .category-card.active .category-info span {
  color: color-mix(in srgb, var(--contrast-color) 80%, transparent);
}

.faq .category-card .category-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  border-radius: 12px;
  color: var(--accent-color);
  font-size: 22px;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .faq .category-card .category-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 10px;
  }
}

.faq .category-card .category-info h5 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .faq .category-card .category-info h5 {
    font-size: 14px;
  }
}

.faq .category-card .category-info span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .faq .category-card .category-info span {
    font-size: 12px;
  }
}

.faq .help-box {
  margin-top: 24px;
  padding: 28px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 10%, transparent) 0%, color-mix(in srgb, var(--accent-color) 5%, transparent) 100%);
  border-radius: 16px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--accent-color) 20%, transparent);
}

@media (max-width: 992px) {
  .faq .help-box {
    flex-basis: 100%;
    margin-top: 12px;
  }
}

.faq .help-box .help-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 24px;
}

.faq .help-box h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
}

.faq .help-box p {
  margin: 0 0 20px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  line-height: 1.6;
}

.faq .help-box .help-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq .help-box .help-link i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq .help-box .help-link:hover {
  gap: 12px;
}

.faq .help-box .help-link:hover i {
  transform: translateX(4px);
}

.faq .faq-content-area .faq-header-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.faq .faq-content-area .faq-header-info .questions-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  padding: 8px 16px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  border-radius: 20px;
}

.faq .faq-content-area .faq-header-info .search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--surface-color);
  border-radius: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  transition: all 0.3s ease;
}

.faq .faq-content-area .faq-header-info .search-box:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.faq .faq-content-area .faq-header-info .search-box i {
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  font-size: 18px;
}

.faq .faq-content-area .faq-header-info .search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: var(--default-color);
  width: 200px;
}

.faq .faq-content-area .faq-header-info .search-box input::placeholder {
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

@media (max-width: 576px) {
  .faq .faq-content-area .faq-header-info .search-box input {
    width: 140px;
  }
}

.faq .tab-content .tab-pane.show {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq .faq-item {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
}

.faq .faq-item:hover {
  border-color: color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.faq .faq-item.faq-active {
  border-color: var(--accent-color);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--accent-color) 12%, transparent);
}

.faq .faq-item.faq-active .faq-question {
  background: color-mix(in srgb, var(--accent-color) 5%, transparent);
}

.faq .faq-item.faq-active .faq-question .question-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-question .toggle-icon {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px 76px;
  opacity: 1;
}

@media (max-width: 576px) {
  .faq .faq-item.faq-active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

.faq .faq-item .faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.5;
}

@media (max-width: 576px) {
  .faq .faq-item .faq-question {
    padding: 18px 20px;
    gap: 12px;
    font-size: 15px;
  }
}

.faq .faq-item .faq-question .question-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .faq .faq-item .faq-question .question-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

.faq .faq-item .faq-question .toggle-icon {
  flex-shrink: 0;
  margin-left: auto;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  font-size: 20px;
  transition: all 0.4s ease;
}

@media (max-width: 576px) {
  .faq .faq-item .faq-question .toggle-icon {
    font-size: 16px;
  }
}

.faq .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px 0 76px;
  opacity: 0;
  transition: all 0.4s ease;
}

@media (max-width: 576px) {
  .faq .faq-item .faq-answer {
    padding: 0 20px 0 20px;
  }
}

.faq .faq-item .faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color) 75%, transparent);
}

@media (max-width: 576px) {
  .faq .faq-item .faq-answer p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Terms Of Service 2 Section
--------------------------------------------------------------*/
.terms-of-service-2 .tos-header {
  margin-bottom: 60px;
}

.terms-of-service-2 .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service-2 .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service-2 .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service-2 .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service-2 .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service-2 .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service-2 .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service-2 .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service-2 .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service-2 .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service-2 .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service-2 .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service-2 .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service-2 .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service-2 .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service-2 .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service-2 .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service-2 .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service-2 .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service-2 .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service-2 .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service-2 .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service-2 .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service-2 .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service-2 .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service-2 .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service-2 .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service-2 .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service-2 .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service-2 .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service-2 .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service-2 .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service-2 .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service-2 .tos-contact {
  margin-top: 60px;
}

.terms-of-service-2 .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service-2 .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service-2 .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service-2 .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service-2 .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service-2 .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service-2 .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service-2 .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service-2 .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service-2 .tos-contact {
    display: none;
  }

  .terms-of-service-2 .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Terms Of Service 4 Section
--------------------------------------------------------------*/
.terms-of-service-4 .tos-header {
  margin-bottom: 60px;
}

.terms-of-service-4 .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service-4 .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service-4 .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service-4 .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service-4 .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service-4 .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service-4 .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service-4 .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service-4 .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service-4 .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service-4 .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service-4 .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service-4 .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service-4 .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service-4 .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service-4 .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service-4 .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service-4 .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service-4 .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service-4 .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service-4 .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service-4 .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service-4 .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service-4 .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service-4 .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service-4 .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service-4 .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service-4 .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service-4 .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service-4 .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service-4 .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service-4 .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service-4 .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service-4 .tos-contact {
  margin-top: 60px;
}

.terms-of-service-4 .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service-4 .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service-4 .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service-4 .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service-4 .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service-4 .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service-4 .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service-4 .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service-4 .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service-4 .tos-contact {
    display: none;
  }

  .terms-of-service-4 .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .hero-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-2 .hero-banner img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.about-2 .hero-banner .banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(to top, color-mix(in srgb, var(--accent-color), transparent 10%), transparent);
}

@media (max-width: 768px) {
  .about-2 .hero-banner .banner-overlay {
    gap: 1.5rem;
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .about-2 .hero-banner .banner-overlay {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

.about-2 .hero-banner .stat-badge {
  text-align: center;
  color: var(--contrast-color);
}

.about-2 .hero-banner .stat-badge .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .about-2 .hero-banner .stat-badge .number {
    font-size: 2rem;
  }
}

.about-2 .hero-banner .stat-badge .label {
  display: block;
  font-size: 13px;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.about-2 .narrative .tag-line {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 40px;
}

.about-2 .narrative .tag-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.about-2 .narrative h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: var(--heading-color);
}

.about-2 .narrative p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 1rem;
}

.about-2 .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

@media (max-width: 576px) {
  .about-2 .feature-grid {
    grid-template-columns: 1fr;
  }
}

.about-2 .feature-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.about-2 .feature-grid .feature-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.about-2 .feature-grid .feature-item i {
  font-size: 1.1rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.about-2 .feature-grid .feature-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
}

.about-2 .action-buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.about-2 .action-buttons .btn-accent {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-2 .action-buttons .btn-accent:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.about-2 .action-buttons .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-2 .action-buttons .btn-ghost i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.about-2 .action-buttons .btn-ghost:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
}

.about-2 .action-buttons .btn-ghost:hover i {
  transform: translateX(4px);
}

.about-2 .image-stack {
  position: relative;
  padding-left: 30px;
  padding-bottom: 30px;
}

@media (max-width: 992px) {
  .about-2 .image-stack {
    padding-left: 0;
    padding-bottom: 60px;
  }
}

.about-2 .image-stack .stack-main {
  position: relative;
  z-index: 1;
}

.about-2 .image-stack .stack-main img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-2 .image-stack .stack-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  z-index: 2;
}

@media (max-width: 992px) {
  .about-2 .image-stack .stack-secondary {
    width: 40%;
    bottom: 10px;
    left: 10px;
  }
}

.about-2 .image-stack .stack-secondary img {
  width: 100%;
  border-radius: 8px;
  border: 4px solid var(--surface-color);
  box-shadow: 0 6px 25px color-mix(in srgb, var(--default-color), transparent 80%);
}

.about-2 .image-stack .years-ribbon {
  position: absolute;
  top: 20px;
  right: -10px;
  z-index: 3;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 6px 0 0 6px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.about-2 .image-stack .years-ribbon strong {
  font-size: 1.3rem;
  font-weight: 700;
}

.about-2 .image-stack .years-ribbon::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-width: 5px;
  border-style: solid;
  border-color: color-mix(in srgb, var(--accent-color), black 30%) transparent transparent color-mix(in srgb, var(--accent-color), black 30%);
}

@media (max-width: 992px) {
  .about-2 .image-stack .years-ribbon {
    right: 0;
    border-radius: 6px;
  }

  .about-2 .image-stack .years-ribbon::after {
    display: none;
  }
}

.about-2 .highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background-color: var(--surface-color);
  border-radius: 10px;
  height: 100%;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 2px 15px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.about-2 .highlight-card:hover {
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  transform: translateY(-3px);
}

.about-2 .highlight-card .card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.about-2 .highlight-card .card-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.about-2 .highlight-card .card-body h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.about-2 .highlight-card .card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
  margin: 0;
}

.about-2 .partners-strip {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 10px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .about-2 .partners-strip {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
  }
}

.about-2 .partners-strip .strip-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  white-space: nowrap;
  font-family: var(--heading-font);
  min-width: fit-content;
}

.about-2 .partners-strip .strip-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-around;
  flex: 1;
}

@media (max-width: 768px) {
  .about-2 .partners-strip .strip-logos {
    gap: 1rem;
    justify-content: center;
  }
}

.about-2 .partners-strip .logo-item img {
  max-height: 60px;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.about-2 .partners-strip .logo-item img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 992px) {
  .about-2 .narrative {
    margin-top: 1rem;
  }
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Categories Widget Widget
--------------------------------------------------------------*/
.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}


/*--------------------------------------------------------------
# Blog astuces
--------------------------------------------------------------*/

.custom-blog-card {
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.custom-blog-card:hover {
  transform: translateY(-6px);
}

.card-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.post-img img {
  width: 100%;
  display: block;
}

.card-body-custom {
  background: #5c3b8c;
  padding: 20px;
  color: #ffffff;
}

.card-title {
  font-size: 18px;
  font-weight: 400; /* pas en gras */
  margin-bottom: 20px;
}

.card-footer-custom {
  display: flex;
  justify-content: flex-end; /* aligné à droite */
  font-size: 14px;
}

.read-more {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--heading-color);
  font-weight: 500;
}

.post-meta i {
  color: var(--accent-color);
  margin-right: 6px;
}

.meta-separator {
  opacity: 0.5;
}


.article-featured-image img:empty,
.article-featured-image img:not([src]),
.article-featured-image img[src=""] {
  display: none;
}


/* =========================
   Barre de recherche Rivertown
========================= */

.search-form {
  max-width: 600px;
  margin: 0 auto;
}

.search-form .input-group {
  border-radius: 50px;
  overflow: hidden;
  background: #2d0f5c; /* violet foncé */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.search-form .form-control {
  background: #3b1772;
  border: none;
  color: #ffffff;
  padding: 14px 22px;
  font-size: 15px;
}

.search-form .form-control::placeholder {
  color: rgba(255,255,255,0.6);
}

.search-form .form-control:focus {
  background: #421a80;
  color: #ffffff;
  box-shadow: none;
}

.search-form .btn {
  background: #B02BF0;
  border: none;
  padding: 0 22px;
  transition: 0.3s ease;
}

.search-form .btn:hover {
  background: #c84cff;
}

/* ===============================
   Alert style Rivertown RP
================================ */

.alert {
  padding: 16px 20px;
  border-radius: 10px;
  margin: 25px 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.alert-warning {
  background: rgba(255, 193, 7, 0.15);
  border-left: 4px solid #ffc107;
  color: #ffc107;
}

.alert-warning strong {
  color: #ffc107;
}

/* Responsive */
@media (max-width: 768px) {
  .alert {
    padding: 14px;
    font-size: 14px;
  }
}

/* ===============================
   GUIDE JOUER A GTA RP
================================ */

.guide-page .guide-image {
	margin-top: 10px;
	margin-bottom: 10px;
}

.guide-page .guide-img {
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	width: 100%;
	height: auto;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ===============================
   TOP VOTES PAGE
================================ */

.top-votes-page .tv-intro h2 {
  font-size: 2rem;
  margin-bottom: 22px;
}

.top-votes-page .tv-intro p {
  max-width: 1050px;
  line-height: 1.65;
  margin-bottom: 14px;
  color: #f1eaff;
}

.top-votes-page .tv-vote-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  color: #ffb703;
  font-weight: 700;
}

.top-votes-page .tv-vote-link:hover {
  color: #ffd166;
}

.top-votes-page .tv-board {
  border-radius: 12px;
  overflow: hidden;
  background: #432392;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.top-votes-page .tv-board-head {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 1.6fr) minmax(92px, 0.7fr);
  gap: 12px;
  align-items: center;
  padding: 22px 24px;
  font-size: 1rem;
  font-weight: 600;
  background: #4a2aa1;
}

.top-votes-page .tv-board-head .tv-head-item:first-child {
  padding-left: 42px;
}

.top-votes-page .tv-board-head .tv-head-item:nth-child(2) {
  text-align: left;
}

.top-votes-page .tv-rows {
  width: 100%;
}

.top-votes-page .tv-row {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 1.6fr) minmax(92px, 0.7fr);
  gap: 12px;
  align-items: center;
  padding: 16px 24px;
  border-top: 1px solid #e88417;
  font-size: 0.98rem;
}

.top-votes-page .tv-col-reward,
.top-votes-page .tv-col-player {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.top-votes-page .tv-col-reward {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  column-gap: 10px;
}

.top-votes-page .tv-col-votes {
  text-align: right;
  font-size: 1.35rem;
  font-weight: 700;
}

.top-votes-page .tv-rank {
  font-size: 1.2rem;
  font-weight: 700;
  width: 32px;
  text-align: center;
  flex: 0 0 auto;
}

.top-votes-page .tv-player-name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-votes-page .tv-player-id {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.top-votes-page .tv-row.is-top1 {
  color: #ffc300;
  text-shadow: 0 0 10px rgba(255, 195, 0, 0.35);
}

.top-votes-page .tv-row.is-top2 {
  color: #dfdfdf;
  text-shadow: 0 0 10px rgba(223, 223, 223, 0.3);
}

.top-votes-page .tv-row.is-top3 {
  color: #f2a65a;
  text-shadow: 0 0 10px rgba(242, 166, 90, 0.32);
}

.top-votes-page .tv-row.is-top4,
.top-votes-page .tv-row.is-top5 {
  color: #65d6ff;
  text-shadow: 0 0 10px rgba(101, 214, 255, 0.35);
}

.top-votes-page .tv-empty {
  padding: 22px 24px;
  border-top: 1px solid #e88417;
}

.top-votes-page .tv-alert {
  margin: 0;
  border-radius: 0;
  justify-content: flex-start;
}

.top-votes-info h2,
.top-votes-credits h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.top-votes-info p {
  line-height: 1.7;
  max-width: 1050px;
}

.top-votes-info strong {
  color: #ffb703;
}

.top-votes-info .tv-why h3 {
  font-size: 2rem;
  margin-bottom: 22px;
}

.top-votes-info .tv-why ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-votes-info .tv-why li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.top-votes-info .tv-why li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: -2px;
  color: #ffb703;
  font-size: 1rem;
}

.top-votes-credits .tv-credit-box {
  background: #0d0328;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 28px 30px;
}

.top-votes-credits .tv-credit-box p {
  font-size: 1rem;
  line-height: 1.6;
}

.top-votes-credits .tv-credit-box a {
  color: #ffb703;
  font-weight: 700;
}

@media (max-width: 991px) {
  .top-votes-page .tv-board-head,
  .top-votes-page .tv-row {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr) minmax(84px, 0.6fr);
    font-size: 0.9rem;
  }

  .top-votes-page .tv-rank {
    font-size: 1rem;
  }

  .top-votes-page .tv-col-votes,
  .top-votes-page .tv-player-name {
    font-size: 1rem;
  }

  .top-votes-info h2,
  .top-votes-info .tv-why h3,
  .top-votes-credits h2 {
    font-size: 1.5rem;
  }

  .top-votes-info .tv-why li,
  .top-votes-credits .tv-credit-box p,
  .top-votes-page .tv-vote-link {
    font-size: 0.98rem;
  }
}

@media (max-width: 767px) {
  .top-votes-page .tv-board {
    overflow-x: auto;
  }

  .top-votes-page .tv-board-head,
  .top-votes-page .tv-row {
    min-width: 760px;
  }

  .top-votes-page .tv-intro h2 {
    font-size: 1.75rem;
  }
}

/* ===============================
   VIP AVANTAGES PAGE
================================ */

.vip-benefits .vip-intro {
  max-width: 940px;
  margin: 0 auto;
}

.vip-benefits .vip-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 82%);
  color: #e9d5ff;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.vip-benefits .vip-intro h2 {
  font-size: 2.1rem;
  margin-bottom: 18px;
}

.vip-benefits .vip-intro p {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.65;
  color: #efe7ff;
}

.vip-benefits .vip-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.vip-benefits .vip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.vip-benefits .vip-card {
  background: #3f208c;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vip-benefits .vip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.vip-benefits .vip-card .vip-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.3rem;
  background: color-mix(in srgb, #ffb703, transparent 85%);
  color: #ffd166;
}

.vip-benefits .vip-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.vip-benefits .vip-card p {
  margin: 0;
  color: #f1eaff;
  line-height: 1.6;
}

.vip-details .vip-panel {
  background: #23084f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px;
}

.vip-details .vip-panel h3 {
  font-size: 1.55rem;
  margin-bottom: 16px;
}

.vip-details .vip-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vip-details .vip-panel ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.vip-details .vip-panel ul li:last-child {
  margin-bottom: 0;
}

.vip-details .vip-panel ul li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffb703;
}

.vip-details .vip-highlight {
  background: linear-gradient(145deg, #5224b5 0%, #2b0d61 100%);
}

.vip-details .vip-highlight p {
  line-height: 1.7;
  margin-bottom: 18px;
  color: #f1eaff;
}

.vip-details .vip-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffb703;
  font-weight: 700;
}

.vip-details .vip-link:hover {
  color: #ffd166;
}

@media (max-width: 991px) {
  .vip-benefits .vip-grid {
    grid-template-columns: 1fr;
  }

  .vip-benefits .vip-intro h2,
  .vip-details .vip-panel h3 {
    font-size: 1.6rem;
  }
}

/*--------------------------------------------------------------
# Auth Pages
--------------------------------------------------------------*/
.auth-page {
  position: relative;
  padding-top: 56px !important;
  padding-bottom: 72px !important;
}

.auth-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, color-mix(in srgb, var(--accent-color), transparent 84%) 0%, transparent 38%),
    radial-gradient(circle at 90% 80%, color-mix(in srgb, #ffb703, transparent 90%) 0%, transparent 36%);
  opacity: 0.9;
}

.auth-page .container {
  position: relative;
  z-index: 1;
}

.auth-page-title p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.auth-panel {
  background: linear-gradient(
      165deg,
      color-mix(in srgb, var(--surface-color), #ffffff 4%) 0%,
      color-mix(in srgb, var(--surface-color), #000000 6%) 100%
    );
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%) !important;
  border-radius: 16px;
  box-shadow: 0 18px 48px color-mix(in srgb, #000000, transparent 70%);
}

.auth-panel-body {
  color: var(--default-color);
}

.auth-copy {
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  font-size: 1.15rem;
}

.auth-alert {
  background-color: color-mix(in srgb, #ef4444, transparent 82%);
  border-color: color-mix(in srgb, #ef4444, transparent 55%);
  color: #ffe4e6;
}

.auth-link {
  color: #c4b5fd;
  font-size: 1.05rem;
}

.auth-link:hover {
  color: #ddd6fe;
}

.auth-primary-btn {
  min-width: 260px;
}

.auth-secondary-btn {
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 65%);
}

.auth-secondary-btn:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 76%);
  border-color: color-mix(in srgb, var(--default-color), transparent 55%);
}

.auth-avatar {
  border: 3px solid color-mix(in srgb, var(--default-color), transparent 72%);
  box-shadow: 0 10px 24px color-mix(in srgb, #000000, transparent 72%);
}

.auth-display-name {
  color: var(--heading-color);
  text-shadow: 0 1px 0 color-mix(in srgb, #000000, transparent 70%);
}

.account-shell .account-content-panel {
  height: 100%;
}

.account-sidebar {
  position: sticky;
  top: 105px;
}

.account-sidebar-user {
  padding-bottom: 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.account-sidebar-avatar {
  margin-bottom: 12px;
}

.account-sidebar-name {
  font-size: 1.35rem;
  color: var(--heading-color);
  word-break: break-word;
}

.account-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.account-sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 8%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: color-mix(in srgb, var(--surface-color), #000000 8%);
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.account-sidebar-link i {
  font-size: 1rem;
}

.account-sidebar-link:hover {
  color: var(--contrast-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 48%);
  background: color-mix(in srgb, var(--accent-color), transparent 72%);
}

.account-sidebar-link.active {
  color: var(--contrast-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 38%);
  background: color-mix(in srgb, var(--accent-color), transparent 66%);
}

.account-sidebar-link-danger:hover {
  border-color: color-mix(in srgb, #ef4444, transparent 52%);
  background: color-mix(in srgb, #ef4444, transparent 76%);
}

.account-content-title h2,
.account-content-title p {
  text-align: inherit;
}

.auth-account-actions {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.auth-action-btn {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border-radius: 12px;
}

.auth-account-actions .auth-primary-btn.btn-rejoindre-custom {
  transform: none;
}

.auth-account-actions .auth-primary-btn.btn-rejoindre-custom:hover {
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .auth-page {
    padding-top: 30px !important;
    padding-bottom: 36px !important;
  }

  .auth-copy {
    font-size: 1rem;
  }

  .auth-primary-btn {
    min-width: 0;
    width: 100%;
  }

  .account-sidebar {
    position: static;
  }

  .account-sidebar-name {
    font-size: 1.2rem;
  }

  .auth-account-actions {
    max-width: 100%;
  }
}
