:root {
  --bg: #030307;
  --panel: rgba(13, 11, 20, 0.82);
  --panel-2: rgba(18, 15, 28, 0.85);
  --border: rgba(168, 85, 247, 0.16);
  --border-hover: rgba(236, 72, 153, 0.35);
  --border-strong: rgba(220, 74, 255, 0.4);
  --text: #f3eff6;
  --muted: #a39ca9;
  --soft: #6d6674;
  --purple: #a855f7;
  --purple-glow: rgba(168, 85, 247, 0.3);
  --pink: #ec4899;
  --red: #ef4444;
  --green: #22c55e;
  --discord: #5865f2;
  --discord-glow: rgba(88, 101, 242, 0.3);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font: 'Outfit', 'Inter', ui-sans-serif, system-ui, sans-serif;
  --noise-opacity: 0.05;
}

/* Custom scrollbars */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--purple);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font);
  background:
    radial-gradient(circle at 10% 15%, rgba(168, 85, 247, 0.16), transparent 35%),
    radial-gradient(circle at 90% 10%, rgba(236, 72, 153, 0.12), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(239, 68, 68, 0.08), transparent 40%),
    var(--bg);
  color: var(--text);
  padding: 40px 24px;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Noise Grid Overlay */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: var(--noise-opacity);
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 90%);
  z-index: 0;
}

/* Responsive Grid Layout */
.layout {
  width: min(1340px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}

/* Panels with Glassmorphism */
.panel {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(14, 11, 22, 0.88), rgba(6, 6, 11, 0.92));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Sidebar Styling (Sticky Profile) */
.profile {
  position: sticky;
  top: 40px;
  height: fit-content;
}

.cover {
  height: 140px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(6, 6, 11, 0.95)),
    radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.4), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.3), transparent 45%),
    linear-gradient(135deg, #180d28, #050408 80%);
  position: relative;
}

.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 12px);
  opacity: 0.4;
}

.profile-body {
  padding: 0 28px 28px;
}

.avatar-wrapper {
  margin-top: -50px;
  position: relative;
  display: inline-block;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 35% 25%, #d8b4fe, transparent 35%),
    linear-gradient(135deg, #3b135c, #07060a);
  box-shadow: 0 12px 30px var(--purple-glow);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
}

.avatar::before {
  content: "K";
  font-size: 46px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff, #e9d5ff 40%, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.name-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.name {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.name span.gradient {
  background: linear-gradient(135deg, #fff, #f472b6 50%, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tag {
  font-size: 11px;
  padding: 4px 10px;
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 99px;
  color: #f3e8ff;
  background: rgba(168, 85, 247, 0.12);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bio {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.meta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 20px;
}

.meta {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  color: #dfdbe3;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta svg {
  width: 16px;
  height: 16px;
  color: var(--purple);
}

.nav-links {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.nav-item {
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-item.active {
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.16), rgba(236, 72, 153, 0.06));
  border-color: var(--border-strong);
  color: #fff;
  box-shadow: inset 0 0 12px rgba(168, 85, 247, 0.1);
}

.nav-item:hover {
  transform: translateX(4px);
  border-color: rgba(236, 72, 153, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav-item svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.nav-item:hover svg {
  transform: scale(1.1);
}

/* Discord Activity Widget */
.status-card {
  margin-top: 24px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 700;
  color: #e9d5ff;
}

.discord-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(88, 101, 242, 0.16);
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.08), rgba(168, 85, 247, 0.04));
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.discord-card:hover {
  border-color: var(--discord);
  box-shadow: 0 4px 15px var(--discord-glow);
  transform: translateY(-2px);
}

.discord-avatar-container {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: visible;
  background: #110f1a;
}

.discord-avatar-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.discord-presence {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2.5px solid #0a0812;
  background: var(--muted);
  transition: background-color 0.3s ease;
}

.discord-presence.online { background: var(--green); box-shadow: 0 0 10px var(--green); }
.discord-presence.idle { background: #f59e0b; box-shadow: 0 0 10px #f59e0b; }
.discord-presence.dnd { background: var(--red); box-shadow: 0 0 10px var(--red); }
.discord-presence.offline { background: var(--muted); }

.discord-info {
  min-width: 0;
}

.discord-username {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.discord-activity {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.discord-status-text {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #d1c9d8;
  font-size: 11px;
  font-weight: 700;
}

.discord-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
}

.discord-status-dot.online { background: var(--green); }
.discord-status-dot.idle { background: #f59e0b; }
.discord-status-dot.dnd { background: var(--red); }

/* Main Content Wrapper */
.main {
  display: grid;
  gap: 28px;
}

/* Sections styling */
.section {
  padding: 30px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-title .icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: #e879f9;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

/* Hero Panel */
.hero {
  padding: 44px;
  min-height: 280px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -100px;
  top: -150px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.22), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  color: #f472b6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.hero h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.hero h1 span.gradient {
  background: linear-gradient(135deg, #ffffff 10%, #e879f9 55%, #ec4899 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary {
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.18));
  border: 1px solid var(--border-strong);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  border-color: rgba(236, 72, 153, 0.6);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.4), rgba(236, 72, 153, 0.25));
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.btn-secondary {
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ddd7e2;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Category Grid & Cards */
.category-intro {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.card-grid.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

.hub-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--panel-2);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hub-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.08);
}

.hub-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #e879f9;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.hub-card:hover .card-icon {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.4);
  color: #fff;
  transform: scale(1.05);
}

.hub-card h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.hub-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.card-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
  color: #dcbafc;
}

.card-tag {
  color: #fbcfe8;
  padding: 2px 8px;
  background: rgba(236, 72, 153, 0.08);
  border: 1px solid rgba(236, 72, 153, 0.15);
  border-radius: 99px;
  font-size: 10px;
}

/* Category Filters (Tabs) */
.filter-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-tab {
  text-align: center;
  padding: 10px 6px;
  border-radius: var(--radius-sm);
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.filter-tab:hover {
  color: var(--muted);
}

.filter-tab.active {
  color: #fff;
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.1);
}

/* FiveM Projects Catalog */
.project-row-list {
  display: grid;
  gap: 12px;
}

.project-row {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--panel-2);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}

.project-row:hover {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(20, 16, 32, 0.9);
  transform: translateX(4px);
}

.project-logo {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.18);
  font-weight: 900;
  color: #e879f9;
  font-size: 14px;
  transition: all 0.3s ease;
}

.project-row:hover .project-logo {
  background: rgba(168, 85, 247, 0.18);
  border-color: rgba(168, 85, 247, 0.35);
  color: #fff;
}

.project-info h3 {
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.project-info p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.project-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

/* Discord mini profile card styling */
.discord-profile-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: start;
}

.discord-profile-wrapper {
  perspective: 1000px;
}

.discord-profile-card {
  background: #111214;
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.6);
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  width: 100%;
  color: #dbdee1;
  transition: transform 0.3s ease;
}

.discord-profile-card:hover {
  transform: translateY(-4px);
}

.discord-banner {
  height: 100px;
  background: linear-gradient(135deg, #5865f2, #a855f7);
  position: relative;
  background-size: cover;
  background-position: center;
}

.discord-avatar-wrapper {
  padding: 0 16px;
  margin-top: -45px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 10;
}

.discord-profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #1e1f22;
  padding: 6px;
  box-sizing: border-box;
}

.discord-profile-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.discord-badges {
  display: flex;
  gap: 4px;
  background: #111214;
  padding: 4px 6px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.04);
  margin-bottom: 4px;
}

.discord-badge {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
}

.discord-badge svg {
  width: 18px;
  height: 18px;
}

.discord-profile-info {
  padding: 16px;
  background: #111214;
}

.discord-profile-names {
  background: #1b1c1f;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.03);
}

.discord-profile-display {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.discord-profile-username {
  font-size: 13px;
  color: #b5bac1;
  margin-top: 2px;
  font-weight: 500;
}

.discord-divider {
  height: 1px;
  background: #2b2d31;
  margin: 12px 0;
}

.discord-profile-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #949ba4;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.discord-profile-body {
  font-size: 13px;
  line-height: 1.5;
  color: #dbdee1;
}

.discord-profile-body a {
  color: #00a8fc;
}

.discord-profile-body a:hover {
  text-decoration: underline;
}

.discord-profile-card-footer {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.discord-profile-card-btn {
  background: #248046;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.discord-profile-card-btn:hover {
  background: #1a6535;
}

.discord-profile-card-btn.sec {
  background: #4e5058;
}

.discord-profile-card-btn.sec:hover {
  background: #6d6f78;
}

/* CS2 Plague Section details */
.cs2-modes-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.cs2-mode-card {
  background: rgba(255, 68, 68, 0.03);
  border: 1px solid rgba(255, 68, 68, 0.12);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.25s ease;
}

.cs2-mode-card:hover {
  border-color: rgba(255, 68, 68, 0.35);
  box-shadow: 0 6px 20px rgba(255, 68, 68, 0.08);
  transform: translateY(-2px);
}

.cs2-mode-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fca5a5;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.cs2-mode-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Connect card */
.connect-card {
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 68, 68, 0.18);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.connect-info {
  display: flex;
  gap: 16px;
  align-items: center;
}

.connect-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 68, 68, 0.12);
  border: 1px solid rgba(255, 68, 68, 0.25);
  display: grid;
  place-items: center;
  color: #f87171;
  font-weight: 900;
}

.connect-text h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.connect-text p {
  color: var(--muted);
  font-size: 13.5px;
}

/* Contacts grid */
.social-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.social-card {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--panel-2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
  transition: all 0.2s ease;
}

.social-card:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 85, 247, 0.35);
  background: rgba(20, 17, 30, 0.85);
}

.social-card strong {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  display: block;
}

.social-card span.sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
  display: block;
}

.social-card span.action {
  color: #c084fc;
  font-size: 12px;
  font-weight: 800;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Footer general info */
.footer-text {
  text-align: center;
  font-size: 12.5px;
  color: var(--soft);
  margin-top: 10px;
}

/* Toast System Styling */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  pointer-events: none;
}

.toast {
  background: rgba(12, 10, 18, 0.95);
  border: 1px solid var(--border-strong);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  pointer-events: auto;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(236, 72, 153, 0.15);
  color: var(--pink);
  display: grid;
  place-items: center;
  font-size: 12px;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  body {
    padding: 24px 16px;
  }
  .layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .profile {
    position: static;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .card-grid.three-cols {
    grid-template-columns: 1fr;
  }
  .cs2-modes-container {
    grid-template-columns: 1fr;
  }
  .social-links-grid {
    grid-template-columns: 1fr;
  }
  .project-row {
    grid-template-columns: 50px 1fr;
  }
  .project-meta {
    grid-column: 1 / -1;
    justify-content: flex-start;
    margin-top: 4px;
  }
  .connect-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .connect-card button {
    width: 100%;
  }
  .discord-profile-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .filter-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    padding: 28px;
  }
  .section {
    padding: 20px;
  }
}
