@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

input::placeholder {
	color: #6c757d !important;
}

.col img {
	height: 100px;
	width: 100%;
	cursor: pointer;
	transition: transform 1s;
	object-fit: cover;
}

.col label {
	overflow: hidden;
	position: relative;
}

.imgbgchk:checked + label > .tick_container {
	opacity: 1;
}

.imgbgchk:checked + label > img {
	transform: scale(1.25);
	opacity: 0.3;
}

.tick_container {
	transition: 0.5s ease;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	cursor: pointer;
	text-align: center;
}

:root {
	color-scheme: dark;
	--bv-general: 24, 24, 29;
	--bv-body: 18, 18, 23;
	--bv-white: 255, 255, 255;
	--bv-header: 47, 53, 59;
	--bv-green: 70, 154, 85;
	--bv-green-bright: 76, 166, 92;
	--bv-yellow: 255, 202, 40;
	--bv-yellow-bright: 255, 192, 0;
	--bv-blue: 10, 105, 187;
	--bv-credits: 18, 145, 255;
	--bv-blue-bright: 11, 112, 200;
	--bv-red: 209, 24, 46;
	--bv-red-bright: 209, 3, 27;
	--bv-muted: 104, 110, 120;
	--bv-muted-bright: 106, 114, 124;
	--bv-purple: 215, 76, 221;
	--bv-gray: 132, 132, 132;
	--bv-dark-gray: 19, 23, 26;
	--bv-text: 220, 220, 220;
	--bv-text: 220, 220, 220;
	--bv-black: 0, 0, 0;
	--bv-radius-xs: 2px;
	--bv-radius-sm: 4px;
	--bv-radius-md: 6px;
	--bv-radius-lg: 8px;
	--bv-radius-xl: 10px;
	--bv-radius-full: 9999px;
}

.form {
  display: block;
  background: rgb(var(--bv-white), 8%);
  color: rgb(var(--bv-white), 80%);
  box-shadow: 0 1px 2px rgb(var(--bv-black), 16%);
  padding: 0 14px;
  border-radius: var(--bv-radius-md);
  appearance: none;
  outline: none;
  border: none;
  height: 40px;
  width: 100%;
}

.form::placeholder {
  color: rgb(var(--bv-white), 40%);
}
.wrapper > .container {
  padding-top: 128px;
  padding-bottom: 72px;
}
@media (max-width: 992px) {
  .wrapper {
    padding-left: 0;
  }
}

.pagination {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination .page-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.pagination .page-link {
  background: transparent;
  border: none;
  font-size: 14px;
  display: inline-block;
  color: rgb(var(--bv-white));
  padding: 8px 12px;
  border-radius: var(--bv-radius-md);
  transition: all 0.2s;
}
.pagination .page-link:hover {
  background: rgb(var(--bv-white), 4%);
}
.pagination .page-link.bg-primary {
  text-shadow: 0 1px 2px rgb(var(--bv-black), 16%);
  box-shadow: 0 1px 2px rgb(var(--bv-black), 16%);
}
textarea.form {
  margin: 0;
  padding-top: 14px;
  height: auto;
}

select.form {
  cursor: pointer;
  background-image: var(--bv-pointer-light);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position-x: calc(100% - 10px);
  background-position-y: 10px;
}

.form-parent {
  display: flex;
  position: relative;
}
.form-parent.has-icon-right .form {
  padding-right: 46px;
}
.form-parent.has-icon-right .form-parent-icon {
  cursor: pointer;
  border: none;
  background: transparent;
  appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(var(--bv-white), 60%);
  width: 46px;
  font-size: 18px;
  right: 0;
  height: 100%;
  position: absolute;
}

.headshot {
  background: rgb(var(--bv-black), 30%);
}
.rounded-circle {
  border-radius: 50%;
}

.tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tabs .tab-item {
  display: block;
  position: relative;
}
.tabs .tab-link {
  display: block;
  position: relative;
  border-radius: var(--bv-radius-md);
  text-decoration: none;
  transition: all 0.2s;
  padding: 12px;
  color: var(--bv-white);
}
.tabs .tab-link:hover {
  background: rgb(var(--bv-white), 4%);
}
.tabs .tab-link.bg-primary {
  text-shadow: 0 1px 2px rgb(var(--bv-black), 16%);
  box-shadow: 0 1px 2px rgb(var(--bv-black), 16%);
}
.tabs .tab-icon {
  font-size: 18px;
  line-height: 1;
  width: 32px;
  text-align: center;
  opacity: 0.5;
}

.section:not(:first-of-type) {
  padding-top: 18px;
}

.divider {
  user-select: none;
  pointer-events: none;
  display: flex;
  align-items: center;
  color: rgb(var(--bv-white), 50%);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1px;
  font-size: 12px;
  margin: 8px 8px;
}
.divider::after {
  content: "";
  height: 1px;
  background-color: rgb(var(--bv-white), 20%);
  margin-left: 8px;
  flex-grow: 1;
}
.divider.divider-centered::before {
  content: "";
  height: 1px;
  background-color: rgb(var(--bv-white), 20%);
  margin-right: 8px;
  flex-grow: 1;
}

.rounded-xs {
  border-radius: var(--bv-radius-xs) !important;
}
.rounded-sm {
  border-radius: var(--bv-radius-sm) !important;
}
.rounded-md {
  border-radius: var(--bv-radius-md) !important;
}
.rounded-lg {
  border-radius: var(--bv-radius-lg) !important;
}
.rounded-xl {
  border-radius: var(--bv-radius-xl) !important;
}

.rounded-b-md {
  border-bottom-right-radius: var(--bv-radius-md) !important;
  border-bottom-left-radius: var(--bv-radius-md) !important;
}
.rounded-t-md {
  border-top-right-radius: var(--bv-radius-md) !important;
  border-top-left-radius: var(--bv-radius-md) !important;
}

.text-shadow-md {
  text-shadow: 0 1px 2px rgb(var(--bv-black), 16%) !important;
}
.text-shadow-lg {
  text-shadow: 0 1px 3px rgb(var(--bv-black), 46%) !important;
}

.status-indicator {
  position: absolute;
  bottom: 0;
  right: -2px;
  border: 3px solid rgb(var(--bv-general));
  height: 20px;
  width: 20px;
}

.game-thumbnail {
  position: relative;
  background-size: cover;
  height: 184px;
  background-position: center;
}
.game-thumbnail::before {
  background: rgb(0, 0, 0, 30%);
  border-top-right-radius: var(--bv-radius-md) !important;
  border-top-left-radius: var(--bv-radius-md) !important;
  content: "";
  position: absolute;
  inset: 0;
}
.game-actions {
  background: rgb(0, 0, 0, 30%);
}

.guild-icon {
  height: 100px;
  width: 100px;
  background: rgb(var(--bv-dark-gray));
  box-shadow: 0 1px 4px rgb(var(--bv-black), 30%);
  display: flex;
  justify-content: center;
  align-items: center;
}

#whatsNewModal .modal-header {
  background-color: #1669f0;
  color: #fff;
  padding: 20px;
  text-align: center;
  border-bottom: 0;
  position: relative;
}

#whatsNewModal .modal-body {
  text-align: left;
}

#whatsNewModal .modal-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}

#whatsNewModal .headline {
  font-size: 24px;
  font-weight: bold;
  color: #1669f0;
  margin-top: 0; 
}

#whatsNewModal .line {
  background-color: #1669f0;
  height: 2px;
  margin: 10px 0;
}

#whatsNewModal .modal-footer {
  justify-content: center;
}

#whatsNewModal .modal-header h5 {
  margin-bottom: 0;
}

#whatsNewModal .date {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #ccc;
}

#welcomeModal .modal-header {
  background-color: #1669f0;
  color: #fff;
  padding: 20px;
  text-align: center;
  border-bottom: 0;
  position: relative;
}

#welcomeModal .modal-body {
  text-align: left;
}

#welcomeModal .modal-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}

#welcomeModal .headline {
  font-size: 24px;
  font-weight: bold;
  color: #1669f0;
  margin-top: 0; 
}

#welcomeModal .line {
  background-color: #1669f0;
  height: 2px;
  margin: 10px 0;
}

#welcomeModal .modal-footer {
  justify-content: center;
}

#welcomeModal .modal-header h5 {
  margin-bottom: 0;
}

#welcomeModal .date {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #ccc;
}

.loading-skeleton {
  background: transparent !important;
  border-radius: 4px;
  overflow: hidden;
}

.loading-skeleton img {
  filter: grayscale(1);
}

.loading-skeleton .progress-bar {
  background-color: #f0f0f0;
}

.loading-skeleton .wave-text {
  display: inline-block;
  width: 100%;
  height: 1em;
  background: linear-gradient(90deg, #f5f5f5 25%, #e0e0e0 50%, #f5f5f5 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  margin-bottom: 0.5em;
}

@keyframes loading {
  0% {
      background-position: -200% 0;
  }

  100% {
      background-position: 200% 0;
  }
}

.footer-link:hover {
  color: #007bff;
}

.blurred-text {
  filter: blur(12px);
  transition: filter 0.3s ease;
}

.blurred-text:hover {
  filter: blur(0);
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

 html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
  }
  
  /* Sections
       ========================================================================== */
  
  /**
     * Remove the margin in all browsers.
     */
  
  body {
    margin: 0;
  }
  
  /**
     * Render the `main` element consistently in IE.
     */
  
  main {
    display: block;
  }
  
  /**
     * Correct the font size and margin on `h1` elements within `section` and
     * `article` contexts in Chrome, Firefox, and Safari.
     */
  
  h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }
  
  /* Grouping content
       ========================================================================== */
  
  /**
     * 1. Add the correct box sizing in Firefox.
     * 2. Show the overflow in Edge and IE.
     */
  
  hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
  }
  
  /**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
  
  pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
  }
  
  /* Text-level semantics
       ========================================================================== */
  
  /**
     * Remove the gray background on active links in IE 10.
     */
  
  a {
    background-color: transparent;
  }
  
  /**
     * 1. Remove the bottom border in Chrome 57-
     * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
     */
  
  abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    text-decoration: underline dotted; /* 2 */
  }
  
  /**
     * Add the correct font weight in Chrome, Edge, and Safari.
     */
  
  b,
  strong {
    font-weight: bolder;
  }
  
  /**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
  
  code,
  kbd,
  samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
  }
  
  /**
     * Add the correct font size in all browsers.
     */
  
  small {
    font-size: 80%;
  }
  
  /**
     * Prevent `sub` and `sup` elements from affecting the line height in
     * all browsers.
     */
  
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  sup {
    top: -0.5em;
  }
  
  /* Embedded content
       ========================================================================== */
  
  /**
     * Remove the border on images inside links in IE 10.
     */
  
  img {
    border-style: none;
  }
  
  /* Forms
       ========================================================================== */
  
  /**
     * 1. Change the font styles in all browsers.
     * 2. Remove the margin in Firefox and Safari.
     */
  
  button,
  input,
  optgroup,
  select,
  textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
  }
  
  /**
     * Show the overflow in IE.
     * 1. Show the overflow in Edge.
     */
  
  button,
  input {
    /* 1 */
    overflow: visible;
  }
  
  /**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */
  
  button,
  select {
    /* 1 */
    text-transform: none;
  }
  
  /**
     * Correct the inability to style clickable types in iOS and Safari.
     */
  
  button,
  [type="button"],
  [type="reset"],
  [type="submit"] {
    appearance: button;
  }
  
  /**
     * Remove the inner border and padding in Firefox.
     */
  
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  
  /**
     * Restore the focus styles unset by the previous rule.
     */
  
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
  }
  
  /**
     * Correct the padding in Firefox.
     */
  
  fieldset {
    padding: 0.35em 0.75em 0.625em;
  }
  
  /**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */
  
  legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
  }
  
  /**
     * Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
  
  progress {
    vertical-align: baseline;
  }
  
  /**
     * Remove the default vertical scrollbar in IE 10+.
     */
  
  textarea {
    overflow: auto;
  }
  
  /**
     * 1. Add the correct box sizing in IE 10.
     * 2. Remove the padding in IE 10.
     */
  
  [type="checkbox"],
  [type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
  }
  
  /**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */
  
  [type="number"]::-webkit-inner-spin-button,
  [type="number"]::-webkit-outer-spin-button {
    height: auto;
  }
  
  /**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */

[type="search"] {
	appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
     * Remove the inner padding in Chrome and Safari on macOS.
     */
  
  [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  
  /**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/* Interactive
       ========================================================================== */
  
  /*
     * Add the correct display in Edge, IE 10+, and Firefox.
     */

details {
	display: block;
}

/*
     * Add the correct display in all browsers.
     */
  
  summary {
    display: list-item;
  }
  
  /* Misc
       ========================================================================== */

/**
     * Add the correct display in IE 10+.
     */

template {
	display: none;
}

/**
     * Add the correct display in IE 10.
     */
  
  [hidden] {
    display: none;
  }

/* B-day ballons by ArkInfinity */

#balloon-container {
	height: 100vh;
	padding: 1em;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	transition: opacity 500ms;
}

.balloon {
	height: 125px;
	width: 105px;
	border-radius: 75% 75% 70% 70%;
	position: relative;
}

.balloon:before {
	content: "";
	height: 75px;
	width: 1px;
	padding: 1px;
	background-color: #fdfd96;
	display: block;
	position: absolute;
	top: 125px;
	left: 0;
	right: 0;
	margin: auto;
}

.balloon:after {
	content: "▲";
	text-align: center;
	display: block;
	position: absolute;
	color: inherit;
	top: 120px;
	left: 0;
	right: 0;
	margin: auto;
}

@keyframes float {
	from {
		transform: translateY(100vh);
		opacity: 1;
	}
	to {
		transform: translateY(-300vh);
		opacity: 0;
	}
}

/* Notification Styles */
.unread-notification {
	background-color: rgba(0, 123, 255, 0.1) !important;
	border-left: 4px solid #007bff !important;
}

.notification-dot {
	width: 8px;
	height: 8px;
	background-color: #007bff;
	border-radius: 50%;
	flex-shrink: 0;
}

.notif-icon-primary {
	border: 2px solid #007bff;
	padding: 2px;
}

.section {
	padding: 1rem;
	border-radius: 0.375rem;
	transition: background-color 0.2s ease;
}

.section:hover {
	background-color: rgba(0, 0, 0, 0.05);
	text-decoration: none !important;
}

/* Profile Page Styles */
.slot {
	width: 60px;
	height: 60px;
	background-color: #2c2c2c;
	border: 2px solid #444;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: all 0.3s ease;
}

.slot.has-item {
	background-color: #1a1a1a;
	border-color: #666;
}

.slot.has-item:hover {
	border-color: #888;
	transform: scale(1.05);
}

.slot .bv-icon {
	font-size: 24px;
	color: #666;
}

.status {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	position: absolute;
	bottom: 2px;
	right: 2px;
	border: 2px solid #fff;
}

.status.online {
	background-color: #28a745;
}

.status.offline {
	background-color: #6c757d;
}

.status.sm {
	width: 8px;
	height: 8px;
}

.main-pfp {
	border-radius: 50%;
	aspect-ratio: 1;
	object-fit: cover;
}

.achievement-icon {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.stat-number {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--bs-primary);
	margin-bottom: 0.25rem;
}

.row-tight {
	margin-left: -5px;
	margin-right: -5px;
}

.row-tight > * {
	padding-left: 5px;
	padding-right: 5px;
}

.truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.min-w-0 {
	min-width: 0;
}

.mr-2 {
	margin-right: 0.5rem !important;
}

.ml-2 {
	margin-left: 0.5rem !important;
}

.bg-gray-500 {
	background-color: #6c757d !important;
}

.blur-hover {
	filter: blur(12px);
	transition: filter 0.3s ease;
}

.blur-hover:hover {
	filter: blur(0);
}

