        /* Scrollbar Styling */
        * {
scrollbar-width: thin;
scrollbar-color: #444 #1a1a1a;
}

.scrollbar {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
    scrollbar-gutter: stable;
    overflow-y: scroll;
}

.scrollbar:hover {
    scrollbar-color: #666 #1a1a1a;
}

/* Chrome/Edge/Safari */
.scrollbar::-webkit-scrollbar {
    width: 10px;
}

.scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.scrollbar::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 5px;
}

.scrollbar:hover::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.scrollbar:hover::-webkit-scrollbar-thumb {
    background: #666;
}

/*BACKGROUND LAYERS*/
.bg-layer {
position: fixed;
inset: 0;
z-index: 0;
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
transition: opacity 0.5s ease-in-out;
}
.bg-overlay {
position: fixed;
inset: 0;
z-index: 1;
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
background-image: url("_images/bg.black.80.png");
}
/*END LAYERS*/

/* ==========================================================================
   BLACKOUT — Clan HQ template
   Layout system: flexbox only (no CSS grid), so every list/row below is
   built with display:flex + flex-wrap for easy re-arranging.
   ========================================================================== */

:root {
  /* ---- Palette --------------------------------------------------------- */
  --bg-void:        #101211;   /* page background, near-black w/ green tint */
  --bg-panel:       rgba(0,0,0,0.75);   /* card / panel background */
  --bg-panel-alt:   rgba(21,32,26,0.25);   /* subtle alt background (status rail, table head) */
  --bg-raised:      transparent;   /* inputs, hovered rows */

  --line:           #2c3229;   /* hairline borders */
  --line-soft:      #23271f;

  --green-deep:     #24402d;   /* dark green, primary accent */
  --green-mid:      #3c7048;   /* brighter green for hover/active */
  --green-glow:     #5fae74;   /* glow / focus */

  --yellow-deep:    #7a6a1c;   /* dark yellow, secondary accent */
  --yellow-mid:     #b79a2b;   /* brighter yellow for highlights */
  --yellow-glow:    #e0c246;   /* glow / warnings */

  --text-hi:        #e9ece6;   /* headings / high emphasis */
  --text-body:      #b7bfb6;   /* body copy */
  --text-muted:     #767f76;   /* captions, meta */

  --danger:         #b3503f;

  /* ---- Type -------------------------------------------------------------*/
  --font-display: 'Comic Sans MS';
  --font-body:    'Comic Sans MS';
  --font-mono:    'Comic Sans MS';

  --radius: 3px;
}

* { box-sizing: border-box; }

/* Radios/checkbox that drive tab switching, the mobile menu and the member
   filter (see index.php). Visually hidden but still keyboard-focusable and
   operable with space/arrow keys — unlike display:none, this keeps the
   whole page usable without any JavaScript. */
.control-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(ellipse at top, rgba(60, 112, 72, 0.06), transparent 60%),
    var(--bg-void);
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
    cursor: url("_images/cursor.png"), auto;
}

a { color: inherit; }

code {
  font-family: var(--font-mono);
  background: var(--bg-raised);
  padding: 0.1em 0.4em;
  border-radius: 2px;
  font-size: 0.9em;
  color: var(--yellow-mid);
}

::selection { background: var(--green-deep); color: var(--text-hi); }

/* Focus visibility, kept everywhere per accessibility floor */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--yellow-glow);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand__tag {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--yellow-mid);
  border: 1px dashed var(--yellow-deep);
  padding: 2px 6px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  height: fit-content;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--text-hi);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
    justify-content: center;align-items: center;vertical-align: middle;
}

.nav__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 8px 12px;
  cursor: url("_images/cursor-hand.png"), auto;
  user-select: none;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav__link:hover { color: var(--text-hi); }

/* Active nav link: News/Members/Games/Forum are plain <a> tags now, so the
   active state is driven server-side in index.php by comparing $p to the
   page name and adding the .nav__link--active class. Login stays on the
   #tab-login radio/label combo since it's a CSS-only panel toggle. */
#tab-login:checked ~ header label.nav__link[for="tab-login"],
.nav__link.nav__link--active {
  color: var(--green-glow);
  border-bottom-color: var(--yellow-mid);
}

#tab-login:focus-visible ~ header label.nav__link[for="tab-login"] {
  outline: 2px solid var(--yellow-glow);
  outline-offset: 2px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: url("_images/cursor-hand.png"), auto;
}

#nav-toggle-cb:focus-visible ~ header .nav__toggle {
  outline: 2px solid var(--yellow-glow);
  outline-offset: 2px;
}

.nav__toggle span {
  display: block;
  height: 2px;
  margin: 0 6px;
  background: var(--text-body);
}

/* Ticker ------------------------------------------------------------------*/

.ticker {
  background: var(--bg-panel-alt);
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
  white-space: nowrap;
  padding: 6px 0;
}

.ticker__track {
  display: inline-flex;
  gap: 48px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--yellow-mid);
  /* --ticker-distance and --ticker-duration are set by JS (see initTicker() in index.php)
     based on actual content width, so the track bounces between fully-visible ends
     instead of looping off-screen. Fallback values are used until JS runs. */
  animation: ticker-bounce var(--ticker-duration, 20s) ease-in-out infinite alternate;
}

.ticker__item { display: inline-flex; align-items: center; gap: 8px; }
.ticker__dot { color: var(--green-glow); }

@keyframes ticker-bounce {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--ticker-distance, 0px)); }
}

/* ==========================================================================
   LAYOUT / PANELS
   ========================================================================== */

.page {
    position: relative;
  width:95%;
  margin: 0 auto;
  padding: 20px;
    z-index: 4;
}

.section { display: none; }

/* Which section shows is driven entirely by which #tab-* radio is checked. */
#tab-login:checked   ~ main #login,
#tab-news:checked    ~ main #news,
#tab-members:checked ~ main #members,
#tab-games:checked   ~ main #games,
#tab-forum:checked   ~ main #forum {
  display: block;
}

/* HUD frame: corner-bracket signature element used on every panel */
.hud {
  position: relative;
  padding: 20px;
}

.hud::before,
.hud::after,
.hud .login-grid__status::before,
.hud .login-grid__status::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--yellow-mid);
  border-style: solid;
  opacity: 0.85;
}

.hud::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.hud::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.panel {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hud-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 24px 0 10px;
}

/* ==========================================================================
   LOGIN
   ========================================================================== */

.login-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.login-grid__form { flex: 1 1 320px; }
.login-grid__status {
  position: relative;
  flex: 1 1 260px;
  background: var(--bg-panel-alt);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px 24px;
  align-self: flex-start;
}

.login-grid__status::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.login-grid__status::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.field { display: flex; flex-direction: column; gap: 6px; }

.field--row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.field__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

input[type="text"],
input[type="password"] {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 11px 12px;
  color: var(--text-hi);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: var(--green-mid);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.link-muted { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; }
.link-muted:hover { color: var(--yellow-mid); }
.link-accent { color: var(--green-glow); font-weight: 600; text-decoration: none; }
.link-accent:hover { color: var(--yellow-mid); }

.btn {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 2px;
  border: 1px solid transparent;
  padding: 12px 20px;
  cursor: url("_images/cursor-hand.png"), auto;
  font-size: 0.95rem;
  transition: transform 0.1s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--green-deep);
  color: var(--text-hi);
  border-color: var(--green-mid);
}
.btn--primary:hover { background: var(--green-mid); }

.btn--block { width: 100%; }

.form-note {
  min-height: 1.2em;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--yellow-mid);
  margin: 0;
}

.signup-note { margin-top: 22px; font-size: 0.88rem; color: var(--text-muted); }

.status-list {
  list-style: none;
  margin: 0 0 4px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.status-list strong { color: var(--text-hi); font-weight: 600; }

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 8px;
}

.status-dot--on   { background: var(--green-glow); box-shadow: 0 0 8px var(--green-glow); }
.status-dot--warn { background: var(--yellow-glow); box-shadow: 0 0 8px var(--yellow-glow); }
.status-dot--off  { background: var(--text-muted); }

.stat-row { display: flex; flex-wrap: wrap; gap: 20px; }

.stat { display: flex; flex-direction: column; }

.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--yellow-mid);
}

.stat__label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   CARD ROW — shared flex layout for News / Members / Games
   ========================================================================== */

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 2px;
  cursor: url("_images/cursor-hand.png"), auto;
}

/* Active filter button + which member cards are visible are both driven by
   the #filter-* radios defined at the top of index.php. Roles are generated
   dynamically from the $members array, so this covers any role name via the
   generic attribute-selector rule further below. */
#filter-all:checked ~ main label.filter-btn[for="filter-all"] {
  color: var(--text-hi);
  border-color: var(--green-mid);
  background: var(--green-deep);
}

/* Per-role active-button + card-filtering rules. Add a matching pair here
   if you introduce a brand-new role name that isn't Leader/Officer/Member. */
#filter-leader:checked ~ main label.filter-btn[for="filter-leader"],
#filter-officer:checked ~ main label.filter-btn[for="filter-officer"],
#filter-member:checked ~ main label.filter-btn[for="filter-member"] {
  color: var(--text-hi);
  border-color: var(--green-mid);
  background: var(--green-deep);
}

#filter-leader:checked  ~ main .member-card:not(.role-leader),
#filter-officer:checked ~ main .member-card:not(.role-officer),
#filter-member:checked  ~ main .member-card:not(.role-member) {
  display: none;
}

/* -- News card ------------------------------------------------------------*/

.news-card {
  flex: 1 1 280px;
  background: var(--bg-panel-alt);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin:10px;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 600;
  background: var(--yellow-deep);
  color: var(--text-hi);
}

.news-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text-hi);
  margin: 0;
}

.news-card__body { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* -- Member card ------------------------------------------------------------*/

.member-card {
  flex: 1 1 220px;
  background: var(--bg-panel-alt);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.member-card__avatar {
  flex-shrink: 0;
  border-radius: 2px;
  background: var(--green-deep);
  color: var(--text-hi);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid var(--green-mid);
}

.member-card__info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }

.member-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-hi);
  font-size: 1.02rem;
  display: flex;
  align-items: center;
}

.member-card__meta { font-size: 0.8rem; color: var(--text-muted); }

.role-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 2px;
  text-transform: uppercase;
}

.role-badge--leader  { background: var(--yellow-deep); color: var(--text-hi); }
.role-badge--officer { background: var(--green-deep); color: var(--text-hi); }
.role-badge--member  { background: transparent; border: 1px solid var(--line); color: var(--text-muted); }

/* -- Game card ------------------------------------------------------------*/

.game-card {
  flex: 1 1 260px;
  background: var(--bg-panel-alt);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 3px solid var(--green-mid);
}

.game-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.game-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-hi);
  margin: 0;
}

.game-card__platform {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--yellow-mid);
  text-transform: uppercase;
}

.game-card__genre {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.game-card__desc { font-size: 0.9rem; color: var(--text-body); margin: 0; }

/* ==========================================================================
   FORUM TABLE (flex "table")
   ========================================================================== */

.forum-table { display: flex; flex-direction: column; }

.forum-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 12px;
  border-bottom: 1px solid var(--line-soft);
  flex-wrap: wrap;
}

.forum-row--head {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--bg-panel-alt);
  border-bottom: 1px solid var(--line);
}

.forum-row:hover:not(.forum-row--head) { background: var(--bg-raised); }

.forum-col { flex: 1 1 120px; font-size: 0.88rem; color: var(--text-muted); }
.forum-col--title { flex: 3 1 260px; color: var(--text-hi); }

.forum-thread-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pin-flag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--bg-void);
  background: var(--yellow-mid);
  padding: 1px 6px;
  border-radius: 2px;
  text-transform: uppercase;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 760px) {
  .nav__toggle { display: flex; }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    order: 3;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    margin-top: 10px;
  }

  #nav-toggle-cb:checked ~ header .nav { display: flex; }

  .topbar__inner { flex-wrap: wrap; }

  .nav__link { border-bottom: none; border-left: 2px solid transparent; padding: 10px 8px; }

  #tab-login:checked ~ header label.nav__link[for="tab-login"],
  .nav__link.nav__link--active {
    border-left-color: var(--yellow-mid);
    border-bottom-color: transparent;
  }

  .forum-col:not(.forum-col--title) { flex: 1 1 45%; }
}

/* ===================== BORDERS ===================== */
.divrounded { border-radius: 10px;}

.cremeborderssolid  { border: 1px solid #bb924a;}
.goldborderssolid  { border: 1px solid #d9b071;}
.goldbordersdashed { border-style: dashed; border-width: 2px; border-color: #d9b071;}
.babyblueborderssolid { border: 1px solid #82deff;}

/* ===================== MISC ===================== */
.nickname {font-size: 2.5vh;}
.img { height: 3vh; width: auto; margin: 0.2vw;}
.img-gamespot {width: 50%;height: auto;}
.td { padding: 0.5vw;}

/* ===================== LINKS ===================== */

a:link    {
  text-decoration: none;
}
a:visited {
 text-decoration: none;
}
a:active  {
 text-decoration: none;
}
a:hover   {
 cursor: url("_images/cursor-hand.png"), auto;
}
.cursor-hand {
 cursor: url("_images/cursor-hand.png"), auto;
}

/* ===================== FORM ELEMENTS ===================== */
form { margin: 0; }
.editbox {
width: 90%; height: 25px;
background-color: rgba(0,0,0,1);
border: 1px solid #303030;
color: #e2e8f0;
font-family: 'Roboto-LightItalic';
font-size: 0.85rem;
padding: 0.5rem;
margin: 0.5vh;
border-radius: 6px;
outline: none;
transition: border-color 0.15s;
box-sizing: border-box;
}
.editbox:focus {
 border-color: #0073b0; background-color: #000000;
}
.textarea {
width: 90%;
background-color: rgba(0,0,0,1);
border: 1px solid #303030;
color: #e2e8f0;
font-family: 'Roboto-LightItalic';
font-size: 0.85rem;
padding: 0.5rem;
margin: 0.5vh;
border-radius: 6px;
outline: none;
transition: border-color 0.15s;
box-sizing: border-box;
}
.textarea:focus {
 border-color: #0073b0; background-color: #000000;
}

.button {
padding: 3px 8px;
margin: 0.2vh;
height: 30px;
background-color: rgba(0, 0, 0,1);
border-radius: 10px;
border: 1px solid #3d3d3d;
color: #ffffff;
font-family: 'Heroes-Legend';
font-size: 0.6rem;
letter-spacing: 0.02em;
cursor: url("_images/cursor-hand.png"), auto;
position: relative;
overflow: hidden;
}
.button:hover {
 transform: translateY(-1px);
 box-shadow: 0 8px 30px rgba(86,225,198,0.5);
 background-color: rgba(86,225,198,0.5);
}

.select {
    background-color: rgba(0,0,0,1);
    border: 1px solid #303030;
    color: #e2e8f0;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.15s;
}
.select:focus {
 background-color: #000;   
}

/* ====================== DIVS ===================*/
.vsep {
  width: 1px; height: 12px;
background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(255,255,255,0.8));
  flex-shrink: 0;
  margin: 0 4px;
}

.window {
z-index: 3;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 10px;
border: 1px solid #2c3229;
margin: 0.2vw;
padding: 0.5vh;
}

.numbers {font-family: "segoe-script";}

.forum {
width: 100%;
position: relative;
overflow: auto;
z-index: 10;
display: flex;
justify-content: center;
height: 100%;
}

/*============ CAROUSSEL =================*/
.caroussel-section {
 z-index: 10;   
}
.carousselfolders {
display: flex;
width: 100%;
height: 5vh;
justify-content: center;
align-items: center;
font-family: "AlexBrush-Regular";
font-size: 1.5vw;
z-index: 9999;
}
.caroussel {
flex: 1;
width: 100%;
height: 15vh;
overflow: hidden;
    z-index: 9999;
 /* Keeps the long strip of images hidden */position: relative;
}

.carousselitems {
display: flex;
height: 100%;
width: auto;
 /* Let it grow horizontally, parent will clip it */flex-wrap: nowrap;
}

/* 6. The Image Constrain */
.carousselitems img {
height: 100%;
    /* Fills the height of divmid */width: auto;
      /* Maintains aspect ratio */max-width: none;
  /* Prevents the browser from squishing them */display: block;
}
.carousselitems div:hover {
margin: 0px;
padding: 4px;
box-sizing: border-box;
border-radius: 10px;
}
.carousselscrollimgleft {
position: absolute;
left: 0;
top: 0;
height: 100%;
display: flex;
align-items: center;
}
.carousselscrollimgleft img {
height: auto;
width: 3vw;
display: block;
}
.carousselscrollimgright {
position: absolute;
right: 0;
top: 0;
height: 100%;
display: flex;
align-items: center;
}
.carousselscrollimgright img {
height: auto;
width: 3vw;
display: block;
}
.carousselpicturemenu {
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 3;
}

.calign {display: flex;justify-content: center;align-items: center;vertical-align: middle;}
/* ===================== BACKGROUNDS ===================== */
.bgbg    { background-color: #111111;}
.greybg  { background-color: #242424;}
.redbg   { background-color: #c30000;}
.greenbg { background-color: #009c0b;}
.bluebg  { background-color: #00519c;}
.greybghover { color: #77d4ff;}
.greybghover:hover { color: #b08a4d; background-color: #131313; border: 1px solid #ffa800;}

.bg-white5 { background: rgba(255,255,255,0.05); }

.bg-black20 { background: rgba(0,0,0,0.20); }
.bg-black35 { background: rgba(0,0,0,0.35); }
.bg-black90 { background: rgba(0,0,0,0.90); }
.bg-black75 { background: rgba(0,0,0,0.75); }
.bg-black90 { background-color: rgba(0,0,0,0.9);}
.bg-black100 { background-color: #000;}


.bg-black35hover { background: rgba(0,0,0,0.35); }
.bg-black35hover:hover { background: rgba(255,255,255,0.10); }

.bg-black60 { background: rgba(0,0,0,0.60); }
.bg-black60:hover { background: rgba(0,0,0,0.75); }

.bg-white3 { background: rgba(255,255,255,0.03); }
.bg-white10 { background: rgba(255,255,255,0.10); }

.bg-white3hover { background: rgba(255,255,255,0.03); }
.bg-white3hover:hover { background: rgba(255,255,255,0.05); }

.bg-hover-white10 { background-image:url(''); }
.bg-hover-white10:hover { background: rgba(255,255,255,0.10); }

.bg-white50 { background: rgba(255,255,255,0.50); }

.bg-white10hover { background: rgba(255,255,255,0.10); }
.bg-white10hover:hover { background: rgba(255,255,255,0.50); }

.bg50 { background-color: rgba(0, 0, 0, 0.5); }

.bgover:hover td { background-color: rgba(255,255,255,0.05);}

/* ===================== COLORS ===================== */

.blue { color: #6666ff;}
.red { color: #ff0000;}
.yellow { color: #ffff00;}
.green { color: #009c0b;}
.lred { color: #ff7979;}
.dred { color: #c30000;}
.babyblue { color: #009cff;}
.lightbabyblue { color: #93efff;}
.orange { color: #ff8a00;}
.lightsatgreen { color: #879d7b;}
.satgreen { color: #0b0b0b;}
.lightteal { color: #8ad8d8;}
.teal { color: #329898;}
.darkteal { color: #004C4C;}
.purple { color: #a783ff;}
.lightgold { color: #f0c585;}
.darkgold { color: #452900;}
.gold { color: #b08a4d;}
.lightgrey { color: #ababab;}
.white { color: #FFFFFF;}
.darksalmon { color: #b7443d; }

/* ===================== GRADIENTS ===================== */
.menugradient {
background: linear-gradient(to top, #004a2d, #00cea4, #51f4c7);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.menugradient:hover {
background: linear-gradient(to top, #5e5e5e, #e4e4e4, #ffffff);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.menugradientactive {
background: linear-gradient(to top, #65460a, #d9b071, #fff7b5);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.priority1 {
background: linear-gradient(to top, #5e5e5e, #e4e4e4, #ffffff); /*//////////*/
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.priority2 {
background: linear-gradient(to top, #65460a, #d9b071, #fff7b5);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.priority3 {
background: linear-gradient(to top, #004265, #8cd9ff, #b5ffff);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.priority4 {
background: linear-gradient(to top, #ce6000, #ff8a00, #ffbc46);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.gradient-gold {
background: linear-gradient(to top, #65460a, #d9b071, #fff7b5);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.gradient-babyblue {
background: linear-gradient(to top, #004265, #8cd9ff, #b5ffff);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.gradient-orange {
background: linear-gradient(to top, #601000, #ff9600, #ffd354);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.gradient-white {
background: linear-gradient(to top, #5e5e5e, #e4e4e4, #ffffff);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.gradient-red {
background: linear-gradient(to top, darkred, red, #ff7979);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.gradient-salmon {
background: linear-gradient(to top, #b7443d, salmon, lightsalmon);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.gradient-teal {
background: linear-gradient(to top, #004a2d, #00cea4, #51f4c7);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.gradient-creme {
background: linear-gradient(to top, #6d5d48, #aa9880, #f3e0c6);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.gradient-yellow {
 background: linear-gradient(to top, #ba9900, #fdd600, #ffec82);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;   
}
.gradient-green {
 background: linear-gradient(to top, #005a27, #5fad73, #a3f4b6);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;   
}

.iptxt {
background: linear-gradient(to top, darkred, red, #ff7979);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}

.iptxt.over {
background: linear-gradient(to top, #601000, #ff9600, #ffd354);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.hosttxt {
background: linear-gradient(to top, #5e5e5e, #e4e4e4, #ffffff);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}

.hosttxt.over {
background: linear-gradient(to top, #601000, #ff9600, #ffd354);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
/* ===================== FONT SIZES ===================== */

.font10 { font-size: 10px;}
.font12 { font-size: 12px;}
.font14 { font-size: 14px;}
.font16 { font-size: 16px;}
.font18 { font-size: 18px;}
.font20 { font-size: 20px;}
.font22 { font-size: 22px;}
.font24 { font-size: 24px;}
.font26 { font-size: 26px;}
.font28 { font-size: 28px;}
.font30 { font-size: 30px;}

.bold { font-weight: bold;}

/*###### MISC ######*/

.spacer {
 height: 1.5vh;   
}

/* ===================== PAGE LOADER ANIMATION ===================== */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.loader-spinner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top: 4px solid #FFD700;
    border-right: 4px solid #87CEEB;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), inset 0 0 20px rgba(135, 206, 235, 0.2);
}

.loader-spinner::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 3px solid transparent;
    border-bottom: 3px solid #FFF8DC;
    border-left: 3px solid #B0E0E6;
    border-radius: 50%;
    animation: spinReverse 2s linear infinite;
    box-shadow: 0 0 15px rgba(255, 248, 220, 0.3);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.loader-text {
    color: #FFD700;
    font-size: 1.2rem;
    font-family: "ComicNeue-Regular", sans-serif;
    letter-spacing: 2px;
    animation: pulse 1.5s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* END PAGE LOADER ANIMATION */

/* END */
