@import url('https://fonts.googleapis.com/css?family=Orbitron');

/* Style commun pour les éléments de déco */
.deco {
    position: fixed;
    width: 710px;  /* À ajuster selon la taille de vos images */
    height: 400px; /* À ajuster selon la taille de vos images */
    z-index: -1;   /* Place les images DERRIÈRE le contenu */
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none; /* Permet de cliquer sur le texte "à travers" l'image */
}

.top, .content-view  {
	
    background: rgba(0,0,0,0.5);
}

.content-view {
	padding: 10px;
}

a {
	text-decoration: none;
}

a, .red {
	color: var(--red);
}

a:hover, .blue {
	color: var(--blue);
}

.green {
	color: var(--green);
}


/* Positionnement spécifique */
.top-right {
    top: 0;
    right: 0;
    background-image: url('images/RU-elements/3.png');
}

.bottom-left {
    bottom: 0;
    left: 0;
    background-image: url('images/RU-elements/2.png');
}

.bottom-right {
    bottom: 0;
    right: 0;
    background-image: url('images/RU-elements/1.png');
}

/* Assurez-vous que le body ou le main n'a pas de fond opaque qui cache tout */
body {
    background-color: #f0f0f0; /* Votre couleur de fond */
    margin: 0;
}

main {
    position: relative;
    z-index: 1; /* Force le contenu à passer devant */
}

.home-infos{
	display: flex;
	flex-direction: row;
}
.home-infos-big {
	margin-right: 10px;
    flex-grow: 1;

}
.home-infos-small{
	min-width: 400px;
	width: 30%;
}

.author-note {
	font-size: small;
	font-style: italic;
}

#flou {
background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 39%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.8) 51%, rgba(0,0,0,0) 61%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 39%,rgba(0,0,0,0.8) 50%,rgba(0,0,0,0.8) 51%,rgba(0,0,0,0) 61%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 39%,rgba(0,0,0,0.8) 50%,rgba(0,0,0,0.8) 51%,rgba(0,0,0,0) 61%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
    z-index: -500;
    opacity: .7;
    width: 100%;
}

.icon-download {
	width: 18px;
}

.card-img {
	width: 33%;
	max-width: 256px;
}

.card-header {
	display: flex;
	flex-direction: row;
	padding: 20px;
}

.card-infos {
	padding-left: 10px;
}

.promo {
	text-align: center;
    font-family: 'Orbitron', sans-serif;
}

.btn {
    background: #222; color: white; border: 1px solid #444;
    padding: 5px 10px; font-size: 0.75rem; text-decoration: none; cursor: pointer; transition: 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
}

#ruback-top-right, #ruback-bottom-left, #ruback-bottom-right, #flou {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: -10;
}

#red_filter, #blue_filter {
	position: fixed;
	left: 0px;
	width: 100%;
	height: 50%;
	z-index: -5;
}

#red_filter {
	top: 0%;
	background: rgba(255,0,0,0.1);
}

#blue_filter {
	top: 50%;	
	background: rgba(0,0,255,0.1);
}


#flou {
	background: center center url(images/flou.png) repeat-x fixed;
	z-index: -500;
	opacity: 0.7;
	width: 100%;
}

/* Conteneur principal */
.credits-accordion {
    margin-top: 20px;
    border: 1px solid #333;
    border-radius: 4px;
}

/* Bloc de chaque saison */
.credits-accordion details {
    background: var(--surface);
    border-bottom: 1px solid #222;
    transition: 0.3s;
}

.credits-accordion details:last-child {
    border-bottom: none;
}

/* En-tête cliquable */
.credits-accordion summary {
    padding: 15px 20px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

/* Effet au survol : on utilise votre vert fluo */
.credits-accordion summary:hover {
    background: rgba(57, 255, 20, 0.1);
    color: var(--green);
}

/* Indicateur visuel (la flèche) */
.credits-accordion summary::after {
    content: '+';
    color: var(--green);
    font-size: 1.2rem;
    font-family: monospace;
}

.credits-accordion details[open] summary::after {
    content: '-';
}

/* Contenu intérieur */
.season-content {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid #222;
    max-height: 600px; /* Optionnel : pour limiter les très longues listes */
    overflow-y: auto;
}

/* Personnalisation des titres dans l'accordéon */
.season-content h3, .season-content h5 {
    color: var(--blue);
    margin-top: 0;
}

.season-content p span {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
}

.socials {
	display: flex;
	flex-direction: row;
	justify-content: space-between;

}
.social-icon {
	width: 50px;
}