﻿/* Site layout: header, footer, base theme. Shared by all pages. */

:root {
  --ufs-accent: #ff7200;
  --ufs-accent-dark: #d66000;
  --ufs-bg: #1c1c1c;
  --ufs-block: #2d2d2d;
  --ufs-discord: #7289da;
}

/* Base */
html {
  height: 100%;
  overflow-x: hidden;
}
body {
  background-color: var(--ufs-bg);
  color: #ffffff;
  font-family: "Ebrima", sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  padding-top: 60px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/* Global form control rounding to match old site */
.form-control,
.form-select {
  border-radius: 2px;
}

/* Custom scrollbar to match old site */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px var(--ufs-accent-dark);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--ufs-accent);
  -webkit-box-shadow: inset 0 0 2px var(--ufs-accent-dark);
}

/* Remove default blue focus glow from buttons (match old site) */
.btn:focus,
.btn:active,
.btn:focus-visible,
.btn:active:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Header / Navbar */
.site-navbar {
  display: flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  background-color: var(--ufs-bg);
  min-height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.site-logo {
  flex-shrink: 0;
}
.site-logo img {
  height: 40px;
  display: block;
}
.site-nav-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}
.site-nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 2rem;
  flex-grow: 1;
}
.site-nav-auth {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-nav-links a,
.site-nav-links a:link,
.site-nav-links a:visited {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s, font-weight 0.2s;
  font-weight: 400;
}
.site-nav-links a:hover,
.site-nav-links a:focus,
.site-nav-links a:active {
  color: var(--ufs-accent);
  background: rgba(255, 114, 0, 0.1);
  text-decoration: none;
}
.site-dropdown {
  position: relative;
}
.site-dropdown-toggle {
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  transition: color 0.2s, background 0.2s;
  border: none;
  background: none;
  font-size: inherit;
}
.site-dropdown-toggle:hover {
  color: var(--ufs-accent);
  background: rgba(255, 114, 0, 0.1);
}
.site-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ufs-block);
  border: 1px solid rgba(255, 114, 0, 0.3);
  border-radius: 8px;
  padding: 0.5rem;
  min-width: 160px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  list-style: none;
  margin: 0;
}
.site-dropdown:hover .site-dropdown-menu {
  display: block;
}
.site-dropdown-menu a,
.site-dropdown-menu a:link,
.site-dropdown-menu a:visited,
.site-dropdown-menu button {
  display: block;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-radius: 4px;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  font-size: inherit;
}
.site-dropdown-menu a:hover {
  background: var(--ufs-accent);
  color: white;
}
.site-dropdown-menu button {
  color: #dc3545;
}
.site-dropdown-menu button:hover {
  background: #dc3545;
  color: white;
}
.site-dropdown-end {
  left: auto;
  right: 0;
}

/* Hamburger */
.site-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  z-index: 10000;
}

.site-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.site-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 768px) {
  .site-hamburger {
    display: flex;
  }

  .site-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ufs-bg);
    border-bottom: 1px solid rgba(255,114,0,0.15);
    padding: 0.75rem 1.5rem;
    gap: 0.25rem;
    z-index: 9998;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  }

  .site-nav-links.open {
    display: flex;
  }

  .site-nav-links a {
    padding: 0.65rem 0.5rem;
    width: 100%;
  }

  .site-dropdown {
    width: 100%;
  }

  .site-dropdown-toggle {
    padding: 0.65rem 0.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .site-dropdown-toggle::after {
    content: "\25BC";
    font-size: 0.6rem;
    color: rgba(255,255,255,0.4);
    transition: transform 0.2s;
  }

  .site-dropdown.open .site-dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .site-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 1px solid rgba(255,114,0,0.15);
    margin-left: 1rem;
    border-radius: 0;
    padding: 0 0 0.25rem 0;
    background: transparent;
  }

  .site-dropdown:hover .site-dropdown-menu {
    display: none;
  }

  .site-dropdown.open .site-dropdown-menu {
    display: block;
  }

  .site-dropdown-menu a {
    font-size: 0.82rem;
    padding: 0.5rem 0.75rem;
  }

  .site-nav-right {
    margin-left: 0;
  }
}
.site-btn-primary,
.site-btn-primary:link,
.site-btn-primary:visited {
  background: var(--ufs-accent) !important;
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  text-decoration: none !important;
  font-weight: 600;
  transition: background 0.2s;
  display: inline-block;
  border: none;
}
.site-btn-primary:hover,
.site-btn-primary:focus,
.site-btn-primary:active {
  background: var(--ufs-accent-dark) !important;
  color: white !important;
  text-decoration: none !important;
}
.site-user-icon {
  color: var(--ufs-accent);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Footer */
.site-footer {
  width: 100%;
  background-color: var(--ufs-block);
  border-top: 1px solid rgba(255,114,0,0.1);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 4rem 0 1.5rem;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-brand p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
  line-height: 1.6;
  max-width: 260px;
}

.site-footer h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-footer li {
  list-style: none;
}

.site-footer a,
.site-footer a:link,
.site-footer a:visited {
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  transition: color 0.15s;
}

.site-footer a:hover,
.site-footer a:focus,
.site-footer a:active {
  color: var(--ufs-accent);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.footer-contact-item i {
  width: 16px;
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
  text-align: center;
}

.site-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1rem 0 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.site-footer-bottom span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

.site-footer-bottom a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer-bottom a:hover {
  color: var(--ufs-accent);
}

/* Buttons used in layout and pages */
.btn-ufs {
  border: 1px solid var(--ufs-accent);
  background: none;
  padding: 0.4rem 0.8rem;
  min-width: 120px;
  height: 40px;
  color: #ffffff;
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
}
.btn-ufs:hover {
  background: var(--ufs-accent);
  color: #ffffff;
}
.btn-ufs-blue {
  border: none;
  background: #7289da;
  padding: 5px 3px;
  width: 160px;
  height: 40px;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 0;
}
.btn-ufs-blue:hover {
  opacity: 0.8;
  color: #ffffff;
}

.btn-ufs-items {
  border: 1px solid var(--ufs-accent);
  background: none;
  color: #ffffff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 40px;
  padding: 0 10px;
  font-size: 1em;
  height: 36px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-ufs-items:hover {
  background: var(--ufs-accent);
  color: #ffffff;
}

/* Breadcrumb styling */
.breadcrumb {
  font-size: 0.85rem;
  background: transparent;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #666;
  content: ">";
}

.breadcrumb-item a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--ufs-accent) !important;
}

.breadcrumb-item.active {
  color: var(--ufs-accent);
}

/* Accent button */
.btn-accent {
  background: var(--ufs-accent) !important;
  color: #fff !important;
  border: 1px solid transparent;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-accent:hover,
.btn-accent:focus,
.btn-accent:active {
  background: var(--ufs-accent-dark) !important;
  color: #fff !important;
}
.btn-outline-accent {
  color: var(--ufs-accent) !important;
  border: 1px solid var(--ufs-accent) !important;
  background: transparent !important;
}
.btn-outline-accent:hover {
  background: var(--ufs-accent) !important;
  color: #fff !important;
}

/* Login modal backdrop blur */
.modal-backdrop.show {
  backdrop-filter: blur(4px);
}

/* Discord button */
.btn-discord {
  background: #5865f2;
  color: #fff !important;
  text-decoration: none !important;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-discord:hover {
  background: #4752c4;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(88,101,242,0.4);
}
.btn-match-input {
  height: 31px;
}
.bg-accent {
  background-color: var(--ufs-accent) !important;
}
.badge.bg-accent {
  background-color: var(--ufs-accent) !important;
  color: #fff;
}

/* Input styling matching existing forms */
.ufs-input {
  background: #2d2d2d !important;
  border: 1px solid #444 !important;
  color: #fff !important;
  border-radius: 4px;
  padding: 0.375rem 0.75rem;
}
.ufs-input:focus {
  border-color: var(--ufs-accent) !important;
  box-shadow: 0 0 0 2px rgba(255, 114, 0, 0.2) !important;
  outline: none;
}
.ufs-input::placeholder {
  color: #888 !important;
}

/* Card styling for auth/profile pages */
.card.bg-dark {
  background: var(--ufs-block) !important;
  border-color: #444 !important;
}

/* Main content area */
.site-main {
  min-height: 0;
}

/* ===== Social Profile Layout ===== */
.profile-container {
  width: 100%;
}

.profile-cover {
  width: 100%;
  height: 280px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      90deg,
      #181818 0px,
      #181818 16px,
      #141414 16px,
      #141414 32px
    );
  box-shadow: inset 0 0 120px rgba(255,255,255,0.02);
}

.profile-cover::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 120px;
  background: #222;
  top: -20px;
  left: -140px;
  transform: rotate(-35deg);
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
  z-index: 1;
  pointer-events: none;
}

.profile-cover::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 120px;
  background: #222;
  bottom: -20px;
  right: -140px;
  transform: rotate(-35deg);
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
  z-index: 1;
  pointer-events: none;
}

.profile-cover-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,114,0,0.1), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.profile-cover-panel {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.profile-cover-panel.panel-orange {
  width: 60px;
  height: 500px;
  background: var(--ufs-accent);
  top: -100px;
  left: 160px;
  transform: rotate(40deg);
  box-shadow: 0 0 30px rgba(255,114,0,0.4);
}

.profile-cover-accent {
  position: absolute;
  width: 3px;
  height: 180px;
  background: var(--ufs-accent);
  box-shadow: 0 0 20px rgba(255,114,0,0.8);
  z-index: 1;
  pointer-events: none;
}

.profile-cover-accent.accent-l {
  top: 70px;
  left: 240px;
  transform: rotate(35deg);
}

.profile-cover-accent.accent-r {
  bottom: 70px;
  right: 240px;
  transform: rotate(35deg);
}

.profile-cover-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--ufs-bg));
  z-index: 1;
  pointer-events: none;
}

/* ===== Banner Theme System ===== */
/* Default (Orange) - current existing styles, no override needed */

/* Crimson - 75 rep */
.banner-theme-crimson .profile-cover-glow {
  background: radial-gradient(circle, rgba(229, 57, 53, 0.15), transparent 70%);
}
.banner-theme-crimson .profile-cover-panel.panel-orange {
  background: #e53935;
  box-shadow: 0 0 30px rgba(229, 57, 53, 0.5);
}
.banner-theme-crimson .profile-cover-accent {
  background: #ff5252;
  box-shadow: 0 0 20px rgba(229, 57, 53, 0.9);
}
.banner-theme-crimson .profile-cover::before,
.banner-theme-crimson .profile-cover::after {
  background: #331515;
}

/* Royal Purple - 100 rep */
.banner-theme-royal-purple .profile-cover-glow {
  background: radial-gradient(circle, rgba(124, 77, 255, 0.15), transparent 70%);
}
.banner-theme-royal-purple .profile-cover-panel.panel-orange {
  background: #7c4dff;
  box-shadow: 0 0 30px rgba(124, 77, 255, 0.5);
}
.banner-theme-royal-purple .profile-cover-accent {
  background: #b388ff;
  box-shadow: 0 0 20px rgba(124, 77, 255, 0.9);
}
.banner-theme-royal-purple .profile-cover::before,
.banner-theme-royal-purple .profile-cover::after {
  background: #241538;
}

/* Army Green - 125 rep */
.banner-theme-army-green .profile-cover-glow {
  background: radial-gradient(circle, rgba(74, 124, 60, 0.15), transparent 70%);
}
.banner-theme-army-green .profile-cover-panel.panel-orange {
  background: #5c7a3e;
  box-shadow: 0 0 30px rgba(74, 124, 60, 0.5);
}
.banner-theme-army-green .profile-cover-accent {
  background: #7aa85c;
  box-shadow: 0 0 20px rgba(74, 124, 60, 0.9);
}
.banner-theme-army-green .profile-cover::before,
.banner-theme-army-green .profile-cover::after {
  background: #283820;
}

/* Neon Pink - 150 rep */
.banner-theme-pink .profile-cover-glow {
  background: radial-gradient(circle, rgba(255, 64, 129, 0.12), transparent 70%);
}
.banner-theme-pink .profile-cover-panel.panel-orange {
  background: #ff4081;
  box-shadow: 0 0 30px rgba(255, 64, 129, 0.5);
}
.banner-theme-pink .profile-cover-accent {
  background: #ff80ab;
  box-shadow: 0 0 20px rgba(255, 64, 129, 0.9);
}
.banner-theme-pink .profile-cover::before,
.banner-theme-pink .profile-cover::after {
  background: #2d1425;
}

/* Cyber Cyan - 175 rep */
.banner-theme-cyan .profile-cover-glow {
  background: radial-gradient(circle, rgba(0, 255, 255, 0.12), transparent 70%);
}
.banner-theme-cyan .profile-cover-panel.panel-orange {
  background: #00bcd4;
  box-shadow: 0 0 30px rgba(0, 188, 212, 0.5);
}
.banner-theme-cyan .profile-cover-accent {
  background: #4dd0e1;
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.9);
}
.banner-theme-cyan .profile-cover::before,
.banner-theme-cyan .profile-cover::after {
  background: #0d2d33;
}

/* Cobalt Blue - 200 rep */
.banner-theme-cobalt-blue .profile-cover-glow {
  background: radial-gradient(circle, rgba(41, 98, 255, 0.15), transparent 70%);
}
.banner-theme-cobalt-blue .profile-cover-panel.panel-orange {
  background: #2962ff;
  box-shadow: 0 0 30px rgba(41, 98, 255, 0.5);
}
.banner-theme-cobalt-blue .profile-cover-accent {
  background: #448aff;
  box-shadow: 0 0 20px rgba(41, 98, 255, 0.9);
}
.banner-theme-cobalt-blue .profile-cover::before,
.banner-theme-cobalt-blue .profile-cover::after {
  background: #0d1a33;
}

/* Solar Gold - 225 rep */
.banner-theme-solar-gold .profile-cover-glow {
  background: radial-gradient(circle, rgba(255, 193, 7, 0.15), transparent 70%);
}
.banner-theme-solar-gold .profile-cover-panel.panel-orange {
  background: #ffc107;
  box-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}
.banner-theme-solar-gold .profile-cover-accent {
  background: #ffd54f;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.9);
}
.banner-theme-solar-gold .profile-cover::before,
.banner-theme-solar-gold .profile-cover::after {
  background: #332a0d;
}

/* Toxic Lime - 250 rep */
.banner-theme-toxic-lime .profile-cover-glow {
  background: radial-gradient(circle, rgba(118, 255, 3, 0.15), transparent 70%);
}
.banner-theme-toxic-lime .profile-cover-panel.panel-orange {
  background: #76ff03;
  box-shadow: 0 0 30px rgba(118, 255, 3, 0.5);
}
.banner-theme-toxic-lime .profile-cover-accent {
  background: #b2ff59;
  box-shadow: 0 0 20px rgba(118, 255, 3, 0.9);
}
.banner-theme-toxic-lime .profile-cover::before,
.banner-theme-toxic-lime .profile-cover::after {
  background: #1a330d;
}

/* Magenta Burst - 275 rep */
.banner-theme-magenta-burst .profile-cover-glow {
  background: radial-gradient(circle, rgba(213, 0, 249, 0.15), transparent 70%);
}
.banner-theme-magenta-burst .profile-cover-panel.panel-orange {
  background: #d500f9;
  box-shadow: 0 0 30px rgba(213, 0, 249, 0.5);
}
.banner-theme-magenta-burst .profile-cover-accent {
  background: #e040fb;
  box-shadow: 0 0 20px rgba(213, 0, 249, 0.9);
}
.banner-theme-magenta-burst .profile-cover::before,
.banner-theme-magenta-burst .profile-cover::after {
  background: #2d0d33;
}

/* Inferno - 300 rep */
.banner-theme-inferno .profile-cover-glow {
  background: radial-gradient(circle, rgba(255, 61, 0, 0.15), transparent 70%);
}
.banner-theme-inferno .profile-cover-panel.panel-orange {
  background: #ff3d00;
  box-shadow: 0 0 30px rgba(255, 61, 0, 0.5);
}
.banner-theme-inferno .profile-cover-accent {
  background: #ff6e40;
  box-shadow: 0 0 20px rgba(255, 61, 0, 0.9);
}
.banner-theme-inferno .profile-cover::before,
.banner-theme-inferno .profile-cover::after {
  background: #33150d;
}

/* Banner picker button */
.banner-picker-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: auto;
}
.banner-picker-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: var(--ufs-accent);
}

/* ===== Banner Picker Modal ===== */
.banner-picker-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 9998;
  align-items: center;
  justify-content: center;
}

.banner-picker-modal {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 1.75rem;
  max-width: 680px;
  width: 92%;
  max-height: 88vh;
  overflow-y: auto;
  transform: scale(0.96) translateY(8px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.banner-picker-overlay[style*="flex"] .banner-picker-modal {
  transform: scale(1) translateY(0);
}

.banner-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.banner-picker-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.01em;
}
.banner-picker-close {
  background: #222;
  border: 1px solid #333;
  color: #888;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.banner-picker-close:hover {
  background: #333;
  color: #fff;
  border-color: #555;
}

/* Reputation progress at top of modal */
.banner-picker-progress {
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
}
.banner-picker-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 0.4rem;
}
.banner-picker-progress-next {
  font-size: 0.7rem;
  color: #666;
  margin-top: 0.3rem;
}

/* Card grid */
.banner-picker-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 0.875rem;
}

/* Theme card */
.banner-option {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  background: #1a1a1a;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  text-align: left;
}
.banner-option:hover {
  border-color: #444;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.banner-option.selected {
  border-color: var(--ufs-accent);
  box-shadow: 0 0 0 2px rgba(255, 114, 0, 0.15), 0 8px 24px rgba(0,0,0,0.35);
}
.banner-option.locked {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.6);
}
.banner-option.locked:hover {
  transform: none;
  box-shadow: none;
  border-color: #2a2a2a;
}

/* Card color preview bar */
.banner-option-preview {
  width: 100%;
  height: 56px;
  position: relative;
  overflow: hidden;
  background: #181818;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-option-preview::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 80px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(35deg);
  border-radius: 2px;
  opacity: 0.9;
}
/* Preview bars per theme */
.banner-option-preview.banner-theme-default::after { background: var(--ufs-accent); box-shadow: 0 0 12px rgba(255,114,0,0.4); }
.banner-option-preview.banner-theme-crimson::after { background: #e53935; box-shadow: 0 0 12px rgba(229,57,53,0.4); }
.banner-option-preview.banner-theme-royal-purple::after { background: #7c4dff; box-shadow: 0 0 12px rgba(124,77,255,0.4); }
.banner-option-preview.banner-theme-army-green::after { background: #5c7a3e; box-shadow: 0 0 12px rgba(92,122,62,0.4); }
.banner-option-preview.banner-theme-pink::after { background: #ff4081; box-shadow: 0 0 12px rgba(255,64,129,0.4); }
.banner-option-preview.banner-theme-cyan::after { background: #00bcd4; box-shadow: 0 0 12px rgba(0,188,212,0.4); }
.banner-option-preview.banner-theme-cobalt-blue::after { background: #2962ff; box-shadow: 0 0 12px rgba(41,98,255,0.4); }
.banner-option-preview.banner-theme-solar-gold::after { background: #ffc107; box-shadow: 0 0 12px rgba(255,193,7,0.4); }
.banner-option-preview.banner-theme-toxic-lime::after { background: #76ff03; box-shadow: 0 0 12px rgba(118,255,3,0.4); }
.banner-option-preview.banner-theme-magenta-burst::after { background: #d500f9; box-shadow: 0 0 12px rgba(213,0,249,0.4); }
.banner-option-preview.banner-theme-inferno::after { background: #ff3d00; box-shadow: 0 0 12px rgba(255,61,0,0.4); }

/* Card body */
.banner-option-body {
  padding: 0.6rem 0.75rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.banner-option-name {
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: -0.01em;
}
.banner-option-req {
  color: #666;
  font-size: 0.68rem;
  font-weight: 500;
}
.banner-option-req.met {
  color: #7aa85c;
}

/* Checkmark on selected */
.banner-option-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  background: var(--ufs-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #000;
  z-index: 2;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.banner-option.selected .banner-option-check {
  opacity: 1;
  transform: scale(1);
}

/* Lock overlay */
.banner-option-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: rgba(0,0,0,0.35);
  z-index: 2;
  font-size: 0.75rem;
  color: #bbb;
  font-weight: 600;
}
.banner-option-lock-overlay i {
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Loading spinner overlay */
.banner-option-loading {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20,20,20,0.85);
  z-index: 3;
  border-radius: 12px;
}
.banner-option-loading.active {
  display: flex;
}
.banner-option-loading .spinner {
  width: 24px;
  height: 24px;
  border: 2px solid #333;
  border-top-color: var(--ufs-accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.profile-cover-wrap {
  position: relative;
  height: 280px;
}

.profile-header {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  padding: 0 15rem 3.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.profile-avatar-wrapper {
  flex-shrink: 0;
}

.profile-avatar {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 4px solid var(--ufs-bg);
  object-fit: cover;
  display: block;
}

.profile-avatar-fallback {
  background: var(--ufs-accent);
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-info {
  flex: 1;
  min-width: 0;
  padding-bottom: 0.5rem;
}

.profile-name-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.profile-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.profile-steam-id {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
  font-size: 0.85rem;
}
.steam-id-label {
  color: #999;
}
.steam-id-value {
  color: #ccc;
  font-family: monospace;
}
.steam-id-unknown {
  color: #dc3545;
  font-style: italic;
}
.steam-copy-icon {
  color: #888;
  cursor: pointer;
  font-size: 0.8rem;
  transition: color 0.15s;
}
.steam-copy-icon:hover {
  color: #fff;
}

.profile-badge {
  display: inline-block;
  background: var(--ufs-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-stats {
  display: flex;
  gap: 1.5rem;
}

.profile-stat {
  text-align: center;
}

.profile-stat-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.profile-stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-body {
  margin-top: 1.5rem;
  padding: 0 1rem;
}

.profile-card {
  background: var(--ufs-block);
  border: 1px solid #444;
  border-radius: 8px;
  padding: 1.5rem;
}

.profile-card-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}
.about-title-row {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.about-edit-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: color .15s;
}
.about-edit-btn:hover { color: var(--ufs-accent); }
.about-edit-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .5rem;
}
.about-charcount {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.about-edit-hint {
  list-style: none;
  padding: 0;
  margin: .25rem 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: .25rem 1rem;
}
.discord-edit-note {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  margin: .35rem 0 0;
  line-height: 1.4;
}
.about-edit-hint li {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  position: relative;
  padding-left: 1rem;
}
.about-edit-hint li::before {
  content: "ΓÇó";
  color: var(--ufs-accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}
.about-edit-actions {
  display: flex;
  gap: .5rem;
}

.profile-about {
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.6;
}
.profile-about a {
  color: var(--ufs-accent);
  text-decoration: underline;
}
.profile-about a:hover {
  color: var(--ufs-accent-dark);
}

.profile-body-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 0 1rem;
  align-items: flex-start;
}
.profile-card-half {
  flex: 1;
  min-width: 0;
}


.about-edit-form {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.about-textarea {
  width: 100%;
  background: rgba(0,0,0,.3);
  border: 1px solid #555;
  border-radius: 6px;
  color: #fff;
  padding: .6rem;
  font-size: .9rem;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}
.about-textarea:focus {
  outline: none;
  border-color: var(--ufs-accent);
}
.about-save-btn {
  align-self: flex-end;
}

.profile-actions {
  padding: 1rem;
  margin-top: 1rem;
}

.profile-linked-accounts {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.linked-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
}

.linked-discord {
  background: #5865f2;
}

.linked-steam {
  background: #1b2838;
}

.link-btn {
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
  cursor: pointer;
  border: 1px dashed rgba(255,255,255,0.3);
}

.link-btn:hover {
  opacity: 1;
  border-style: solid;
  border-color: rgba(255,255,255,0.6);
}

/* Activity log */
.activity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.activity-follow { background: #28a745; }
.activity-unfollow { background: #dc3545; }
.activity-comment { background: #17a2b8; }
.activity-upvote { background: var(--ufs-accent); }

.activity-text {
  flex: 1;
  color: rgba(255,255,255,0.75);
}

.activity-link {
  color: var(--ufs-accent);
  text-decoration: none;
  font-weight: 600;
}

.activity-link:hover {
  text-decoration: underline;
}

.activity-time {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Notification bell */
.notif-bell {
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}

.notif-bell:hover {
  color: var(--ufs-accent);
}

.notif-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #dc3545;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.notif-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--ufs-block);
  border: 1px solid #444;
  border-radius: 8px;
  width: 320px;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  z-index: 10000;
}

.notif-bell-wrapper:hover .notif-dropdown,
.notif-dropdown:hover {
  display: block;
}

.notif-header {
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid #444;
  font-size: 0.9rem;
}

.notif-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}

.notif-item:hover {
  background: rgba(255,114,0,0.1);
}

.notif-item:last-child {
  border-bottom: none;
}

.notif-unread {
  background: rgba(255,114,0,0.05);
}

.notif-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ufs-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.notif-content {
  flex: 1;
  min-width: 0;
}

.notif-message {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.3;
}

.notif-time {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
}

/* Role badges */
.role-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

.role-administrator { background: #dc3545; }
.role-moderator     { background: #6f42c1; }
.role-serverowner   { background: #ff7200; }
.role-user          { background: #6c757d; }
.role-plugincreator { background: #17a2b8; }
.role-modcreator    { background: #28a745; }
.role-contentcreator{ background: #e83e8c; }
.role-advertiser    { background: #fd7e14; }
.role-hostingcompany{ background: #20c997; }

/* Cooldown popup */
.popup-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,.55); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.popup-box {
  background: var(--ufs-block); border-radius: 12px; padding: 2rem 2.5rem;
  max-width: 420px; text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.popup-box p { margin: 0 0 1.25rem; font-size: 1.05rem; line-height: 1.5; }
.popup-box .popup-close {
  background: var(--ufs-accent); color: #fff; border: none;
  padding: .5rem 2rem; border-radius: 6px; cursor: pointer; font-size: .95rem;
}
.popup-box .popup-close:hover { background: var(--ufs-accent-dark); }

/* ===== Profile fixed-height scrollable cards ===== */
.profile-card-scroll {
  display: flex;
  flex-direction: column;
  height: 420px;
}

.profile-card-scroll-content {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}

.profile-card-scroll-content::-webkit-scrollbar {
  width: 6px;
}

.profile-card-scroll-content::-webkit-scrollbar-track {
  background: transparent;
}

.profile-card-scroll-content::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}

.profile-card-scroll-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.25);
}

/* ===== Social Feed ===== */
.profile-social-feed {
  margin-top: 1.5rem;
  padding: 0 1rem;
}

.social-feed {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-feed-item {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s, background 0.2s;
}

.social-feed-item:hover {
  border-color: rgba(255,114,0,0.3);
  background: rgba(255,114,0,0.03);
}

.social-feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.social-feed-server-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.social-feed-game-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

.social-feed-game-icon-fallback {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: var(--ufs-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-feed-server-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-feed-server-name:hover {
  color: var(--ufs-accent);
}

.social-feed-time {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
  margin-left: 0.75rem;
}

.social-feed-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.social-feed-action-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.social-feed-action-text {
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.social-feed-comment-snippet {
  margin-top: 0.5rem;
  margin-left: 2rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid rgba(255,114,0,0.4);
  border-radius: 0 6px 6px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  line-height: 1.4;
}

/* ===== Upvote Button ===== */
.btn-upvote {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: transparent !important;
  color: #fff !important;
  border: none !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
}
/* Orange background layer */
.btn-upvote::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ufs-accent);
  border-radius: 6px;
  z-index: -2;
  transition: background 0.2s;
}
/* Shine swipe layer */
.btn-upvote::before {
  content: "";
  position: absolute;
  top: 0; left: -150%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  z-index: -1;
  pointer-events: none;
}
.btn-upvote:hover::before {
  left: 150%;
}
.btn-upvote:hover {
  color: #fff !important;
}
.btn-upvote:disabled {
  color: #777 !important;
  cursor: not-allowed;
}
.btn-upvote:disabled::after {
  background: #333;
}
.btn-upvote:disabled::before {
  display: none;
}

/* Discord button — same shine/upvote styling, Discord blue */
.btn-discord::after { background: #5865F2 !important; }
.btn-discord:hover::after { background: #4752C4 !important; }

/* Website button — same shine/upvote styling, dark */
.btn-website::after { background: #444 !important; }
.btn-website:hover::after { background: #555 !important; }
.btn-website:hover { color: #fff !important; }

/* Outline button base — suppresses fill, shows border */
.btn-outline {
  background: transparent !important;
  border: 2px solid !important;
}
.btn-outline::after { display: none !important; }
.btn-outline::before { display: none !important; }

/* Orange outline — white text, orange border, fills on hover */
.btn-outline-accent {
  border-color: var(--ufs-accent) !important;
  color: #fff !important;
}
.btn-upvote.btn-outline-accent:hover {
  background: var(--ufs-accent) !important;
  color: #fff !important;
  box-shadow: 0 0 12px rgba(255, 114, 0, 0.3);
  border-color: var(--ufs-accent) !important;
}

/* Discord outline — white text, blue border, fills on hover */
.btn-outline-discord {
  border-color: #7289da !important;
  color: #fff !important;
}
.btn-upvote.btn-outline-discord:hover {
  background: #7289da !important;
  color: #fff !important;
  box-shadow: 0 0 12px rgba(114, 137, 218, 0.3);
  border-color: #7289da !important;
}

/* Unfollow hover */
.btn-upvote.btn-unfollow:hover {
  background: #a83232 !important;
  color: #fff !important;
  box-shadow: 0 0 12px rgba(168, 50, 50, 0.3);
  border-color: #a83232 !important;
}

/* Follow button — outline style */
.btn-follow { }
.btn-follow::after { display: none !important; }
.btn-follow::before { display: none !important; }

/* Unfollow button — outline style, red border */
.btn-unfollow {
  border-color: #a83232 !important;
  color: #fff !important;
  background: transparent !important;
  border: 2px solid !important;
}
.btn-unfollow::after { display: none !important; }
.btn-unfollow::before { display: none !important; }
.btn-unfollow:hover {
  background: #a83232 !important;
  color: #fff !important;
  box-shadow: 0 0 12px rgba(168, 50, 50, 0.3);
}

/* ===== Upvote Modal ===== */
.ufs-modal-content {
  background: var(--ufs-bg);
  border-radius: 10px;
  padding: 2.25rem 2rem;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
  border: 1px solid #3a3a3a;
  max-width: 420px;
  margin: 0 auto;
}
.ufs-modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 114, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  color: var(--ufs-accent);
}
.ufs-modal-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.ufs-modal-text {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.ufs-modal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
  display: inline-block;
}
.ufs-modal-list li {
  color: #bbb;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ufs-modal-list li i {
  color: var(--ufs-accent);
  font-size: 0.7rem;
}
.ufs-modal-cooldown {
  margin-bottom: 1.5rem;
}
.ufs-cooldown-time {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ffc107;
  letter-spacing: -0.02em;
}
.ufs-cooldown-label {
  display: block;
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.25rem;
}
.ufs-modal-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.ufs-modal-actions .btn {
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
}
.ufs-modal-actions form {
  display: inline;
}

/* Footer responsive */
@media (max-width: 768px) {
  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .site-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
