@import url('boutique.css');

/* 
 * Styles pour Anarya - Style Cartoon
 */

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, li {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Bannière cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #4E2E9B; /* Violet plus vif */
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    display: none; /* Caché par défaut, affiché par JavaScript */
    border-top: 3px solid #F2C94C; /* Bordure jaune */
}

.cookie-banner p {
    flex: 1;
    font-size: 14px;
    margin-right: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-accept,
.cookie-decline {
    padding: 8px 15px;
    border-radius: 8px; /* Plus arrondi */
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.cookie-accept {
    background-color: #FF6B6B; /* Rouge plus vif et cartoon */
    color: white;
}

.cookie-decline {
    background-color: transparent;
    color: white;
    border: 2px solid white; /* Bordure plus épaisse */
}

.cookie-accept:hover {
    background-color: #FF8E8E;
    transform: scale(1.05); /* Effet d'agrandissement */
}

.cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05); /* Effet d'agrandissement */
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background-color: rgba(44, 62, 115, 0.9); /* Fond bleu-violet foncé semi-transparent */
    padding: 10px 15px;
    z-index: 100;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    padding: 5px 0;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #F9C846; /* Jaune du site */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #F9C846; /* Jaune du site */
    transition: width 0.3s ease;
    border-radius: 3px; /* Arrondi */
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.shop-btn {
    background-color: #F9C846; /* Jaune du site */
    color: #2c3e73; /* Bleu-violet foncé */
    padding: 10px 25px;
    border-radius: 50px; /* Plus arrondi */
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.5px;
}

.shop-btn:hover {
    background-color: #ffda6a; /* Jaune plus clair */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 80px 20px 0;
    overflow: hidden;
    background-color: transparent;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
    opacity: 0.9;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(107, 78, 168, 0.8) 0%, 
        rgba(107, 78, 168, 0.7) 70%,
        rgba(255, 255, 255, 0.95) 100%);
    z-index: -1;
}

.hero-logo {
    max-width: 100%;
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    animation: floatAnimation 4s ease-in-out infinite;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px) scale(1.02); } /* Ajout d'un léger effet de scale */
}

.hero-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 3px 3px 0 #4E2E9B, 5px 5px 0 rgba(0, 0, 0, 0.2); /* Ombre façon cartoon */
}

.copy-ip-btn {
    background-color: #FF7A7A; /* Rouge plus vif */
    color: white;
    padding: 15px 35px;
    border-radius: 12px; /* Plus arrondi */
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    box-shadow: 0 6px 0 #D95F5F; /* Effet 3D */
    position: relative;
    overflow: hidden;
    border: 2px solid #fff;
}

.copy-ip-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease;
}

.copy-ip-btn:hover {
    background-color: #FF9E9E;
    transform: translateY(-3px);
    box-shadow: 0 9px 0 #D95F5F; /* Augmentation de l'effet 3D */
}

.copy-ip-btn:active {
    transform: translateY(3px);
    box-shadow: 0 3px 0 #D95F5F; /* Diminution de l'effet 3D lors du clic */
}

.copy-ip-btn:hover::after {
    left: 100%;
}

/* Platforms */
.platforms {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    transition: all 0.3s ease;
    background-color: rgba(249, 200, 70, 0.2); /* Fond jaune semi-transparent */
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid rgba(249, 200, 70, 0.3);
    min-width: 110px;
    position: relative;
    overflow: hidden;
}

.platform-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.2), transparent 60%);
    transform: rotate(25deg) translateX(-100%);
    transition: all 0.6s ease;
}

.platform-item i {
    font-size: 30px;
    margin-bottom: 10px;
    color: #F9C846; /* Jaune vif */
    transition: all 0.3s ease;
}

.platform-item span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.platform-item:hover {
    transform: translateY(-10px) scale(1.05);
    background-color: rgba(249, 200, 70, 0.3);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(249, 200, 70, 0.8);
}

.platform-item:hover::before {
    transform: rotate(25deg) translateX(100%);
}

.platform-item:hover i {
    color: #fff;
    transform: scale(1.2) rotate(5deg);
}

/* Server Info */
.server-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.1); /* Effet 3D */
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.server-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.server-info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 600;
}

.info-value {
    color: white;
    font-weight: 700;
    font-size: 17px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

/* Player count */
.player-count {
    position: absolute;
    top: 90px;
    right: 20px;
    background-color: #FF6B6B; /* Rouge vif */
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    z-index: 10;
    border: 2px solid white;
}

.player-count span {
    margin-right: 8px;
}

.player-count i {
    color: #4BFF4B;
    font-size: 10px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); } /* Ajout d'un effet de scale */
}

/* Player count - Couleur selon le nombre de joueurs */
.player-count.empty {
    background-color: #FF6B6B; /* Rouge */
}

.player-count.low {
    background-color: #FF9D7A; /* Orange-rouge */
}

.player-count.medium {
    background-color: #FFB347; /* Orange */
}

.player-count.high {
    background-color: #A0D669; /* Vert clair */
}

.player-count.full {
    background-color: #69D2E7; /* Bleu ciel - spécial quand le serveur est plein */
}

/* Animation plus prononcée pour le point vert quand il y a des joueurs */
.player-count:not(.empty) i {
    animation: blinkActive 1.5s infinite;
}

@keyframes blinkActive {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Version Badge */
.version-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #6B4EA8; /* Nouveau violet plus clair */
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid white;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2); /* Ombre décalée */
}

/* Content Section */
.content-section {
    background-color: #fff;
    position: relative;
    z-index: 1;
    padding: 60px 20px;
}

/* Join Section */
.join-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0047AB; /* Bleu royal */
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
}

.section-line {
    width: 80px;
    height: 4px;
    background-color: #F9C846; /* Jaune du site */
    margin: 0 auto;
    border-radius: 2px;
}

.join-container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.join-text {
    flex: 1;
    animation: fadeInLeft 1s ease-out;
}

.join-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: #232323;
    margin-bottom: 20px;
    line-height: 1.3;
}

.color-highlight {
    color: #0047AB; /* Bleu royal */
}

.join-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Version Support */
.version-support {
    display: flex;
    align-items: center;
    background-color: #f0f8ff;
    border: 2px solid #0047AB;
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(0, 71, 171, 0.1);
    transition: all 0.3s ease;
}

.version-support i {
    font-size: 48px;
    color: #0047AB;
    margin-right: 20px;
}

.version-text {
    display: flex;
    flex-direction: column;
}

.version-label {
    font-size: 14px;
    font-weight: 700;
    color: #555;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.version-range {
    font-size: 26px;
    font-weight: 800;
    color: #0047AB;
}

.version-support:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 71, 171, 0.2);
    background-color: #e6f2ff;
}

/* Join Cards */
.join-cards {
    flex: 1;
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.join-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: visible;
    position: relative;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    height: 350px;
}

.version-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #0047AB; /* Bleu royal */
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 71, 171, 0.3);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
    border: 2px solid #F9C846; /* Bordure jaune */
}

.card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
    width: 85%;
}

.server-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
    font-weight: 600;
}

.input-field {
    background-color: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    width: 100%;
    transition: all 0.3s ease;
}

.input-field:hover {
    border-color: #0047AB; /* Bleu royal */
}

.ip-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.copy-btn-small {
    background: none;
    border: none;
    color: #0047AB; /* Bleu royal */
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
}

.copy-btn-small:hover {
    color: #F9C846; /* Jaune */
    transform: scale(1.2);
}

.heart-icon {
    color: #FF6B6B; /* Rouge pour le coeur */
}

.copy-ip-button-large {
    background-color: #FFBB00; /* Jaune plus vif */
    color: #333;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: auto;
    border: none;
    box-shadow: 0 5px 15px rgba(249, 200, 70, 0.3);
    cursor: pointer;
    animation: pulse 2s infinite;
    text-transform: uppercase;
}

.copy-ip-button-large i {
    font-size: 18px;
}

.copy-ip-button-large:hover {
    background-color: #0047AB; /* Bleu royal */
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 71, 171, 0.3);
    animation: none;
}

.character-floating {
    position: absolute;
    bottom: 10px;
    right: -100px;
    width: 250px;
    z-index: 2;
    animation: characterFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.character-image-large {
    width: 100%;
    height: auto;
    transform: rotate(5deg);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(249, 200, 70, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(249, 200, 70, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(249, 200, 70, 0.3);
    }
}

@keyframes characterFloat {
    0%, 100% {
        transform: translateY(0) rotate(5deg);
    }
    50% {
        transform: translateY(-8px) rotate(7deg);
    }
}

/* Media Queries pour la section Join */
@media (max-width: 992px) {
    .join-container {
        flex-direction: column;
    }
    
    .join-text, .join-cards {
        width: 100%;
    }
    
    .join-card {
        height: auto;
        padding-bottom: 80px;
    }
    
    .character-floating {
        width: 180px;
        bottom: 10px;
        right: -50px;
    }
}

@media (max-width: 768px) {
    .platform-icons {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .join-text h3 {
        font-size: 24px;
        text-align: center;
    }
    
    .join-text p {
        text-align: center;
    }
    
    .version-support {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        padding: 15px;
    }
    
    .version-support i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .character-floating {
        width: 140px;
        right: -30px;
    }
    
    .card-content {
        width: 90%;
    }
}

/* Discord Section */
.discord-section {
    background-color: #7289DA;
    padding: 60px 20px;
    text-align: center;
    color: white;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    border-top: 5px solid #5570D2;
    border-bottom: 5px solid #5570D2;
}

.discord-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/background.jpg');
    background-size: cover;
    opacity: 0.05;
    z-index: -1;
}

.discord-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.discord-section p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 35px;
    opacity: 0.95;
}

/* News Section */
.news-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.news-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #6B4EA8; /* Nouveau violet plus clair */
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 3px 3px 0 rgba(107, 78, 168, 0.1);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 0 rgba(107, 78, 168, 0.1); /* Effet 3D */
    transition: all 0.3s ease;
    border: 3px solid #6B4EA8; /* Bordure violette */
}

.news-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 0 rgba(107, 78, 168, 0.1);
}

.news-image {
    height: 200px;
    overflow: hidden;
    border-bottom: 3px solid #6B4EA8;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-card h3 {
    padding: 25px;
    font-size: 18px;
    font-weight: 700;
    color: #6B4EA8;
}

/* Final CTA Section */
.final-cta-section {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    background-color: #F9F4FF; /* Fond violet très clair */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(107, 78, 168, 0.1);
    border: 3px solid #6B4EA8; /* Bordure violette */
}

.cta-content {
    flex: 1;
    padding: 50px;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #6B4EA8;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0 rgba(107, 78, 168, 0.1);
}

.cta-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
}

.shop-btn-large {
    display: inline-block;
    background-color: #F9C846; /* Jaune */
    color: #2c3e73;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(249, 200, 70, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.shop-btn-large i {
    font-size: 20px;
}

.shop-btn-large:hover {
    background-color: #0047AB; /* Bleu royal au survol */
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 71, 171, 0.3);
}

.shop-btn-large:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease;
}

.shop-btn-large:hover:after {
    left: 100%;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-image {
    flex: 1;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-image img {
    max-width: 400%;
    max-height: 500px;
    filter: drop-shadow(5px 5px 0 rgba(0, 0, 0, 0.1));
}

@keyframes floatRewards {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Media Queries */
@media (max-width: 992px) {
    .final-cta-section {
        flex-direction: column;
    }
    
    .cta-content {
        padding: 30px;
        text-align: center;
    }
    
    .cta-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .shop-btn-large {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* Footer */
.main-footer {
    background-color: #6B4EA8; /* Nouveau violet plus clair */
    color: white;
    padding: 60px 20px 0;
    border-top: 5px solid #F9C846; /* Jaune plus vif */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo-img {
    width: 120px;
    margin-bottom: 15px;
    filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.3));
}

.footer-logo p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.footer-nav, .footer-social {
    min-width: 150px;
}

.footer-links h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: #F9C846; /* Jaune plus vif */
    border-radius: 2px;
}

.footer-nav ul li {
    margin-bottom: 15px;
}

.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-block;
}

.footer-nav ul li a:hover {
    color: #F9C846; /* Jaune plus vif */
    transform: translateX(8px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-icons a:hover {
    background-color: #F9C846; /* Jaune plus vif */
    color: #6B4EA8; /* Nouveau violet plus clair */
    transform: translateY(-5px) rotate(15deg);
    border-color: #fff;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.legal-links a:hover {
    color: #F9C846; /* Jaune plus vif */
    transform: scale(1.05);
}

/* Media Queries */
@media (max-width: 992px) {
    .join-section,
    .final-cta-section {
        flex-direction: column;
    }
    
    .join-content,
    .cta-content {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .join-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-logo {
        width: 340px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .platforms {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        padding: 30px;
    }
    
    .footer-links {
        gap: 40px;
    }
    
    .hero-logo {
        width: 280px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-logo,
.hero-title,
.copy-ip-btn,
.platforms,
.server-info {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

.hero-logo { animation-delay: 0.2s; }
.hero-title { animation-delay: 0.4s; }
.copy-ip-btn { animation-delay: 0.6s; }
.platforms { animation-delay: 0.8s; }
.server-info { animation-delay: 1s; }

/* Styles pour le bouton copié */
.copy-ip-btn.copied {
    background-color: #4CAF50; /* Vert pour indiquer succès */
    box-shadow: 0 6px 0 #2E7D32; /* Ombre verte */
}

/* Ajout de l'animation pour la flèche de défilement */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    color: white;
    cursor: pointer;
    animation: bounce 2s infinite;
    background-color: #F9C846; /* Jaune vif */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.2); /* Effet 3D */
    border: 2px solid white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-15px) translateX(-50%); }
    60% { transform: translateY(-7px) translateX(-50%); }
}

.scroll-indicator.bounce-attention {
    animation: bounceAttention 1s 3;
}

@keyframes bounceAttention {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); background-color: #F9C846; }
    40% { transform: translateY(-20px) translateX(-50%); background-color: #FF6B6B; }
    60% { transform: translateY(-10px) translateX(-50%); background-color: #FF6B6B; }
}

/* Styles pour l'animation des sections au défilement */
.content-section > * {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section > *.fadeIn {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.discord-nav-btn {
    background-color: #7289DA; /* Couleur Discord */
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.discord-nav-btn:hover {
    background-color: #8A9BDF; /* Discord plus clair */
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Ajustements pour la responsivité de la navigation */
@media (max-width: 768px) {
    .main-nav {
        top: 10px;
        width: calc(100% - 20px);
        padding: 10px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-buttons {
        width: 100%;
        justify-content: space-between;
    }
}

/* Styles spécifiques à la boutique */
/* Layout de la boutique - Design plus épuré */
.boutique-page {
    background: linear-gradient(135deg, #232d57, #3e2b6f);
    color: #fff;
}

.shop-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar de la boutique */
.shop-sidebar {
    width: 280px;
    background-color: rgba(25, 30, 55, 0.95);
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-top {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-logo img {
    width: 100px;
    margin-bottom: 0;
}

.connect-btn {
    background-color: rgba(78, 46, 155, 0.7);
    border-radius: 8px;
    padding: 8px 15px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.connect-btn:hover {
    background-color: rgba(107, 78, 168, 0.8);
}

.sidebar-menu {
    padding: 25px 15px;
}

.sidebar-menu-item {
    font-size: 15px;
    padding: 12px 18px;
    margin-bottom: 10px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid transparent;
}

.sidebar-menu-item:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.08);
}

.sidebar-menu-item.active {
    background-color: rgba(249, 201, 70, 0.15);
    color: #F9C846;
    font-weight: 600;
    border-color: rgba(249, 201, 70, 0.3);
}

.sidebar-menu-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.sidebar-command {
    padding: 20px 15px;
    border-top: none;
}

.command-info {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
}

.command-info i {
    color: rgba(249, 201, 70, 0.9);
    font-size: 20px;
}

.command-text h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.command-text p {
    font-size: 12px;
    line-height: 1.5;
}

.sidebar-promo {
    background: linear-gradient(135deg, rgba(249, 201, 70, 0.05) 0%, rgba(249, 201, 70, 0.15) 100%);
    border: 1px solid rgba(249, 201, 70, 0.2);
    border-radius: 12px;
    padding: 15px;
}

.sidebar-promo h4 {
    color: rgba(249, 201, 70, 0.95);
    font-size: 14px;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

.sidebar-promo p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.promo-btn {
    background-color: rgba(249, 201, 70, 0.2);
    color: #F9C846;
    border: 1px solid rgba(249, 201, 70, 0.3);
    border-radius: 6px;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.promo-btn:hover {
    background-color: rgba(249, 201, 70, 0.3);
}

.sidebar-cart {
    padding: 15px;
}

.cart-button {
    background: linear-gradient(135deg, #4a3588 0%, #6B4EA8 100%);
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-badge {
    background-color: #F9C846;
    opacity: 0.9;
    width: 18px;
    height: 18px;
    font-size: 11px;
}

/* Contenu principal de la boutique */
.shop-content {
    flex: 1;
    margin-left: 280px;
    padding: 60px 40px 0;
}

.shop-header {
    margin-bottom: 50px;
}

.shop-logo {
    width: 180px;
    opacity: 0.9;
}

.shop-category {
    margin-bottom: 40px;
}

.shop-category h2 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.95);
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.shop-category h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #F9C846;
}

.shop-category h2 i {
    font-size: 20px;
}

/* Sous-catégories */
.sub-category {
    margin: 40px 0 25px;
    padding-left: 0;
}

.sub-category h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.sub-category p {
    font-size: 14px;
    line-height: 1.5;
    max-width: 600px;
}

/* Grille et cartes de produits */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.shop-card {
    background: rgba(30, 35, 60, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.1);
}

.shop-card.standard-rank {
    background: linear-gradient(135deg, rgba(30, 35, 60, 0.4) 0%, rgba(40, 45, 80, 0.4) 100%);
}

.shop-card.exclusive {
    background: linear-gradient(135deg, rgba(40, 35, 80, 0.4) 0%, rgba(70, 55, 120, 0.4) 100%);
    border: 1px solid rgba(249, 201, 70, 0.15);
}

.shop-card.best-offer {
    border: 1px solid rgba(249, 201, 70, 0.3);
}

.shop-card.exclusive.top-tier {
    background: linear-gradient(135deg, rgba(50, 40, 100, 0.4) 0%, rgba(80, 60, 140, 0.4) 100%);
}

.card-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-header i {
    font-size: 50px;
    margin-bottom: 5px;
    color: rgba(249, 201, 70, 0.9);
    transition: all 0.3s ease;
}

.shop-card:hover .card-header i {
    transform: scale(1.1);
}

.exclusive-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #e6b800 0%, #F9C846 100%);
    color: rgba(0, 0, 0, 0.8);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    z-index: 10;
}

.card-content {
    padding: 25px 20px;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #F9C846;
    opacity: 0.95;
    margin-bottom: 15px;
}

.alternatives, .monthly-price {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.5;
}

.description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
}

.psychology {
    font-style: italic;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.5;
}

.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff5370 0%, #ff7a90 100%);
    color: white;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.3px;
    z-index: 10;
}

.buy-btn {
    background: linear-gradient(135deg, #e6b800 0%, #F9C846 100%);
    color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 0;
    border: none;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    background: linear-gradient(135deg, #e6b800 0%, #ffd34d 100%);
    transform: scale(1.02);
}

/* Battle Pass */
.battlepass-info {
    background: rgba(30, 35, 60, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 25px 30px;
    margin-bottom: 40px;
}

.battlepass-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
}

.battlepass-info li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.battlepass-info li i {
    font-size: 16px;
    opacity: 0.95;
}

.battle-pass-grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.shop-card.battle-pass .card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.reward-preview {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 18px;
    margin: 15px 0 20px;
}

.reward-item {
    margin-bottom: 12px;
    font-size: 14px;
}

.reward-item i {
    font-size: 16px;
    width: 20px;
}

.rewards-note {
    margin-top: auto;
    font-size: 13px;
}

/* Récompenses du Battle Pass */
.battlepass-rewards {
    background: rgba(30, 35, 60, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    margin-top: 50px;
    overflow: hidden;
}

.rewards-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.1);
}

.rewards-tab {
    padding: 15px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.rewards-tab.active {
    background: rgba(249, 201, 70, 0.08);
    color: #F9C846;
}

.rewards-content {
    padding: 30px;
}

.rewards-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.rewards-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    max-height: 340px;
}

.reward-day {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
}

.reward-day:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

.reward-day.premium {
    background: rgba(249, 201, 70, 0.03);
    border: 1px solid rgba(249, 201, 70, 0.15);
}

.reward-day.premium:hover {
    background: rgba(249, 201, 70, 0.06);
}

.day-number {
    background: rgba(249, 201, 70, 0.9);
    width: 22px;
    height: 22px;
    font-size: 12px;
    margin-bottom: 12px;
}

.view-more-btn {
    color: rgba(249, 201, 70, 0.9);
    font-size: 14px;
    margin-top: 10px;
}

/* Note aux parents */
.parents-notice {
    margin: 60px 0;
}

.notice-container {
    background: rgba(36, 46, 86, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 25px 30px;
}

.notice-container h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.notice-container h3 i {
    color: #ff7a90;
    opacity: 0.9;
}

.notice-container p {
    font-size: 14px;
    line-height: 1.7;
}

/* Footer boutique */
.shop-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-logo {
    opacity: 0.9;
}

.footer-logo img {
    width: 35px;
}

.footer-social {
    font-size: 13px;
}

.footer-social .social-icons a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-social .social-icons a:hover {
    background: rgba(249, 201, 70, 0.2);
    color: #F9C846;
}

.footer-links {
    font-size: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: rgba(249, 201, 70, 0.9);
}

/* Adaptation spéciale pour la page boutique */
.boutique-page .main-nav {
    background: rgba(30, 35, 60, 0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* =====================
   RESPONSIVE MOBILE FIRST
   ===================== */

/* Breakpoints standard: 
   - Mobile: < 576px
   - Petit mobile: < 400px
   - Tablette: 576px - 992px
   - Desktop: > 992px
*/

/* Styles de base (pour tous les appareils) */
:root {
    --container-padding: 20px;
    --section-spacing: 60px;
    --card-spacing: 20px;
}

/* Styles spécifiques pour les très petits écrans (< 400px) */
@media (max-width: 399px) {
    .hero-title {
        font-size: 26px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .shop-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .copy-ip-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .platforms {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .platform-item {
        flex: 0 0 45%;
        margin-bottom: 10px;
    }
    
    .server-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .server-info-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 10px;
        text-align: center;
    }
    
    .server-info-item:last-child {
        border-bottom: none;
    }
    
    .input-field {
        padding: 10px;
        font-size: 14px;
    }
    
    .footer-content {
        padding: 30px 15px;
    }
    
    .vote-container {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 25px auto;
    }
    
    .vote-title {
        font-size: 1.5rem;
        max-width: 100%;
    }
    
    .vote-icon {
        width: 60px;
    }
    
    .site-card {
        padding: 20px 15px;
        height: auto;
        min-height: 150px;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
}

/* Small devices (phones, 576px and below) */
@media (max-width: 576px) {
    .main-nav {
        top: 10px;
        padding: 8px 10px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-links {
        justify-content: center;
        width: 100%;
        gap: 20px;
    }
    
    .nav-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .vote-container {
        grid-template-columns: 1fr;
    }
    
    .player-card {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    
    .vote-card {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .site-container {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        flex-direction: column;
    }
    
    .site-card {
        margin-bottom: 15px;
    }
}

/* Medium devices (tablets, 768px and below) */
@media (max-width: 768px) {
    .join-container {
        flex-direction: column;
    }
    
    .join-text, .join-cards {
        width: 100%;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta-section {
        flex-direction: column;
    }
    
    .cta-content, .cta-image {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo, .footer-links {
        width: 100%;
    }
    
    .shop-container {
        flex-direction: column;
    }
    
    .shop-sidebar {
        width: 100%;
        position: relative;
        height: auto;
        padding-bottom: 20px;
    }
    
    .shop-content {
        margin-left: 0;
        padding: 20px;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-container {
        margin: 20px auto;
        padding: 20px;
    }
}

/* Medium-large devices (small desktops and large tablets, 992px and below) */
@media (max-width: 992px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .battle-pass-grid {
        grid-template-columns: 1fr;
    }
    
    .vote-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .main-footer {
        padding: 40px 20px 20px;
    }
    
    .footer-nav, .footer-social {
        flex: 0 0 48%;
    }
}

/* Adaptations responsives pour la boutique */
@media (max-width: 768px) {
    .shop-sidebar {
        display: none;
    }
    
    .shop-content {
        margin-left: 0;
        width: 100%;
    }
    
    /* Barre de navigation alternative pour mobile */
    .mobile-shop-nav {
        display: flex;
        overflow-x: auto;
        padding: 10px 0;
        margin-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .mobile-shop-nav::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }
    
    .mobile-shop-nav a {
        white-space: nowrap;
        padding: 8px 15px;
        margin-right: 10px;
        background: rgba(123, 90, 217, 0.2);
        border-radius: 50px;
        color: white;
        font-weight: 600;
        font-size: 14px;
    }
    
    .mobile-shop-nav a.active {
        background: #7b5ad9;
    }
}

/* Adaptations responsives pour la page vote */
@media (max-width: 992px) {
    .vote-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .player-card {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    
    .vote-card {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .site-container {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
}

/* =====================
   FIN RESPONSIVE
   ===================== */

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-logo,
.hero-title,
.copy-ip-btn,
.platforms,
.server-info {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

.hero-logo { animation-delay: 0.2s; }
.hero-title { animation-delay: 0.4s; }
.copy-ip-btn { animation-delay: 0.6s; }
.platforms { animation-delay: 0.8s; }
.server-info { animation-delay: 1s; }

/* Styles pour la boutique */

/* Layout de la boutique - Design plus épuré */
.boutique-page {
    background: linear-gradient(135deg, #232d57, #3e2b6f);
    color: #fff;
}

/* Sidebar de la boutique */
.shop-sidebar {
    width: 280px;
    background-color: rgba(25, 30, 55, 0.95);
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-top {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-logo img {
    width: 100px;
    margin-bottom: 0;
}

.connect-btn {
    background-color: rgba(78, 46, 155, 0.7);
    border-radius: 8px;
    padding: 8px 15px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.connect-btn:hover {
    background-color: rgba(107, 78, 168, 0.8);
}

.sidebar-menu {
    padding: 25px 15px;
}

.sidebar-menu-item {
    font-size: 15px;
    padding: 12px 18px;
    margin-bottom: 10px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid transparent;
}

.sidebar-menu-item:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.08);
}

.sidebar-menu-item.active {
    background-color: rgba(249, 201, 70, 0.15);
    color: #F9C846;
    font-weight: 600;
    border-color: rgba(249, 201, 70, 0.3);
}

.sidebar-menu-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.sidebar-command {
    padding: 20px 15px;
    border-top: none;
}

.command-info {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
}

.command-info i {
    color: rgba(249, 201, 70, 0.9);
    font-size: 20px;
}

.command-text h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.command-text p {
    font-size: 12px;
    line-height: 1.5;
}

.sidebar-promo {
    background: linear-gradient(135deg, rgba(249, 201, 70, 0.05) 0%, rgba(249, 201, 70, 0.15) 100%);
    border: 1px solid rgba(249, 201, 70, 0.2);
    border-radius: 12px;
    padding: 15px;
}

.sidebar-promo h4 {
    color: rgba(249, 201, 70, 0.95);
    font-size: 14px;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

.sidebar-promo p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.promo-btn {
    background-color: rgba(249, 201, 70, 0.2);
    color: #F9C846;
    border: 1px solid rgba(249, 201, 70, 0.3);
    border-radius: 6px;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.promo-btn:hover {
    background-color: rgba(249, 201, 70, 0.3);
}

.sidebar-cart {
    padding: 15px;
}

.cart-button {
    background: linear-gradient(135deg, #4a3588 0%, #6B4EA8 100%);
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-badge {
    background-color: #F9C846;
    opacity: 0.9;
    width: 18px;
    height: 18px;
    font-size: 11px;
}

/* Contenu principal de la boutique */
.shop-content {
    flex: 1;
    margin-left: 280px;
    padding: 60px 40px 0;
}

.shop-header {
    margin-bottom: 50px;
}

.shop-logo {
    width: 180px;
    opacity: 0.9;
}

.shop-category {
    margin-bottom: 40px;
}

.shop-category h2 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.95);
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.shop-category h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #F9C846;
}

.shop-category h2 i {
    font-size: 20px;
}

/* Grille de produits */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.shop-card {
    background: rgba(30, 35, 60, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.1);
}

.shop-card.standard-rank {
    background: linear-gradient(135deg, rgba(30, 35, 60, 0.4) 0%, rgba(40, 45, 80, 0.4) 100%);
}

.shop-card.exclusive {
    background: linear-gradient(135deg, rgba(40, 35, 80, 0.4) 0%, rgba(70, 55, 120, 0.4) 100%);
    border: 1px solid rgba(249, 201, 70, 0.15);
}

.shop-card.best-offer {
    border: 1px solid rgba(249, 201, 70, 0.3);
}

.shop-card.exclusive.top-tier {
    background: linear-gradient(135deg, rgba(50, 40, 100, 0.4) 0%, rgba(80, 60, 140, 0.4) 100%);
}

.card-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-header i {
    font-size: 50px;
    margin-bottom: 5px;
    color: rgba(249, 201, 70, 0.9);
    transition: all 0.3s ease;
}

.shop-card:hover .card-header i {
    transform: scale(1.1);
}

.exclusive-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #e6b800 0%, #F9C846 100%);
    color: rgba(0, 0, 0, 0.8);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    z-index: 10;
}

.card-content {
    padding: 25px 20px;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #F9C846;
    opacity: 0.95;
    margin-bottom: 15px;
}

.alternatives, .monthly-price {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.5;
}

.description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
}

.psychology {
    font-style: italic;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.5;
}

.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff5370 0%, #ff7a90 100%);
    color: white;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.3px;
    z-index: 10;
}

.buy-btn {
    background: linear-gradient(135deg, #e6b800 0%, #F9C846 100%);
    color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 0;
    border: none;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    background: linear-gradient(135deg, #e6b800 0%, #ffd34d 100%);
    transform: scale(1.02);
}

/* Section Shop */
.shop-section {
    margin-bottom: 50px;
} 