body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #181c24;
    color: #fff;
}
html {
    scroll-behavior: smooth;
}
header {
    background: linear-gradient(90deg, #ffd700 0%, #b8860b 100%);
    padding: 18px 0 10px 0;
    text-align: center;
    box-shadow: 0 2px 12px #0002;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}
.logo-img {
    display: block;
    margin: 0;
    max-width: 80px;
    height: 80px;
    background: none;
    border-radius: 50%;
    box-shadow: none;
}
.header-text h1 {
    margin: 0 0 4px 0;
    font-size: 2.2em;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #222;
    text-shadow: 0 2px 8px #fff7, 0 1px 0 #ffd700;
}
.header-text p {
    margin: 0;
    font-size: 1.1em;
    color: #7a6600;
    font-weight: 400;
}
nav {
    background: #232a34;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 15px 0;
}
nav a, nav button.tab-btn {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1em;
    margin: 0;
}
nav a:hover, nav button.tab-btn:hover {
    color: #ffd700;
}
.tab-btn.active, nav a.active {
    background: #ffd700;
    color: #232a34 !important;
    border-radius: 8px 8px 0 0;
}
section {
    max-width: 900px;
    margin: 40px auto;
    background: #232a34;
    border-radius: 12px;
    box-shadow: 0 4px 24px #0004;
    padding: 40px;
}
h2 {
    color: #ffd700;
    margin-top: 0;
}
.info-list {
    list-style: none;
    padding: 0;
}
.info-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}
.cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.cta a {
    background: #ffd700;
    color: #232a34;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.cta a:hover {
    background: #fff176;
    transform: scale(1.05);
}
.shop-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 24px;
    margin-top: 24px;
}
.shop-item {
    background: #222;
    border-radius: 14px;
    box-shadow: 0 2px 16px #0003;
    padding: 28px 22px 22px 22px;
    min-width: 240px;
    max-width: 320px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.15s, box-shadow 0.15s;
}
.shop-item:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 6px 24px #0005;
}
.shop-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #ffd700;
    font-size: 1.3em;
}
.shop-item p, .shop-item .price {
    margin: 8px 0;
}
.shop-item .price {
    font-size: 1.2em;
    font-weight: bold;
    color: #ffd700;
}
.shop-item a {
    display: inline-block;
    background: linear-gradient(90deg, #ffd700 0%, #b8860b 100%);
    color: #222;
    font-weight: 700;
    padding: 10px 0;
    border-radius: 7px;
    font-size: 1.08em;
    text-decoration: none;
    margin: 10px 0 0 0;
    box-shadow: 0 2px 8px #0002;
    transition: background 0.2s, color 0.2s, transform 0.1s;
    width: 100%;
    max-width: 180px;
}
.shop-item a:hover {
    background: linear-gradient(90deg, #b8860b 0%, #ffd700 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}
.shop-item button {
    display: inline-block;
    background: #181c24;
    color: #ffd700;
    font-weight: 600;
    padding: 8px 0;
    border-radius: 7px;
    font-size: 1em;
    border: 2px solid #ffd700;
    margin: 10px 0 0 0;
    box-shadow: 0 1px 4px #0002;
    cursor: pointer;
    width: 100%;
    max-width: 180px;
    transition: background 0.2s, color 0.2s, border 0.2s, transform 0.1s;
}
.shop-item button:hover {
    background: #ffd700;
    color: #222;
    border-color: #b8860b;
    transform: translateY(-2px) scale(1.04);
}
footer {
    background: #181c24;
    color: #cfd8dc;
    text-align: center;
    padding: 30px 0 10px 0;
    font-size: 0.95em;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

/* Tablettes et petits écrans */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
        padding: 0 20px;
    }
    
    .header-text h1 {
        font-size: 1.8em;
        text-align: center;
    }
    
    .header-text p {
        font-size: 1em;
        text-align: center;
    }
    
    .logo-img {
        max-width: 60px;
        height: 60px;
    }
    
    nav {
        flex-wrap: wrap;
        gap: 20px;
        padding: 12px 20px;
    }
    
    nav a, nav button.tab-btn {
        font-size: 0.9em;
        padding: 8px 16px;
    }
    
    section {
        margin: 20px auto;
        padding: 30px 20px;
        max-width: calc(100% - 40px);
    }
    
    .cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta a {
        text-align: center;
        padding: 12px 20px;
    }
    
    .shop-items {
        flex-direction: column;
        gap: 20px;
    }
    
    .shop-item {
        max-width: 100%;
        margin: 0;
    }
    
    .galerie-photos {
        gap: 12px;
    }
    
    .galerie-img {
        width: 100px;
        height: 65px;
    }
    
    .galerie-img:hover {
        transform: scale(1.8) translateY(-2px);
    }
    
    .equipe-list {
        gap: 20px;
    }
    
    .equipe-card {
        min-width: 160px;
        max-width: 180px;
        padding: 20px 15px 15px 15px;
    }
    
    .org-table {
        font-size: 0.9em;
    }
    
    .org-table th, .org-table td {
        padding: 10px 8px;
    }
    
    .vip-popup-content {
        width: 90vw;
        max-width: 90vw;
        padding: 25px 20px 20px 20px;
        height: 60vh;
        max-height: 60vh;
    }
    
    .galerie-modal-prev { left: 16px; font-size: 2.5em; }
    .galerie-modal-next { right: 16px; font-size: 2.5em; }
    .galerie-modal-close { top: 20px; right: 20px; font-size: 2em; }
}

/* Mobiles */
@media (max-width: 480px) {
    .header-content {
        padding: 0 15px;
        gap: 12px;
    }
    
    .header-text h1 {
        font-size: 1.5em;
        letter-spacing: 1px;
    }
    
    .header-text p {
        font-size: 0.9em;
    }
    
    .logo-img {
        max-width: 50px;
        height: 50px;
    }
    
    nav {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }
    
    nav a, nav button.tab-btn {
        font-size: 0.9em;
        padding: 10px 20px;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    section {
        margin: 15px auto;
        padding: 25px 15px;
        max-width: calc(100% - 30px);
        border-radius: 8px;
    }
    
    h2 {
        font-size: 1.4em;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .info-list li {
        font-size: 1em;
        margin-bottom: 12px;
    }
    
    .cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta a {
        padding: 14px 20px;
        font-size: 1em;
        text-align: center;
    }
    
    .shop-items {
        gap: 15px;
    }
    
    .shop-item {
        padding: 20px 15px;
    }
    
    .shop-item h3 {
        font-size: 1.2em;
    }
    
    .price {
        font-size: 1.4em;
    }
    
    .show-advantages {
        padding: 8px 16px;
        font-size: 0.9em;
    }
    
    .galerie-photos {
        gap: 8px;
        margin: 20px 0 0 0;
    }
    
    .galerie-img {
        width: 80px;
        height: 50px;
        border-radius: 6px;
    }
    
    .galerie-img:hover {
        transform: scale(1.5) translateY(-2px);
    }
    
    .equipe-list {
        gap: 15px;
        justify-content: space-around;
    }
    
    .equipe-card {
        min-width: 140px;
        max-width: 160px;
        padding: 18px 12px 12px 12px;
    }
    
    .equipe-card img {
        width: 60px;
        height: 60px;
    }
    
    .equipe-card h3 {
        font-size: 1em;
    }
    
    .equipe-card p {
        font-size: 0.9em;
    }
    
    .org-table {
        font-size: 0.8em;
    }
    
    .org-table th, .org-table td {
        padding: 8px 6px;
    }
    
    .org-table th {
        font-size: 0.9em;
    }
    
    form.contact-form input,
    form.contact-form textarea {
        padding: 12px 10px;
        font-size: 0.95em;
    }
    
    form.contact-form button {
        padding: 14px 0;
        font-size: 1em;
    }
    
    .deban-form {
        padding: 20px 15px 15px 15px;
        max-width: calc(100% - 30px);
    }
    
    .deban-form input,
    .deban-form textarea {
        padding: 12px 10px;
        font-size: 0.95em;
    }
    
    .deban-form button {
        padding: 14px 0;
        font-size: 1em;
    }
    
    .vip-popup-content {
        width: 95vw;
        max-width: 95vw;
        padding: 20px 15px 15px 15px;
        height: 70vh;
        max-height: 70vh;
        border-radius: 8px;
    }
    
    .vip-popup h3 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }
    
    .vip-popup-list {
        font-size: 0.9em;
        padding-left: 18px;
    }
    
    .close-vip-popup {
        top: 8px;
        right: 12px;
        font-size: 1.8em;
    }
    
    .galerie-modal-prev { 
        left: 8px; 
        font-size: 2em;
        padding: 0 8px;
    }
    
    .galerie-modal-next { 
        right: 8px; 
        font-size: 2em;
        padding: 0 8px;
    }
    
    .galerie-modal-close { 
        top: 15px; 
        right: 15px; 
        font-size: 1.8em;
    }
    
    .galerie-modal-img {
        max-width: 95vw;
        max-height: 70vh;
        border-radius: 8px;
    }
    
    .banniere-img-small {
        max-width: 100%;
        border-radius: 6px;
    }
    
    .avis-list {
        gap: 15px;
    }
    
    .avis-card {
        min-width: 100%;
        max-width: 100%;
        padding: 15px 18px;
        font-size: 0.95em;
    }
}

/* Très petits écrans */
@media (max-width: 320px) {
    .header-text h1 {
        font-size: 1.3em;
    }
    
    .header-text p {
        font-size: 0.85em;
    }
    
    section {
        padding: 20px 10px;
        margin: 10px auto;
    }
    
    .galerie-img {
        width: 65px;
        height: 40px;
    }
    
    .equipe-card {
        min-width: 120px;
        max-width: 140px;
    }
    
    .org-table {
        font-size: 0.75em;
    }
    
    .vip-popup-content {
        height: 75vh;
        max-height: 75vh;
    }
}
form.contact-form {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
form.contact-form input,
form.contact-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: none;
    font-size: 1em;
    background: #1a1e25;
    color: #fff;
    resize: vertical;
}
form.contact-form button {
    background: #ffd700;
    color: #232a34;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
form.contact-form button:hover {
    background: #fff176;
    transform: scale(1.04);
}
.form-success {
    color: #4caf50;
    margin-top: 10px;
}
.form-error {
    color: #ff5252;
    margin-top: 10px;
}
.org-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #232a34;
    border-radius: 8px;
    overflow: hidden;
}
.org-table th, .org-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #222;
    text-align: left;
}
.org-table th {
    background: #181c24;
    color: #ffd700;
    font-weight: bold;
}
.org-table tr:last-child td {
    border-bottom: none;
}
.repris {
    color: #4caf50;
    font-weight: bold;
}
.libre {
    color: #ff5252;
    font-weight: bold;
}
.tab-btn {
    background: #232a34;
    color: #ffd700;
    border: none;
    font-size: 1.1em;
    font-family: inherit;
    font-weight: bold;
    padding: 12px 28px;
    margin: 0 8px 0 0;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.tab-btn.active, .tab-btn:hover {
    background: #ffd700;
    color: #232a34;
}
.type-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: bold;
    background: #232a34;
    color: #ffd700;
    border: 1px solid #ffd70033;
}
.indispo {
    color: #bdbdbd;
    font-weight: bold;
    font-style: italic;
}
.vip-advantages {
    margin: 0 0 15px 0;
    padding-left: 22px;
    color: #fff;
    font-size: 1em;
    list-style: none;
}
.vip-advantages li {
    margin-bottom: 5px;
    padding-left: 0;
    position: relative;
    line-height: 1.5;
}
.vip-popup {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(24,28,36,0.85);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: opacity 0.25s cubic-bezier(.4,2,.6,1), transform 0.25s cubic-bezier(.4,2,.6,1);
    overflow-y: auto;
}
.vip-popup.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}
.vip-popup-content {
    background: #232a34;
    border-radius: 12px;
    padding: 32px 24px 24px 24px;
    width: 80vw;
    max-width: 800px;
    height: 50vh;
    min-height: 320px;
    max-height: 50vh;
    box-shadow: 0 8px 32px #0008;
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.close-vip-popup {
    position: absolute;
    top: 10px; right: 16px;
    background: none;
    border: none;
    color: #ffd700;
    font-size: 2em;
    cursor: pointer;
}
.vip-popup h3 {
    margin-top: 0;
    color: #ffd700;
    text-align: center;
}
.vip-popup-list {
    margin: 18px 0 0 0;
    padding-left: 22px;
    color: #fff;
    font-size: 1em;
    list-style: none;
    flex: 1 1 auto;
    overflow-y: auto;
    max-height: 100%;
}
.vip-popup-list li {
    margin-bottom: 5px;
    line-height: 1.5;
}
.show-advantages {
    display: inline-block;
    margin-top: 12px;
    background: linear-gradient(90deg, #ffd700 0%, #fff176 100%);
    color: #232a34;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    padding: 10px 22px;
    font-size: 1em;
    cursor: pointer;
    box-shadow: 0 2px 8px #0002;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.show-advantages:hover {
    background: linear-gradient(90deg, #fff176 0%, #ffd700 100%);
    transform: scale(1.06);
    box-shadow: 0 4px 16px #ffd70055;
}
/* Scrollbar stylée pour la popup et le site */
.vip-popup-content, .vip-popup-list, body, html {
    scrollbar-width: thin;
    scrollbar-color: #ffd700 #232a34;
}

.vip-popup-content::-webkit-scrollbar, .vip-popup-list::-webkit-scrollbar, body::-webkit-scrollbar, html::-webkit-scrollbar {
    width: 10px;
    background: #232a34;
    border-radius: 8px;
}
.vip-popup-content::-webkit-scrollbar-thumb, .vip-popup-list::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb, html::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ffd700 0%, #fff176 100%);
    border-radius: 8px;
    min-height: 40px;
}
.vip-popup-content::-webkit-scrollbar-thumb:hover, .vip-popup-list::-webkit-scrollbar-thumb:hover {
    background: #ffd700;
}
/* Ajout styles pour logo et bannière */
.banniere-img {
    display: block;
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    margin-bottom: -18px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 4px 24px #0004;
}
.banniere-container {
    display: flex;
    justify-content: center;
    margin: 18px 0 10px 0;
    background: none;
    border-radius: 12px;
    box-shadow: none;
    padding: 0;
}
.banniere-img-small {
    max-width: 340px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 12px #0002;
}
.boutique-btn {
    display: inline-block;
    background: linear-gradient(90deg, #ffd700 0%, #b8860b 100%);
    color: #222;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 1.15em;
    text-decoration: none;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px #0002;
    transition: background 0.2s, color 0.2s, transform 0.1s;
}
.boutique-btn:hover {
    background: linear-gradient(90deg, #b8860b 0%, #ffd700 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}
.discord-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 18px 0 10px 0;
}
.discord-widget-label {
    color: #ffd700;
    font-size: 1em;
    margin-top: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.galerie-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin: 24px 0 0 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.galerie-img {
    width: 120px;
    height: 75px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 12px #0003;
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.15s;
    cursor: pointer;
}
.galerie-img:hover {
    transform: scale(2.08) translateY(-2px);
    z-index: 2;
    box-shadow: 0 8px 32px #0007;
}
#galerie-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: fadeIn 0.2s;
}
.galerie-modal-img {
    max-width: 96vw;
    max-height: 80vh;
    border-radius: 14px;
    box-shadow: 0 8px 48px #000b;
    z-index: 2;
    background: #222;
    margin: 0 auto;
    display: block;
    animation: zoomIn 0.2s;
}
.galerie-modal-close {
    position: absolute;
    top: 32px;
    right: 48px;
    font-size: 2.5em;
    color: #ffd700;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}
.galerie-modal-close:hover {
    color: #fff;
}
.galerie-modal-prev, .galerie-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3em;
    color: #ffd700;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
    padding: 0 12px;
    user-select: none;
}
.galerie-modal-prev { left: 24px; }
.galerie-modal-next { right: 24px; }
.galerie-modal-prev:hover, .galerie-modal-next:hover { color: #fff; }
@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}
@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0.5; } to { transform: scale(1); opacity: 1; }
}
.equipe-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin: 24px 0 0 0;
}
.equipe-card {
    background: #222;
    border-radius: 14px;
    box-shadow: 0 2px 16px #0003;
    padding: 24px 18px 18px 18px;
    min-width: 180px;
    max-width: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.equipe-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid #ffd700;
}
.equipe-card h3 {
    margin: 0 0 4px 0;
    color: #ffd700;
    font-size: 1.1em;
}
.equipe-card p {
    margin: 0;
    color: #cfd8dc;
    font-size: 0.98em;
}
.avis-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 24px 0 0 0;
}
.avis-card {
    background: #181c24;
    border-radius: 12px;
    box-shadow: 0 2px 12px #0002;
    padding: 18px 22px;
    min-width: 220px;
    max-width: 320px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-style: italic;
    position: relative;
}
.avis-card span {
    display: block;
    margin-top: 10px;
    color: #ffd700;
    font-weight: 600;
    font-style: normal;
}
.deban-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 420px;
    margin: 32px auto 0 auto;
    background: #232a34;
    padding: 28px 24px 18px 24px;
    border-radius: 14px;
    box-shadow: 0 2px 16px #0003;
}
.deban-form input,
.deban-form textarea {
    background: #181c24;
    color: #fff;
    border: 1.5px solid #ffd70055;
    border-radius: 7px;
    padding: 10px;
    font-size: 1em;
    font-family: inherit;
    outline: none;
    transition: border 0.2s;
}
.deban-form input:focus,
.deban-form textarea:focus {
    border: 1.5px solid #ffd700;
}
.deban-form button {
    background: linear-gradient(90deg, #ffd700 0%, #b8860b 100%);
    color: #222;
    font-weight: 700;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s, transform 0.1s;
}
.deban-form button:hover {
    background: linear-gradient(90deg, #b8860b 0%, #ffd700 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}
.form-status-deban {
    margin-top: 8px;
    font-size: 1em;
    min-height: 18px;
    color: #ffd700;
    text-align: center;
}