body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/wallpaper.jpg') center/cover no-repeat;
    z-index: -1; /* derrière le contenu */
}
/* Conteneur centré */
.logout-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 150px 0; /* espace pour laisser le footer respirer */
    width: 100%;
}


/* Carte floutée */
.blur-card {
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0);
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 20px;
    padding: 40px 50px;
    text-align: center;
    color: #000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0);
    animation: fadeIn 0.8s ease-out;
}

/* Icône */
.icon {
    font-size: 55px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

/* Texte */
.text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
/* --- ALERTES BLUR --- */
.blur-alert {
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0);
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 16px;
    padding: 20px 25px;
    margin: 20px auto;
    width: 550px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    animation: fadeIn 0.5s ease-out;
    text-align: left;
}

/* Icône */
.blur-alert .icon {
    font-size: 36px;
}

/* Message */
.blur-alert .msg {
    font-size: 18px;
    font-weight: 600;
}

/* Variantes */
.blur-alert.success {
    border-color: rgba(76, 175, 80, 0.5);
}

.blur-alert.warning {
    border-color: rgba(255, 193, 7, 0.5);
}

.blur-alert.info {
    border-color: rgba(100, 181, 246, 0.5);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Boîte blur */
.blur-box {
    margin: 25px 0;
    padding: 15px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0);
    border: 1px solid rgba(0, 0, 0, 0);
}

.blur-title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

/* Tableau blur */
.blur-table {
    width: 100%;
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0);
}

.blur-table thead {
    background: rgba(0, 0, 0, 0);
}

.blur-table tbody tr {
    background: rgba(0, 0, 0, 0);
}

.blur-table tbody tr.even {
    background: rgba(0, 0, 0, 0);
}

/* Badges */
.level-badge,
.prestige-badge {
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0);
    color: #000;
    font-weight: bold;
}

/* Container with acrylic effect */
.acrylic {
  position: relative;
  background: rgba(0, 0, 0, 0); /* Tint color with transparency */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 12px;
  overflow: hidden;
}

/* Optional noise texture overlay */
.acrylic::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQIW2P4//8/AwAI/AL+Zz0XAAAAAElFTkSuQmCC'); /* tiny noise texture */
  background-repeat: repeat;
  opacity: 0.05; /* Adjust noise visibility */
  pointer-events: none;
}
html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,p,figure,figcaption,button{
    padding:0;
    margin:0;
    font-size:inherit;
    color:inherit;
    background:transparent;
}
h1,h2,h3,h4,h5,h6{
    font-weight:normal;
}
a{
    text-decoration:none;
}
table{
    border-spacing:0;
}
fieldset,img,button,textarea{
    border:0;
}
address,caption,cite,code,dfn,em,strong,th,var{
    font-weight:normal;
    font-style:normal;
}
strong{
    font-weight:bold;
}
ol, ul{
    list-style:none;
    margin:0;
    padding:0;
}
caption,th{
    text-align:left;
}
q:before, q:after{
    content:'';
}
abbr, acronym{
    border:0;
}
input{
    border:0;
    margin:0;
}
i{
    font-style:normal;
    font-weight:bold;
}
textarea{
    resize:none;
}
a,button,input[type=submit]{
    cursor:pointer;
}
.clear{
    clear:both;
}
.clear-right{
    clear:right;
}
.clear-left{
    clear:left;
}
input[name=vote]{
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
}
*::selection{
    background:rgba(29,38,43,.9);
    color:#ffffff;
}
*::-moz-selection{
    background:rgba(29,38,43,.9);
    color:#ffffff;
}
*::-webkit-selection{
    background:rgba(29,38,43,.9);
    color:#ffffff;
}
*::-khtml-selection{
    background:rgba(29,38,43,.9);
    color:#ffffff;
}
*::ô-selection{
    background:rgba(29,38,43,.9);
    color:#ffffff;
}
@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome/fontawesome-webfont93e3.eot?v=4.4.0');
    src: url('../fonts/fontawesome/fontawesome-webfontd41d.eot?#iefix&v=4.4.0') format('embedded-opentype'), url('../fonts/fontawesome/fontawesome-webfont93e3.woff2?v=4.4.0') format('woff2'), url('../fonts/fontawesome/fontawesome-webfont93e3.woff?v=4.4.0') format('woff'), url('../fonts/fontawesome/fontawesome-webfont93e3.ttf?v=4.4.0') format('truetype'), url('../fonts/fontawesome/fontawesome-webfont93e3.svg?v=4.4.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'proxima-nova_regular';
    src: url('../fonts/ProximaNova-Regular.eot');
    src: url('../fonts/ProximaNova-Regular.eot') format('embedded-opentype'),url('../fonts/ProximaNova-Regular.woff') format('woff'),url('../fonts/ProximaNova-Regular.ttf') format('truetype'),url('../fonts/ProximaNova-Regular.svg#ProximaNova-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'proxima-nova_bold';
    src: url('../fonts/ProximaNova-Bold.eot');
    src: url('../fonts/ProximaNova-Bold.eot') format('embedded-opentype'),url('../fonts/ProximaNova-Bold.woff') format('woff'),url('../fonts/ProximaNova-Bold.ttf') format('truetype'),url('../fonts/ProximaNova-Bold.svg#ProximaNova-Bold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
*{
    position:relative;
	box-sizing: border-box;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}
*:focus{
    outline-style:none;
}
strong{
    font-family:'Arial';
    font-weight:normal;
}
a{
    color:inherit;
}
/********** E **********/
/* TRANSITION */
header nav ul li.sub span{
    -webkit-transition:0.3s;
    -moz-transition:0.3s;
    -ms-transition:0.3s;
    transition:0.3s;
}
/* USER-SELECT */
main aside .butt, header nav{
    -khtml-user-select:none;
    -webkit-user-select:none;
    -moz-user-select:-moz-none;
    -ms-user-select:none;
    user-select:none;
}
/* FLEX MODE */
main aside .item .illu{
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:flex;
    -ms-flex-wrap:wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap:wrap;
}
/********** * **********/
html, body{
    font-family:'Arial';
    width:100%;
    height:100%;
    min-height:100%;
    max-height:100%;
}
/* Apply to the whole page */


/* Optional: Adjust for very small screens */
@media (max-width: 600px) {
    body {
        background-position: top; /* Focus on top part for phones */
    }
}
.ct{
    width:1100px;
    max-width:100%;
    padding:0 25px;
    margin:auto;
}
@media screen and (max-width:415px){
    .ct{
        padding:0 10px;
    }
}
.alert{
    color:#f4f8d7;
    padding:10px 14px!important;
    margin-top:10px;
}
.alert.infos{
    background:#3e7da9;
}
.alert.error{
    background:#c05151;
}
.alert.valid{
    background:#9fc051;
}
.alert.warning{
    background:#e29a44;
}
/********** HEADER **********/
body{
	padding-top:0px;
	}
header .ct{
    height:100%;
}
header #logotype{
    box-shadow:0 2px 5px
    rgba(0,0,0,.3);
    left:50%;
    margin-left:-75px;
    font-family:
            'Arial';
    text-transform:
            uppercase;
    text-align:
            center;
    font-weight:800;

    position:
            absolute;
    width:150px;
    background: linear-gradient(45deg, #1e1e1e, #2d2d2d);
    height:65px;
    padding-top:10px;
    text-shadow:2px 2px 4px rgba(0,0,0,.3);
    font-size:27px;
    line-height:30px;
    color: #f2f4f3;
    border-bottom-left-radius:5px;
    border-bottom-right-radius:5px;
    border-top-left-radius:5px;
    border-top-right-radius:5px;

    border:1px solid rgba(255,255,255,0.1);
}
header #logotype:hover{
    background:linear-gradient(45deg, #2d2d2d, #3d3d3d);
    transform:translateY(2px);
    transition:all 0.5s ease;
}
header #logotype small{
    font-weight:normal;
    display:block;
    line-height:16px;
    text-transform:initial;
    font-size:11px;
    font-family:'Arial';
    color:rgba(255,255,255,0.8);
    letter-spacing:0.5px;
}
header nav{
    height:100%;
    font-family:'Arial';
}
header nav .nav{
    height:100%;
}
header nav .nav li, header .panel{
    color: #d5d5d5;
    width:
            calc(16.666% - 25px);
    height:100%;
    float:
            left;
}
header nav .nav li:nth-child(3){
    border-right:0;
}
header nav .nav li:hover{
    z-index:150;
}
header nav .nav li a, header .panel a{
    color: #f7f9f8;
    text-align:
            center;
    width:100%;
    height:100%;
    text-transform:
            uppercase;
    font-size:14px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}
header nav .nav li.sub{
    padding-top:20px;
    text-align:center;
    text-transform:uppercase;
    font-size:14px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}
header nav .nav li a:hover, header nav ul li.sub:hover, header .panel a:hover{
    background:rgba(255,255,255,.05);
    border-bottom: 3px solid #a4d023;
    color: #a4d023;
}
header nav .nav li span{
    position:
            revert;
    bottom:-15px;
    text-align:
            center;
    left:0;
    display:
            block;
    margin:
            auto;
    width:100%;
    color: #a4d023 !important;
    transition: all 0.3s ease;
}
header nav .nav li.sub:hover span{
    bottom:8px;
    transform: scale(1.2);
}
header nav .nav li.logotype{
    width:150px;
    height:70px;
}
header nav .nav li ul.submenu{
    height:0;
    overflow:
            hidden;
    box-shadow:0 2px 5px
    rgba(0,0,0,.3);
    padding:0 7px 0;
    width:180px;
    background: linear-gradient(to bottom, #00000099, #1e1e1e99);
    position: absolute;
    left:50%;
    margin-left:-90px;
    top:65px;
    border: 1px solid rgba(255,255,255,0.1);
    border-top: none;
    border-radius: 0 0 10px 10px;
}
header nav .nav li ul.submenu li{
    width:100%;
    float:none;
    height:40px;
    border-right:0;
    text-shadow:0 2px 4px rgba(0,0,0,.1);
}
header nav .nav li ul.submenu li:first-child{
    margin-top:7px;
}
header nav .nav li ul.submenu li a{
    box-shadow:0 1px 0 rgba(255,255,255,.15), 0 0 10px rgba(0,0,0,.5) inset;
    font-size:14px;
    background:rgb(28 28 28 / 33%);
    margin-bottom:7px;
    padding-top:3px;
    height:100%;
    line-height:45px;
    border-radius: 20px;
    border-bottom: none;
}
header nav .nav li ul.submenu li a:hover{
    background:rgba(164, 208, 35, 0.2);
    color: #a4d023;
    transform: translateX(5px);
}
header nav .nav li ul.submenu li input{
    box-shadow: 0 0 5px rgba(0,0,0,.1) inset;
    background: rgba(0,0,0,.1);
    margin-bottom: 7px;
    padding-top: 0;
    height: 100%;
    color: #f4f8d7;
    float: left;
    text-align: center;
    width: 100%;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
}
header nav .nav li ul.submenu li input:hover{
    background:rgba(0,0,0,.2);
}
header .panel{
    position:absolute;
    right:-10px;
    height:234%;
    top:0;
}
header .panel .lang{
    width:30px;
    position:absolute;
    right:0;
    height:100%;
    padding:4px 0;
}
header .panel .lang li{
    width:30px;
    height:33.33%;
    border-right:0;
}
header .panel .lang li a{
    opacity:.5;
    width:100%;
    height:100%;
    padding-top:1px;
}
header .panel .lang li a:hover{
    background:none;
    opacity:1;
}
header .panel .lang li.active a{
    opacity:1;
}
header .panel .link{
    cursor:pointer;
    width:calc(40%);
    font-size:30px;
}
header .panel .link.menu{
    display:none;
}
header .panel .link div{
    top:-2px;
    left:1px;
}
@media screen and (min-width:1000px){
    header nav{
        left:0!important;
    }
}
@media screen and (max-width:1000px){
    header nav{
        overflow-x:scroll;
        padding-bottom:40px;
        position:fixed;
        height:calc(100vh - 65px);
        width:200px;
        background:rgba(32,38,36,.97);
        top:65px;
        left:-200px;
        z-index:850;
        box-shadow:1px 0 0 rgba(255,255,255,.15), 0 0 10px rgba(0,0,0,.5) inset;
    }
    header nav .nav li{
        width:100%;
        height:auto;
        border-right:0;
    }
    header nav .nav li a, header nav .nav li.sub{
        text-align:left!important;
        padding-left:20px;
    }
    header nav .nav li.sub{
        padding-top:15px;
    }
    header nav .nav li a:hover, header nav .nav li.sub:hover{
        background:transparent;
    }
    header nav .nav li.logotype, header nav .nav li span{
        display:none;
    }
    header nav .nav li ul.submenu{
        padding-top:8px;
        top:0;
        height:auto!important;
        position:relative;
        background:transparent;
        box-shadow:0 0 0;
        width:100%!important;
        margin-left:0;
        left:0;
    }
    header nav .nav li ul.submenu li{
        height:auto;
        padding:0;
    }
    header nav .nav li ul.submenu li a{
        line-height:15px;
        padding-left:0;
        font-size:11px!important;
        font-weight:300;
        background:transparent;
        box-shadow:0 0 0;
        height:auto!important;
    }
    header nav .nav li ul.submenu li a:hover{
        background:transparent;
        box-shadow:0 0 0;
        height:auto!important;
    }
    header nav .nav li a:hover{
        color:#b9ca39!important;
    }
    header #logotype{
        margin-left:0;
        left:20px;
    }
    header .panel{
        width:213px;
    }
    header .panel .link{
        width:60px;
    }
    header .panel .link.menu{
        display:inline-block;
    }
}
@media screen and (max-width:415px){
    header #logotype{
        left:5px;
    }
    header .panel{
        right:5px;
    }
    header .panel .link{
        width:60px;
    }
    header .panel .link.menu{
        display:inline-block;
    }
}
@media screen and (max-width:378px){
    header #logotype{
        left:5px;
    }
    header .panel{
        width:calc(100% - 165px);
        padding-right:30px;
    }
    header .panel .link{
        width:33.333%;
        font-size:14px;
    }
    header .panel .link div{
        top:4px;
    }
}
/********** MAIN **********/
#logo{
    position:absolute;
    top:-230px;
    right:110px;
}
@media screen and (max-width:620px){
    #logo{
        position:absolute;
        right:0;
        width:100%;
        display:inline-block;
        text-align:center;
    }
    #logo img{
        max-width:80%;
    }
}
main aside{
    padding:10px;
    position:
            absolute;
    top:0;
    right:0;
    width:250px;
    height:100%;
    border-left:1px solid
    rgba(255,255,255,.1);
    box-shadow:0 0 10px
    rgba(0,0,0,.1) inset;
}
main aside .panel{
    padding:8px;
    color: #f4f8d7;
    margin-bottom:8px;
    box-shadow:0 0 1px
    rgba(0,0,0,.7), 0 0 10px rgba(0,0,0,.4) inset, 0 -3px 0 rgba(0,0,0,.15) inset;
}
main aside .panel li{
    width:100%;
    padding-bottom:4px;
}
main aside .panel li:last-child{
    padding-bottom:0;
}
main aside .panel li a{
    opacity:.8;
    overflow:hidden;
    display:inline-block;
    box-shadow:0 0 1px rgba(0,0,0,.3);
    background:rgba(255,255,255,.08);
    width:100%;
    padding:7px 12px;
}
main aside .panel li button{opacity:.8;overflow:hidden;display:inline-block;box-shadow:0 0 1px rgba(0,0,0,.3);background:rgba(255,255,255,.08);width:100%;padding:7px 12px;}

main aside .panel li a:hover{
    opacity:1;
}
main aside .panel li a.blue{
    background:#04485B;
}
main aside .panel li button.red{
    background:#ea6262;
}
main aside .panel li button.red:hover{
    background:#a14444;
    transition: 0.5s;
}
main aside .panel li a.red{
    background:#ea6262;
}
main aside .panel li.og a{
    padding-left:28px;
}
main aside .panel li.og a img{
    width:70px;
    position:absolute;
    left:-20px;
    top:-22px;
}
main aside .butt{
    text-shadow:0 1px 3px rgba(0,0,0,.15);
    margin-bottom:10px;
    padding:18px 0 0 58px;
    height:75px;
    width:100%;
    color:#f4f8d7;
    font-size:16px;
    font-family:'Arial';
    text-transform:uppercase;
    font-weight:800;
    display:inline-block;
    box-shadow:0 0 1px rgba(0,0,0,.7), 0 0 10px rgba(0,0,0,.4) inset, 0 -3px 0 rgba(0,0,0,.15) inset;
}
main aside .butt:hover{
    box-shadow:0 0 1px rgba(0,0,0,.7), 0 0 10px rgba(255,255,255,.15) inset, 0 -2px 0 rgba(0,0,0,.1) inset;
}
main aside .butt small{
    display:block;
    width:100%;
    font-size:13px;
    font-weight:normal;
    text-transform:initial;
    font-family:'Arial';
}
main aside .butt .illu{
    position:absolute;
    top:0px;
    left:4px;
    display:inline-block;
    width:50px;
    height:50px;
    background:url(../img/sprite.png) top center no-repeat;
    background-size:92% auto;
}
main aside .butt.discord{
    background:#7289da;
    border-radius: 10px;
    border: 4px solid #1e1e1e;
    box-shadow: 0 0 0 4px inset #58659a;
    color: #f5f6fd;
    line-height: -10px;
}
main aside .butt.discord:hover{
    background:#5c6faf;
    border-radius: 10px;
    border: 4px solid #1e1e1e;
    box-shadow: 0 0 0 4px inset #58659a;
    color: #ffffff;
    text-shadow: none;
    transition: 0.8s;
}
main aside .butt.discord .illu{
    background-position:center -2508px;
}
main aside .butt.twitter{
    background:#00aced;
}
main aside .butt.twitter .illu{
    background-position:center -2555px;
}
main aside .butt.facebook{
    background:#3b5998;
}
main aside .butt.facebook .illu{
    background-position:center -2600px;
}
main aside .butt.joins{
    background: #a4d023;
    border-radius: 10px;
    border: 4px solid #1e1e1e;
    box-shadow: 0 0 0 4px inset #7fa21b;
    color: #f5f6fd;
    text-shadow: none;
    transition: 0.8s;
    /*background:#ee8202;*/
}
main aside .butt.joins:hover{
    background: #759418;
    border-radius: 10px;
    border: 4px solid #1e1e1e;
    box-shadow: 0 0 0 4px inset #7fa21b;
    color: #f5f6fd;
    text-shadow: none;
    /*background:#ee8202;*/
}
main aside .butt.joins .illu{
    background-position:center -302px;
    margin-bottom:-5px;
}
main aside .butt.vote{
    background:#ecaf1e;
    border-radius: 10px;
    border: 4px solid #1e1e1e;
    box-shadow: 0 0 0 4px inset #ad8525;
    color: #f5f6fd;
    text-shadow: none;
}
main aside .butt.vote:hover{
    background:#ad8627;
    border-radius: 10px;
    border: 4px solid #1e1e1e;
    box-shadow: 0 0 0 4px inset #ad8525;
    color: #f5f6fd;
    text-shadow: none;
    transition: 0.8s;
}
main aside .butt.vote .illu{
    background-position:center -2239px;
}
main aside .butt.ladder{
    background:#a89560;
    border-radius: 10px;
    box-shadow: 0 0 0 4px inset #70613a;
    color: #f5f6f4;
    text-shadow: none;
}
main aside .butt.ladder:hover{
    background:#8a7b51;
    border-radius: 10px;
    border: 4px solid #1e1e1e;
    box-shadow: 0 0 0 4px inset #70613a;
    color: #f5f6f4;
    text-shadow: none;
    transition: 0.8s;
}
main aside .butt.ladder .illu{
    background-position:center -964px;
}
main aside .item{
    text-align:center;
    background:#204346;
    height:55px;
    margin:-10px 0 10px;
    box-shadow:0 0 1px rgba(0,0,0,.7);
}
main aside .item .illu{
    float:left;
    width:25%;
    height:100%;
    background:#0a9daa;
    box-shadow:0 0 15px rgba(0,0,0,.4) inset;
    border-right:1px solid #20565b;
    border-top:1px solid #20565b;
    margin: 350px auto;
}
main aside .item .illu:last-child{
    border-right:0;
}
main aside .item .illu:hover{
    background:#35abb5;
}
main aside .item .illu img{
    margin:auto;
    width:40px;
}
main aside .price{
    width:100%;
    background:#ffffff;
}
main #content h1{
    text-transform:
            uppercase;
    color: #ffffff;
    line-height:22px;
    padding:13px 15px;
    text-shadow:0 1px 3px
    rgba(0,0,0,.15);
    background: #00000000;
    font-size:20px;
    font-family:
            'Arial';
    font-weight:800;
}
main #content #breadcrump{
    line-height:14px;
    margin-bottom:10px;
    background: #2d2d2d00;
    padding:9px 15px 10px;
    color: #f2f4f3;
    font-family:
            'Arial';
}
main #content #breadcrump li{
    display:inline;
    font-size:12px;
    line-height:15px;
}
main #content #breadcrump li:after{
    color:#e3a09d !important;
    margin:0 2px 0 6px;
    position:relative;
    top:1px;
}
main #content #breadcrump li:last-child:after{
    display:none;
}
main #content #breadcrump li:last-child{
    font-family:'Arial';
}
main #content #breadcrump li a:hover{
    text-decoration:underline;
}
main #content #middle{
    overflow:hidden;
    padding:1px 10px 10px;
    color:#41423d;
}
main #content #middle h2{
    margin-top:10px;
    background:#2d2d2d;
    color: #f8f1d7;
    line-height:18px;
    padding:13px 15px;
    font-size:16px;
    text-transform:uppercase;
    font-family:'Arial';
    font-weight:800;
}
main #content #middle h2 a:hover{
    color:#a5aaa6;
}
main #content #middle p{
    font-size:15px;
    line-height:22px;
    padding:10px 15px 5px;
}
main #content form{
    width:100%;
    backdrop-filter: blur(4px);
    padding:22px;
    margin:10px auto 0;
	border-radius: 20px;
	border: 1px solid rgb(0, 0, 0, 66%);
}
main #content form label{
    display:block;
    color:#585951;
    line-height:14px;
    font-family:'Arial';
    font-size:14px;
    text-transform:uppercase;
    font-weight:800;
}
main #content form label small{
    padding-bottom:10px;
    display:block;
    font-size:14px;
    text-transform:initial;
    font-weight:normal;
    font-family:'Arial';
}
main #content form label span{
    color:#e66045;
}
main #content form textarea,main #content form input[type=text],main #content form input[type=password]{
    backdrop-filter: blur(4px);
    border: 1px solid #00000099;
	border-radius:20px;
    font-size:14px;
    width:300px;
    height:45px;
    margin-bottom:15px;
    padding:0 12px;
    font-family:'Arial';
}
main #content form textarea:focus,main #content form input[type=text]:focus,main #content form input[type=password]:focus{
    border-color:#929487;
}
main #content .btn{
    font-size:10px!important;
    text-align:center;
    padding:10px!important;
    width:100%!important;
}
main #content .btn,main #content form button{
	border: 1px solid rgb(164 208 35 / 66%);
    text-shadow:0 1px 3px rgba(0,0,0,.15);
	border-radius: 20px;
    background: #00000066;
    display:block;
    text-transform:uppercase;
    color: #f8e9d7;
    font-family:'Arial';
    padding:15px 20px;
    font-weight:800;
}
main #content .btn:hover,main #content form button:hover{
    background:#00000099;
    transition: 0.5s;
}
main #content form textarea{
    width:100%;
    height:125px;
    resize:none;
    padding-top:10px;
    padding-bottom:10px;
}
main #content .principal{
    color:#b9ca39;
}
@media screen and (max-width:764px){
    main aside{
        width:100%;
        position:relative;
        border-left:0px;
    }
    main #content{
        width:100%;
        min-height:auto;
    }
}
@media screen and (max-width:400px){
    main #content form label{
        text-align:center;
    }
    main #content form button,main #content form input[type=text],main #content form input[type=password]{
        width:100%;
    }
}
main #news {
    margin-bottom: -10px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

main article {
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    font-size: 14px;
    width: calc(50% - 10px);
    background: #2d2d2d;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

main article:hover {
    transform: translateY(-5px);
}

main article .header {
    color: #eae9de;
    height: 230px;
    background-size: cover;
    background-position: center center;
    position: relative;
}

main article .header time {
    display: inline-block;
    background: linear-gradient(45deg, #1e1e1e, #2d2d2d);
    left: 12px;
    width: 55px;
    text-align: center;
    font-size: 22px;
    padding: 13px 0 8px;
    line-height: 14px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

main article .header h2 {
    font-family: 'Arial';
    width: 100%;
    position: absolute;
    bottom: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    font-size: 20px;
    line-height: 24px;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

main article p {
    line-height: 1.6;
    padding: 20px;
    height: 150px;
    overflow: hidden;
    color: #f2f4f3;
    background: #2d2d2d;
}

main article .footer {
    background: #1e1e1e;
    padding: 15px 20px;
    font-size: 12px;
    height: auto;
    color: #f2f4f3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main article .footer time {
    font-weight: 600;
}

main article .footer a {
    background: #a4d023;
    height: 35px;
    font-weight: 600;
    font-size: 14px;
    padding: 0 15px;
    line-height: 35px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

main article .footer a:hover {
    background: #759418;
    transform: scale(1.05);
}

main article .footer a img {
    vertical-align: middle;
    margin-right: 5px;
}

/* Pagination */
#content div#middle h2[align="center"] {
    background: #2d2d2d;
    border-radius: 5px;
    margin: 20px 0;
}

#content div#middle h2[align="center"] a {
    color: #f2f4f3;
    padding: 5px 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

#content div#middle h2[align="center"] a:hover {
    color: #a4d023;
}

main .butt-points{
    max-width:100%;
    background:#04485B;
    overflow:hidden;
    text-shadow:0 1px 3px rgba(0,0,0,.15);
    padding:20px 0 0 0;
    text-align:center;
    height:60px;
    width:280px;
    margin:15px auto 5px;
    display:block;
    line-height:16px;
    color:#f4f8d7;
    font-size:16px;
    font-family:'Arial';
    text-transform:uppercase;
    font-weight:800;
    box-shadow:0 0 1px rgba(0,0,0,.7), 0 0 10px rgba(0,0,0,.4) inset, 0 -3px 0 rgba(0,0,0,.15) inset;
}
main .butt-points:hover{
    background:#147182;
}
main .butt-points img{
    position:absolute;
    top:-70px;
    left:-70px;
}
main .butt-points span{
    z-index:100;
}
main .comm{
    vertical-align:-20%;
    margin-bottom:-5px;
    top:-2px;
    margin-right:6px;
    margin-left:-3px;
}
main .comment li{
    min-height:130px;
    width:100%;
    background:#e0e3c9;
    padding:20px 20px 15px;
    margin:10px auto 0;
}
main .comment li .left{
    float:left;
    width:90px;
    height:90px;
    background:#c7cab3;
}
main .comment li .left .ico_user{
    font-size:50px;
    opacity:.2;
    left:27px;
    top:20px;
}
main .comment li .left .level{
    position:absolute;
    z-index:60;
    left:-15px;
    width:50px;
    text-align:center;
    top:-12px;
    color:#ffffff;
    font-size:10px!important;
    font-family:'Arial';
}
main .comment li .left .align{
    position:absolute;
    z-index:50;
    width:105px;
    left:-7px;
    top:-8px;
}
main .comment li .left .class{
    position:absolute;
    width:100%;
}
main .comment li .right{
    border:2px solid #c7cab3;
    width:calc(100% - 100px);
    background:#f4f8d7;
    margin-left:105px;
    padding-bottom:7px;
    padding-top:2px;
}
main .comment li .right p{
    line-height:17px!important;
}
main .comment li .right p .time{
    display:block;
    font-size:11px;
    margin-bottom:5px;
    color:#585951;
    opacity:.7;
}
@media screen and (max-width:470px){
    main .comment li{
        min-height:auto;
        padding:10px;
    }
    main .comment li .left{
        display:none;
    }
    main .comment li .right{
        width:100%;
        margin-left:0;
    }
}
.join{
    padding:0;
    overflow:hidden;
    background:#f4f8d7;
}
.join .download{
    width:100%;
    height:315px;
    background:url('../img/bg-join.jpg') no-repeat;
}
.join .download a.dn{
    top:90px;
    right:20px;
    border-radius:3px;
    background:#31303c;
    font-family:'Arial';
    transition:0.2s!important;
    padding-top:16px;
    line-height:24px;
    letter-spacing:5px;
    color:#d6edf4;
    width:270px;
    height:92px;
    display:inline-block;
    text-align:center;
    text-transform:uppercase;
    position:absolute;
    font-size:12px;
    text-shadow:0 1px 2px rgba(0,0,0,.4);
    box-shadow:0 2px 5px rgba(0,0,0,.6), 0 0 25px #292740 inset, 0 -4px 0 rgba(0,0,0,.3) inset;
}
.join .download a.dn span{
    width:100%;
    display:inline-block;
    font-size:32px;
}
.join .download a.dn:hover{
    transition:0.2s!important;
    color:#ffffff;
    box-shadow:0 1px 4px rgba(0,0,0,.4), 0 0 35px #6762a9 inset, 0 -2px 0 rgba(0,0,0,.3) inset;
}
.join .download a.mac{
    opacity:.6;
    transition:0.2s!important;
    color:#ffffff;
    text-transform:uppercase;
    letter-spacing:3px;
    position:absolute;
    font-size:12px;
    top:195px;
    right:50px;
}
.join .download a.mac:hover{
    opacity:1;
}
@media screen and (max-width:430px){
    .join .download a.dn{
        position:relative;
        right:auto!important;
        left:auto;
        display:block;
        width:90%;
        margin:auto;
    }
}
#ip-vote-info {
    background-color: #8d5b59;
    color: white !important;
    padding: 5px;
    text-align: center;
    font-weight: bold;
    font-size: 19px;
}
/********** FOOTER **********/
footer a{
    font-family:'Arial';
}

.icone-og{
    background-image: url("../img/ogrine.png");
    background-repeat: no-repeat;
    background-position: center;

    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
}

/* Style de la page de création de compte */
main #content form.register {
    background: #2d2d2d;
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

main #content form.register label {
    color: #f2f4f3;
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
    text-transform: uppercase;
    font-family: 'Arial';
    font-weight: 600;
}

main #content form.register label small {
    color: rgba(242, 244, 243, 0.7);
    font-size: 13px;
    text-transform: none;
    margin-top: 4px;
    display: block;
    font-weight: normal;
}

main #content form.register label span {
    color: #e66045;
}

main #content form.register input[type=text],
main #content form.register input[type=password],
main #content form.register input[type=email] {
    width: 100%;
    background: #1e1e1e;
    border: 2px solid #3d3d3d;
    color: #f2f4f3;
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

main #content form.register input:focus {
    border-color: #a4d023;
    box-shadow: 0 0 0 2px rgba(164, 208, 35, 0.2);
}

main #content form.register button {
    background: #a4d023;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    border: none;
}

main #content form.register button:hover {
    background: #759418;
    transform: translateY(-2px);
}

/* Style des messages d'erreur/succès */
main #content form.register .alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

main #content form.register .alert.error {
    background: rgba(192, 81, 81, 0.2);
    border: 1px solid #c05151;
    color: #f2f4f3;
}

main #content form.register .alert.success {
    background: rgba(164, 208, 35, 0.2);
    border: 1px solid #a4d023;
    color: #f2f4f3;
}

/* Style des conditions d'utilisation */
main #content form.register .terms {
    margin-top: 20px;
    padding: 15px;
    background: #1e1e1e;
    border-radius: 5px;
    color: rgba(242, 244, 243, 0.7);
    font-size: 13px;
    line-height: 1.5;
}

main #content form.register .terms a {
    color: #a4d023;
    text-decoration: none;
}

main #content form.register .terms a:hover {
    text-decoration: underline;
}

/* Style responsive */
@media screen and (max-width: 768px) {
    main #content form.register {
        padding: 20px;
    }
    
    main #content form.register label {
        font-size: 14px;
    }
    
    main #content form.register input[type=text],
    main #content form.register input[type=password],
    main #content form.register input[type=email] {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    main #content form.register button {
        padding: 12px 20px;
        font-size: 14px;
    }
}