:root {
  --red: #d32f2f;
  --dark-red: #b71c1c;
  --dark-bg: #1f1f1f;
  --surface-bg: #2a2a2a;
  --white: #ffffff;
  --gray-text: #aaa;
  --light-text: #f1f1f1;
  --color-accent: var(--red);
  --color-accent-hover: var(--dark-red);
  --color-bg: var(--dark-bg);
  --color-surface: var(--surface-bg);
  --color-text: var(--light-text);
  --color-muted: var(--gray-text);
  --radius: 10px;
  --transition: 0.3s ease;
}

/* Reset & Base */

section.video-section,
#imageContainer {
  flex: 1;
}

/* ==========================================================
   NAVBAR & SEARCH
   ========================================================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: var(--color-bg);
  padding: 0.8rem 1.2rem;
  position: relative;
  z-index: 100;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  height: 40px;
  object-fit: contain;
  transition: transform var(--transition);
}

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

@media (max-width: 480px) {
  .logo-img {
    height: 29px;
  }
}

/* Nav Links */
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-accent);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropbtn {
  background: none;
  color: var(--white);
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #222;
  min-width: 160px;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.dropdown-content a {
  color: var(--white);
  padding: 10px 14px;
  display: block;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: var(--color-accent);
}

.show {
  display: block;
}

/* Auth Buttons */
.auth-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.signup-btn {
  background: var(--color-accent);
  color: var(--white);
}

.signup-btn:hover {
  background: var(--color-accent-hover);
}

.login-btn {
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

.login-btn:hover {
  background: var(--color-accent);
  color: var(--white);
}

/* Search */
.search-container {
  display: flex;
  align-items: center;
  position: relative;
}

.search-input {
  width: 0;
  opacity: 0;
  padding: 0.4rem 0.6rem;
  border: none;
  border-radius: 4px;
  background: var(--surface-bg);
  color: var(--white);
  transition: width var(--transition), opacity var(--transition);
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.search-img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: transform var(--transition), filter var(--transition);
}

.search-btn:hover .search-img {
  transform: scale(1.1);
  filter: invert(39%) sepia(74%) saturate(6182%) hue-rotate(348deg) brightness(90%) contrast(96%);
}

.search-container.active .search-input {
  width: 140px;
  opacity: 1;
  margin-right: 0.5rem;
}

/* Mobile Navbar */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  margin-left: 1rem;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .navbar-inner {
    flex-wrap: wrap;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--color-bg);
    padding: 1rem 0;
    border-top: 1px solid #333;
    order: 3;
  }
  
  .nav-links.active {
    display: flex;
    animation: fadeIn 0.3s ease;
  }
  
  .menu-toggle {
    display: flex;
    order: 1;
    margin-left: auto;
  }
  
  .search-container {
    width: 100%;
    justify-content: flex-end;
    order: 2;
    margin-top: 0.5rem;
  }
  
  .search-container.active .search-input {
    width: 100%;
  }
}

/* ==========================================================
   VIDEO GRID & GALLERY
   ========================================================== */
.video-grid,
.results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.5rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  
  .video-grid,
  .results {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.video-card {
  background: #1e1e1e;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.video-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 2px solid var(--surface-bg);
}

.video-info {
  background: var(--surface-bg);
  padding: 0.7rem 0.8rem;
  text-align: center;
}

.video-info .title {
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--color-text);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-info .meta {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* ==========================================================
   FIX: Align "Latest Videos" header with video grid
   ========================================================== */
.video-gallery,
#userGallery {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.video-gallery .gallery-header,
#userGallery .gallery-header {
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  
  .video-gallery,
  #userGallery {
    padding: 0 0.8rem;
  }
}

/* ==========================================================
   ADD BUTTON ALIGNMENT FIX (right-aligned with grid)
   ========================================================== */

/* Header container for title + button */
#userGallery .gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
  /* keeps consistent with grid edges */
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.add-btn {
  background: var(--color-accent);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background var(--transition);
}

.add-btn:hover {
  background: var(--color-accent-hover);
}

/* Responsive stacking for smaller screens */
@media (max-width: 768px) {
  #userGallery .gallery-header {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.8rem;
    padding: 0 0.8rem;
  }
  
  #userGallery .add-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* =============================
   VIDEO PAGE
============================= */
.video-page {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 5px;
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  border-radius: 5px;
  margin-top: 10px;
  max-width: 900px;
}

.video-info h2 {
  color: rgba(var(--root-T));
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.video-info p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* =============================
   RESPONSIVE
============================= */
@media (min-width: 768px) {
  .video-info h2 {
    font-size: 1.3rem;
  }
  
  .video-info p {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .video-page {
    padding: 2rem;
  }
}

/* ==========================================================
   MODALS (AGE & AUTH)
   ========================================================== */
.age-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 31, 31, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.age-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.age-modal {
  background: #1e1e1e;
  color: #fff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transform: translateY(-20px);
  opacity: 0;
  animation: modalFadeIn 0.5s forwards;
}

.age-image {
  width: 100px;
  /* Adjust size */
  height: auto;
  display: block;
  margin: 0 auto 15px auto;
  /* Center the image and add space below */
  border-radius: 10px;
  /* Optional: rounded corners */
}


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

.age-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #d32f2f;
}

.age-modal p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

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

.age-buttons .btn {
  flex: 1 1 120px;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-btn {
  background: #444;
  color: #fff;
}

.back-btn:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.confirm-btn {
  background: #d32f2f;
  color: #fff;
}

.confirm-btn:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* MOBILE-FIRST RESPONSIVE */
@media (max-width: 480px) {
  .age-modal h2 {
    font-size: 1.3rem;
  }
  
  .age-modal p {
    font-size: 0.95rem;
  }
}

/* ==============================
   AUTH MODALS (Sign Up & Login)
============================== */
/* ==========================================================
   AUTH MODALS (Merged + Optimized)
   ========================================================== */

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

/* ===== MODAL CONTENT ===== */
.modal-content {
  background: #1c1c1c;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 420px;
  color: #fff;
  position: relative;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.25);
  text-align: center;
  animation: fadeInUp 0.4s ease;
}

.modal-content h2 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  color: #fff;
}

/* ===== CLOSE BUTTON ===== */
.close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 1.7rem;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #ff3333;
}

/* ===== FORM STYLES ===== */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.form-group label {
  font-size: 0.9rem;
  color: #ccc;
  letter-spacing: 0.3px;
}

.form-group input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 0.6rem;
  border: none;
  background: #2a2a2a;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border 0.2s ease, background 0.2s ease;
}

.form-group input:focus {
  border: 1px solid #ff0000;
  background: #1f1f1f;
}

/* ===== SUBMIT BUTTON ===== */
.submit-btn,
.btn.submit-btn {
  background: #8b0000;
  color: #fff;
  font-weight: 600;
  padding: 1rem;
  border: none;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 0.5rem;
  width: 100%;
}

.submit-btn:hover,
.btn.submit-btn:hover {
  background: #ff0000;
  transform: translateY(-1px);
}

/* ===== SOCIAL LOGIN ===== */
.social-signup {
  margin-top: 1.5rem;
}

.social-signup p {
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: #ccc;
  letter-spacing: 0.3px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.3s ease;
}

.social-btn img {
  width: 100%;
  height: 100%;
  padding: 6px;
  border-radius: 50%;
  background: #2a2a2a;
  transition: background 0.3s ease;
}

.social-btn:hover img {
  background: #ff3333;
}

.social-btn:hover {
  transform: scale(1.1);
}

/* ===== SWITCH TEXT ===== */
.switch-text {
  text-align: center;
  font-size: 0.95rem;
  color: #bbb;
  margin-top: 1.8rem;
  line-height: 1.6;
}

.switch-text a {
  color: #ff3333;
  text-decoration: none;
  font-weight: 500;
}

.switch-text a:hover {
  text-decoration: underline;
}

/* ===== MOBILE FIRST ===== */
@media (max-width: 480px) {
  .modal-content {
    padding: 2rem 1.5rem;
    width: 90%;
  }
  
  .modal-content h2 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }
  
  .form-group input {
    padding: 0.8rem 0.9rem;
  }
  
  .submit-btn {
    padding: 0.9rem;
  }
  
  .social-btn {
    width: 42px;
    height: 42px;
  }
}

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

/* ==========================================================
   ANIMATIONS
   ========================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================
   VIDEO SECTIONS (Trending, Featured, Recently Added)
   ========================================================== */

/* Wrapper for all video sections */
.video-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Each category (Trending, Featured, Recently Added) */
.video-category {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Section Titles — match Latest Videos style */
.video-category h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  /* match Latest Videos title color */
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  border-left: none;
  /* removed red stripe to match Latest Videos */
  padding-left: 0;
}

/* Video Grids (reuse global grid rules) */
.video-category .video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .video-category .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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



















/*<--[ ROOT ]-->*/

:root {
  --root: 255, 15, 0;
  --root-XCB: 0, 0, 0;
  --root-XCW: 255, 255, 255;
  --root-S: 10px;
  --root-XS: 15px;
  --root-FS: 12px;
  --root-FN: 13.8px;
  --root-FB: 14px;
  --root-FM: 16px;
  --root-FWS: 400;
  --root-FWN: 500;
  --root-FWB: 600;
  --root-FWM: 700;
  
  --root-T: 255, 255, 255;
  --root-OL: 77, 77, 77;
  --root-SG: 51, 51, 51;
  --root-FG: 26, 26, 26;
  --root-BG: 0, 0, 0;
}

* {
  margin: 0;
  padding: 0;
  color: rgb(var(--root-T));
  font-family: 'Roboto Flex', sans-serif;
  box-sizing: border-box;
  image-rendering: smooth;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

::placeholder {
  color: rgba(var(--root-T), 0.65);
}

body {
  overflow: auto;
  min-width: 330px;
  background: rgb(var(--root-BG));
}

a {
  text-decoration: none
}

/*<--[ HEADER ]-->*/

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--root-S);
  background: rgba(var(--root-FG));
}

.AH10000000 {
  position: relative;
}

.AH20000000 {
  width: auto;
  height: 40px;
}

.AH20000000 img {
  height: 100%;
  width: auto;
  transition: transform 0.3s ease;
}

.AH20000000 img:hover {
  transform: scale(1.05);
}

.AH30000000 {
  height: 40px;
}

/*<--[ MAIN ]-->*/

main {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.AM10000000 {
  padding: var(--root-S);
  width: 100%;
  max-width: 1380px;
  height: 100%;
  min-height: 100vh;
  position: relative;
}

/*<--[ SECTION ]-->*/

section {
  margin-bottom: var(--root-S);
}

section:last-child {
  margin-bottom: 0;
}


/*<--[ AOLD ]-->*/

.AO10000000 {
  border: 0;
  outline: 0;
}

.AO10000000 .AO11000000 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--root-S);
}

.AO10000000 .AO11000000 .AO11100000 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.AO10000000 .AO11000000 .AO11100000 svg {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}

.AO10000000 .AO11000000 .AO11100000 svg path {
  color: rgb(var(--root));
}

.AO10000000 .AO11000000 .AO11100000 h1 {
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
  color: rgb(var(--root-T));
}

.AO10000000 .AO11000000 .AO11200000 {
  display: flex;
  align-items: center;
}

.AO10000000 .AO11000000 .AO11200000 svg {
  width: 24px;
  height: 24px;
}

.AO10000000 .AO11000000 .AO11200000 svg path {
  color: rgb(var(--root-T));
}

.AO10000000 .AO12000000 {
  display: grid;
  grid-gap: var(--root-S);
  grid-row-gap: var(--root-S);
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  animation: 150ms AO12000000;
}

@keyframes AO12000000 {
  0% {
    opacity: 0;
    transform: translateY(-(var(--root-S)));
  }
  
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.AO10000000 .AO12000000 .AO12100000 {
  display: flex;
  border-radius: 5px;
  flex-direction: column;
  transition: transform 250ms, opacity 250ms
}

.AO10000000 .AO12000000 .AO12100000 .AO12110000 {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  padding-bottom: 56.25%;
  /*    border: 1px solid rgb(var(--root-OL));*/
}

.AO10000000 .AO12000000 .AO12100000 .AO12110000 img {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: center;
}

.AO10000000 .AO12000000 .AO12100000 .AO12110000 img.blur {
  filter: blur(10px)
}

br {
  display: none;
}

.AO10000000 .AO12000000 .AO12100000 .AO12110000 .AO12111000 {
  position: absolute;
  font-size: 12px;
  font-weight: 500;
  margin: 10px;
  padding: 5px;
  border-radius: 3px;
  color: rgb(var(--root-T));
  background: rgba(0, 0, 0, .75);
  bottom: 0;
  right: 0
}

.AO10000000 .AO12000000 .AO12100000 .AO12120000 {
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: rgba(var(--root-T))
}

.AO10000000 .AO12000000 .AO12100000 .AO12130000 {
  display: flex
}

.AO10000000 .AO12000000 .AO12100000 .AO12130000 .AO12131000 {
  width: 36px;
  height: 36px;
  margin-right: 12px;
  border-radius: 50%;
}

.AO10000000 .AO12000000 .AO12100000 .AO12130000 .AO12131000 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.AO10000000 .AO12000000 .AO12100000 .AO12130000 .AO12132000 {
  overflow-x: auto;
}

.AO10000000 .AO12000000 .AO12100000 .AO12130000 .AO12132000 .AO12132100 {
  overflow: hidden;
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(var(--root));
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.AO10000000 .AO12000000 .AO12100000 .AO12130000 .AO12132000 .AO12132200 {
  font-size: 12px;
  font-weight: 500;
  color: rgb(var(--root-T))
}

.abbreviate {
  color: inherit;
  display: inline-block
}

time {
  color: inherit
}


/* ==========================================================
   FOOTER
   ========================================================== */
footer {
  background: #111;
  color: var(--light-text);
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid #222;
  margin-top: auto;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 1rem;
  transition: transform var(--transition);
}

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

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--gray-text);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-content p {
  font-size: 0.85rem;
  margin: 0.4rem 0;
  color: rgba(var(--root-T));
}
