html{
height: auto;
min-height: 100%;
padding: 0;
margin-top: 0;
width: 100%;
}
body{
color: var(--text-main);
font-family: "Open Sans","Trebuchet MS", "Helvetica", "Arial",  "Verdana", "sans-serif";
margin: 0px;
padding: 0px;
outline: 0px;
background-color: var(--cyber-black);
width: 100%;
min-height: 100vh;
min-width: 320px;
position: relative;
overflow-x: hidden;
overflow-y: auto;
background-image: url("../img/design/site/villeenruine1.jpg");
background-repeat:no-repeat;
background-size:cover;
background-attachment: fixed;
background-position: center center;
scroll-behavior: smooth;
}

#bloc_page, #fix, #accueil, #main_container {
    width: 100%;
    height: auto;
    min-height: 100vh;
    position: relative;
    display: block;
}

/* --- NOUVELLE NAVIGATION --- */
#main_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    z-index: 2000;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}
#main_nav.nav_hidden {
    transform: translateY(-100%);
}

/* Collapse / expand buttons */
.nav_collapse_btn {
    position: fixed;
    top: 0;
    left: 12px;
    width: 40px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(10, 10, 10, 0.4);
    border-radius: 0 0 6px 6px;
    color: rgba(255,255,255,0.15);
    font-size: 10px;
    line-height: 1;
    z-index: 5001; /* Above nav */
    transition: all 0.2s;
    user-select: none;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.02);
    border-top: none;
}
.nav_collapse_btn:hover {
    color: rgba(201, 162, 39, 0.8);
    background: rgba(10, 10, 10, 0.6);
}

.nav_expand_btn {
    position: fixed;
    top: 0;
    left: 12px;
    width: 40px;
    height: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(10, 10, 10, 0.4);
    border-radius: 0 0 6px 6px;
    color: rgba(255,255,255,0.15);
    font-size: 10px;
    line-height: 1;
    z-index: 1999;
    transition: all 0.2s;
    user-select: none;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.02);
    border-top: none;
}
.nav_expand_btn:hover {
    color: rgba(201, 162, 39, 0.8);
    background: rgba(10, 10, 10, 0.6);
}
.nav_expand_btn.visible {
    display: flex;
}

/* Adjust padding-top when nav is collapsed */
body.nav_collapsed .account_top_nav ~ #main_container {
    padding-top: 0;
}

.nav_container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

#nav_logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    color: var(--text-bright);
    letter-spacing: 1px;
}

.nav_links {
    display: flex;
    gap: 30px;
}

.nav_link {
    color: var(--text-muted);
    font-size: 14px;
    font-variant: small-caps;
    transition: all 0.3s ease;
    position: relative;
}

.nav_link:hover, .nav_link.active {
    color: #e0e0e0;
    text-shadow: none;
}

.nav_link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #c9a227;
    box-shadow: 0 0 6px rgba(201, 162, 39, 0.5);
}

.nav_mobile_toggle {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.nav_mobile_toggle span,
.nav_mobile_toggle span::before,
.nav_mobile_toggle span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--text-bright);
    transition: all 0.3s ease;
}

.nav_mobile_toggle span { top: 9px; }
.nav_mobile_toggle span::before { top: -9px; }
.nav_mobile_toggle span::after { top: 9px; }

.nav_mobile_toggle.active span { background: transparent; }
.nav_mobile_toggle.active span::before { transform: rotate(45deg); top: 0; }
.nav_mobile_toggle.active span::after { transform: rotate(-45deg); top: 0; }

@media (max-width: 768px) {
    #main_nav {
        height: 60px;
    }
    
    .nav_mobile_toggle {
        display: block;
    }
    
    .nav_links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        gap: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .nav_links.active {
        height: calc(100vh - 60px);
        padding: 20px 0;
    }
    
    .nav_link {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav_link.active::after {
        display: none;
    }
}

/* --- SECTIONS --- */
.home_section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px;
    box-sizing: border-box;
    background: var(--cyber-black);
}

.section_container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.section_title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-bright);
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* --- HERO SECTION --- */
#section_hero {
    background: linear-gradient(to bottom, rgba(10,10,10,0.4), rgba(10,10,10,0.8));
    text-align: center;
}

.hero_content {
    z-index: 10;
    max-width: 800px;
}

.hero_title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-bright);
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.hero_subtitle {
    font-size: 1.5rem;
    color: #c9a227;
    margin-bottom: 3rem;
    text-shadow: 0 0 8px rgba(201, 162, 39, 0.5);
}

.hero_ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero_title {
        font-size: 2.2rem;
        padding: 0 10px;
    }
    
    .hero_subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .hero_ctas {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .cta_primary, .cta_secondary {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

.cta_primary {
    padding: 15px 40px;
    background: linear-gradient(180deg, rgba(60, 58, 54, 0.9) 0%, rgba(40, 38, 36, 1) 100%);
    color: #e0e0e0;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 4px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta_primary:hover {
    transform: translateY(-3px);
    border-color: #c9a227;
    color: #c9a227;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.cta_secondary {
    padding: 15px 40px;
    background: transparent;
    color: var(--text-bright);
    border: 2px solid var(--text-bright);
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta_secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #c9a227;
    color: #c9a227;
}

/* --- PATHS SECTION --- */
#section_paths {
    background: var(--cyber-gray-dark);
}

.paths_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.path_card {
    background: var(--cyber-gray-medium);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}

.path_card:hover {
    transform: translateY(-10px);
    border-color: #c9a227;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.path_icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.path_card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #c9a227;
}

.path_card p {
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .paths_grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .section_title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .path_card {
        padding: 30px 20px;
    }
}

/* --- WORLD SECTION --- */
#section_world {
    background: var(--cyber-black);
    border-top: 1px solid var(--cyber-gray-medium);
}

.stats_dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 3rem;
}

.stat_item {
    background: rgba(255,255,255,0.02);
    padding: 30px;
    border-radius: 4px;
    border-left: 4px solid var(--rust-orange);
    text-align: center;
}

.stat_value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--rust-orange-bright);
    margin-bottom: 0.5rem;
}

.stat_label {
    color: var(--text-muted);
    font-variant: small-caps;
    letter-spacing: 1px;
}

.world_tagline {
    text-align: center;
    font-size: 1.2rem;
    color: var(--rust-orange);
    font-style: italic;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .stats_dashboard {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat_item {
        padding: 20px 10px;
    }
    
    .stat_value {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .stats_dashboard {
        grid-template-columns: 1fr;
    }
}

/* --- MECHANICS SECTION --- */
#section_mechanics {
    background: var(--cyber-gray-dark);
}

.mechanics_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mechanics_text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mechanics_features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature_item {
    color: var(--terminal-green);
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    text-shadow: var(--terminal-green-glow);
}

.ai_terminal {
    background: #000;
    border: 1px solid var(--terminal-green);
    border-radius: 4px;
    padding: 20px;
    font-family: 'Courier New', Courier, monospace;
    box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1);
}

.terminal_header {
    border-bottom: 1px solid var(--terminal-green);
    color: var(--terminal-green);
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 0.8rem;
}

.log_line {
    color: var(--terminal-green);
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.8;
}

.log_line.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

@media (max-width: 992px) {
    .mechanics_content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mechanics_text {
        text-align: center;
    }
    
    .mechanics_features {
        justify-content: center;
    }
    
    .ai_terminal {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* --- MODAL / BOX --- */
.modal_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.modal_overlay.active {
    display: flex;
}

.modal_close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #8a8578;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s ease;
}

.modal_close:hover {
    color: #c9a227;
}

#homepage_box {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 900px;
    height: 600px;
    background: var(--cyber-gray-dark);
    border: 1px solid rgba(201, 162, 39, 0.3);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 950px) {
    #homepage_box {
        width: 95%;
        height: 90vh;
        display: flex;
        flex-direction: column;
    }
    
    #homepage_tabs {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    }
    
    #homepage_tabs nav {
        flex-direction: row;
        overflow-x: auto;
    }
    
    #homepage_tabs nav a {
        padding: 10px 15px;
        white-space: nowrap;
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.05);
    }
    
    #homepage_tabs nav a.active {
        border-left: none;
        border-bottom: 2px solid #c9a227;
    }
    
    #homepage_content {
        padding: 20px;
    }
}

#homepage_tabs {
    background: var(--cyber-black);
    border-right: 1px solid rgba(201, 162, 39, 0.15);
}

#homepage_tabs nav a.active {
    color: #c9a227;
    border-left: 3px solid #c9a227;
    background: rgba(201, 162, 39, 0.05);
}

#homepage_content {
    background: var(--cyber-gray-dark);
}

/* --- FOOTER --- */
#home_footer {
    background: var(--cyber-black);
    padding: 40px 20px;
    border-top: 1px solid rgba(201, 162, 39, 0.15);
    text-align: center;
}

.footer_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer_links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer_container a {
    color: var(--text-muted);
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer_container a:hover {
    color: #c9a227;
}

.footer_container p {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.5;
    margin: 0;
}
input,textarea,select{
display: block;
border: 0px;
/* margin: 4px; */
padding: 4px;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.6);
border-radius: 2px;
color: #ddd;
box-shadow: inset 0px 1px 0px #000, 0px 1px 0px #2c2c2c;
outline: none;
font-family: "Open Sans";
}
a,a:active, a:target, a:focus{
text-decoration: none;
color: #f0f0f0;
outline: none;

}
.cantselect{
-webkit-user-select: none; 
-khtml-user-select: none;
-moz-user-select: none; 
-o-user-select: none;
user-select: none; 
}
.hide{
display: none;
}
/*couleurs*/
.orange,.ora{
color: #e38c11;   
}
.bleue,.ble{
color: #5DC8CD;
}
.grisbleu,.grble{
color: #4B5C5B;
}
#bloc_page{
width: 100%;
height: auto;
min-height: 100vh;
position: relative;
}
#fix{
width: 100%;
height: auto;
min-height: 100vh;
position: relative;
}
#accueil,#gestion_compte{
width: 100%;
height: auto;
min-height: 100vh;
position: relative;
}
/*
Header - Style Patine */
#header{
width: 100%;
height: 55px;
line-height: 55px;
background: linear-gradient(180deg, rgba(12, 11, 10, 0.98) 0%, rgba(18, 17, 15, 0.95) 100%);
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 5000;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}
#menu_ecran{
font-size: 11px;
font-family: "Open Sans";
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
position: relative;
display: inline-block;
margin-left: 25px;
overflow: auto;
}
#menu_ecran a{
margin-left: 8px;
padding: 6px 10px;
text-decoration: none;
color: rgba(180, 175, 165, 0.8);
transition: all 0.25s ease;
border-bottom: 2px solid transparent;
}
#menu_ecran a:hover{
color: rgba(220, 215, 205, 1);
background: rgba(255,255,255,0.03);
}
#menu_ecran a:active,
#menu_ecran a.active{
color: #e0e0e0;
border-bottom: 2px solid #c9a227;
background: rgba(201, 162, 39, 0.05);
}
/*LOGO*/
#logo{
font-family: "Open Sans";
font-style:italic;
font-weight:800;	
font-size: 25px;
float: left;
margin-left: 20px;
color:#d0d0d0;
}
.cybtownlogoo{
    color: #c9a227;
    text-shadow: 0 0 6px rgba(201, 162, 39, 0.6);
    animation: blink-gold 8s infinite ease-in-out;
    display: inline-block;
}

@keyframes blink-gold {
    0%, 90%, 100% {
        text-shadow: 0 0 6px rgba(201, 162, 39, 0.6);
        transform: scale(1);
    }
    92% {
        text-shadow: 0 0 15px rgba(201, 162, 39, 0.9), 0 0 25px rgba(201, 162, 39, 0.4);
        transform: scale(1.1);
    }
    94% {
        text-shadow: 0 0 6px rgba(201, 162, 39, 0.6);
        transform: scale(1);
    }
    96% {
        text-shadow: 0 0 15px rgba(201, 162, 39, 0.9), 0 0 25px rgba(201, 162, 39, 0.4);
        transform: scale(1.1);
    }
}
.cybtownlogoo:hover, #logo:focus .cybtownlogoo,#logo:active .cybtownlogoo{
text-shadow: 0 0 8px rgba(201, 162, 39, 0.8), 0 0 12px rgba(201, 162, 39, 0.5);
}
/*Container site*/
#main_container{
position:relative;
display: block;
height: auto;
min-height: 100vh;
width: 100%;
left:0;
background-color: rgba(0,0,0,0.1);
}
.ecran_cover{
position: relative;
display: block;
width: 100%;
height:100%;
background-repeat:no-repeat;
background-size:cover;
background-attachment: fixed;
background-position: center center;
background-origin: content-box;
overflow-y:auto;
overflow-x:hidden;
/*transition-duration: 0.1s;*/
/*will-change:transform;*/
/*transform:translateX(0px);*/
}
.premiereimage{
background-image: url("../img/design/site/legrandflash4.jpg");
}
.secondeimage{
/*background-image: url("../img/design/site/villeenruine1.jpg");*/
}
.troisiemeimage{
background-image: url("../img/design/site/attaque-coyottes.jpg");
}

/*texte accueil - bouton jouer;*/
#textaccueil, .textaccueil{
position: relative;
top:25%;
margin: auto;
padding: 20px;
font-size: 15px;
width: 33%;
color:#FFF;
min-width: 250px;
text-align: center;
font-weight: 700;
line-height: 0px;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.35);
}
#boutonjouer{
position: relative;
top:40%;
margin: auto;
padding: 15px;
width: 5%;
min-width: 220px;
border-top: 4px solid #d0d0d0;
border-bottom: 4px solid #d0d0d0;
border: 1px solid #d0d0d0;
text-align: center;
font-weight: 700;
box-shadow: 0px 2px 11px 5px #ffffff;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.35);
cursor: pointer;
z-index: 499;
}
#boutonjouer:hover{
box-shadow: 0px 2px 20px 10px #ffffff;
}
#boutonjouerjoue{
display: block;
font-size: 220%;
line-height: 24px;
}
#boutonjouergrat{
display: block;
font-size: 95%;
font-variant: small-caps;
}
/*texte accueil - bouton jouer;*/

/*Ecran responsive milieu pour connection.*/
#ecran{
position: relative;
margin: auto;
width: 33%;
min-height: 33%;
overflow: auto;
top:20%;
padding: 15px;
color:#FFF;
min-width: 260px;
min-height: 150px;
text-align: center;
line-height: 0px;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.85);

}
#activation{
line-height: 25px;
font-size: 18px;
}
#Co_form > input,#ins_Form2 > input{
margin-top: 15px;
background: none repeat scroll 0 0 #e0e0e0;
box-shadow: none;
color: #666;
display: inline-block;
font-size: 100%;
}
#ins_Form > input {
margin-top: 15px;
background: none repeat scroll 0 0 #e0e0e0;
box-shadow: none;
color: #666;
display: block;
font-size: 100%;
position: relative;
display: block;
width: 95%;
}
#ins_Form{
padding: 5px;
}
.btn_a{
display: block;
margin: auto;
padding: 5px 12px 5px 12px;
font-weight: 700;
background: none ;
border-radius: 5px;
cursor: pointer;
font-variant: small-caps;
text-align: center;
margin-top: 15px;
margin-bottom: 15px;
border: 1px solid #5C5A44;
color: #f0f0f0;
}
.btn_b{
display:inline-block;
margin: auto;
padding: 5px 12px 5px 12px;
font-weight: 700;
background: none ;
border-radius: 5px;
cursor: pointer;
font-variant: small-caps;
text-align: center;
/*margin-top: 15px;
margin-bottom: 15px;*/
border: 1px solid #5C5A44;
color: #f0f0f0;
}
.btn_a:hover{

}
#btnins{

}
#pasencoreinscrit{
font-variant: small-caps;
font-size: 12px;
left: 0;
text-align: left;

font-weight: lighter;
}
#mdpPerdu{
	font-variant: small-caps;
	font-size: 12px;
	font-weight: lighter;
	left: 30px;
	}
#reponseco{
color: red;
display: inline-block;
font-size: 70%;
line-height: 20px;
margin-bottom: 20px;
position: relative;
padding: 5px;
}
.entetebox{
text-align: left;
margin-bottom: 10px;
font-size: 16px;
font-weight: 700;
line-height: 30px;
font-variant: small-caps;
color: #a0a0a0;
font-family: "Verdana";
}
#ecran_inscription,#ecran_CGU,#ecran_credit{
position: relative;
margin: auto;
overflow: hidden;
top:8%;
padding: 20px;
color:#FFF;
line-height: 0px;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.85);
position: relative;
margin: auto;
width: 300px;
color:#FFF;
}
#ecran_CGU{
top:5%;
min-width: 70%;
max-width: 800px;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.15);
padding: 0px
}
#CGU{
font-size: 13px;
line-height: 14px;
color: #000;
}
#CGU div{
margin-bottom:25px;
padding: 15px;
background: none repeat scroll 0 0 rgba(255, 255, 255, 0.85);
}
#CGU span,#credit span{
display: block;
margin:15px;
color:#101010;
}
#CGU #siret{
margin: 0px;
padding: 0px;
font-size : 10px;
}
#ecran_credit{
top:5%;
min-width: 60%;
max-width: 750px;
font-size: 13px;
line-height: 16px;
width: 240px;
}
#credit, .ctwin{
background: none repeat scroll 0 0 rgba(255, 255, 255, 0.85);
padding: 15px;
color: #303030;
}
.ctwin div{
font-variant: normal;

}
#credit span{
display: block;
margin:10px;
color:#303030;
}
#evalink{
color: #5C5A44;
}
/*#recupmdp,#recupvalid{
position: relative;
margin: auto;
overflow: auto;
padding: 25px;
font-size: 14px;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.85);
line-height: 15px;
}*/

/*inscription*/
#inscription{
margin:auto;
}

.inscritips{
line-height: 15px;
display: none;
padding: 5px;
width: 100%;
height: 100%;
padding: 10px;
font-size: 12px;
}
.ins_message{
font-size: 13px;
color: #ed5c6b;
line-height: 13px;
font-variant: small-caps;
}
#ins_Form > input[type=checkbox] {
	width: 13px;
    height: 13px;
}
#cguinscription{
font-size: 12px;
}
/*inscription fin*/

/*footer ?*/
.foote{
display: block;
font-size: 10px;
text-align: center;
width: 100%;
margin-top: 30px;
margin-bottom: 25px;
}
#infoconnectes{
position: absolute;
right: 25px;
bottom: 10px;
display: block;
margin: 5px;
text-align: right;
font-weight: 100;
font-size: 15px;
}

.questionfaq{
font-weight: 700;
font-style:italic;
margin: 8px;
text-decoration: underline;
}
.reponsefaq{

}
.reponsefaq a{
	color : #01A9DB;
	text-decoration: underline;
	font-style:italic;
}

/*affichage responsive petit ecran*/


		
	#header{
		/*z-index: auto;*/
		position: fixed;
	}

	#accueil{
		overflow: visible;
	}

	#header_menu_icon{
		position: relative;
		display: block;
		float: left;
		width: 55px;
		height: 55px;
		cursor: pointer;
	}
	#header_menu_icon:after{
		content:"";
		position: absolute;
		display: block;
		box-shadow: 0 10px 0 1px #f0f0f0, 0 16px 0 1px #f0f0f0, 0 22px 0 1px #f0f0f0;
		height: 0;
		width: 16px;
		top: 12px;
		left:15px;
	}
	#logo{
		margin-left: 0px;
		outline: none;
	}
	
	#menu_ecran{
		position: absolute;
		left: 0;
		top:0;
		bottom: 0;
		width: 250px;
		margin-left: 0px;
		background-color: #090909;
		z-index: 5001;
		font-size: 16px;
		transform:translateX(-250px);
		 
	}
	#menu_ecran a{
		display: block;
		text-align: center;
		height: 40px;
		line-height: 40px;
		border-bottom: 1px solid #171717;
		margin-left: 0px;
	}
	#menu_ecran a.hide{
		display: none;
		
	}
	#menu_ecran a:focus,#menu_ecran a:hover,#menu_ecran a:active{
		outline: none;
		border-bottom: 1px solid #5C5A44;
	}

	#header_menu_icon:focus:after{
		outline: none;
		box-shadow: 0 10px 0 1px #c0c0c0, 0 16px 0 1px #a0a0a0, 0 22px 0 1px #c0c0c0;
	}
	#header_menu_icon:active:after{
		outline: none;
		box-shadow: 0 10px 0 1px #666666, 0 16px 0 1px #666666, 0 22px 0 1px #666666;
	}
	.sidebar_menu{


	}
	.sidebar_menu #header{
		/*-moz-transform: translateX(0px);
		-ms-transform: translateX(0px);
		-webkit-transform: translateX(0px);
		transform:translateX(0px);*/
	}
	.sidebar_menu #bloc_page{
		-moz-transform: translateX(250px);
		-ms-transform: translateX(250px);
		-webkit-transform: translateX(250px);
		transform:translateX(250px);

	}
	#main_container{

		top: 0px;	
	/*	overflow-y:auto;*/
/*		-webkit-overflow-scrolling:touch;*/

	}
	#textaccueil,.textaccueil{

		min-width: 280px;
		top:15%;
	}

	

	
	.main_gestion_compte {

		min-width: 400px;
	}
	




/*animation page sur le jeu.
du texte qui vient ce placer sur la page avec 
un effet de transformation/rotation en appliquant des classes

*/
.rotate{
	
-moz-transition: all 1s ease;

-webkit-transition: all 1s ease;

-o-transition: all 1s ease;

transition: all 1s ease;
background-color: #040404;
}

.rotate5{
 -ms-transform: rotate(2deg); /* IE 9 */
    -webkit-transform: rotate(2deg); /* Chrome, Safari, Opera */
    transform: rotate(2deg);
  /*  transform:translateX(100px);*/
}

.rotate5n{
 -ms-transform: rotate(-2deg); /* IE 9 */
    -webkit-transform: rotate(-2deg); /* Chrome, Safari, Opera */
    transform: rotate(-2deg);
}



#maincontent{
	height: 100%;
	width: 100%;
}
/* select, option{
		max-width: 90%;
	} */
@media screen and (max-width: 450px){

	#textaccueil, .textaccueil{
		font-size: 15px;
		min-width: 270px;
		top:15%;
		padding-left: 5px;
		padding-right: 5px;
	}

	#ecran_inscription,#ecran_CGU{
		top:2%;
		width: 240px;
	}
	.entetebox{
		font-size: 14px;
	}
	#credit span{
		margin: 5px;
	}

	.ecran_cover{
		overflow-x:auto;
	}
	
}

@media screen and (max-height: 400px){

	#ecran_inscription{
		top:0;
	}
	
}

@media screen and (max-width: 1200px){
.ecran_cover{
		overflow-x:auto;
	}
}

.module_faq{
top:5px;
max-width: 90%;
font-size: 12px;

}
#showmecat,#showmeart,#showmeobj{
font-size: 18px;
font-variant: small-caps;
}
#loadarticle{
font-variant: normal;
padding: 15px;
padding-top: 5px;
background-color: #ddd;
color: #333;
}
.article_hover{
cursor: pointer;
margin-right: 5px;
}
.article_hover:hover{
color:#5ec4cd;
}
#loadarticle img{
max-width: 80%;
}

.up{
cursor: pointer;
bottom: 1%;
border: 1px solid #000000;
color: #000000;
position: fixed;
left: 25px;
background-color: #ddd;
padding: 5px;
}
#racc{
position: absolute;
}
.closefaq{
position: absolute;
right:5px;
top: 5px;
width:26px;
height:26px;
display: block;
background:url('../img/design/close.png') no-repeat;
z-index: 300;
opacity: 0.5;
}
.closefaq:hover{
cursor: pointer;
opacity: 0.8;
}
.hover{
cursor: pointer;
}
