/* Centralized page-specific styles extracted from PHP/HTML views. */

/* ===== include/footer.php ===== */
/* ===== Footer Blur / Glassmorphism ===== */
footer {
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(4px);
	    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    padding: 60px 0 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0);
}

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

/* Grid */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Logo */
.footer-logo {
    font-size: 20px;
    color: rgba(255, 255, 255, 255);
    margin-bottom: 15px;
}

.footer-logo .version {
    font-size: 14px;
    opacity: 0.7;
}

/* Description */
.footer-description {
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

/* Titles */
.footer-section h4 {
    color: rgba(0, 0, 0, 0.6);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Links */
.footer-section.links ul {
    display: grid;
    gap: 10px;
}

.footer-section.links a {
    color: rgba(0, 0, 0, 0.75);
    transition: all 0.3s ease;
}

.footer-section.links a:hover {
    color: #000000;
    transform: translateX(6px);
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

/* Social buttons */
.social-links {
    display: flex;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.20);
    border-radius: 8px;
    color: #000000;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
	    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.social-btn:hover {
    background: rgba(0, 0, 0, 0.60);
    transform: translateY(-2px);
}

copyright {
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 5px;
}

.legal {
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.header-logodescription img{
    height:100px;
    transition:.3s;
}
.header-logodescription img:hover{
    transform:scale(1.05);
}

/* ===== include/main.php ===== */
/* -------------------------
   RESET
-------------------------- */
*{margin:0;padding:0;box-sizing:border-box;}
body{
    font-family:Arial, sans-serif;
    background:url('../template/img/wallpaper.jpg') center/cover fixed;
    color:#000;
    min-height:100vh;
}

/* -------------------------
   ANIMATIONS
-------------------------- */
@keyframes fadeIn{from{opacity:0;}to{opacity:1;}}
@keyframes fadeUp{from{opacity:0;transform:translateY(-10px);}to{opacity:1;transform:translateY(0);}}
@keyframes slideDown{from{opacity:0;transform:translateY(-6px);}to{opacity:1;transform:translateY(0);}}

/* -------------------------
   HEADER GLASSMORPHISM 2A
-------------------------- */
.header{
	position:sticky;
    top:0;
    z-index:100;
    animation:fadeIn .6s ease-out;
}

.header-container{
    max-width:1200px;
    margin:auto;
    padding:14px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    backdrop-filter:blur(4px);
	    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    border-radius:0 0 18px 18px;
    animation:fadeUp .5s ease-out;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.header-logo img{
    height:100px;
    transition:.3s;
}
.header-logo img:hover{
    transform:scale(1.05);
}

/* -------------------------
   NAVIGATION DESKTOP
-------------------------- */
.nav-list{
    display:flex;
    gap:20px;
    align-items:center;
}

.nav-link{
    padding:8px 14px;
    border-radius:12px;
    background:rgba(0,0,0,0.10);
    border:1px solid rgba(0,0,0,0.10);
    backdrop-filter:blur(4px);
	    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    transition:.25s;
    cursor:pointer;
}

.nav-link:hover{
    background:rgba(255,255,255,0.12);
    transform:translateY(-2px);
}

/* -------------------------
   SUBMENU
-------------------------- */
.nav-item{position:relative;}

.submenu{
    position:absolute;
    top:110%;
    left:0;
    min-width:180px;
    padding:10px;
    border-radius:12px;

    backdrop-filter:blur(4px);
	    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    border:1px solid rgba(255,255,255,0.15);

    opacity:0;
    visibility:hidden;
    transform:translateY(-6px);
    transition:.25s;
}

.nav-item:hover .submenu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    animation:slideDown .25s ease-out;
}

.submenu li a{
    display:block;
    padding:8px;
    border-radius:8px;
    transition:.2s;
}
.submenu li a:hover{
    background:rgba(255,255,255,0.12);
}

/* -------------------------
   MOBILE MENU
-------------------------- */
.mobile-toggle{
    display:none;
	    top:0;right:93%;

    width:40px;height:40px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.0);
    background:rgba(0,0,0,0.0);
    backdrop-filter:blur(4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    cursor:pointer;
    align-items:center;
    justify-content:center;
}

.mobile-menu{
    position:fixed;
    top:0;right:-100%;
    width:260px;
    height:100vh;
    padding:20px;
    background:rgba(0,0,0,0.70);
    backdrop-filter:blur(4px);
	    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    transition:.35s;
    z-index:200;
}

.mobile-menu.open{right:0;}

.mobile-menu ul{
    margin-top:40px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.mobile-menu a{
    padding:10px;
    border-radius:10px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.15);
    transition:.25s;
}
.mobile-menu a:hover{
    background:rgba(255,255,255,0.12);
}

/* -------------------------
   RESPONSIVE
-------------------------- */
@media(max-width:900px){
    .nav-list{display:none;}
    .mobile-toggle{display:flex;}
}

/* ===== views/account.php ===== */
body{
padding-top:0px;
}
.blur-section {
    margin: 20px auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.blur-box {
    width: 700px;
    padding: 35px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    animation: fadeSlideUp .6s ease-out forwards;
}

.blur-title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: #000;
}

.blur-content {
    color: #000;
}

.center {
    text-align: center;
}

.info-line {
    margin: 6px 0;
}

.blur-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blur-label {
    color: #000;
}

.blur-input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: rgba(0,0,0,0.20);
    color: #000;
}

.blur-button {
    margin-top: 10px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: rgba(0,0,0,0.30);
    color: #000;
    cursor: pointer;
    transition: 0.2s;
}

.blur-button:hover {
    background: rgba(0,0,0,0.20);
}

.blur-table {
    width: 100%;
    border-collapse: collapse;
    color: #000;
}

.blur-table th, .blur-table td {
}

/* ===== views/connection.php ===== */
body{
	padding-top:0px;
}
#content 
{
 width: 600px;
 padding: 35px;
 border-radius: 18px;
 background: rgba(0, 0, 0, 0);
 backdrop-filter: blur(4px);
 	    box-shadow: 0 8px 32px rgba(0,0,0,0.5);

 animation: fadeSlideUp .6s ease-out forwards;
 }
#middle {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp .6s ease-out forwards;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
label {
    display: block;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateX(-10px);
    animation: labelFade .5s ease-out forwards;
}

label:nth-of-type(1) { animation-delay: .2s; }
label:nth-of-type(2) { animation-delay: .4s; }

@keyframes labelFade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.input-field {
    transition: 
        box-shadow .25s ease,
        transform .25s ease,
        background .25s ease;
}

.input-field:hover,
.input-field:focus {
    transform: scale(1.02);
    box-shadow: 0 0 12px rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.15);
}
.btn-submit {
    transition: 
        transform .2s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.25);
}

.btn-submit:active {
    transform: scale(0.96);
}
.input-field {
    opacity: 0;
    animation: inputFade .5s ease-out forwards;
}

#formuser { animation-delay: .3s; }
#formpass { animation-delay: .5s; }

@keyframes inputFade {
    to {
        opacity: 1;
    }
}

#content #middle h2 {
    background: #6c5ce7;
    color: black;
    padding: 20px;
    font-size: 20px;
    margin: 0;
    border-radius: 20px;
    text-align: center;
}

#content #middle form {
    backdrop-filter: blur(4px);
		    box-shadow: 0 8px 32px rgba(0,0,0,0.5);

    padding: 30px;
	border: 1px solid #ff740099;
    border-radius: 20px;
}

#content #middle form label {
    display: block;
    color: #000000;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
}

#content #middle form label small {
    color: #000000;
    font-size: 13px;
    display: block;
    margin-top: 4px;
    font-weight: normal;
}


#content #middle form input[type="text"],
#content #middle form input[type="password"] {
    width: 100%;
    backdrop-filter: blur(4px);
		    box-shadow: 0 8px 32px rgba(0,0,0,0.5);

    border: 2px solid #000000;
    color: #FFFFFF;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

#content #middle form input[type="text"]:focus,
#content #middle form input[type="password"]:focus {
    border-color: #000000;
    background: #00000066;
}

#content #middle form button {
    background: #ff740099;
    color: 00000066;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    width: 100%;
    margin-top: 20px;
    text-transform: uppercase;
}

#content #middle form button:hover {
    background: #ff740066;
    transform: translateY(-2px);
}

/* ===== views/home.php ===== */
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
	padding-top:0px;
    }

    /* --- CONTAINER PRINCIPAL --- */
    .container {
       width: 600px;
 padding: 35px;
 border-radius: 18px;
 background: rgba(0, 0, 0, 0);
 backdrop-filter: blur(4px);
	    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
 animation: fadeSlideUp .6s ease-out forwards;
    }

    h1 {
        text-align: center;
        font-size: 2.6rem;
        margin-bottom: 20px;
        animation: slideDown 1s ease-out;
    }

    /* --- STATS --- */
    .stats {
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
        animation: fadeInUp 1.2s ease-out;
    }

    .stat-box {
        text-align: center;
        padding: 15px 25px;
        background: rgba(0, 0, 0, 0.10);
        border-radius: 12px;
        transition: transform .3s;
		
    }

    .stat-box:hover {
        transform: scale(1.05);
    }

    /* --- TOP VOTEURS --- */
    .top-voters {
        margin-top: 40px;
        animation: fadeInUp 1.4s ease-out;
    }

    .top-voters ul {
        list-style: none;blur
        padding: 0;
    }

    .top-voters li {
        background: rgba(0, 0, 0, 0.10);
        padding: 12px;
        margin: 8px 0;
        border-radius: 10px;
        transition: transform .3s;
    }

    .top-voters li:hover {
        transform: translateX(8px);
    }

    /* --- ANIMATIONS --- */
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }

/* ===== views/join.php ===== */
body {
    padding-top: 0px;
    font-family: Arial, sans-serif;
}
/* --- Apparition globale du container --- */
.join-box {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp .6s ease-out forwards;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Titre animé --- */
.join-title {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
    animation: titlePop .6s ease-out;
}

@keyframes titlePop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- Steps container --- */
.join-steps {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

/* --- Step card blur --- */
.blur-step {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(4px);
		    box-shadow: 0 8px 32px rgba(0,0,0,0.5);

    padding: 20px;
    border-radius: 16px;
    width: 220px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: stepFade .6s ease-out forwards;
}

.blur-step:nth-child(1) { animation-delay: .2s; }
.blur-step:nth-child(2) { animation-delay: .35s; }
.blur-step:nth-child(3) { animation-delay: .5s; }

@keyframes stepFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover premium */
.blur-step:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 35px rgba(255,255,255,0.15);
}

/* --- Icônes animées --- */
.step-icon div {
    width: 50px;
    height: 50px;
    margin: auto;
    animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: .9; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* --- Section téléchargement --- */
.download-section {
    margin-top: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp .6s ease-out forwards;
    animation-delay: .6s;
}

/* --- Boutons de téléchargement --- */
.download-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 12px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(4px);
		    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    color: #FFF;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.download-btn:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.28);
    box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}

.download-btn:active {
    transform: scale(0.96);
}

/* --- Texte interne du bouton --- */
.btn-text .label {
    font-size: 16px;
    font-weight: 600;
}

.btn-text .sublabel {
    font-size: 13px;
    opacity: .8;
}

/* --- BLUR BOX PRINCIPALE --- */
.blur-box {
    width: 85%;
    margin: auto;
    padding: 35px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
		    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #000;
}

/* TITRES */
.join-title {
    color: #000000;
    font-size: 26px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* --- ÉTAPES --- */
.join-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.blur-step {
    padding: 25px;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
	box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    transition: 0.3s;
    text-align: center;
}

.blur-step:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.12);
}

.step-icon {
    width: 75px;
    height: 75px;
    background: rgba(164, 208, 35, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 15px;
}

.step h3 {
    color: #00000099;
    margin-bottom: 10px;
    font-size: 18px;
}

.step p {
    color: rgba(0,0,0,66%);
    font-size: 14px;
}

/* --- SECTION TÉLÉCHARGEMENTS --- */
.download-section {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    min-width: 220px;
    transition: 0.25s;
}

.blur-button {
    backdrop-filter: blur(4px);
}

/* Bouton principal */
.download-btn.primary {
    background: #00000066;
    color: #ffffff;
    border: 1px solid #00000066;
}

.download-btn.primary:hover {
    background: #00000099;
    transform: translateY(-3px);
}

/* Bouton secondaire */
.download-btn.secondary {
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: 1px solid #00000099;
}

.download-btn.secondary:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-3px);
}

/* Texte des boutons */
.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text .label {
    font-size: 14px;
    opacity: 0.9;
}

.btn-text .sublabel {
    font-size: 16px;
    font-weight: 700;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
    .join-steps {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== views/ladders.php ===== */
/* ------------------------------ */
/*       CONTAINER CLASSEMENT     */
/* ------------------------------ */

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

/* ------------------------------ */
/*         GLOBAL BLUR            */
/* ------------------------------ */

.blur-box, .blur-table, .blur-card, .blur-grid {
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
}

/* ------------------------------ */
/*         TABS BLUR              */
/* ------------------------------ */

.tabs {
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:25px;
}

.tabs div {
    padding:12px 20px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius:10px;
    cursor:pointer;
    color:black;
    font-weight:500;
    transition:0.2s;
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.tabs div:hover {
    background: rgba(255,255,255,0.25);
}

.tabs .active {
    background: rgba(255,255,255,0.35);
    color:black;
    font-weight:bold;
}

/* ------------------------------ */
/*         TAB CONTENT            */
/* ------------------------------ */

.tab-content {
    display:none;
}

.tab-content.active {
    display:block;
}

/* ------------------------------ */
/*         TABLE BLUR             */
/* ------------------------------ */

.ladder {
    width:100%;
    border-collapse:separate;
    border-spacing:0 8px;
}

.ladder th {
    padding:12px;
    color:black;
    font-weight:bold;
}

.ladder td {
    padding:14px 18px;
    color:black;
}


/* ------------------------------ */
/*         BADGES                 */
/* ------------------------------ */

.level-badge, .prestige-badge, .stat-badge, .koli-badge {
    padding:5px 10px;
    border-radius:8px;
    background: rgba(255,255,255,0.25);
    border:1px solid rgba(255,255,255,0.35);
    color:black;
    font-weight:bold;
}


/* ------------------------------ */
/*         TITRES BLUR            */
/* ------------------------------ */

.blur-title {
    font-size:20px;
    padding:10px;
    color:black;
}

body{
padding-top:0px;
}

/* ===== views/login.php ===== */
/* --- PAGE --- */
body{
	padding-top:0px;
}

/* --- CONTENEUR --- */
.login-feedback-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 120px 0; /* laisse la place au footer */
}

/* --- CARTE BLUR --- */
.blur-card {
    backdrop-filter: blur(4px);
		    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    background: rgba(0, 0, 0, 0.0);
    border: 1px solid rgba(0, 0, 0, 0.0);
    border-radius: 20px;
    padding: 40px 50px;
    text-align: center;
    color: #000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.0);
    animation: fadeIn 0.8s ease-out;
}

/* --- ICÔNE --- */
.icon {
    font-size: 55px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

/* --- TEXTE --- */
.text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- ANIMATIONS --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* ===== views/register.php ===== */
BODY{
	PADDING-TOP:0px
}
/* --- Apparition de la bannière --- */
.banner-blur {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp .7s ease-out forwards;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Glow animé des titres --- */
.banner-blur h2 {
    animation: titleGlow 2.5s infinite ease-in-out;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(255,255,255,0.25); }
    50% { text-shadow: 0 0 12px rgba(255,255,255,0.55); }
}

/* --- Apparition du formulaire --- */
.form-blur {
    opacity: 0;
    transform: translateY(25px);
    animation: formFade .7s ease-out forwards;
    animation-delay: .2s;
}

@keyframes formFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Animation des labels (cascade) --- */
form label {
    display: block;
    opacity: 0;
    transform: translateX(-15px);
    animation: labelSlide .6s ease-out forwards;
}

form label:nth-child(1) { animation-delay: .2s; }
form label:nth-child(2) { animation-delay: .3s; }
form label:nth-child(3) { animation-delay: .4s; }
form label:nth-child(4) { animation-delay: .5s; }
form label:nth-child(5) { animation-delay: .6s; }
form label:nth-child(6) { animation-delay: .7s; }
form label:nth-child(7) { animation-delay: .8s; }

@keyframes labelSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- Inputs blur animés --- */
.blur-input {
    width: 80%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.15);
    color: #000;
    font-size: 15px;
    outline: none;
    transition: all .25s ease;
    animation: inputPop .5s ease-out forwards;
    opacity: 0;
}

@keyframes inputPop {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.blur-input:hover,
.blur-input:focus {
    background: rgba(255,255,255,0.25);
    box-shadow: 0 0 12px rgba(255,255,255,0.15);
    transform: scale(1.03);
}

/* --- Captcha animé --- */
.captcha-container {
    margin: 20px 0;
    opacity: 0;
    animation: captchaFade .6s ease-out forwards;
    animation-delay: 1s;
}

@keyframes captchaFade {
    to { opacity: 1; }
}

/* --- Bouton CONFIRMER --- */
.large-btn {
    margin-top: 20px;
    padding: 14px 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
		    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    color: #000;
    border: none;
    cursor: pointer;
    transition: all .25s ease;
    animation: buttonPop .6s ease-out forwards;
    opacity: 0;
    animation-delay: 1.1s;
}

@keyframes buttonPop {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.large-btn:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(255,255,255,0.35);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.large-btn:active {
    transform: scale(0.95);
}

/* --- BLUR BOX --- */
.blur-box {
    width: 70%;
    margin: 20px auto;
    padding: 25px;
    border-radius: 18px;
    backdrop-filter: blur(4px);
		    box-shadow: 0 8px 32px rgba(0,0,0,0.5);

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #000;
}

/* Bannière */
.banner-blur {
    max-width: 900px;
    text-align: left;
}

.reward-content h2 {
    color: #000000;
    margin-bottom: 10px;
}

.reward-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

/* Formulaire */
.form-blur {
    max-width: 600px;
}

.blur-input {
    width: 90%;
    padding: 12px;
    margin: 10px 0 20px 0;
    border-radius: 10px;
    border: none;
    background: rgba(0, 0, 0, 66%);
    color: #000;
    font-size: 16px;
    outline: none;
}

.blur-input:focus {
    background: rgba(255, 255, 255, 0.25);
}

.blur-button {
    padding: 12px 40px;
    border-radius: 10px;
    border: none;
    background: rgba(164, 208, 35, 0.4);
    color: #000;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.blur-button:hover {
    background: rgba(164, 208, 35, 0.6);
}

.large-btn {
    padding: 15px 90px !important;
}

/* Captcha */
.captcha-container {
    margin: 20px 0;
}

/* ===== views/reset_password.php ===== */
.container {
            width: 400px;
            margin: 70px auto;
            padding: 25px 30px;
            border-radius: 6px;
            box-shadow: 0 0 8px rgba(0,0,0,0.1);
        }
        h1 {
            font-size: 20px;
            margin-bottom: 20px;
            text-align: center;
        }
        label {
            display: block;
            margin-top: 10px;
            font-size: 14px;
        }
        input[type="text"],
        input[type="password"] {
            width: 100%;
            padding: 7px 10px;
            margin-top: 5px;
            border-radius: 4px;
            border: 1px solid #ccc;
            box-sizing: border-box;
        }
        
        .message {
            margin-top: 15px;
            padding: 10px;
            border-radius: 4px;
            font-size: 14px;
        }
        .message.erreur {
            background: #ffe0e0;
            color: #000000;
            border: 1px solid #f5aaaa;
        }
        .message.succes {
            background: #e4ffe4;
            color: #000000;
            border: 1px solid #9be29b;
        }
		<style>
   <style>
    body {
		padding-top:0px;
    }

    .container {
        width: 380px;
        padding: 30px;
        border-radius: 20px;

        /* ---- Glassmorphism ---- */
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.3);
	    box-shadow: 0 8px 32px rgba(0,0,0,0.5);


        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }

    h1 {
        text-align: center;
        margin-bottom: 20px;
        font-size: 22px;
    }

    label {
        display: block;
        margin-top: 12px;
        font-size: 14px;
    }

    /* ---- Inputs en verre ---- */
    input[type="text"],
    input[type="password"] {
        width: 100%;
        padding: 10px;
        margin-top: 6px;
        border-radius: 10px;
        border: none;

        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(4px);
			    box-shadow: 0 8px 32px rgba(0,0,0,0.5);

        border: 1px solid rgba(255, 255, 255, 0.4);
        font-size: 14px;
        transition: 0.3s;
    }

    input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.35);
        border-color: rgba(255, 255, 255, 0.7);
    }

    /* ---- Bouton ---- */
    button {
        padding: 12px;
        border: none;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.3);
        font-size: 15px;
        cursor: pointer;
        transition: 0.3s;
        backdrop-filter: blur(4px);
			    box-shadow: 0 8px 32px rgba(0,0,0,0.5);

    }

    button:hover {
        background: rgba(255, 255, 255, 0.5);
    }

    /* ---- Messages ---- */
    .message {
        margin-top: 15px;
        padding: 10px;
        border-radius: 10px;
        font-size: 14px;
        text-align: center;
        backdrop-filter: blur(4px);
			    box-shadow: 0 8px 32px rgba(0,0,0,0.5);

    }

    .message.erreur {
        background: rgba(255, 0, 0, 0.3);
        border: 1px solid rgba(255, 0, 0, 0.5);
    }

    .message.succes {
        background: rgba(0, 255, 0, 0.3);
        border: 1px solid rgba(0, 255, 0, 0.5);
    }

/* ===== views/shop.php ===== */
body{
	padding-top:0px;
}
/* Pulse rapide */
.flash {
    animation: iconPulse 1.2s ease-in-out infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

/* Glow + pulse pour comments */
.comments {
    animation: iconPulse 2s ease-in-out infinite, iconGlow 4s ease-in-out infinite;
}

/* Film : rotation subtile + glow */
.film {
    animation: iconRotate 12s linear infinite, iconGlow 3s ease-in-out infinite;
}
.hover-animate {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hover-animate:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 0 20px rgba(255,255,255,0.25);
}

/* Shine effect */
.hover-animate:hover {
    background-image: linear-gradient(
        120deg,
        rgba(255,255,255,0.05) 0%,
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0.05) 100%
    );
    background-size: 200px;
    animation: shine 0.8s linear;
}

@keyframes shine {
    0% { background-position: -100px; }
    100% { background-position: 200px; }
}

.modern-icon {
    width: 32px;
    height: 32px;
    margin: auto;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Arrow Down */
.modern-icon.arrow-down {
    border: solid #fff;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 8px;
    transform: rotate(45deg);
}

/* Shopping Cart */
.modern-icon.shopping-cart {
    border: 2px solid #fff;
    border-radius: 6px;
    width: 28px;
    height: 20px;
    position: relative;
}
.modern-icon.shopping-cart::after,
.modern-icon.shopping-cart::before {
    content: "";
    position: absolute;
    bottom: -6px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}
.modern-icon.shopping-cart::after { left: 3px; }
.modern-icon.shopping-cart::before { right: 3px; }

/* Shield */
.modern-icon.shield {
    width: 28px;
    height: 32px;
    border: 2px solid #fff;
    border-radius: 8px 8px 12px 12px;
}

/* Flash */
.modern-icon.flash {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 24px solid #fff;
    transform: skewX(-15deg);
}

/* Comments */
.modern-icon.comments {
    width: 28px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 6px;
    position: relative;
}
.modern-icon.comments::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 6px;
    width: 10px;
    height: 10px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* Film */
.modern-icon.film {
    width: 32px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 4px;
    position: relative;
}
.modern-icon.film::before,
.modern-icon.film::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
}
.modern-icon.film::before { top: 3px; left: 3px; }
.modern-icon.film::after { bottom: 3px; right: 3px; }
.shop-page {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop-container {
    max-width: 900px;
    width: 100%;
    margin: auto;
}

.shop-header {
    text-align: center;
    margin-bottom: 20px;
}

/* --- Glassmorphism Base --- */
.glass-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
		    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    animation: fadeIn 0.6s ease;
}

/* Subtle blur for small elements */
.subtle-blur {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
		    box-shadow: 0 8px 32px rgba(0,0,0,0.5);

}

/* Fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Layout --- */
.shop-container {
    max-width: 900px;
    margin: auto;
}

.page-title {
    text-align: center;
    margin-bottom: 20px;
}

/* --- Features --- */
.shop-features {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.feature {
    flex: 1;
    text-align: center;
    padding: 20px;
    transition: transform 0.2s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

/* --- Price Grid --- */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.price-item {
    text-align: center;
    padding: 15px;
    transition: transform 0.2s ease;
}

.price-item:hover {
    transform: scale(1.05);
}

/* --- Packs --- */
.rank-grid {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.rank-card {
    flex: 1;
    padding: 20px;
    transition: transform 0.2s ease;
}

.rank-card:hover {
    transform: translateY(-5px);
}

.rank-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rank-title {
    font-size: 1.3em;
    margin-top: 10px;
    text-align: center;
}

.rank-features li {
    margin: 5px 0;
}

/* Ultimate Pack */
.ultimate {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

/* ===== views/succes.php ===== */
body {
padding-top:0px;
}

/* Conteneur centré */
.logout-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 150px 0; /* espace pour laisser le footer respirer */
    width: 100%;
}


/* Carte floutée */
.blur-card {
    backdrop-filter: blur(4px);
		    box-shadow: 0 8px 32px rgba(0,0,0,0.5);

    background: rgba(0, 0, 0, 0.0);
    border: 1px solid rgba(0, 0, 0, 0.0);
    border-radius: 20px;
    padding: 40px 50px;
    text-align: center;
    color: #000;
    animation: fadeIn 0.8s ease-out;
}

/* Icône */
.icon {
    font-size: 55px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

/* Texte */
.text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* ===== views/vote.php ===== */
body
{
	
	padding-top:0px;
}
/* --- Apparition globale des blocs blur --- */
.blur-box {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp .6s ease-out forwards;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(4px);
    border-radius: 18px;
    padding: 25px;
    margin: 20px auto;
    width: 80%;
	    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    transition: transform .25s ease, box-shadow .25s ease;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover premium */
.blur-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255,255,255,0.15);
}

/* --- Icônes animées (pulse doux) --- */
.icon {
    font-size: 40px;
    animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* --- Cartes de récompenses / stats --- */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.stat-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    padding: 15px 20px;
		    box-shadow: 0 8px 32px rgba(0,0,0,0.5);

    border-radius: 14px;
    text-align: center;
    width: 120px;
    transition: transform .25s ease, box-shadow .25s ease;
    opacity: 0;
    transform: translateY(15px);
    animation: statFade .6s ease-out forwards;
}

.stat-card:nth-child(1) { animation-delay: .2s; }
.stat-card:nth-child(2) { animation-delay: .35s; }
.stat-card:nth-child(3) { animation-delay: .5s; }

@keyframes statFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255,255,255,0.15);
}

/* --- Valeurs animées --- */
.stat-value {
    font-size: 26px;
    font-weight: bold;
    animation: popIn .4s ease-out;
}

@keyframes popIn {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- Boutons de vote --- */
.vote-btn {
    padding: 12px 25px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    background: rgba(255,255,255,0.25);
    color: #000;
    backdrop-filter: blur(4px);
		    box-shadow: 0 8px 32px rgba(0,0,0,0.5);

    transition: all .25s ease;
}

.vote-btn:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.35);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

.vote-btn:active {
    transform: scale(0.96);
}

/* --- Timer animé --- */
#timer {
    font-weight: bold;
    animation: timerBlink 1.2s infinite ease-in-out;
}

@keyframes timerBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

/* --- CONTAINER BLUR --- */
.blur-box {
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
	    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    margin: 25px auto;
    width: 80%;
    color: #000;
    text-align: center;
}

/* --- ICONES --- */
.icon {
    font-size: 45px;
    margin-bottom: 10px;
}

/* --- STATS --- */
.stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 15px;
}

.stat-card {
    flex: 1;
    padding: 20px;
    background: rgba(255,255,255,0.07);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
}

.stat-value {
    font-size: 28px;
    font-weight: bold;
}

.stat-label {
    opacity: 0.8;
}

.vote-btn {
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.25);
		    box-shadow: 0 8px 32px rgba(0,0,0,0.5);

    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 12px 25px;
    border-radius: 12px;
    color: black;
    font-size: 18px;
    cursor: pointer;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.vote-btn:hover {
    background: rgba(0, 0, 0, 0.45);
    transform: scale(1.05);
}

/* ===== views/votevip.php ===== */
body
{
	padding-top:0px;
}
/* --- Apparition globale des blocs blur --- */
.blur-box {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp .6s ease-out forwards;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    padding: 25px;
    margin: 20px auto;
    width: 80%;
    box-shadow: 0 8px 35px rgba(0,0,0,0.25);
    transition: transform .25s ease, box-shadow .25s ease;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover premium */
.blur-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255,255,255,0.15);
}

/* --- Icônes animées (pulse doux) --- */
.icon {
    font-size: 40px;
    animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* --- Cartes de récompenses / stats --- */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.stat-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    padding: 15px 20px;
    border-radius: 14px;
    text-align: center;
    width: 120px;
    transition: transform .25s ease, box-shadow .25s ease;
    opacity: 0;
    transform: translateY(15px);
    animation: statFade .6s ease-out forwards;
}

.stat-card:nth-child(1) { animation-delay: .2s; }
.stat-card:nth-child(2) { animation-delay: .35s; }
.stat-card:nth-child(3) { animation-delay: .5s; }

@keyframes statFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255,255,255,0.15);
}

/* --- Valeurs animées --- */
.stat-value {
    font-size: 26px;
    font-weight: bold;
    animation: popIn .4s ease-out;
}

@keyframes popIn {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- Boutons de vote --- */
.vote-btn {
    padding: 12px 25px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    background: rgba(255,255,255,0.25);
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all .25s ease;
}

.vote-btn:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.35);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

.vote-btn:active {
    transform: scale(0.96);
}

/* --- Timer animé --- */
#timer {
    font-weight: bold;
    animation: timerBlink 1.2s infinite ease-in-out;
}

@keyframes timerBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

/* --- CONTAINER BLUR --- */
.blur-box {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    margin: 25px auto;
    width: 80%;
    color: #fff;
    text-align: center;
}

/* --- ICONES --- */
.icon {
    font-size: 45px;
    margin-bottom: 10px;
}

/* --- STATS --- */
.stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 15px;
}

.stat-card {
    flex: 1;
    padding: 20px;
    background: rgba(255,255,255,0.07);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
}

.stat-value {
    font-size: 28px;
    font-weight: bold;
}

.stat-label {
    opacity: 0.8;
}

.vote-btn {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 12px 25px;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.vote-btn:hover {
    background: rgba(0, 0, 0, 0.45);
    transform: scale(1.05);
}

