/* ==========================================================================
   GUNS.LOL 1:1 VIQOLE PROFILE STYLESHEET WITH MEMORIES & DISCORD WIDGETS
   ========================================================================== */

/* 1. FONT DEFINITIONS */
@font-face {
  font-family: 'Array';
  src: url('assets/fonts/array.woff2') format('woff2'),
       url('assets/fonts/array.woff') format('woff'),
       url('assets/fonts/array.ttf') format('truetype');
  font-weight: 400 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('assets/fonts/satoshi.woff2') format('woff2'),
       url('assets/fonts/satoshi.woff') format('woff'),
       url('assets/fonts/satoshi.ttf') format('truetype');
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Onest:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* 2. ROOT DESIGN TOKENS */
:root {
  --font-main: 'Array', 'Satoshi', 'Onest', 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --presenceUsernameColor: #ffffff;
  --presenceStatusColor: rgba(255, 255, 255, 0.7);
  --presenceContainerBackground: rgba(0, 0, 0, 0.3);
  --presenceContainerBorder: 2px solid rgba(255, 255, 255, 0.08);
  --discordServerMembers: rgba(255, 255, 255, 0.6);
  --secondTabBackground: rgba(0, 0, 0, 0.35);
  --secondTabBorder: 2px solid rgba(255, 255, 255, 0.1);
  --badgeContainerBackground: rgba(0, 0, 0, 0.3);
  --badgeContainerBorder: 2px solid rgba(255, 255, 255, 0.08);
  --userBadge: 18px;
  --textColor: #ffffff;
  --textColorDarker: rgba(255, 255, 255, 0.5);
  --iconColor: #ffffff;
  --backgroundColor: #000000;
  --joinStatus: rgba(255, 255, 255, 0.65);
  --avatarBorder: 2px solid rgba(255, 255, 255, 0.3);
  --containerColor: rgba(0, 0, 0, 0.45);
  --containerBlur: 20px;
  --containerBorder: 2px solid rgba(255, 255, 255, 0.15);
  --containerRadius: 19px;
  --containerWidth: 44rem;
  --containerPadding: 26px;
  --volumeBackgroundcolor: rgba(0, 0, 0, 0.45);
  --volumeBorder: 2px solid rgba(255, 255, 255, 0.12);
  --colorUsernameGlow: 0px 0px 16.5px #ffffff;
  --profileViewsContainerBorder: 2px solid rgba(255, 255, 255, 0.15);
  --tooltip-max-width: 260px;
  --tooltip-border-color: #1a1a1a77;
  --tooltip-background-color: #141414cc;
}

/* 3. RESETS & GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: url('assets/cursor.cur') 16 16, auto !important;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;
  background-color: #000000;
  color: var(--textColor);
  font-family: var(--font-main);
  overflow-x: hidden;
  user-select: none;
  -webkit-user-select: none;
}

/* Custom Sleek Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: #09090b;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.45);
}

::selection {
  background: #ffffff;
  color: #000000;
}

::-moz-selection {
  background: #ffffff;
  color: #000000;
}

/* 4. BACKGROUND VIDEO & OVERLAY */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  background: rgba(0, 0, 0, 0.46);
  pointer-events: none;
}

#bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  pointer-events: none;
}

/* 5. CLICK TO ENTER OVERLAY */
.enter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.88);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  z-index: 9999;
  cursor: pointer !important;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.enter-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.enter-text {
  font-family: 'Array', sans-serif;
  color: #fafafa;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
  padding: 0 20px;
  letter-spacing: normal;
  animation: enterPulse 2.5s infinite ease-in-out;
  text-shadow: 0 0 16.5px rgba(255, 255, 255, 0.85);
}

@keyframes enterPulse {
  0%, 100% {
    opacity: 0.85;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.7);
  }
}

/* 6. TOP CONTROLLERS (Volume & Video Playlist) */
.volume-control-wrapper {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 100;
  display: flex;
  align-items: center;
  background-color: var(--volumeBackgroundcolor);
  border: var(--volumeBorder);
  border-radius: 15px;
  padding: 8px 12px;
  width: 44px;
  height: 44px;
  overflow: hidden;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.volume-control-wrapper:hover {
  width: 170px;
  background-color: rgba(15, 15, 15, 0.85);
}

.volume-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  color: var(--textColor);
  cursor: pointer !important;
  transition: transform 0.2s ease;
}

.volume-icon-btn:active {
  transform: scale(0.9);
}

.volume-icon-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.volume-slider-container {
  width: 100%;
  margin-left: 14px;
  display: flex;
  align-items: center;
}

.volume-range {
  -webkit-appearance: none;
  appearance: none;
  width: 90px;
  height: 4px;
  border-radius: 2px;
  background: var(--textColorDarker);
  outline: none;
  cursor: pointer !important;
}

.volume-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer !important;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
  transition: transform 0.15s ease;
}

.volume-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Video Playlist Switcher (Top Right) */
.video-control-wrapper {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--volumeBackgroundcolor);
  border: var(--volumeBorder);
  border-radius: 15px;
  padding: 6px 10px;
  height: 44px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.video-control-wrapper:hover {
  background-color: rgba(15, 15, 15, 0.88);
  border-color: rgba(255, 255, 255, 0.25);
}

.video-nav-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer !important;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.video-nav-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.1);
}

.video-nav-btn:active {
  transform: scale(0.92);
}

.video-nav-btn svg {
  width: 18px;
  height: 18px;
}

.video-info-display {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 4px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.2px;
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer !important;
}

.video-icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  fill: #a855f7;
}

/* 7. PAGE LAYOUT */
.page-container {
  width: 100%;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-wrapper {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 15px 40px;
  perspective: 1000px;
  z-index: 10;
}

/* 8. PROFILE CARD */
.profile-card {
  position: relative;
  width: 100%;
  max-width: var(--containerWidth);
  padding: var(--containerPadding);
  border-radius: var(--containerRadius);
  background-color: var(--containerColor);
  border: var(--containerBorder);
  backdrop-filter: blur(var(--containerBlur));
  -webkit-backdrop-filter: blur(var(--containerBlur));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 10;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s ease-out, opacity 0.5s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

/* Mouse Spotlight Flashlight Effect */
.profile-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at var(--mouse-x, -999px) var(--mouse-y, -999px),
    rgba(255, 255, 255, 0.08),
    transparent 65%
  );
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.25s ease;
}

/* Dönen Neon Çerçeve (Border Beam) */
.border-beam {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  pointer-events: none;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  background: conic-gradient(
    from var(--beam-angle, 0deg),
    transparent 0%,
    transparent 65%,
    rgba(255, 255, 255, 0.2) 75%,
    rgba(255, 255, 255, 0.95) 90%,
    #a855f7 96%,
    transparent 100%
  );
  animation: borderBeamSpin 5s linear infinite;
  z-index: 1;
}

@property --beam-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes borderBeamSpin {
  from { --beam-angle: 0deg; }
  to { --beam-angle: 360deg; }
}

/* Initial state before enter */
.profile-card.animate-unfold-start {
  transform: scale(0.8) translateY(-50px);
  opacity: 0.001;
}

.profile-card.animate-unfold-end {
  transform: scale(1) translateY(0);
  opacity: 1;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 9. CARD HEADER (Avatar & Info) */
.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.avatar-container {
  position: relative;
  display: flex;
  width: 120px;
  height: 120px;
  min-width: 120px;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 35px;
  border: var(--avatarBorder);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, border-color 0.3s ease;
  z-index: 2;
}

.avatar-img:hover {
  transform: scale(1.03);
  border-color: rgba(255, 255, 255, 0.7);
}

.avatar-decoration {
  position: absolute;
  top: -12%;
  left: -12%;
  width: 124%;
  height: 124%;
  pointer-events: none;
  z-index: 4;
  display: none;
}

.avatar-decoration[src=""],
.avatar-decoration:not([src]) {
  display: none !important;
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.username-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* GUNS.LOL BELLY 1:1 USERNAME EFFECT */
.username-typewriter {
  font-family: 'Array', sans-serif;
  font-size: 36.5px;
  font-weight: 400;
  line-height: 41px;
  color: #ffffff;
  letter-spacing: normal;
  display: inline-flex;
  align-items: center;
  text-shadow: var(--colorUsernameGlow);
  position: relative;
}

.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  background-color: #ffffff;
  margin-left: 3px;
  animation: blinkCursor 0.8s infinite;
  box-shadow: 0 0 8px #ffffff;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Subtitle Typewriter */
.subtitle-typewriter {
  font-family: 'Satoshi', 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 550;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  margin-top: 2px;
  min-height: 24px;
  letter-spacing: 0.2px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.subtitle-typewriter span {
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.sub-cursor {
  display: inline-block;
  width: 1.5px;
  height: 0.9em;
  background-color: rgba(255, 255, 255, 0.8);
  margin-left: 2px;
  animation: blinkCursor 0.8s infinite;
}

/* Badges Container */
.badges-container {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 25px;
  background-color: var(--badgeContainerBackground);
  border: var(--badgeContainerBorder);
  backdrop-filter: blur(10px);
}

.badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.badge-item svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  filter: drop-shadow(#ffffff 0 0 2.5px);
  transition: transform 0.2s ease;
}

.badge-item:hover svg {
  transform: scale(1.15);
}

.join-date {
  font-size: 13px;
  font-weight: 400;
  color: var(--joinStatus);
  margin-top: 2px;
}

/* 9B. CARD TABS NAVIGATION */
.card-tabs-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  padding: 5px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-top: 6px;
  margin-bottom: 4px;
  z-index: 3;
}

.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer !important;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.tab-btn.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35), 0 0 14px rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.tab-btn.active svg {
  transform: scale(1.1);
}

/* 9C. TAB PANES */
.tab-pane {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: tabFadeIn 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  z-index: 3;
}

.tab-pane.active {
  display: flex;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 9D. PROJECTS TAB GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

.project-card {
  background-color: var(--secondTabBackground);
  border: var(--secondTabBorder);
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.project-card:hover {
  background-color: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.project-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--textColor);
  letter-spacing: -0.2px;
  word-break: break-all;
}

.project-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(168, 85, 247, 0.2);
  color: #d8b4fe;
  border: 1px solid rgba(168, 85, 247, 0.3);
  white-space: nowrap;
}

.project-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

.project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 600;
  width: fit-content;
  align-self: flex-start;
  transition: all 0.2s ease;
}

.project-card:hover .project-btn {
  background: #ffffff;
  color: #000000;
  transform: scale(1.02);
}

/* 10. DISCORD WIDGETS ROW */
.discord-widgets-row {
  width: 100%;
  display: flex;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 5px;
  box-sizing: border-box;
}

/* 10A. DISCORD USER PRESENCE PROFILE CARD */
.discord-user-card {
  flex: 1;
  background-color: var(--secondTabBackground);
  border: var(--secondTabBorder);
  border-radius: 22px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: all 0.25s ease;
}

.discord-user-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.discord-user-avatar-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
}

.discord-user-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

/* Status Dot on Discord Avatar */
.status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 3px solid #111216;
  background-color: #80848e;
  z-index: 5;
  transition: background-color 0.3s ease;
}

.status-dot.online { background-color: #23a55a; box-shadow: 0 0 8px #23a55a; }
.status-dot.idle { background-color: #f0b232; box-shadow: 0 0 8px #f0b232; }
.status-dot.dnd { background-color: #f23f43; box-shadow: 0 0 8px #f23f43; }
.status-dot.offline { background-color: #80848e; }

.discord-user-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  overflow: hidden;
}

.discord-user-top {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.discord-global-name {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--textColor);
  letter-spacing: -0.2px;
}

.discord-clan-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1px 6px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.clan-badge-icon {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.discord-handle {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--textColorDarker);
}

.discord-custom-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.status-emoji {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.status-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 10B. DISCORD SERVER WIDGET CARD */
.discord-server-card {
  flex: 1;
  background-color: var(--secondTabBackground);
  border: var(--secondTabBorder);
  border-radius: 22px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: all 0.25s ease;
}

.discord-server-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.discord-server-left {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.discord-server-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 14px;
  object-fit: cover;
  background-color: #5865f2;
}

.discord-server-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}

.discord-server-name {
  color: var(--textColor);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.discord-server-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}

.stat-online {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-online::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #23a55a;
}

.stat-members {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-members::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
}

.discord-join-btn {
  background: #5865f2;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.2px;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.discord-server-card:hover .discord-join-btn {
  background: #4752c4;
  transform: scale(1.04);
}

/* 11. DISCORD LIVE SPOTIFY / GAME ACTIVITY BAR */
.discord-activity-bar {
  display: none;
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 10px 16px;
  margin-top: 4px;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.activity-icon-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  overflow: hidden;
  background: #18181b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: #1db954;
}

.activity-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  overflow: hidden;
}

.activity-header {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
}

.activity-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-details {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 12. SOCIAL LINKS */
.socials-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
  margin-bottom: 8px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-btn:hover {
  transform: translateY(-3px);
}

.social-btn:hover svg {
  transform: scale(1.15);
}

.social-btn:active {
  transform: scale(0.94);
}

.discord-btn:hover {
  background: rgba(88, 101, 242, 0.22) !important;
  border-color: rgba(88, 101, 242, 0.5) !important;
  color: #7289da !important;
  box-shadow: 0 6px 20px rgba(88, 101, 242, 0.35) !important;
}

.youtube-btn:hover {
  background: rgba(239, 68, 68, 0.22) !important;
  border-color: rgba(239, 68, 68, 0.5) !important;
  color: #ef4444 !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35) !important;
}

.github-btn:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3) !important;
}

/* 13. SCROLL DOWN HINT */
.scroll-down-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer !important;
  z-index: 15;
}

.scroll-down-hint:hover {
  color: #ffffff;
  transform: translateY(3px);
}

.scroll-down-hint .scroll-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s ease;
}

.scroll-down-hint:hover .scroll-text {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.scroll-arrow-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: bounceArrow 2s infinite ease-in-out;
  transition: all 0.25s ease;
}

.scroll-down-hint:hover .scroll-arrow-wrap {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.25);
}

.scroll-icon {
  width: 18px;
  height: 18px;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* 14. BOTTOM-RIGHT AUTHENTIC GUNS.LOL VIEWS COUNTER */
.views-counter-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(14, 14, 17, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fafafa;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  transition: all 0.25s ease;
  user-select: none;
}

.views-counter-wrapper:hover {
  background: rgba(22, 22, 26, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 25px rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.views-counter-wrapper svg {
  width: 17px;
  height: 17px;
  fill: rgba(255, 255, 255, 0.8);
}

/* 15. ANILAR & BULUNDUĞUM YERLER (MEMORIES GALLERY SECTION) */
.memories-section {
  width: 100%;
  min-height: 100vh;
  padding: 60px 20px 120px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.memories-container {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.memories-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.memories-badge-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #c084fc;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.memories-title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

.memories-subtitle {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 580px;
  line-height: 1.5;
}

/* Category Filter Bar */
.memories-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  background: rgba(15, 15, 18, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px;
  border-radius: 16px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.filter-btn {
  background: transparent;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.65);
  padding: 7px 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.filter-btn.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.15);
}

.filter-count {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.filter-btn.active .filter-count {
  background: #ffffff;
  color: #000000;
}

/* Memories Grid */
.memories-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}

/* Memory Card */
.memory-card {
  background: rgba(14, 14, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer !important;
  position: relative;
}

.memory-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75), 0 0 25px rgba(168, 85, 247, 0.2);
}

/* Thumbnail Wrap */
.memory-thumbnail-wrap {
  width: 100%;
  height: 190px;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
}

.memory-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  filter: brightness(0.92);
}

.memory-card:hover .memory-thumbnail-img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.memory-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fafafa;
  backdrop-filter: blur(8px);
}

.memory-badge-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(168, 85, 247, 0.3);
  border: 1px solid rgba(168, 85, 247, 0.6);
  color: #fafafa;
  backdrop-filter: blur(8px);
}

.memory-album-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(10, 10, 14, 0.85);
  border: 1px solid rgba(245, 158, 11, 0.65);
  color: #fbbf24;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  z-index: 5;
}

.memory-album-badge svg {
  width: 13px;
  height: 13px;
  color: #fbbf24;
}

.memory-zoom-indicator {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fafafa;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.25s ease;
}

.memory-card:hover .memory-zoom-indicator {
  opacity: 1;
  transform: scale(1);
}

.memory-zoom-indicator svg {
  width: 16px;
  height: 16px;
}

/* Card Body */
.memory-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.memory-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.memory-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.memory-date {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.memory-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
  margin-top: 2px;
  flex: 1;
}

.memory-footer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: #a855f7;
  transition: color 0.2s ease;
}

.memory-card:hover .memory-footer {
  color: #c084fc;
}

/* 16. LIGHTBOX MODAL */
.memories-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.memories-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer !important;
}

.lightbox-container {
  position: relative;
  z-index: 10;
  max-width: 92vw;
  max-height: 90vh;
  background: rgba(18, 18, 22, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.memories-lightbox.active .lightbox-container {
  transform: scale(1);
}

.lightbox-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 20;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
  background: rgba(239, 68, 68, 0.8);
  border-color: #ef4444;
  transform: scale(1.1);
}

.lightbox-close-btn svg {
  width: 20px;
  height: 20px;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  transition: all 0.2s ease;
}

.lightbox-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-btn.prev { left: 16px; }
.lightbox-nav-btn.next { right: 16px; }

.lightbox-nav-btn svg {
  width: 24px;
  height: 24px;
}

.lightbox-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050507;
  max-height: 65vh;
  overflow: hidden;
  padding: 15px;
}

.lightbox-img {
  max-width: 100%;
  max-height: 62vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-info-bar {
  padding: 18px 24px 22px;
  background: rgba(14, 14, 18, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lightbox-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lightbox-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lightbox-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 8px;
  background: rgba(168, 85, 247, 0.25);
  border: 1px solid rgba(168, 85, 247, 0.5);
  color: #c084fc;
}

.lightbox-album-counter {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: #fbbf24;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
}

.lightbox-date {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

.lightbox-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.lightbox-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Lightbox Multi-Image Series Step Navigation Bar */
.lightbox-steps-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-step-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.lightbox-step-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-1px);
}

.lightbox-step-pill.active {
  background: rgba(245, 158, 11, 0.22);
  border-color: #f59e0b;
  color: #fbbf24;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.3);
}

.lightbox-step-pill .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-size: 10px;
  font-weight: 700;
}

.lightbox-step-pill.active .step-num {
  background: #f59e0b;
  color: #0c0a09;
}

/* 17. TOOLTIP & TOAST NOTIFICATION */
.guns-tooltip {
  position: fixed;
  z-index: 999999;
  padding: 5px 11px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: #fafafa;
  background: var(--tooltip-background-color);
  border: 2px solid var(--tooltip-border-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 4px, 0) scale(0.95);
  transition: opacity 0.15s cubic-bezier(0.16, 1, 0.3, 1), transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  white-space: nowrap;
}

.guns-tooltip.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.toast-notification {
  position: fixed;
  top: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(-30px);
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999999;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-icon svg {
  width: 16px;
  height: 16px;
  fill: #4ade80;
}

/* 18. RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
  .profile-card {
    padding: 18px;
    gap: 12px;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 12px;
  }
  
  .username-row {
    justify-content: center;
  }
  
  .subtitle-typewriter {
    justify-content: center;
  }
  
  .username-typewriter {
    font-size: 28px;
    line-height: 32px;
  }
  
  .avatar-container {
    width: 100px;
    height: 100px;
    min-width: 100px;
  }
  
  .enter-text {
    font-size: 24px;
  }
  
  .discord-widgets-row {
    flex-direction: column;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .memories-grid {
    grid-template-columns: 1fr;
  }

  .memories-title {
    font-size: 26px;
  }

  .video-control-wrapper {
    top: 15px;
    right: 15px;
    padding: 4px 8px;
    height: 38px;
  }

  .video-info-display {
    max-width: 95px;
    font-size: 11px;
  }

  .volume-control-wrapper {
    height: 38px;
  }

  .card-tabs-nav {
    gap: 4px;
    padding: 4px;
  }

  .tab-btn {
    padding: 7px 8px;
    font-size: 12px;
    gap: 4px;
  }

  .views-counter-wrapper {
    bottom: 14px;
    right: 14px;
    font-size: 12px;
    padding: 5px 11px;
  }

  .lightbox-container {
    max-width: 96vw;
  }

  .lightbox-nav-btn {
    width: 36px;
    height: 36px;
  }
  .lightbox-nav-btn.prev { left: 8px; }
  .lightbox-nav-btn.next { right: 8px; }
}
