/* =========================================================
   Page Styles
   Imports global & fixed component styles, then adds
   page-specific rules with full responsive support.

   Breakpoints:
     Mobile  : max-width 639px
     Tablet  : 640px – 1023px
     Laptop  : 1024px – 1439px
     Desktop : 1440px – 2559px  ← base/default
     4K      : 2560px+
========================================================= */
@import "/SRC/CSS/PageStyles/PlatformSupport.css";
@import "/SRC/CSS/PageStyles/ForumSupport.css";
@import "/SRC/CSS/PageStyles/GameSupport.css";
@import "/SRC/CSS/PageStyles/MyAccount.css";
@import "/SRC/CSS/PageStyles/Placeholder.css";
@import "/SRC/CSS/PageStyles/MyCases.css";
@import "/SRC/CSS/Components/FixedComponents.css";
@import "/SRC/CSS/Components/Global.css";
@import "/SRC/CSS/DeviceStyling.css";

/* =========================================================
   🥇 Hero  (page-level overrides if needed)
========================================================= */

/* =========================================================
   🪪 - Page Card Styles
========================================================= */

/* ---------------------------------------------------------
   🪪 - GLASS CARD [Card | General]
--------------------------------------------------------- */
.glassCard {
  background: var(--bg-card);
  border: 1px solid var(--border-faint);
  border-radius: 36px;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  animation: slideUp 0.9s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ---------------------------------------------------------
   🪪 - STILL HAVING ISSUES? [Card]
--------------------------------------------------------- */

.issuesCard {
  padding: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.issuesCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(41, 98, 255, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.issuesIcon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(41, 98, 255, 0.15);
  border: 1.5px solid rgba(41, 98, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 0 28px rgba(41, 98, 255, 0.3);
  position: relative;
  z-index: 1;
}
.issuesIcon i {
  font-size: 24px;
  color: var(--blue-neon);
}

.issuesTitle {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}


.issuesSub {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.issuesBtnRow {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* =========================================================
   🪪 Cards — Trending Articles
========================================================= */

.trending-card {
  padding: 44px 56px;
}

.trending-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.trending-header i {
  font-size: 18px;
  color: var(--blue-neon);
}

.trending-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trending-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trending-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.trending-item:hover {
  background: rgba(41, 98, 255, 0.1);
}
.trending-item:hover .trending-item-text {
  color: var(--white);
}
.trending-item:hover .trending-item-arrow {
  color: var(--blue-neon);
  transform: translateX(3px);
}

.trending-num {
  font-size: 11px;
  font-weight: 800;
  color: rgba(41, 98, 255, 0.6);
  width: 20px;
  flex-shrink: 0;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.04em;
}
.trending-item-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  flex: 1;
  transition: var(--transition);
  line-height: 1.4;
}
.trending-item-arrow {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transition: var(--transition);
}
