
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-logo {
    position: absolute;
    left: -220px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo h2 {
    color: #cfa446;
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 0 0 20px rgba(207, 164, 70, 0.5);
    margin: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    border-radius: 8px; /* Coins arrondis pour le GIF */
    object-fit: contain; /* Garde les proportions du GIF */
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(207, 164, 70, 0.6)) brightness(1.1);
    /* Moins d'effet pour ne pas perturber l'animation du GIF */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #cfa446;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #cfa446, #b8933d);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}


.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23cfa446;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23cfa446;stop-opacity:0" /></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad)" /><circle cx="800" cy="300" r="150" fill="url(%23grad)" /><circle cx="300" cy="700" r="120" fill="url(%23grad)" /><circle cx="700" cy="800" r="180" fill="url(%23grad)" /></svg>') no-repeat center center;
    background-size: cover;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #cfa446, #b8933d, #cfa446);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
    text-shadow: 0 0 30px rgba(207, 164, 70, 0.3);
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #cfa446, #b8933d);
    color: #fff;
    box-shadow: 0 4px 15px rgba(207, 164, 70, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207, 164, 70, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}


section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #cfa446;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #cfa446, #b8933d);
    border-radius: 2px;
}


.roleplay-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.freeroam-section {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}


.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    font-size: 4rem;
    color: #cfa446;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-top: 1rem;
    font-weight: 300;
}


.server-main-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(207, 164, 70, 0.2);
    transition: all 0.3s ease;
}

.server-main-card:hover {
    border-color: rgba(207, 164, 70, 0.4);
    box-shadow: 0 10px 30px rgba(207, 164, 70, 0.1);
}

.server-info {
    text-align: center;
}

.server-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #cfa446;
}

.server-info p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.server-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #cfa446;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

.server-ip {
    display: block;
    font-size: 0.8rem;
    margin-top: 5px;
    opacity: 0.8;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(207, 164, 70, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.category-icon {
    font-size: 2.5rem;
    color: #cfa446;
    margin-bottom: 1rem;
    text-align: center;
}

.category-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    color: #ccc;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li:before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #cfa446;
    font-size: 0.8rem;
}



/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #cfa446;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link.discord {
    background: #5865f2;
    color: #fff;
}

.social-link.tiktok {
    background: #ff0050;
    color: #fff;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(207, 164, 70, 0.2);
}

.stat-card i {
    font-size: 2rem;
    color: #cfa446;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo h3 {
    color: #cfa446;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #999;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #cfa446;
}

.footer-info p {
    color: #999;
    margin-bottom: 0.5rem;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

.developer {
    color: #cfa446;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(207, 164, 70, 0.3);
    transition: all 0.3s ease;
}

.developer:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(207, 164, 70, 0.6);
}

.developer-credit {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.developer-credit i.fa-code {
    color: #cfa446;
}

.developer-credit i.fa-heart {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Streamers Section */
.streamers-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.streamers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(207,164,70,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.streamers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.streamer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(207, 164, 70, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.streamer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(207, 164, 70, 0.1), transparent);
    transition: left 0.5s ease;
}

.streamer-card:hover::before {
    left: 100%;
}

.streamer-card:hover {
    transform: translateY(-10px);
    border-color: #cfa446;
    box-shadow: 0 15px 30px rgba(207, 164, 70, 0.2);
}

.streamer-avatar {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.streamer-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #cfa446;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.streamer-card:hover .streamer-avatar img {
    transform: scale(1.1);
    filter: brightness(1);
}

.live-indicator, .offline-indicator {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff4458;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    animation: pulse-live 2s infinite;
}

.offline-indicator {
    background: #666;
    animation: none;
}

.live-indicator i, .offline-indicator i {
    font-size: 0.6rem;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.streamer-info h3 {
    color: #cfa446;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.streamer-description {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
}

.streamer-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.streamer-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #aaa;
    font-size: 0.9rem;
}

.streamer-stats .stat i {
    color: #cfa446;
}

.streamer-platforms {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.platform-link.twitch {
    background: #9146ff;
    color: white;
}

.platform-link.twitch:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.platform-link.youtube {
    background: #ff0000;
    color: white;
}

.platform-link.youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.platform-link.tiktok {
    background: #ff0050;
    color: white;
}

.platform-link.tiktok:hover {
    background: #e6004a;
    transform: translateY(-2px);
}

.become-streamer {
    background: linear-gradient(45deg, rgba(207, 164, 70, 0.1), rgba(207, 164, 70, 0.05));
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 2px solid rgba(207, 164, 70, 0.3);
    position: relative;
    overflow: hidden;
}

.become-streamer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(207, 164, 70, 0.1), transparent);
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.become-streamer-content {
    position: relative;
    z-index: 2;
}

.become-streamer-icon {
    font-size: 3rem;
    color: #cfa446;
    margin-bottom: 1rem;
}

.become-streamer h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.become-streamer p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        transform: none;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .server-stats {
        gap: 2rem;
    }
    
    .server-main-card {
        padding: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .streamers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .streamer-card {
        padding: 1.5rem;
    }
    
    .streamer-stats {
        gap: 1rem;
    }
    
    .become-streamer {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-icon {
        font-size: 3rem;
    }
    
    .server-info h3 {
        font-size: 1.5rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(207, 164, 70, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(207, 164, 70, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(207, 164, 70, 0);
    }
}

.btn-primary:hover {
    animation: pulse 2s infinite;
}

/* Copy notification */
.copy-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(207, 164, 70, 0.9);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-notification.show {
    opacity: 1;
} 

/* Notification de bienvenue */
.welcome-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(207, 164, 70, 0.95) 0%, rgba(207, 164, 70, 0.85) 100%);
    border-radius: 15px;
    padding: 0;
    max-width: 350px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 10001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.welcome-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.welcome-content {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    position: relative;
}

.welcome-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.welcome-icon i {
    color: #fff;
    font-size: 1.5rem;
    animation: starPulse 2s infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.welcome-text h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.welcome-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.welcome-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.welcome-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Responsive pour mobile */
@media (max-width: 480px) {
    .welcome-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .welcome-content {
        padding: 1rem;
    }
    
    .welcome-text h4 {
        font-size: 1.1rem;
    }
    
    .welcome-text p {
        font-size: 0.85rem;
    }
}

/* Section des rôles dans Freeroam */
.roles-section {
    grid-column: 1 / -1; /* Prend toute la largeur de la grille */
    margin-bottom: 2rem;
}

.roles-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.roles-title {
    text-align: center;
    font-size: 1.8rem;
    color: #cfa446;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.roles-title i {
    font-size: 1.5rem;
    animation: crown-shine 3s ease-in-out infinite;
}

@keyframes crown-shine {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.booster-card {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(238, 90, 36, 0.1) 100%);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.booster-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    animation: rotate 8s linear infinite;
}

.booster-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b6b;
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
}

.booster-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.booster-image {
    flex-shrink: 0;
}

.booster-image img {
    width: 150px;
    height: auto;
    max-width: 150px;
    border-radius: 15px;
    border: 3px solid #ff6b6b;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(255, 107, 107, 0.3));
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
}

.booster-info {
    flex: 1;
}

.booster-title {
    color: #ff6b6b;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}

.booster-description {
    color: #ccc;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.booster-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6b6b;
    font-weight: 600;
    font-size: 0.9rem;
}

.booster-status i {
    animation: zap-pulse 1.5s ease-in-out infinite;
}

@keyframes zap-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.booster-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.obtention-section h5,
.advantages-section h5 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.obtention-section h5 i {
    color: #cfa446;
}

.advantages-section h5 i {
    color: #ff6b6b;
}

.obtention-section p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.nitro-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #5865f2, #4752c4);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nitro-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3);
    background: linear-gradient(45deg, #4752c4, #3c45a8);
}

.weapons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
}

.weapon-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 10px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.weapon-item:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: #ff6b6b;
    transform: translateY(-2px);
}

.weapon-item i {
    color: #ff6b6b;
    font-size: 1.1rem;
}

.weapon-item span {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive pour la section des rôles */
@media (max-width: 768px) {
    .booster-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .booster-image img {
        width: 120px;
        max-width: 120px;
    }
    
    .booster-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .weapons-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.6rem;
    }
    
    .weapon-item {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .roles-title {
        font-size: 1.5rem;
    }
}

/* Carte Contributors */
.contributors-card {
    background: linear-gradient(135deg, rgba(207, 164, 70, 0.1) 0%, rgba(184, 147, 61, 0.1) 100%);
    border: 2px solid rgba(207, 164, 70, 0.3);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contributors-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(207, 164, 70, 0.1), transparent);
    animation: rotate 8s linear infinite;
}

.contributors-card:hover {
    transform: translateY(-5px);
    border-color: #cfa446;
    box-shadow: 0 15px 30px rgba(207, 164, 70, 0.2);
}

.contributors-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.contributors-image {
    flex-shrink: 0;
}

.contributors-image img {
    width: 150px;
    height: auto;
    max-width: 150px;
    border-radius: 15px;
    border: 3px solid #cfa446;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(207, 164, 70, 0.3));
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
}

.contributors-info {
    flex: 1;
}

.contributors-title {
    color: #cfa446;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(207, 164, 70, 0.3);
}

.contributors-description {
    color: #ccc;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.contributors-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cfa446;
    font-weight: 700;
    font-size: 1.1rem;
}

.contributors-price i {
    animation: coin-pulse 2s ease-in-out infinite;
}

@keyframes coin-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.contributors-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.purchase-section h5,
.contributors-advantages h5 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.purchase-section h5 i {
    color: #cfa446;
}

.contributors-advantages h5 i {
    color: #cfa446;
}

.purchase-section p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.tebex-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #cfa446, #b8933d);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tebex-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(207, 164, 70, 0.3);
    background: linear-gradient(45deg, #b8933d, #a67d34);
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(207, 164, 70, 0.2);
    border-radius: 10px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.advantage-item:hover {
    background: rgba(207, 164, 70, 0.1);
    border-color: #cfa446;
    transform: translateY(-2px);
}

.advantage-item i {
    color: #cfa446;
    font-size: 1.1rem;
    min-width: 20px;
}

.advantage-item span {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive pour Contributors */
@media (max-width: 768px) {
    .roles-cards-container {
        gap: 1.5rem;
    }
    
    .contributors-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contributors-image img {
        width: 120px;
        max-width: 120px;
    }
    
    .contributors-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantages-list {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .advantage-item {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
}

/* Carte Ambassadeur */
.ambassadeur-card {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15) 0%, rgba(75, 0, 130, 0.15) 100%);
    border: 2px solid rgba(138, 43, 226, 0.4);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ambassadeur-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(138, 43, 226, 0.15), transparent);
    animation: rotate 8s linear infinite;
}

.ambassadeur-card:hover {
    transform: translateY(-5px);
    border-color: #8a2be2;
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.3);
}

.ambassadeur-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.ambassadeur-image {
    flex-shrink: 0;
}

.ambassadeur-image img {
    width: 150px;
    height: auto;
    max-width: 150px;
    border-radius: 15px;
    border: 3px solid #8a2be2;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(138, 43, 226, 0.4));
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
}

.ambassadeur-info {
    flex: 1;
}

.ambassadeur-title {
    color: #8a2be2;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(138, 43, 226, 0.4);
}

.ambassadeur-description {
    color: #ccc;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.ambassadeur-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8a2be2;
    font-weight: 700;
    font-size: 1.2rem;
}

.ambassadeur-price i {
    animation: crown-glow 2s ease-in-out infinite;
}

@keyframes crown-glow {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(138, 43, 226, 0.5));
    }
    50% { 
        transform: scale(1.15);
        filter: drop-shadow(0 0 15px rgba(138, 43, 226, 0.8));
    }
}

.ambassadeur-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.purchase-section-amb h5,
.ambassadeur-advantages h5 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.purchase-section-amb h5 i {
    color: #8a2be2;
}

.ambassadeur-advantages h5 i {
    color: #8a2be2;
}

.purchase-section-amb p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.tebex-link-amb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #8a2be2, #4b0082);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tebex-link-amb:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.4);
    background: linear-gradient(45deg, #4b0082, #301934);
}

.advantages-list-amb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
}

.advantage-item-amb {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 10px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.advantage-item-amb:hover {
    background: rgba(138, 43, 226, 0.15);
    border-color: #8a2be2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.2);
}

.advantage-item-amb i {
    color: #8a2be2;
    font-size: 1.1rem;
    min-width: 20px;
}

.advantage-item-amb span {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive pour Ambassadeur */
@media (max-width: 768px) {
    .ambassadeur-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .ambassadeur-image img {
        width: 120px;
        max-width: 120px;
    }
    
    .ambassadeur-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantages-list-amb {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .advantage-item-amb {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
}