/*!
 * BlizzCMS
 *
 * An Open Source CMS for "World of Warcraft"
 *
 * This content is released under the MIT License (MIT)
 *
 * Copyright (c) 2017 - 2019, WoW-CMS
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 *
 * @theme  Default
 * @author  WoW-CMS
 * @copyright  Copyright (c) 2017 - 2019, WoW-CMS.
 * @license https://opensource.org/licenses/MIT MIT License
 * @link    https://wow-cms.com
 * @since   Version 1.0.1
 * @filesource
 */

@font-face {
  font-family: 'Lobster';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lobster-regular-webfont.woff2') format('woff2'), url('../fonts/lobster-regular-webfont.woff') format('woff');
}

html {
  overflow-y: scroll;
  background: transparent;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

::-webkit-scrollbar {
    width: 7px;
}
 
::-webkit-scrollbar-track {
    background-color: #e4e4e4;
    border-radius: 100px;
}
 
::-webkit-scrollbar-thumb {
    background-color: #FFA500;
    border-radius: 100px;
}

body {
  background-color: #031135;
  background-image: url('../images/background.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
  color: #FFA500;
  text-decoration: none;
  transition: color ease-in .15s;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

hr,
.uk-hr {
  border-top-color: rgba(255, 255, 255, .2);
}

.container {
  position: relative;
  text-align: center;
  color: white;
}

.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

.top-right {
  position: absolute;
  top: 0px;
  right: 5px;
}

.top-rightt {
  position: absolute;
  top: 100px;
  right: 5px;
}

.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.centered {
  position: absolute;
  text-align: center;
  margin: auto;
  width: 85%;
  padding: 10px;
  top: 75%;
  
}

.centeredd {
  position: absolute;
  text-align: center;
  margin: auto;
  width: 85%;
  padding: 10px;
  top: 40%;
  
}

.bottom-leftt {
  position: absolute;
  bottom: 20px;
  left: 16px;
}


.centered-title-news {
  position: absolute;
  text-align: center;
  margin: auto;
  width: 95%;
  padding: 10px;
  top: 40%;
  
}

.zoom {
  filter: brightness(50%);
  padding: 50px;
  transition: transform 2s, filter 1.5s ease-in-out; /* Animation */

}

.zoom:hover {
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
   filter: brightness(100%)
}

.server-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    margin-top: 10px;
}

.pulse {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

.pulse.green {
    background: #4ad218;
    box-shadow: 0 0 10px #4ad21899;
}

.pulse.red {
    background: #d21818;
    box-shadow: 0 0 10px #d2181899;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@media screen and (max-width: 768px) {
    .server-status {
        font-size: 0.9rem; /* Réduit légèrement la taille sur mobile */
        justify-content: center; /* Centre l'élément */
        margin-top: 15px; /* Augmente l'espacement */
    }

    .pulse {
        width: 14px; /* Augmente légèrement la taille */
        height: 14px;
    }

    .server-text {
        font-size: 0.85rem; /* Ajuste la taille du texte */
    }
}


h1,
h2,
h3,
h4,
h5,
h6,
.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6 {
  color: #fff;
  font-family: 'Blizzard', Helvetica, Arial, sans-serif;
}

.uk-navbar-container:not(.uk-navbar-transparent) {
  background-image: url('../images/navbar-background.jpg');
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .5);
}

.uk-navbar-transparent {
  background-image: url('../images/bg-main.png');
  background-repeat: no-repeat;
  background-position: top center;
  box-shadow: inset 0 -1px 0 0 rgba(255, 255, 255, .15);
}

.uk-navbar-item,
.uk-navbar-nav > li > a,
.uk-navbar-toggle {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
  min-height: 40px;
}

.uk-navbar-nav > li > a,
.uk-navbar-dropdown-nav > li > a {
  color: rgba(255, 255, 255, .8);
}

.uk-navbar-dropdown-nav > li > a {
  font-size: 12px;
  padding: 4px 18px;
  transition: background-color .2s ease,color .2s ease;
}

.uk-navbar-dropdown-nav > li > a:focus,
.uk-navbar-dropdown-nav > li > a:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a.uk-open,
.uk-navbar-nav > li > a:focus {
  color: #fff;
  text-shadow: 0 0 15px #fff,0 0 30px rgba(255, 255, 255, .3);
}

.uk-navbar-toggle {
  color: rgba(255, 255, 255, .7);
}

.uk-navbar-toggle.uk-open,
.uk-navbar-toggle:focus,
.uk-navbar-toggle:hover {
  color: #fff;
}

[class*="uk-dropdown-bottom"] {
  margin-top: 2px;
}

[class*="uk-navbar-dropdown-bottom"] {
  margin-top: 1px;
}

.uk-navbar-dropdown {
  background: linear-gradient(#1c2534, #161a26);
  border-width: 0 1px 1px 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, .05);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
  min-width: 180px;
  padding: 10px 0;
}

.uk-navbar-dropdown .blizzcms-cart-dropdown {
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  padding: 4px 8px;
}

.uk-offcanvas-bar {
  background: #151a23;
}

#mobile .uk-offcanvas-bar {
  padding: 20px 0;
}

#mobile .uk-offcanvas-bar .uk-nav-default {
  font-size: 1rem;
}

#mobile .uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent > a::after {
  height: 2.5em;
}

#mobile .uk-offcanvas-bar .uk-nav-default > li > a {
  border-top: 1px solid rgba(255, 255, 255, .1);
  line-height: 2.5em;
  padding: 0 12px;
  color: #bdbdbd;
  transition: all ease .3s;
}

#mobile .uk-offcanvas-bar .uk-nav-default > li > a:hover {
  background-color: rgba(255, 255, 255, .02);
  color: #fff;
}

#mobile .uk-offcanvas-bar .uk-nav-default > li.uk-parent.uk-open > a {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.uk-modal-title {
  color: #fff;
  font-size: 1.625rem;
}

.uk-modal-dialog {
  border: 1px solid rgba(255, 255, 255, .1);
}

.uk-modal-dialog,
.uk-modal-body,
.uk-modal-header,
.uk-modal-footer {
  background: rgba(0, 38, 80, .7);
}

.uk-modal-header{
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.uk-modal-footer {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.slider-section {
  background: linear-gradient(0deg, rgba(0, 0, 0, .15) 0, transparent);
}

.main-section {
  border-top: 1px solid rgba(63, 102, 133, .5);
}

.header-section {
  background-image: url('../images/9DX5KAUVSRMV1517267253798.jpg');
  background-repeat: no-repeat;
}

.header-store {
  background-image: url('../images/header-store.jpg');
  background-repeat: no-repeat;
}

.uk-card-default {
  background: rgba(0, 0, 0, .2);
  border: 1px solid rgba(0, 0, 0, .1);
  color: #ccc;
}

.uk-card-default .uk-card-header {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding: 10px;
}

.uk-card-default .uk-card-footer {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.uk-card-default.news-card {
  background: rgba(148, 113, 0, .2);
  color: rgba(255, 255, 255, .7);
  box-shadow: none;
  border: none;
}

.uk-card-default.news-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, .15);
  transition: all ease-in .2s;
}

.uk-card-media-left:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.uk-card-default.news-card.uk-card-hover:hover {
  background-color: rgba(201, 154, 0, .2);
  box-shadow: none;
}

.uk-card-hover:hover.uk-card-default.news-card:after {
  border-color: #FFA500;
}

.uk-card-body {
  padding: 15px;
}

.uk-card-footer {
  padding: 15px;
}

.uk-card-default.myaccount-card {
  border-top: 1px solid rgba(0, 0, 0, .1);
  background: rgba(0, 0, 0, .2);
  color: rgba(255, 255, 255, .7);
  box-shadow: none;
}

.uk-card-default.myaccount-card .uk-card-header {
  background: rgba(0, 0, 0, .1);
}

.dotted-divider:after {
  content: "";
  display: inline-block;
  border-top: 2px dotted rgba(0, 174, 255, .8);
  width: 200px;
  max-width: 100%;
  padding-bottom: 10px;
}

.card-status {
  border: 1px solid transparent;
  box-shadow: 0 15px 10px -15px rgba(0, 0, 0, .6), inset 0 0 5px rgba(0, 0, 0, .4);
  border-image: linear-gradient(to left, rgba(255, 255, 255, .2) 0%, rgba(212, 170, 112, .8) 100%);
  border-image-slice: 1;
  border-image-width: px;
  padding: 15px 20px;
  background: rgba(9, 85, 135, .05);
  color: #ccc;
  height: 160px;
  width: 320px;
}

.image-card {
  position: relative;
  display: block;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 123px;
  box-shadow: 0 8px 17px rgba(0,0,0,.1);
}

.image-card:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid rgba(255, 255, 255, .15);
  z-index: 1;
}

@media screen and (max-width: 640px) {
  .image-card {
    position: relative;
    display: block;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 65px;
    box-shadow: 0 8px 17px rgba(0,0,0,.1);
  }
}

.image-post {
  position: relative;
  display: block;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 300px;
  box-shadow: 0 8px 17px rgba(0,0,0,.1);
}

.image-post:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid rgba(255, 255, 255, .15);
  z-index: 1;
}

@media screen and (max-width: 640px) {
  .image-post {
    position: relative;
    display: block;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 133px;
    box-shadow: 0 8px 17px rgba(0,0,0,.1);
  }
}

.uk-button-small {
  padding: 0 10px;
  font-size: .75rem;
}

.uk-button-default:disabled {
  background: #FFA500;
  color: #fff;
  border-color: #FFA500;
}

.uk-button-danger {
  background: #ca0e28;
  border: 1px solid #ff002f;
  color: #fff;
  transition: all ease .3s;
}

.uk-button-danger:focus,
.uk-button-danger:hover {
  background: #ff002f;
  color: #fff;
  border-color: #ff002f;
}

.uk-button-danger.uk-active,
.uk-button-danger:active {
  background: #ff002f;
  color: #fff;
  border-color: #ff002f;
}

.uk-button-danger:disabled {
  background: #ff002f;
  color: #fff;
  border-color: #ff002f;
}

.uk-button-secondary {
  background: #151C23;
  border: 1px solid #292e33;
  color: #fff;
  transition: all ease .3s;
}

.uk-button-secondary:focus,
.uk-button-secondary:hover {
  background: #292e33;
  color: #fff;
  border-color: #292e33;
}

.uk-button-secondary.uk-active,
.uk-button-secondary:active {
  background: #292e33;
  color: #fff;
  border-color: #292e33;
}

.uk-button-secondary:disabled {
  background: #292e33;
  color: #fff;
  border-color: #292e33;
}

.uk-icon-button {
  background: rgba(0, 174, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .07);
}

.uk-icon-button:focus,
.uk-icon-button:hover {
  background-color: rgba(255, 255, 255, .2);
  color: #fff;
}

.uk-active>.uk-icon-button,
.uk-icon-button:active {
  background-color: rgba(255, 255, 255, .2);
  color: #fff;
}

.uk-button-text {
  color: #ccc;
}

.uk-button-text::before {
  border-color: #00aeff;
}

.uk-button-text:focus,
.uk-button-text:hover {
  color: #00aeff;
}

.uk-button-text:disabled {
  color: #ccc;
}

.uk-text-primary {
  color: #00aeff !important;
}

.uk-text-meta {
  color: #d1d1d1;
}

.uk-alert {
  padding: 8px 16px;
}

.uk-alert-close {
  top: 14px;
}

.uk-alert-danger {
  background: #ff3636;
  color: #fff;
}

.uk-alert-warning {
  background: #ff8b36;
  color: #fff;
}

.uk-alert-success {
  background: #25ce5c;
  color: #fff;
}

.uk-column-divider {
  column-rule: 1px solid rgba(255, 255, 255, .15);
}

.uk-tab::before {
  border-bottom-color: rgba(255, 255, 255, .4);
}

.uk-tab > * > a {
  color: rgba(255, 255, 255, .7);
}

.uk-tab > * > a:focus,
.uk-tab > * > a:hover {
  color: #fff;
}

.uk-tab > .uk-active > a {
  color: #fff;
  border-color: #00aeff;
}

.uk-tab-right > * > a {
  border-left-width: 2px;
}

.uk-tab-right::before {
  border-left: 2px solid rgba(255, 255, 255, .2);
}

.uk-table th {
  color: #fff;
  font-weight: 600;
}

.uk-table-divider > :first-child > tr:not(:first-child),
.uk-table-divider > :not(:first-child) > tr,
.uk-table-divider > tr:not(:first-child) {
  border-top: 1px solid rgba(255, 255, 255, .3);
}

.myaccount-card tbody tr:first-child {
  border-top: none;
}

.myaccount-card tbody tr:last-child {
  border-bottom: none;
}

.uk-dotnav > * > * {
  background-color: rgba(214, 214, 214, .6);
  border-color: transparent;
  border-radius: 30px;
  width: 50px;
  height: 8px;
}

.uk-dotnav > * > :focus,
.uk-dotnav > * > :hover {
  background-color: rgba(214, 214, 214, .8);
}

.uk-dotnav > .uk-active > *,
.uk-dotnav > * > :active {
  background-color: rgba(0, 174, 255, .8);
}

.uk-tile.alliance-bar {
  background: linear-gradient(to bottom, #1e7fe1 0%, #1e7fe1 50%, #196bbd 51%, #196bbd 100%);
  border-width: 1px 0 1px 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, .1);
  border-radius: 2px 0 0 2px;
  color: #fff;
  font-size: .875rem;
  padding: 2px 10px;
  box-shadow: inset 0 0 8px 4px rgba(255, 255, 255, .15);
}

.uk-tile.horde-bar {
  background: linear-gradient(to bottom, #e11e1e 0%, #e11e1e 50%, #bd1919 51%, #bd1919 100%);
  border-width: 1px 1px 1px 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, .1);
  border-radius: 0 2px 2px 0;
  color: #fff;
  font-size: .875rem;
  padding: 2px 10px;
  box-shadow: inset 0 0 8px 4px rgba(255, 255, 255, .15);
}

.uk-nav-default.myaccount-nav {
  background: rgba(0, 0, 0, .45);
  box-shadow: 0 2px 2px rgba(0, 0, 0, .15);
}

.uk-nav-default.myaccount-nav > li > a {
  color: #fff;
  font-size: .9375rem;
  padding: 10px 20px;
  border-left: 4px solid transparent;
  transition: background ease-in-out .1s;
}

.uk-nav-default.myaccount-nav > li.uk-active > a {
  background: rgb(255 165 0 / 40%);
  border-left-color: #FFA500;
  color: #fff;
}

.uk-nav-default.myaccount-nav > li > a:focus,
.uk-nav-default.myaccount-nav > li > a:hover {
  background: #FFA500;
  color: #fff;
}

.uk-nav-default.myaccount-nav .uk-nav-header {
  color: #fff;
}

.uk-nav-default.myaccount-nav .uk-nav-divider {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin: 5px 20px;
}

.uk-subnav.subnav-points {
  margin: 0;
}

.url-flex-points {
  display: inline-flex;
  color: #e4e4e4;
  font-weight: 600;
}

.uk-subnav.subnav-points > * {
  padding-left: 10px;
  color: #ccc;
  font-size: 1rem;
}

.uk-subnav-divider.subnav-points > :nth-child(n+2):not(.uk-first-column)::before {
  margin-right: 10px;
  border-left-color: rgba(255, 255, 255, .15);
}

.dp-icon {
  display: inline-block;
  position: relative;
  background-image: url('../../../../../assets/images/DP.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  margin: 0 3px;
  vertical-align: middle;
}

.vp-icon {
  display: inline-block;
  position: relative;
  background-image: url('../../../../../assets/images/VP.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  margin: 0 3px;
  vertical-align: middle;
}

.uk-logo {
  font-family: 'Lobster', cursive;
  font-size: 30px;
  color: #fff;
}

.uk-logo:focus,
.uk-logo:hover {
  color: #fff;
}

.uk-table-small td,
.uk-table-small th {
  padding: 10px 8px;
  font-size: .875rem;
}

.uk-pagination > * {
  padding-left: 8px;
}

.uk-pagination > * > * {
  display: flex;
  background: #0e86ca;
  border: 1px solid #00aeff;
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  line-height: 26px;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out .15s;
}

.uk-pagination > * > :focus,
.uk-pagination > * > :hover {
  background-color: #00aeff;
  border-color: #00aeff;
  color: #fff;
}

.uk-pagination > .uk-active > * {
  background-color: #00aeff;
  border-color: #00aeff;
  color: #fff;
}

.status-dot {
  display: inline-block;
  border-radius: 50%;
  height: 16px;
  width: 16px;
}

.status-dot > span,
.status-dot > span > span {
  display: block;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  animation: pulse 1.5s linear infinite;
}

.status-dot > span > span:after {
  content: '';
  display: block;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  animation: pulse 1.5s linear infinite;
}

.status-dot.online {
  background-color: #35e861;
}

.status-dot.online span,
.status-dot.online span:after {
  background-color: rgba(110, 255, 122, .4);
}

.status-dot.offline {
  background-color: #ff4b44;
}

.status-dot.offline span,
.status-dot.offline span:after {
  background-color: rgba(236, 133, 134, .4);
}

.discord-widget img {
  border: 1px solid transparent;
  transition: all ease-in .25s;
}

.discord-widget:hover img {
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 15px 10px -15px rgba(0, 0, 0, .8);
  filter: grayscale(100%);
}

@keyframes pulse {
  0% {
    opacity: .75;
    transform: scale(1);
  }
  25% {
    opacity: .75;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

.space-large {
  height: 80px;
}

.uk-nav-default.nav-store > li > a {
  color: #ececec;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 10px 20px;
}

.uk-nav-default.nav-store > li:first-child > a {
  border-top: none;
}

.uk-nav-default.nav-store > li > a:focus,
.uk-nav-default.nav-store > li > a:hover {
  background: rgba(255, 255, 255, .025);
  color: #fff;
}

.uk-nav-default.nav-store > li.uk-active > a {
  background: rgba(255, 255, 255, .025);
  color: #fff;
}

.nav-store ul.uk-nav-sub {
  padding: 0;
}

.uk-nav-default.nav-store .uk-nav-sub a {
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #ececec;
  padding: 10px 40px;
  word-break: break-all;
}

.uk-nav-default.nav-store .uk-nav-sub a:focus,
.uk-nav-default.nav-store .uk-nav-sub a:hover {
  background: rgba(255, 255, 255, .025);
  color: #fff;
}

.uk-nav-default.nav-store .uk-nav-sub li.uk-active > a {
  background: rgba(255, 255, 255, .025);
  color: #fff;
}

.uk-nav-parent-icon > .uk-parent > a::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23ececec%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0D%0A%3C%2Fsvg%3E");
}

.uk-nav-parent-icon > .uk-parent.uk-open > a::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%20%2F%3E%0D%0A%3C%2Fsvg%3E");
}

.blizzcms-item-container {
  position: relative;
  background: rgba(0, 0, 0, .15);
  cursor: default;
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, .4), 0 0 0 1px rgba(255, 255, 255, .1);
  padding: 1px;

}

.news-container {
  position: relative;
  background: rgba(0, 0, 0, .15);
  cursor: default;
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, .4), 0 0 0 1px rgba(255, 255, 255, .1);
  padding: 5px;

}

.blizzcms-item-header {
  cursor: pointer;
}

.blizzcms-item-body {
  margin-top: 10px;
}

.blizzcms-item-body .blizzcms-item-price {
  font-size: 13px;
  font-weight: bold;
  margin-right: 5px;
}

.item-store-icon {
  position: relative;
  display: inline-block;
  border: 3px solid #0e86ca;
  border-radius: 3px;
  box-shadow: inset 0 0 0 -1px rgba(255, 255, 255, .08);
  height: 46px;
  width: 46px;
}

.item-store-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #000;
}

.item-store-icon img {
  height: 46px;
  width: 46px;
}

.blizzcms-store-summary .uk-accordion-title {
  background-color: rgba(74, 74, 74, .7);
  border-radius: 3px;
  border: 1px solid #4a4a4a;
  color: #fff;
  font-size: 1.25rem;
  padding: 6px;
}

/*
 * Donate
 */
.uk-card-donate {
  background: linear-gradient(to right bottom, #FFA500, #000000);
  border-radius: 2px;
  color: #fff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .15);
}

.uk-card-donate .fab {
  color: #fff;
  font-size: 60px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
  box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
}

.uk-card-donate .uk-card-title {
  color: #fff;
}

.uk-card-donate.uk-card-hover:hover {
  background-color: transparent;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .15);
}

/*
 * Vote
 */
.uk-card-vote {
  background: rgba(9, 85, 135, .2);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
}

.uk-card-vote .uk-card-header {
  border-bottom-color: rgba(255, 255, 255, .1);
  padding: 10px;
}

.uk-countdown-number,
.uk-countdown-separator {
  font-size: 1rem;
  margin-right: 3px;
  line-height: 1.4;
}

  .syphrena-news-list{
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}

.syphrena-new{
  margin: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: flex-end;
  --border-opacity: 1;
  border-color: #553c9a;
  border-color: rgba(85, 60, 154, var(--border-opacity));
  border-width: 1px;
  height: 300px;
  cursor: pointer;
}

.syphrena-new:hover{
  --border-opacity: 1;
  border-color: #FFA500;
  border-color: rgba(255, 165, 0, var(--border-opacity));
}

.syphrena-new:hover .syphrena-new-title{
  font-weight: 700;
  --text-opacity: 1;
  color: #FFA500;
  color: rgba(255, 165, 0, var(--text-opacity));
}

.syphrena-new-title .syphrena-new-subtitle{
  text-shadow: 0 0 1px transparent, 0 1px 2px rgba(0,0,0,.8);
}

.syphrena-new-title{
  font-family: 'BlizQuadrata Web';
  font-size: 1.25rem;
  text-transform: uppercase;
  transition-property: background-color, border-color, color, fill, stroke;
  transition-duration: 150ms;
}

.syphrena-new-subtitle{
  font-family: 'SemplicitaPro';
  --text-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--text-opacity));
}

  @media (min-width: 1024px){
  .syphrena-new{
    margin: 2rem;
  }
}
@media (min-width: 1280px){
.syphrena-new{
    margin: 0;
    margin-right: 0.5rem;
    width: 428px;
  }

  .syphrena-news-list{
    display: flex;
    justify-content: space-between;
  }

  .main-section{
    padding-left: 16rem;
    padding-right: 16rem;
  }
}

/*
 * Forum
 */
.uk-card-forum {
  background: rgba(9, 85, 135, .1);
  border: 1px solid rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .7);
}

.uk-card-forum .uk-card-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.uk-card-forum .uk-card-header {
  padding: 8px 16px;
  background: rgba(19, 76, 114, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.uk-card-forum .uk-card-body {
  padding: 16px;
}

.uk-list-divider > li:nth-child(n+2) {
  border-top-color: rgba(255, 255, 255, .15);
}

.forum-who-icon {
  display: inline-block;
  position: relative;
  background-color: rgba(24, 60, 101, 0.6);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 50%;
  box-shadow: 2px 2px 0 0 rgba(0, 0, 0, .05), inset 0 2px 20px #001933;
  color: #fff;
  line-height: 48px;
  margin-right: 8px;
  width: 48px;
  height: 48px;
  text-align: center;
  vertical-align: middle;
}

.forum-who-text {
  display: inline-block;
  color: #fff;
  vertical-align: middle;
}

.forum-icon {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
}

.forum-table .uk-table caption {
  background: rgba(19, 76, 114, .1);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  padding: 8px 16px;
  text-transform: uppercase;
}

.forum-table .uk-table tbody tr {
  background: rgba(9, 85, 135, .1);
  border: 1px solid rgba(255, 255, 255, .1);
}

.forum-table .uk-table tbody tr:first-child {
  border-top: none;
}

.forum-table .uk-table tbody tr:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.forum-table .uk-table-hover tbody tr:hover,
.forum-table .uk-table-hover > tr:hover {
  background: rgba(9, 85, 135, .2);
}

tbody tr:first-child {
  border-top: 1px solid rgba(255, 255, 255, .25);
}

tbody tr:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.uk-table-hover tbody tr:hover,
.uk-table-hover > tr:hover {
  background: rgba(255, 255, 255, .05);
}

.uk-grid-divider > :not(.uk-first-column)::before {
  border-left-color: rgba(255, 255, 255, .2);
}

.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  border-top-color: rgba(255, 255, 255, .2);
}
 

.Author {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.topic-author-avatar {
  background-image: url('../../../includes/images/profiles/default.png');
  background-size: cover;
  border: 3px solid rgba(255, 255, 255, .2);
  height: 70px;
  width: 70px;
  position: relative;
}

.topic-author-staff .topic-author-avatar {
  border: 3px solid #00aeff;
}

.topic-author-avatar img {
  height: 70px;
  width: 70px;
}

.topic-author-avatar:after {
  display: block;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

.topic-author-avatar:hover:after {
  background-color: rgba(255, 255, 255, .05);
}

.topic-author-avatar.topic-author-avatar--default:after {
  display: none;
}

.topic-author-avatar.noprofile img {
  image-rendering: auto;
}

.topic-author-avatar.profile img {
  image-rendering: auto;
}

.author-rank-staff {
  background-color: #00aeff;
  border-bottom: 3px solid #008acb;
  border-radius: 2px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  margin: 5px auto 0 auto;
  min-width: 100px;
  max-width: 130px;
  padding: 3px;
  text-align: center;
  overflow-x: hidden;
  white-space: nowrap;
}

.glass-box-container {
  display: block;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .7);
  max-width: 40rem;
  margin: 0 auto;
  padding: 3rem 0;
  text-align: center;
}

.glass-box-editor {
  display: block;
  max-width: 40rem;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .glass-box-container {
    max-width: 20rem;
  }
  .glass-box-editor {
    max-width: 20rem;
  }
}

.topic-forum-member {
  color: rgba(255, 255, 255, .6);
}

.topic-forum-staff {
  color: #00b4ff;
}

a.topic-forum-staff {
  color: #00b4ff;
  text-decoration: none;
  transition: color ease-in .15s;
}

a.topic-forum-staff:hover {
  color: #fff;
  text-decoration: none;
}

/* #region Syphrena Hero */

.syphrena-hero{
  position: relative;
  margin-bottom: 1rem;
}

.syphrena-hero-container{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  text-align: center;
  align-items: center;
  background: linear-gradient(0deg, black, transparent);
}

.syphrena-hero-divider-thick, .syphrena-hero-divider-thin{
  z-index: 10;
}

.syphrena-hero-divider-thick{
  width: 100%;
  height: 100%;
  position: relative;
}

.syphrena-hero-divider-thick::before{
  content: '';
  background-image: url(../images/divider-thick.png);
  background-position: center;
  height: 115px;
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -60px;
}

.syphrena-hero-divider-thick, .syphrena-hero-divider-thin{
  z-index: 10;
}

.syphrena-hero-divider-thin{
  width: 100%;
  height: 100%;
  position: relative;
}

.syphrena-hero-divider-thin::before{
  content: '';
  background-image: url(../images/divider-thin.png);
  background-position: center;
  height: 57px;
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -30px;
}

.syphrena-hero-divider-thick-down, .syphrena-hero-divider-thin{
  z-index: 10;
}

.syphrena-hero-divider-thick-down{
  width: 100%;
  height: 100%;
  position: relative;
}

.syphrena-hero-divider-thick-down::before{
  content: '';
  background-image: url(../images/divider-thick-down.png);
  background-position: center;
  height: 115px;
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -60px;
}

.syphrena-hero-divider-thick-down, .syphrena-hero-divider-thin{
  z-index: 10;
}

/* #region Syphrena Home Item */

.syphrena-home-item{
  position: relative;
  background-position: center;
  background-size: cover;
}

.syphrena-home-item-container{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  text-align: center;
  align-items: center;
}

.syphrena-hero-title .syphrena-hero-subtitle{
  text-shadow: 0 0 1px transparent, 0 1px 2px rgba(0,0,0,.8);
}

.azeroth-hero-title .azeroth-hero-subtitle{
  text-shadow: 0 0 1px transparent, 0 1px 2px rgba(0,0,0,.8);
}

.syphrena-hero-title{
  font-family: 'BlizQuadrata Web';
  font-size: 2.25rem;
  text-transform: uppercase;
}

.azeroth-hero-title{
  font-family: 'BlizQuadrata Web';
  font-size: 2.25rem;
  text-transform: uppercase;
}

.syphrena-hero-subtitle{
  font-family: 'SemplicitaPro';
  font-size: 1.5rem;
  --text-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--text-opacity));
  margin-bottom: 1rem;
}

.azeroth-hero-subtitle{
  font-family: 'SemplicitaPro';
  font-size: 1.5rem;
  --text-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--text-opacity));
  margin-bottom: 1rem;
}

.syphrena-background-video{
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.syphrena-hero-button:hover{
  background-color: #FFA500;
}

.syphrena-hero-button-inner{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 2rem;
  padding-right: 2rem;
  --border-opacity: 1;
  border-color: #FFA500;
  border-color: rgba(255, 165, 0, var(--border-opacity));
  border-width: 1px;
  border: 2px solid #FFA500;
}

.syphrena-hero-button {
  color: var(--color-masthead-cta-color);
  border-radius: 0px;
  background-image: url('button-primary-background.png');
  --border-image: url('button-primary-border.png');
  position: relative;
}

.syphrena-hero-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 20px solid;
  border-image: var(--border-image);
  border-image-slice: 20 20 fill;
  pointer-events: none;
  z-index: 1;
}

.syphrena-hero-button:hover {
  color: white;
  background-image: url('button-primary-background-hover.png');
  --border-image: url('button-primary-border-hover.png');
}

.syphrena-hero-button::part(content) {
  text-wrap: pretty;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: var(--font-size-400);
  letter-spacing: var(--letter-spacing);
}

@media (min-width: 1200px) {
  .syphrena-hero-button::part(content) {
    text-wrap: nowrap;
    white-space: nowrap;
  }
}


.syphrena-hero-divider-thick, .syphrena-hero-divider-thin{
  z-index: 10;
}

.syphrena-hero-divider-thick{
  width: 100%;
  height: 100%;
  position: relative;
}

.syphrena-hero-divider-thick::before{
  content: '';
  background-image: url(../images/divider-thick.png);
  background-position: center;
  height: 115px;
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -60px;
}

.syphrena-hero-buttons{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1.5rem;
}

.syphrena-home-item-reversed{
    align-items: flex-end;
    text-align: right;
  }

  .syphrena-home-item-reversed > div.syphrena-hero-buttons > a.syphrena-hero-button{
    margin-right: 0;
    margin-left: 1rem;
  }

    .syphrena-hero-container{
        padding: 2rem;
      }

	.syphrena-hero-title{
    font-size: 3rem;
  }
  
  .syphrena-hero-subtitle{
    max-width: 42rem;
    font-size: 1.875rem;
  }
  
  .azeroth-hero-title{
    font-size: 1rem;
  }
  
  .azeroth-hero-subtitle{
    max-width: 42rem;
    font-size: 1.875rem;
  }
  
  .syphrena-hero-buttons{
    width: auto;
    flex-direction: row;
  }

@media (min-width: 1280px){
  .syphrena-hero-container{
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 4rem;
    padding-left: 16rem;
    padding-right: 16rem;
  }
  
.divide-syphrenaBeige > :not(template) ~ :not(template) {
  --divide-opacity: 1;
  border-color: #ebdec2;
  border-color: rgba(235, 222, 194, var(--divide-opacity));
}

.bg-syphrenaBeige {
  --bg-opacity: 1;
  background-color: #ebdec2;
  background-color: rgba(235, 222, 194, var(--bg-opacity));
}

.hover\:bg-syphrenaBeige:hover {
  --bg-opacity: 1;
  background-color: #ebdec2;
  background-color: rgba(235, 222, 194, var(--bg-opacity));
}

.focus\:bg-syphrenaBeige:focus {
  --bg-opacity: 1;
  background-color: #ebdec2;
  background-color: rgba(235, 222, 194, var(--bg-opacity));
}

.border-syphrenaBeige {
  --border-opacity: 1;
  border-color: #ebdec2;
  border-color: rgba(235, 222, 194, var(--border-opacity));
}

.hover\:border-syphrenaBeige:hover {
  --border-opacity: 1;
  border-color: #ebdec2;
  border-color: rgba(235, 222, 194, var(--border-opacity));
}

.focus\:border-syphrenaBeige:focus {
  --border-opacity: 1;
  border-color: #ebdec2;
  border-color: rgba(235, 222, 194, var(--border-opacity));
}

.placeholder-syphrenaBeige::-moz-placeholder {
  --placeholder-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--placeholder-opacity));
}

.placeholder-syphrenaBeige:-ms-input-placeholder {
  --placeholder-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--placeholder-opacity));
}

.placeholder-syphrenaBeige::-ms-input-placeholder {
  --placeholder-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--placeholder-opacity));
}

.placeholder-syphrenaBeige::placeholder {
  --placeholder-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--placeholder-opacity));
}

.focus\:placeholder-syphrenaBeige:focus::-moz-placeholder {
  --placeholder-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--placeholder-opacity));
}

.focus\:placeholder-syphrenaBeige:focus:-ms-input-placeholder {
  --placeholder-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--placeholder-opacity));
}

.focus\:placeholder-syphrenaBeige:focus::-ms-input-placeholder {
  --placeholder-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--placeholder-opacity));
}

.focus\:placeholder-syphrenaBeige:focus::placeholder {
  --placeholder-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--placeholder-opacity));
}

.text-syphrenaBeige {
  --text-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--text-opacity));
}

.hover\:text-syphrenaBeige:hover {
  --text-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--text-opacity));
}

.focus\:text-syphrenaBeige:focus {
  --text-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--text-opacity));
}

/* #region syphrena Hero */

.syphrena-hero{
  position: relative;
  margin-bottom: 1rem;
}

.syphrena-hero-container{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  text-align: center;
  align-items: center;
  background: linear-gradient(0deg, black, transparent);
}

.syphrena-hero-title .syphrena-hero-subtitle{
  text-shadow: 0 0 1px transparent, 0 1px 2px rgba(0,0,0,.8);
}

.syphrena-hero-title{
  font-family: 'BlizQuadrata Web';
  font-size: 2.25rem;
  text-transform: uppercase;
}

.syphrena-hero-subtitle{
  font-family: 'SemplicitaPro';
  font-size: 1.5rem;
  --text-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--text-opacity));
  margin-bottom: 1rem;
}

.azeroth-hero-title .syphrena-hero-subtitle{
  text-shadow: 0 0 1px transparent, 0 1px 2px rgba(0,0,0,.8);
}

.azeroth-hero-title{
  font-family: 'BlizQuadrata Web';
  font-size: 2.25rem;
  text-transform: uppercase;
}

.azeroth-hero-subtitle{
  font-family: 'SemplicitaPro';
  font-size: 1.5rem;
  --text-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--text-opacity));
  margin-bottom: 1rem;
}

.syphrena-background-video{
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.syphrena-hero-buttons{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1.5rem;
}

.syphrena-hero-button{
  margin-top: 0.5rem;
  margin-right: 1rem;
  --border-opacity: 1;
  border-color: #000;
  border-color: rgba(0, 0, 0, var(--border-opacity));
  border-width: 1px;
  --text-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--text-opacity));
  font-family: "SemplicitaPro";
  background-color: rgba(0,0,0,.8);
  transition-property: background-color, border-color, color, fill, stroke;
  transition-duration: 100ms;
}

.syphrena-hero-button:hover{
  background-color: #FFA500;
}

.syphrena-hero-button-inner{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 2rem;
  padding-right: 2rem;
  --border-opacity: 1;
  border-color: #FFA500;
  border-color: rgba(255, 165, 0, var(--border-opacity));
  border-width: 1px;
}

.syphrena-hero-divider-thick, .syphrena-hero-divider-thin{
  z-index: 10;
}

.syphrena-hero-divider-thick{
  width: 100%;
  height: 100%;
  position: relative;
}

.syphrena-hero-divider-thick::before{
  content: '';
  background-image: url(../images/divider-thick.png);
  background-position: center;
  height: 115px;
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -60px;
}

.syphrena-hero-divider-thin{
  width: 100%;
  height: 100%;
  position: relative;
}

.syphrena-hero-divider-thin::before{
  content: '';
  background-image: url(../images/divider-thin.png);
  background-position: center;
  height: 57px;
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -30px;
}

/* #endregion syphrena Hero */

/* #region syphrena Home Item */

.syphrena-home-item{
  position: relative;
  background-position: center;
  background-size: cover;
}

.syphrena-home-item-container{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  text-align: center;
  align-items: center;
}

/* #endregion syphrena Home Item */

.syphrena-new-meta {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  padding: 5px 10px; 
  border-radius: 5px; 
  font-weight: 400; 
  text-align: center; 
  margin-top: 10px; 
  width: 100px;
  margin-left: auto; 
  margin-right: auto; 
  transform: translateY(10px);
}

/* Effet au survol (hover) pour un changement de style */
.syphrena-new-meta:hover {
  background-color: rgba(127, 72, 21, 0.9); 
  cursor: url('gam375.cur'), pointer;
  transition: background-color 0.3s ease; 
}

.syphrena-news-list{
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 10px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}

.syphrena-new{
  display: block;
  padding: 15px;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  min-height: 150px;
  margin: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: flex-end;
  --border-opacity: 1;
  border-color: #FFA500;
  border-color: rgba(255, 165, 0, var(--border-opacity));
  border-width: 1px;
  height: 250px;
  cursor: pointer;
}

.syphrena-new:hover{
  --border-opacity: 1;
  border-color: #b794f4;
  border-color: rgba(183, 148, 244, var(--border-opacity));
  cursor: url('gam375.cur'), pointer;
}

.syphrena-new:hover .syphrena-new-title{
  font-weight: 700;
  --text-opacity: 1;
  color: #FFA500;
  color: rgba(255, 165, 0, var(--text-opacity));
}

.syphrena-new-title .syphrena-new-subtitle{
  text-shadow: 0 0 1px transparent, 0 1px 2px rgba(0,0,0,.8);
}

.syphrena-new-title{
	position: relative;
  top: 30px; 
  font-family: 'BlizQuadrata Web';
  font-size: 1.25rem;
  text-transform: uppercase;
  transition-property: background-color, border-color, color, fill, stroke;
  transition-duration: 150ms;
}

.syphrena-new-title-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10%; 
}

.syphrena-new-subtitle {
  position: relative;
  top: 20px; 
  font-family: 'SemplicitaPro';
  --text-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--text-opacity));
}

.syphrena-footer-theme-provider, .syphrena-footer-theme-copyright, .syphrena-footer-trademark{
  text-shadow: 0 0 1px transparent, 0 1px 2px rgba(0,0,0,.8);
}

.syphrena-footer-trademark{
  font-family: 'BlizQuadrata Web';
  text-transform: uppercase;
  font-size: 0.75rem;
  --text-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--text-opacity));
}

.syphrena-footer-theme-copyright{
  font-family: 'BlizQuadrata Web';
  text-transform: uppercase;
}

.syphrena-footer-theme-provider{
  font-family: 'BlizQuadrata Web';
  font-size: 1.25rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.syphrena-footer-theme-provider-arwent{
  --text-opacity: 1;
  color: #ebdec2;
  color: rgba(235, 222, 194, var(--text-opacity));
  text-decoration: underline;
}

.syphrena-layout-username{
  margin-left: 0.5rem;
}

.syphrena-layout-username svg{
  margin-left: 0.5rem;
}

@media (min-width: 768px){
  .syphrena-footer{
    max-width: 32rem;
  }
  
   .syphrena-hero-container{
    padding: 2rem;
  }

  .syphrena-hero-title{
    font-size: 3rem;
  }

  .syphrena-hero-subtitle{
    max-width: 42rem;
    font-size: 1.875rem;
  }
  
  .azeroth-hero-title{
    font-size: 3rem;
  }

  .azeroth-hero-subtitle{
    max-width: 42rem;
    font-size: 1.875rem;
  }

  .syphrena-hero-button{
    font-size: 1.125rem;
  }

  .syphrena-hero-buttons{
    width: auto;
    flex-direction: row;
  }

  .syphrena-new{
    margin: 2rem;
  }
}

@media (min-width: 1280px){
  .syphrena-hero-container{
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 4rem;
    padding-left: 16rem;
    padding-right: 10rem;
  }
  
  .syphrena-home-item-reversed{
    align-items: flex-end;
    text-align: right;
  }

  .syphrena-home-item-reversed > div.syphrena-hero-buttons > a.syphrena-hero-button{
    margin-right: 0;
    margin-left: 1rem;
  }

  .syphrena-new{
    margin: 0;
    margin-right: 0.5rem;
    width: 428px;
  }

  .syphrena-news-list{
    display: flex;
    justify-content: space-between;
  }
  
/* Animation pour faire flotter l'image */
@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  10% {
    transform: translate(110%, 130%) rotate(90deg); /* Déplacement relatif */
  }
  20% {
    transform: translate(-110%, 110%) rotate(180deg); /* Déplacement relatif */
  }
  30% {
    transform: translate(0%, 0%) rotate(270deg); /* Déplacement relatif */
  }
  40% {
    transform: translate(110%, -110%) rotate(360deg); /* Déplacement relatif */
  }
  50% {
    transform: translate(-110%, 130%) rotate(90deg); /* Déplacement relatif */
  }
  60% {
    transform: translate(0%, 0%) rotate(180deg); /* Déplacement relatif */
  }
  70% {
    transform: translate(110%, -110%) rotate(270deg); /* Déplacement relatif */
  }
  80% {
    transform: translate(-110%, 110%) rotate(360deg); /* Déplacement relatif */
  }
  90% {
    transform: translate(110%, 130%) rotate(90deg); /* Déplacement relatif */
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* Appliquer l'animation à l'image */
  .floating-image {
    position: absolute;
    bottom: 180px;
    right: 880px;
    width: 150px;
    height: auto;
    animation: float 380s infinite linear;
  }
  
  /* Animation de flottement */
@keyframes floats {
    0% { transform: translateY(-2px); }
    50% { transform: translateY(2px); }
    100% { transform: translateY(-2px); }
}

/* Appliquer l'animation de façon continue */
.floatings-logo {
    animation: floats 1s ease-in-out infinite;
}

.legion-green {
  color: green;
}

.bfa-yellow {
  color: yellow;
}

.bfa-orange {
  color: orange;
}

.green-shadow {
  text-shadow: 2px 2px 4px green;
}

.yellow-shadow {
  text-shadow: 2px 2px 4px yellow;
}

.orange-shadow {
  text-shadow: 2px 2px 4px orange;
}


/* Curseur par défaut */
body {
  cursor: url('gam372.cur'), default;
}

/* Curseur pour les liens */
a {
  cursor: url('gam375.cur'), pointer;
}

.azeroth-universe-description {
  font-size: 18px;
  color: #ebdec2;
  line-height: 1.6;
  margin-top: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 1px transparent, 0 1px 2px rgba(0,0,0,.8);
}

.orange-shadow {
  text-shadow: 1px 1px 5px rgba(255, 165, 0, 0.7);
}

.image-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 10px; 
  align-items: start;
}

.image-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-item {
  display: flex;
  align-items: center;
  gap: 10px; 
}

.image-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  flex-shrink: 0;
}

.image-text {
  flex: 1;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-title {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-bottom: -15px;
}

.image-description {
  font-size: 14px;
  color: #fff;
  text-align: left;
  line-height: 1.4;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    margin-top: 10px;
}

.pulse {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

.pulse.green {
    background: #4ad218;
    box-shadow: 0 0 10px #4ad21899;
}

.pulse.red {
    background: #d21818;
    box-shadow: 0 0 10px #d2181899;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@media screen and (max-width: 768px) {
    .server-status {
        font-size: 0.9rem; 
        justify-content: center; 
        margin-top: 15px; 
    }

    .pulse {
        width: 14px; 
        height: 14px;
    }

    .server-text {
        font-size: 0.85rem; 
    }
}


@media (max-width: 1366px) {
.orange-shadow {
  text-shadow: 1px 1px 5px rgba(255, 165, 0, 0.7);
}

.image-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 10px; 
  align-items: start; 
}

.image-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-item {
  display: flex;
  align-items: center;
  gap: 10px; 
}

.image-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  flex-shrink: 0;
}

.image-text {
  flex: 1;
  min-height: 100px; 
  display: flex;
  flex-direction: column;
  justify-content: center; 
}

.image-title {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-bottom: -15px;
}

.image-description {
  font-size: 14px;
  color: #fff;
  text-align: left;
  line-height: 1.4;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    margin-top: 10px;
}

.pulse {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

.pulse.green {
    background: #4ad218;
    box-shadow: 0 0 10px #4ad21899;
}

.pulse.red {
    background: #d21818;
    box-shadow: 0 0 10px #d2181899;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
	.server-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    margin-top: 10px;
}

.pulse {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

.pulse.green {
    background: #4ad218;
    box-shadow: 0 0 10px #4ad21899;
}

.pulse.red {
    background: #d21818;
    box-shadow: 0 0 10px #d2181899;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
  .image-section {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .image-column {
    width: 90%;
  }

  .image-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 10px;
  }

  .image-item img {
    width: 130px;
    height: 130px;
  }

  .image-text {
    min-height: auto;
  }

  .image-description {
    font-size: 12px;
  }

  .image-title {
    font-size: 14px;
  }
}

.server-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    margin-top: 10px;
}

.pulse {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

.pulse.green {
    background: #4ad218;
    box-shadow: 0 0 10px #4ad21899;
}

.pulse.red {
    background: #d21818;
    box-shadow: 0 0 10px #d2181899;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
  .image-item img {
    width: 120px;
    height: 120px;
  }

  .image-description {
    font-size: 11px;
  }

  .image-title {
    font-size: 13px;
  }
}

.server-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    margin-top: 10px;
}

.pulse {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

.pulse.green {
    background: #4ad218;
    box-shadow: 0 0 10px #4ad21899;
}

.pulse.red {
    background: #d21818;
    box-shadow: 0 0 10px #d2181899;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}