/* --- VARIABLES ET BASE --- */
:root {
    --neon-blue: #00d2ff;
    --neon-pink: #ff007f;
    --neon-purple: #9d00ff;
    --neon-gold: #ffcc00;
    --dark-bg: #030305;
    --white: #FFFFFF;
    --main-font: 'Inter', sans-serif;
    --title-font: 'Orbitron', sans-serif;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: var(--main-font); 
    background-color: var(--dark-bg); 
    color: var(--white); 
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 500;
}

/* --- TYPOGRAPHIE STATEMENT --- */
h1, h2, h3, .logo {
    font-family: var(--title-font) !important;
    font-weight: 900 !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff 20%, var(--neon-blue) 40%, var(--neon-purple) 60%, #fff 80%);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine { to { background-position: 200% center; } }

/* --- HERO SECTION --- */
#hero { 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(3, 3, 5, 0.7), rgba(3, 3, 5, 0.8)), 
                url('logo/zen.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.hero-content { 
    z-index: 2; 
    animation: fadeInUp 1.2s ease-out;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
    padding: 40px;
}

.hero-content h1 { 
    font-size: 5.5rem; 
    filter: drop-shadow(0 0 15px var(--neon-blue)); 
}

/* --- LE BOUTON CTA "FLOW" --- */
.cta-main {
    position: relative;
    margin-top: 30px;
    display: inline-block;
    padding: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-pink), var(--neon-blue));
    background-size: 300%;
    border-radius: 50px;
    text-decoration: none;
    animation: flow 4s linear infinite;
    border: none;
}

.cta-main span {
    display: block;
    padding: 15px 45px;
    background: var(--dark-bg);
    border-radius: 50px;
    color: #fff;
    font-weight: 800;
    font-family: var(--title-font);
    transition: 0.3s;
}

.cta-main:hover span { background: transparent; }

@keyframes flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- 🎁 NOUVEAU : BOUTON BONUS & ZONE REVELATION --- */
.bonus-wrapper {
    text-align: center;
    margin: 40px auto;
    max-width: 600px;
}

.btn-loto-bonus {
    background: linear-gradient(135deg, var(--neon-gold), #d35400);
    border: none;
    color: white;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 900;
    font-family: var(--title-font);
    border-radius: 15px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-loto-bonus:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 0 40px rgba(255, 204, 0, 0.6);
    filter: brightness(1.2);
}

.bonus-content {
    display: none; /* Contrôlé par JS */
    margin-top: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid var(--neon-gold);
    border-radius: 30px;
    animation: popIn 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: inset 0 0 20px rgba(255, 204, 0, 0.1);
}

.bonus-item {
    font-family: var(--title-font);
    font-size: 1.5rem;
    color: var(--white);
    margin: 10px 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.bonus-item strong {
    color: var(--neon-gold);
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
}

/* --- 🎰 BOULES DE LOTO --- */
.ball {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: radial-gradient(circle at 30% 30%, #333, #000);
    border: 3px solid var(--neon-blue);
    border-radius: 50%;
    margin: 10px;
    font-family: var(--title-font);
    font-size: 1.8rem;
    color: white;
    text-shadow: 0 0 10px var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4), inset 0 0 15px rgba(0, 210, 255, 0.2);
    transition: all 0.5s ease;
    animation: popIn 0.6s backwards;
}

.ball:nth-child(2) { animation-delay: 0.2s; }
.ball:nth-child(3) { animation-delay: 0.4s; }

/* --- SECTION AVIS ACCUEIL --- */
.home-reviews-container {
    padding: 100px 20px;
    text-align: center;
}

.reviews-header-main {
    margin-bottom: 50px;
}

.reviews-header-main .stars-global {
    font-family: var(--title-font);
    font-size: 1.4rem;
    color: #ffcc00;
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
    display: block;
    margin: 10px 0;
}

.reviews-header-main p {
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.reviews-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 420px));
    gap: 30px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.reviews-grid-home .mini-card {
    flex-direction: column;
    text-align: center;
}

.reviews-grid-home .mini-avatar {
    margin-right: 0 !important;
    margin-bottom: 20px;
    transform: rotate(0deg) !important;
}

/* --- CARTES STYLE BENTO --- */
.mini-card {
    display: flex;
    align-items: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 40px;
    backdrop-filter: blur(15px);
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.mini-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-blue);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.mini-card img.mini-avatar {
    width: 90px !important;
    height: 90px !important;
    border-radius: 25px !important;
    transform: rotate(-8deg);
    box-shadow: 15px 15px 30px rgba(0,0,0,0.5);
    margin-right: 30px;
    transition: 0.4s;
    object-fit: cover;
}

.mini-card:hover img.mini-avatar { transform: rotate(0deg) scale(1.1); }

.mini-card strong {
    font-size: 1.4rem;
    color: var(--neon-blue);
    display: block;
    margin-bottom: 8px;
    font-family: var(--title-font);
}

.stars-gold { color: #ffcc00; font-size: 0.9rem; margin-bottom: 5px; }

/* --- PAGE AVIS : GRILLE ET FORMULAIRE --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
    text-align: left;
}

.post-review-box {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(0,0,0,0.5));
    border: 1px solid var(--neon-pink);
    padding: 50px;
    border-radius: 50px;
    margin: 40px 0 80px;
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.1);
}

.rating { display: flex; flex-direction: row-reverse; justify-content: center; margin: 20px 0; }
.rating input { display: none; }
.rating label { font-size: 2.5rem; color: #222; cursor: pointer; transition: 0.3s; }
.rating input:checked ~ label, .rating label:hover, .rating label:hover ~ label { 
    color: #ffcc00; text-shadow: 0 0 10px rgba(255, 204, 0, 0.5); 
}

.reponse-admin {
    margin-top: 20px;
    padding: 20px;
    background: rgba(157, 0, 255, 0.1);
    border-radius: 25px;
    border-left: 4px solid var(--neon-purple);
}

/* --- HARMONISATION DU LIEN "VOIR TOUT" --- */
.view-all-link {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--white);
    text-decoration: none;
    font-family: var(--title-font);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.view-all-link i { margin-left: 10px; transition: 0.3s; color: var(--neon-pink); }
.view-all-link:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 127, 0.15);
}
.view-all-link:hover i { transform: translateX(5px); }

/* --- SECTION REJOINDRE (PERSPECTIVE 3D) --- */
#join-us {
    padding: 150px 0;
    perspective: 1000px;
    background: var(--dark-bg);
}

#join-us .container {
    background: linear-gradient(145deg, rgba(88, 101, 242, 0.1), rgba(0, 0, 0, 0.9));
    border: 1px solid rgba(88, 101, 242, 0.3);
    padding: 80px 40px;
    border-radius: 60px;
    transform: rotateX(15deg);
    transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

#join-us .container:hover {
    transform: rotateX(0deg) translateY(-20px);
    border-color: #5865F2;
    box-shadow: 0 50px 100px rgba(88, 101, 242, 0.2);
}

.btn-discord {
    margin-top: 40px;
    padding: 20px 60px;
    background: #5865F2;
    color: white;
    font-family: var(--title-font);
    font-size: 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    display: inline-block;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border: none;
}

.btn-discord:hover {
    box-shadow: 0 0 40px rgba(88, 101, 242, 0.6);
    transform: scale(1.1);
    letter-spacing: 2px;
}

/* --- FOOTER & ADMIN --- */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    opacity: 0.5;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.admin-footer {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: rgba(0,0,0,0.95);
    padding: 15px;
    border-top: 1px solid var(--neon-purple);
    z-index: 1000;
    font-size: 0.8rem;
}

.btn-admin {
    background: var(--neon-purple);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-family: var(--title-font);
}

/* --- ANIMATIONS & MOBILE --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 992px) {
    .preview-grid, .reviews-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.8rem; }
    #join-us .container { transform: none; padding: 40px 20px; }
    #hero { background-attachment: scroll; }
    .ball { width: 55px; height: 55px; line-height: 55px; font-size: 1.3rem; }
}
.shake {
    animation: shake-animation 0.5s infinite;
}

@keyframes shake-animation {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.btn-history {
    background: rgba(157, 0, 255, 0.1);
    border: 1px solid var(--neon-purple);
    color: var(--neon-purple);
    padding: 10px 20px;
    border-radius: 5px;
    font-family: var(--title-font);
    font-size: 0.75rem;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.btn-history:hover {
    background: var(--neon-purple);
    color: #fff;
    box-shadow: 0 0 15px var(--neon-purple);
}

@media (max-width: 600px) {
    .shop-status-box div { flex-direction: column; gap: 15px; }
}