/*---------------------------------------
 *                                      *
 *       Add Your Custom CSS Here       *
 *                                      *
 ---------------------------------------*/
/* Loader overlay */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d0d0d;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
    overflow: hidden;
}

/* Fusée */
#rocket {
    position: relative;
    font-size: 80px;
    color: #fff;
    transition: transform 2s ease-in;
}

/* Flammes */
#rocket::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 40px;
    background: radial-gradient(circle, #ff0, #f00);
    border-radius: 50%;
    animation: flame 0.3s infinite alternate;
    filter: blur(2px);
}

/* Animation flammes */
@keyframes flame {
    0% { height: 30px; opacity: 0.7; }
    100% { height: 50px; opacity: 1; }
}

/* Animation décollage */
.launch {
    transform: translateY(-150vh) rotate(0deg);
}

/* Texte loader */
#loader-text {
    margin-top: 20px;
    font-size: 18px;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* Container principal */
.custom-vps {
    margin-top: 50px;
    margin-bottom: 50px;
}

.custom-vps h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.custom-vps p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}

/* Box */
.custom-vps .pricing-box.inner {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 25px 30px;
}

/* Labels */
.custom-vps label {
    display: block;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 8px;
}

/* Valeurs */
.custom-vps span {
    color: #3498db;
    font-weight: 700;
}

/* Input Range customisé */
.custom-vps input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 5px;
    outline: none;
    margin-bottom: 20px;
}

/* Curseur */
.custom-vps input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #3498db;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.custom-vps input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #3498db;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

/* Prix */
.custom-vps .pricing-price {
    font-size: 1.3rem;
    margin-top: 15px;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* Bouton */
.custom-vps .pricing-button a {
    display: inline-block;
    padding: 12px 25px;
    background: #3498db;
    color: #fff !important;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}


