@font-face {
    font-family: 'BebasNeueRegular';
    src: url('./fonts/BebasNeue-webfont.eot');
    src: url('./fonts/BebasNeue-webfont.eot#iefix') format('embedded-opentype'),
         url('./fonts/BebasNeue-webfont.woff') format('woff'),
         url('./fonts/BebasNeue-webfont.ttf') format('truetype'),
         url('./fonts/BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'TUBold';
    src: url('./fonts/tu_bold-webfont.eot');
    src: url('./fonts/tu_bold-webfont.eot#iefix') format('embedded-opentype'),
         url('./fonts/tu_bold-webfont.woff') format('woff'),
         url('./fonts/tu_bold-webfont.ttf') format('truetype'),
         url('./fonts/tu_bold-webfont.svg#TUBold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'TURegular';
    src: url('./fonts/tu_regular-webfont.eot');
    src: url('./fonts/tu_regular-webfont.eot#iefix') format('embedded-opentype'),
         url('./fonts/tu_regular-webfont.woff') format('woff'),
         url('./fonts/tu_regular-webfont.ttf') format('truetype'),
         url('./fonts/tu_regular-webfont.svg#TURegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

:root {

  --bg-primary: #0a0f1c;
  --bg-secondary: #111827;
  --bg-tertiary: rgba(10,15,28,0.9);
  --bg-dark: #000;


  --bg-primary-alt: rgb(0,0,0,.18);
  --bg-secondary-alt: rgb(0,0,0,.18);
  --bg-tertiary-alt: rgb(0,0,0,.18);

  --link-primary: #5BA1E3;
  --link-secondary: #98C7F2;

  --color-primary: white;
  --color-secondary: #bbb;
  --color-tertiary: #ccc;

  --alert-red: #8c2a2a;
  --alert-green: #008a00;
  --alert-cool: #6ca0ff;

  --alert-text-red: #f66;
  --alert-text-green: #008a00;
  --alert-text-cool: #6ca0ff;

  --text-color: #F2F5FA;

  --h1to6: #D6B46F;

  --highlight-row-light: rgba(255,255,255,.04);
  --highlight-row-red: rgb(255, 0, 0,0.04);

}



html {
    -webkit-overflow-scrolling: touch;
    background: var(--bg-primary);

}
html::before {
  content: "";
  position: fixed;
  z-index: -3;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/space-bg.png");
}

html::after {
  content: "";
  position: fixed;
  z-index: -2;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(10,15,28,0.8);
}

html, body {
    height: 100%;
    background-color: var(--bg-primary);
}
body {
    margin: 0;
    min-width: 320px;
    height: 100%;
    font-family: TURegular, Sans-Serif, Arial, "Open Sans", Tahoma;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    color: var(--text-color);
    background: transparent !important;
}
main {
    min-height: 100%;
    position: relative;
}

:placeholder {
  color: #ccc;
}

a, a:visited{
  color: var(--link-primary);
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: var(--link-secondary);
  text-decoration: none;
}
hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(214,180,111,0.6),
    transparent
  );
  margin: 16px 0;
}


h1,h2,h3,h4,h5,h6 {
  color: var(--h1to6);
}

b {
  font-family: TUBold, Sans-Serif, Arial, "Open Sans", Tahoma;
}

.admin-bar-active {
   margin-top: 28px;
}

/* HEADER STUFF */

/* =========================
   HEADER – TOP UTILITY BAR
   ========================= */

.site-header__top--bar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 32px;
  padding: 0 24px;

  background: linear-gradient(
    to bottom,
    rgba(12,18,28,0.95),
    rgba(8,12,20,0.95)
  );

  color: #cfd8e3;
  font-size: 0.85rem;

  border-bottom: 1px solid rgba(214,180,111,0.35);

  /* critical: keep it in document flow */
  position: relative;
  z-index: 10;
}

.header-top__bar--name {
  white-space: nowrap;
}

.highlight-name {
  color: var(--h1to6);
  font-weight: 600;
}

.header-top__bar--clock {
  font-family: monospace;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.time-separator {
  opacity: 0.5;
  padding: 0 2px;
}

/* =========================
   HEADER – MAIN ROW
   ========================= */

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 56px;
  padding: 0 20px;

  background: var(--bg-tertiary);
  border-bottom: 1px solid rgba(214,180,111,0.25);

  position: relative;
  z-index: 20;
}
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  background: none;
  border: none;
  color: var(--link-primary);
  cursor: pointer;
}

/* Hide on desktop */
@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none;
  }
}
.header-nav {
  display: none;
}

/* Desktop nav */
@media (min-width: 992px) {
  .header-nav {
    display: block;
  }
}

.header-nav__list {
  display: flex;
  align-items: center;
  gap: 18px;

  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav__list li {
  display: flex;
  align-items: center;
}

.header-nav__list a {
  display: inline-flex;
  align-items: center;

  padding: 8px 10px;
  white-space: nowrap;
  text-decoration: none;
  color: var(--color-primary);
  transition: 0.5s ease;
  border-bottom: 1px solid transparent;
}

.header-nav__list a:hover {
  border-bottom: 1px solid var(--h1to6);
  transition: 0.5s ease;
}
.header-logo {
  height: 32px;
  width: auto;
  display: block;
}
.header-brand {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 40px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 36px;
  padding: 0 12px;

  background: none;
  border: none;
  color: var(--link-primary);
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.header-action:hover {
  background: var(--bg-secondary);
}
.header-profile {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  cursor: pointer;
}

.header-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
}
.unread-count {
  background: linear-gradient(#7e0b09, #9e0002, #ce0e04, #e60303);
  border-radius: 50%;
  width: 19px;
  height: 19px;
  display: inline-block;
  color: white;
  text-shadow: 1px 1px black;
  box-shadow: inset 0 0 1px 1px #460000;
  border: 1.4px solid #88979d;
  animation: MoveUpDown 1s linear infinite;
  position: absolute;
  left: 13px;
  bottom: 0;
  font-size: 12px;
  text-align: center;
  line-height: 1.5;
  text-indent: -3px;
  font-family: serif;
}

@keyframes MoveUpDown {
  0% {
    top: 0;
  }
  50% {
    top: 10px;
  }
  100% {
    top: 0;
  }
}

/* =========================
   MOBILE NAV (JS-CONTROLLED)
   ========================= */

/* Mobile only */
@media (max-width: 991px) {

  #header-navigation {
    display: none;
    position: fixed;
    top: calc(var(--header-height, 80px));
    left: 16px;
    width: 260px;
    background: var(--bg-tertiary);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border: 1px solid rgba(214,180,111,0.45);
    border-radius: 10px;
  }

  #header-navigation.show-nav {
    display: block;
    animation: headerNavFade 0.18s ease-out;

  }

  /* 🔑 THIS IS THE IMPORTANT PART */
  .header-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }

  .header-nav__list > li {
    display: block;
    width: 100%;
  }

  .header-nav__list > li > a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    text-align: left;
    font-size: 1rem;
  }

  .header-nav__list > li > a:hover {
    background: rgba(255,255,255,0.06);
  }

  /* Logo behaves like a menu item */
  .header-logo {
    max-width: 140px;
  }
}


/* Subtle open animation */
@keyframes headerNavFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================
   HEADER SEARCH BOX
   ========================= */

.header-search {
  position: absolute;
  top: 100%;
  right: 140px;

  width: 420px;
  padding: 6px;

  background: var(--bg-tertiary);
  border: 1px solid rgba(214,180,111,0.35);
  border-radius: 6px;

  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  z-index: 300;

  display: none;
}

.header-search.show-search {
  display: block;
  animation: headerNavFade 0.18s ease-out;
}

/* Form */
.header-search-box {
  background: transparent;
}

/* Input group */
.header-search .input-group {
  display: flex;
  align-items: stretch;
}

.header-search .form-control {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 12px;
  font-size: 0.9rem;
}

.header-search .form-control:focus {
  outline: none;
  box-shadow: none;
}

/* Close buttons */
.header-search .input-group-prepend {
  display: flex;
  align-items: center;
  padding: 0 10px;
  cursor: pointer;
  color: #aaa;
}

.header-search .input-group-prepend:hover {
  color: #fff;
}

.header-search .input-group-text {
  background: none;
  border: none;
}

/* Responsive behavior */
@media (max-width: 800px) {
  .header-search {
    right: 10px;
    width: calc(100vw - 20px);
  }

  .header-search .desktop {
    display: none;
  }
}

@media (min-width: 801px) {
  .header-search .mobile {
    display: none;
  }
}

/* =========================
   HEADER SEARCH BOX
   ========================= */

.header-search {
  position: absolute;
  top: 100%;
  right: 140px;

  width: 420px;
  padding: 6px;

  background: var(--bg-tertiary);
  border: 1px solid rgba(214,180,111,0.35);
  border-radius: 6px;

  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  z-index: 300;

  display: none;
}

.header-search.show-search {
  display: block;
    animation: headerNavFade 0.18s ease-out;
}

/* Form */
.header-search-box {
  background: transparent;
}

/* Input group */
.header-search .input-group {
  display: flex;
  align-items: stretch;
}

.header-search .form-control {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 12px;
  font-size: 0.9rem;
}

.header-search .form-control:focus {
  outline: none;
  box-shadow: none;
}

/* Close buttons */
.header-search .input-group-prepend {
  display: flex;
  align-items: center;
  padding: 0 10px;
  cursor: pointer;
  color: #aaa;
}

.header-search .input-group-prepend:hover {
  color: #fff;
}

.header-search .input-group-text {
  background: none;
  border: none;
}

/* Responsive behavior */
@media (max-width: 800px) {
  .header-search {
    right: 10px;
    width: calc(100vw - 20px);
  }

  .header-search .desktop {
    display: none;
  }
}

@media (min-width: 801px) {
  .header-search .mobile {
    display: none;
  }
}


/* =========================
   PROFILE DROPDOWN
   ========================= */

.header-profile {
  cursor: pointer;
}

.header-profile img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

/* Dropdown box */
.profile-box__dropdown {
  position: absolute;
  top: 100%;
  right: 0;

  width: 220px;
  margin-top: 6px;

  background: var(--bg-tertiary);
  border: 1px solid rgba(214,180,111,0.35);
  border-radius: 6px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  z-index: 300;

  display: none;
}

.profile-box__dropdown.show-profile {
  display: block;
  animation: headerNavFade 0.18s ease-out;

}

/* Dropdown list */
.dropdown-list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.dropdown-list-item a {
  display: block;
  padding: 10px 14px;
  color: #ddd;
  text-decoration: none;
  font-size: 0.9rem;
}

.dropdown-list-item:hover {
  background: rgba(255,255,255,0.08);
}

.dropdown-list-item.mobile-only {
  display: none;
}

/* Mobile-only items */
@media (max-width: 800px) {
  .dropdown-list-item.mobile-only {
    display: block;
  }
}


/* =========================
   HERO / HEADER BANNER
   ========================= */

.site-header__bottom {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom: 2px solid rgba(214,180,111,0.45);

}
.site-header__banner {
  width: 100%;
}
.header-banner__spacing {
  width: 100%;

  /* Controlled height */
  height: clamp(220px, 30vw, 420px);

  background-image: url("../images/CarouserHeader.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;

  display: flex;
  align-items: center;
  justify-content: center;
}
.header-banner__inner {
  width: 100%;
  height: 100%;

  /* Optional subtle darkening for readability */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.65)
  );
}
@media (max-width: 768px) {
  .header-banner__spacing {
    height: 220px;
    background-position: top center;
  }
}
@media (min-width: 1450px) {
  .header-banner__spacing {
    height: 420px;
    background-position: center 20%;
  }
}


/* =========================
   Breadcrumbs
   ========================= */


.header-breadcrumbs {
  position: relative;
  top: auto;
  left: auto;
  max-width: 80%;
  margin: 0 auto 16px auto;
  line-height: 1.1;
}


.breadcrumb-list {
  list-style: none;          /* kills numbers */
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.breadcrumb-list li {
  font-size: 0.95rem;
  color: var(--link-secondary);
  white-space: nowrap;
}

/* links */
.forum-breadcrumb--link a {
  color: var(--link-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.forum-breadcrumb--link a:hover {
  color: var(--h1to6);
}

/* separators */
.forum-breadcrumb::after {
  content: "/";
  margin-left: 6px;
  opacity: 0.4;
}

.forum-breadcrumb--active::after {
  content: "";
}

/* active crumb */
.forum-breadcrumb--active {
  color: #fff;
  font-weight: 500;
}


.site-header__messages.has-message {
  background: var(--alert-red);
  color: white;
  padding: 10px;
  text-align:center;
}
.site-header__messages:not(.has-message) {
  display: none;
  margin-bottom: none;
}
.site-header__messages.has-message .forum-alert.forum-alert--error, .site-header__messages.has-message .pm_alert {
  color: inherit !important;
  background: transparent;
}

@media only screen and (min-width: 800px) {
  .site-header__messages.has-message .pm_alert,
  .site-header__messages.has-message .forum-alert.forum-alert--error {
    width: 80%;
    margin: 0 auto;
  }
}

.forum-activity {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-size: 0.75rem;
  color: #d6dbe3;
}

.activity-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  background: #4cd964;
  box-shadow: 0 0 6px rgba(76,217,100,0.8);
  vertical-align: middle;
}

.activity-text {
  vertical-align: middle;
}


/* Footer */
footer.page-footer {
    background-color: var(--bg-tertiary);
    color: #fff;
    font-size: 12px;
    line-height: 17px;
    padding: 20px 3.25% 23px;
}

footer .copyright-notice {

}

footer .site-version {

}



@-webkit-keyframes loader{
    0%{
        height:0
    }
    25%{
        height:100%
    }
    50%{
        height:0
    }
    100%{
        height:0
    }
}
@keyframes loader{
    0%{
        height:0
    }
    25%{
        height:100%
    }
    50%{
        height:0
    }
    100%{
        height:0
    }
}

.m-loader{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -ms-flex-flow:row wrap;
    flex-flow:row wrap;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    height:100px;
    height:6.25rem;
    margin:auto;
    padding:0 8px;
    padding:0 .5rem;
    position:relative;
    width:100px;
    width:6.25rem
}
.m-loader__bar{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-flex:1;
    -ms-flex:1 1 0px;
    flex:1 1 0px;
    width:auto;
    margin-right:2px;
    margin-right:.125rem;
    margin-left:2px;
    margin-left:.125rem;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-transform:skew(-27deg);
    transform:skew(-27deg)
}
.m-loader__bar:after{
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
    -webkit-animation:loader 1s infinite linear;
    animation:loader 1s infinite linear;
    background:#E1BB34;
    content:'';
    height:0;
    width:100%
}
.m-loader__bar:nth-child(1){
    height:40%
}
.m-loader__bar:nth-child(1):after{
    -webkit-animation-delay:0s;
    animation-delay:0s
}
.m-loader__bar:nth-child(2){
    height:70%
}
.m-loader__bar:nth-child(2):after{
    -webkit-animation-delay:.1s;
    animation-delay:.1s
}
.m-loader__bar:nth-child(3){
    height:100%
}
.m-loader__bar:nth-child(3):after{
    -webkit-animation-delay:.2s;
    animation-delay:.2s
}
.m-loader__bar:nth-child(4){
    height:70%
}
.m-loader__bar:nth-child(4):after{
    -webkit-animation-delay:.3s;
    animation-delay:.3s
}
.m-loader__bar:nth-child(5){
    height:40%
}
.m-loader__bar:nth-child(5):after{
    -webkit-animation-delay:.4s;
    animation-delay:.4s
}


.site-body {
  display: inline-block;
  width: 100%;
}

/* Container */
.page-content {
  padding: 20px;
  margin: 0 auto;
  position: relative;
}

@media only screen and (min-width: 800px) {
  .page-content {
    max-width: 80%;
  }
}



/* Buttons & Forms */
.button {
    min-width: 100px;
    min-height: 48px;
    border-radius: 8px;
    border: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.12em;
    font-weight: 500;
    background: #212736;
    color: white !important;
    cursor: pointer;
    padding: 8px 16px;
    background: radial-gradient(50% 50% at 50.24% 0%, rgba(57, 172, 255, 0.9) 0%, rgba(57, 125, 255, 0) 100%), #0c8ae6;
    box-shadow: 0px 6px 10px rgba(57, 172, 255, 0.5);
    display: inline-block;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 32px;
    text-decoration: none;
}

.button.secondary {
    background: #212736;
    box-shadow: none;
}

.button.green {
    background: radial-gradient(50% 50% at 50.24% 0%, rgba(69, 248, 205, 0.9) 0%, rgba(69, 248, 205, 0) 100%), rgba(28, 229, 182, 0.8);
    box-shadow: 0px 6px 10px rgba(69, 248, 205, 0.5);
    color: black !important;
}

.button.yellow {
    background: #E1BB34;
    box-shadow: 0px 6px 10px rgba(225, 187, 52, 0.5);
    color: black !important;
}

.button.red {
    background: radial-gradient(50% 50% at 50.24% 0%, #ff637f 0%, rgba(255, 99, 127, 0) 100%), #e94d69;
    box-shadow: 0px 6px 10px #e94d6950;
    color: black !important;
}

.button.disabled {
    pointer-events: none;
    opacity: .65;
}

.input-group .button {
    padding: 7px 22px
}

.button:hover {
    filter: brightness(1.3);
    color: #fff
}

.button:active,.button:focus {
    outline: 0
}

.button.small {
    transform: scale(.9);
    padding: 12px
}






@media only screen and (min-width: 800px) {
  .form-button-container {
    display: inline-block;
  }
}
@media only screen and (max-width: 800px) {
  .button:not(.small):not(.thread-controls--first-admin) {
    display: block;
    margin-bottom: 5px;
    width: 100%;
  }
  .form-button-container {
    width: 100%;
  }
  .button.mobile-small {
    transform: scale(0.9);
    font-size: 12px;
    padding: 12px 12px;
  }
}


/* bootstrap style changes */
.form-control, .form-control-plaintext {
  background: #ffffff1c;
  border-color: #8080808a;
  color: #bbb;
}
select.form-control option {
  background: #2f3236;
  color: #bbb;
}
.form-control:focus, .form-control-plaintext:focus {
  background: #ffffff1c;
  border-color: #8080808a;
  color: #bbb;
  outline: 0;
  box-shadow: none;
}

.card {
  background: #444;
}








/* Paging */
.forum-pagination--container {
  display: inline-block;
  width: 100%;
}
ol.paging {
	float: right;
	margin-top: 0;
	text-align: right;
	text-transform: uppercase;
  margin-right: 30px;
  position: relative;
  top: 10px;
  font-size: 1.2rem;
}

ol.paging li {
	display: inline;
	color: #3e3e3e;
}

 ol.paging li {
	color: #fff;
}

ol.paging li>span {
	box-sizing: border-box;
	min-width: 39px;
	padding: 5px;
	text-align: center;
	color: #d9d9d9;
}

 ol.paging li>span {
	color: rgba(217, 217, 217, .3);
}

ol.paging li a {
	display: inline-block;
	box-sizing: border-box;
	min-width: 39px;
	padding: 5px;
	text-align: center;
	color: #1572a4;
	transition: background-color .3s, color .3s;
}

 ol.paging li a {
	color: #98d0f1;
}

ol.paging li a:hover {
	background-color: #ffc81a;
	color: #000;
}

ol.paging li.current a {
	border: 2px solid #3e3e3e;
	color: #3e3e3e;
}

 ol.paging li.current a {
	border-color: #fff;
	color: #fff;
}

ol.paging li .dots {
	display: inline-block;
	box-sizing: border-box;
	min-width: 39px;
	padding: 5px;
	text-align: center;
	color: #000;
}

 ol.paging li .dots {
	color: #fff;
}

ol.paging li.dots-0 {
	display: none;
}

ol.paging li.dots-1 {
	display: none;
}

ol.paging li.dots-2 {
	display: none;
}

ol.paging li.dots-3 {
	display: none;
}

@media all and (max-width:38.57143em) {
	ol.paging li.padding {
		display: none;
	}
	ol.paging li.dots-2 {
		display: inline;
	}
	ol.paging li.dots-3 {
		display: inline;
	}
}

ol.paging.paging--next-previous {
	display: table;
	width: 100%;
	float: none;
}

ol.paging.paging--next-previous li {
	display: table-cell;
	width: 50%;
	text-align: left;
}

ol.paging.paging--next-previous li:last-child {
	text-align: right;
}

ol.paging.paging--next-previous li a.hide {
	display: none;
}

ol.paging.hide {
	display: none;
}




/***** Headline / Mod Centre *****/

.headlines {
  width: 100%;
}

.headline-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px auto 56px;
  gap: 24px;
}

.headline-link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 180px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.headline-link:hover {
  transform: translateY(-4px);
}

/* ICON */

.headline-img-container {
  position: relative;
  margin-bottom: 12px;
}

.headline-img-container svg {
  width: 52px;
  fill: rgba(150, 185, 220, 0.65);

  transition:
    transform 0.4s ease,
    fill 0.3s ease,
    filter 0.3s ease;
  transform-origin: center;
}

.headline-link:hover .headline-img-container svg {
  transform: translateY(8px) scale(0.85);
  fill: #39ACFF;
  filter: drop-shadow(0 6px 12px rgba(57,172,255,0.6));
}

/* TITLE */

.headline-link-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  transition: transform 0.4s ease;
}

.headline-link-title h2 {
  margin: 0;
  color: #ffffff;
  font-family: pf-light;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 18px;
  line-height: 1.2;
  transition:
    color 0.25s ease,
    filter 0.25s ease;
}

.headline-link:hover .headline-link-title {
  transform: translateY(-6px);
}

.headline-link:hover h2 {
  color: #39ACFF;
  filter: drop-shadow(0 4px 10px rgba(57,172,255,0.75));
}

/* RESPONSIVE */

@media (min-width: 995px) {
  .headline-container {
    gap: 32px;
  }

  .headline-link {
    width: 220px;
    height: 190px;
  }

  .headline-link-title h2 {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .headline-container {
    gap: 20px;
  }

  .headline-link {
    width: 160px;
    height: 160px;
  }

  .headline-img-container svg {
    width: 44px;
  }

  .headline-link-title h2 {
    font-size: 14px;
  }
}






.a-social-button {
    text-align: center;
    text-decoration: none;
    height: 40px;
    height: 2.5rem;
    position: relative;
    border-radius: 0;
    cursor: pointer;
    display: block;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.5);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.5);
    vertical-align: top;
    line-height: 40px;
    line-height: 2.5rem;
    -webkit-transition: border 0.075s linear;
    transition: border 0.075s linear;
    overflow: hidden;
    margin: 0 0 16px 0;
    margin: 0 0 1rem 0;
    width: 100%
}
.a-social-button:hover {
  text-decoration: none;
}

.a-social-button:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 100%;
    height: 19px;
    height: 1.1875rem
}

.a-social-button:not(:empty):before {
    height: 100%;
    vertical-align: middle;
    display: block;
    float: left;
    width: 39px;
    width: 2.4375rem;
    top: inherit;
    left: inherit;
    -webkit-transform: none;
    transform: none;
    line-height: inherit;
    position: inherit
}
.a-social-button--service-discord {
    color: rgba(7,24,32,0.5);
    background-color: #7289DA;
    font-size:1.2rem;
}

.a-social-button--service-discord:hover,.a-social-button--service-discord:focus {
    color: rgba(7,24,32,0.5)
}

.a-social-button--service-discord:hover {
    background-color: #4564ce
}

.a-social-button--service-discord:before {
    color: rgba(7,24,32,0.5);
    background-position: center center;
    background-repeat: no-repeat;
    content: '';
    height: 100%;
    background-image: url("../images/discord-white.svg");
    background-size: 1.375rem 1.375rem;
    width: 22px;
    width: 1.375rem
}

.a-social-button--service-discord:not(:empty):before {
    background-color: rgba(0,0,0,0.15)
}
