html {
    height: 100%;
}

body {
    background-image: linear-gradient(to bottom, black, #333);
    background-attachment: fixed; 
    background-repeat: no-repeat; 
    min-height: 100%; 
    color: white; 
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 50px 0;
} 

h1 {
    font-size: 3em;
}

nav ul {
    list-style-type: none;
    text-align: center;
    padding: 0;
}

nav li {
    display: inline-block;
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    text-align: center;
    padding: 20px;
}

nav {
    background-image: linear-gradient(to bottom, #1a1a1a, #0d0d0d); 
    padding: 10px 0; 
    border-bottom: 1px solid #333; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); 
}


nav ul {
    list-style-type: none; 
    text-align: center;
    margin: 0;
    padding: 0;
}


nav li {
    display: inline-block; 
    margin: 0 25px; 
}


nav a {
    color: white; 
    text-decoration: none; 
    font-size: 1.1em; 
    font-weight: bold;
    text-transform: uppercase; 
    padding: 10px 0; 
    transition: color 0.3s ease; 
}


nav a:hover {
    color: #aaa; 
}

.logo-container {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 20px; 
}


.logo {
    max-width: 150px; 
    height: auto; 
    margin-bottom: 10px; 
    border-radius: 10px;
}


.server-name {
    font-size: 3.5em; 
    color: white; 
    margin: 0; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
}


.orange-text {
    color: #FFA500;
}

@keyframes blue-pulse {
    0% {
        color: white;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    50% {
        color: #00BFFF; 
        text-shadow: 0 0 15px #00BFFF; 
    }
    100% {
        color: white;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
}


.blinking-link {
    animation: blue-pulse 2s infinite; 
}

.player-space-button {
    background-color: #007bff; 
    color: white;
    padding: 8px 15px; 
    border: 2px solid #007bff; 
    border-radius: 5px; 
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease; 
    margin-left: 10px; 
}


.player-space-button:hover {
    background-color: transparent; 
    color: #007bff; 
    border-color: #007bff; 
}

.server-story, .server-history {
    max-width: 800px; 
    margin: 40px auto; 
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05); 
    border-radius: 10px; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); 
}


.server-story h2, .server-history h2 {
    text-align: center;
    color: #FFA500; 
    font-size: 2em;
    margin-bottom: 20px;
}


.server-story p, .server-history p {
    line-height: 1.6; 
    text-align: justify; 
}

.reglement-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}


.intro-text {
    text-align: center;
    font-style: italic;
    color: #ccc;
    margin-bottom: 40px;
}


.reglement-section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}


.reglement-section h3 {
    color: #FFA500;
    font-size: 1.5em;
    border-bottom: 2px solid #FFA500;
    padding-bottom: 5px;
    margin-bottom: 15px;
}


.reglement-section ul {
    list-style-type: none; 
    padding-left: 0;
}

.reglement-section li {
    margin-bottom: 15px;
    display: flex; 
}

.reglement-section p {
    margin: 0;
    padding-left: 10px;
    line-height: 1.4;
    text-align: justify;
}

.intro-text {
    text-align: center;
    font-style: italic;
    color: #fff; 
    margin-bottom: 40px;
    font-size: 1.1em;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1); 
    border-radius: 5px;
}


.intro-text strong {
    color: #FFA500; 
}


.hrp-examples {
    margin-top: 15px;
    padding-left: 20px;
}


.hrp-examples .avoid {
    color: #FF4500; 
    font-weight: bold;
    font-size: 1.1em;
}


.hrp-examples .favor {
    color: #32CD32; 
    font-weight: bold;
    font-size: 1.1em;
}


.hrp-examples ul {
    margin-top: 5px;
    margin-bottom: 15px;
    padding-left: 25px;
    list-style-type: '— '; 
}


.hrp-examples ul li {
    margin-bottom: 5px;
    font-style: italic;
    color: #aaa;
}

.team-section {
    text-align: center;
    margin: 60px auto;
    max-width: 1200px;
}

.team-section h2 {
    font-size: 2.5em;
    color: white;
    margin-bottom: 50px;
}

.team-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; 
}

.team-member {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 200px; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.member-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%; 
    object-fit: cover; 
    border: 3px solid #007bff; 
    margin-bottom: 10px;
}

.member-name {
    font-size: 1.2em;
    font-weight: bold;
    margin: 5px 0;
}

.member-at {
    color: #aaa;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.role-button {
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: bold;
    margin-top: 5px;
}

.role-button.fond {
    background-color: #e91e63; 
}

.role-button.co-fond {
    background-color: #9c27b0; 
}

.role-button.dev {
    background-color: #673ab7; 
}

.role-button.admin {
    background-color: #007bff; 
}

.role-button.modo {
    background-color: #ff9800; 
}

.role-button.helpeur {
    background-color: #006803; 
}

.role-button.gerantillegal {
    background-color: #fd0000; 
}

.role-button.gerantlegal {
    background-color: #01c907; 
}

.role-button.gerantadmin {
    background-color: #0026ff; 
}


.team-section {
    text-align: center;
    margin: 60px auto;
    max-width: 1200px;
}

.team-container {
    display: flex;
    flex-direction: column; 
    gap: 40px; 
}

.team-row {
    display: flex;
    justify-content: center; 
    gap: 30px; 
    flex-wrap: wrap;
}

.team-member {
    background-color: rgba(0, 0, 0, 0.4);

}

.attention {
    color: #ff0000; 
}

.valide {
    color: #09ff00; 
}

.jaune {
    color: #e5ff00; 
}

.orange {
    color: #ffbb00; 
}

.violet {
    color: #6f00ff; 
}

.bleu {
    color: #3563fc; 
}

.rose {
    color: #f81ab5; 
}

.turquoise {
    color: #20b2aa; 
}

.category {
    margin-bottom: 60px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-title {
    color: #FFA500;
    font-size: 2em;
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}


.store-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}


.store-item {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    width: 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.store-item h3 {
    color: white;
    font-size: 1.2em;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px black;
}


.bonus-text {
    font-size: 0.8em;
    color: #32CD32; 
    font-weight: bold;
    margin-top: -10px;
    margin-bottom: 10px;
}


.vip-features, .org-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 15px;
}

.vip-features li, .org-features li {
    margin-bottom: 8px;
    font-size: 0.9em;
    color: #ccc;
}

.vip-features li::before, .org-features li::before {
    content: "✅"; 
    margin-right: 10px;
    color: #FFA500;
}


.item-price {
    font-size: 1.8em;
    font-weight: bold;
    color: #32CD32; 
    margin: 15px 0;
}

.per-month {
    font-size: 0.6em;
    font-weight: normal;
    color: #ccc;
}


.tagline {
    font-style: italic;
    color: #aaa;
    text-align: center;
    margin-top: 20px;
    font-size: 1.1em;
}


.buy-button {
    display: block;
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: auto; 
}

.buy-button:hover {
    background-color: #0056b3;
}

.item-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%; 
    margin-top: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.item-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.has-tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}


.info-icon {
    font-style: normal;
    font-weight: bold;
    color: white;
    background-color: #6d6d6d;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-left: 5px;
    vertical-align: middle;
}


.tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 15px;
    position: absolute;
    z-index: 1;
    bottom: 125%; 
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    border: 1px solid #555;
    font-size: 0.9em;
}


.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}


.has-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.tooltip-text li.unavailable {
    color: #ff6347; 
}

.tooltip-text li.unavailable::before {
    content: "❌"; 
    margin-right: 10px;
    color: #ff6347;
}

.tooltip-text li.unavailable span {
    text-decoration: line-through;
}

.tooltip-text li::before {
    content: "✅"; 
    margin-right: 10px;
    color: #32CD32;
}

.tooltip-text li.unavailable::before {
    content: "❌";
    color: #ff6347;
}


nav ul li .logout-button {
    background-color: #dc3545; 
    color: white; 
    padding: 10px 15px; 
    border-radius: 5px; 
    text-decoration: none; 
    transition: background-color 0.3s ease; 
}


nav ul li .logout-button:hover {
    background-color: #c82333; 
}

.overlay {
			display: flex;
			align-items: center;
			justify-content: center;
			position: fixed;
			top: 0;
			left: 0;
			width: calc(100% - 50px); 
			height: calc(100% - 50px); 
			margin: 20px; 
			background-color: transparent;
			z-index: 1;
		}

        .popup {
			display: flex;
			flex-direction: column;
			text-align: center;
			align-items: center;
			justify-content: center;
			background-color: #333;
			padding: 50px;
			border-radius: 10px;
			box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
			max-width: 400px;
			width: 100%;
			height: 450px;
		}
		
        #closeBtn {
            cursor: pointer;
            color: #fff;
            background-color: #3498db;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            margin-top: 10px;
        }
		
		.popup-logo {
			width: 100px; 
			height: 100px; 
			margin-bottom: -50px; 
		}

		.popup img {
			width: 100%; 
			height: center; 
		}

.tooltip-text ul li {
    display: flex; 
    align-items: center; 
    gap: 10px;
    margin-bottom: 8px;
    padding: 2px 0;
}

.image-produit-org {
    display: block; 
    width: 40px; 
    height: 40px; 
    object-fit: cover; 
    border-radius: 4px; 
}