body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #333;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
header {
    margin-top: 15vh;
    text-align: center;
    padding: 20px 0;
}
header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #f9f9f9;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5vh
}
.subscribe-btn {
    padding: 10px 20px;
    background-color: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    margin-left: 10px;
}
.subscribe-btn:hover {
    background-color: #1557b0;
}
.incident-banner {
    background-color: #ff7300;
    color: #fff;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.incident-banner .content {
    flex-grow: 1;
}
.incident-banner p {
    margin: 3px 0;
    font-size: 0.9em;
}
.incident-banner .subscribe {
    padding: 5px 10px;
    background-color: #fff;
    color: #ff7300;
    border: 1px solid #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8em;
}
.uptime-section {
    margin: 20px 0;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.uptime-section h2 {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
    text-align: center;
}
.uptime-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
}
.uptime-label {
    width: 120px;
    font-size: 0.9em;
    color: #666;
    text-align: right;
    margin-right: 10px;
}
.uptime-bar {
    flex-grow: 1;
    height: 20px;
    border: 1px solid #ccc;
    background: repeating-linear-gradient(90deg, #e0e0e0 0, #e0e0e0 5px, #d3d3d3 5px, #d3d3d3 10px);
    position: relative;
    overflow: hidden;
}
.uptime-fill {
    height: 100%;
    background: linear-gradient(90deg, #2ecc71 0%, #e74c3c 50%, #2ecc71 100%);
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.3s;
}
.uptime-percent {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7em;
    color: #666;
}
.uptime-status {
    margin-left: 10px;
    font-weight: bold;
    font-size: 0.9em;
}
.past-incidents {
    margin: 20px 0;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.past-incidents h2 {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}
.incident-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.incident-item:last-child {
    border-bottom: none;
}
.incident-item p {
    margin: 2px 0;
    font-size: 0.9em;
}
.incident-item strong {
    color: #000;
}
.error {
    background-color: #ffebee;
    color: #ff1900;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    text-align: center;
}
@media (max-width: 600px) {
    header h1 {
    font-size: 1.8em;
    }
    .subscribe-btn {
    margin-left: 0;
    margin-top: 10px;
    }
    .incident-banner {
    flex-direction: column;
    text-align: center;
    }
    .incident-banner .subscribe {
    margin-top: 10px;
    }
    .uptime-item {
    flex-direction: column;
    text-align: center;
    }
    .uptime-label {
    text-align: center;
    margin-right: 0;
    margin-bottom: 5px;
    }
    .uptime-status {
    margin-left: 0;
    margin-top: 5px;
    }
}
/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1000;
    padding: 1rem 0;
    height: 12vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.title-navbar {
    transition: all 0.2s ease-in-out;
}
.nav-content {
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    border: 1px solid transparent;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5rem;
    margin: 1rem;
    width: 80%;
    transition: all 0.2s ease-in-out;
    height: 5vh;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo span {
    font-size: 1.1em;
    font-weight: 700;
    color: #ffffff;
}

.burger-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Section des boutons */
.button_section {
    display: flex;
    gap: 1rem;
    margin-left: 20v;
}

.invite-btn {
    background-color: #344CB7 !important;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: box-shadow 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    width: 200px;
    overflow: hidden;
}

.invite-btn .text {
    transition: opacity 0.3s ease-in-out;
}

.invite-btn i {
    font-size: 1.4rem;
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.invite-btn:hover .text {
    opacity: 0;
}

.invite-btn:hover i {
    opacity: 1;
    transform: scale(1.2);
}
.footer {
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 99;
}
.footer-center {
    background: #ffffff;
    border-radius: 20px 20px 0 0;
    padding: 40px;
    color: #d3d3d3;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    max-width: 90%;
    margin-top: 3vh;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    color: #1a2a44;
    font-size: 1.2em;
    margin-bottom: 0.5vh;
    font-weight: bold;
    display: flex;
}

.footer-section h3 span{
    margin-right: 8px;
    max-width: 30px;
}
.footer-section h3 span img{
    max-width: 30px;
    border-radius: 100%;
}

.footer-section p {
    font-size: 0.9em;
    line-height: 1.6;
    color: #5d5d5d;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #0c084c;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #344cb7;
}

.footer-language {
    margin-top: auto;
}

.footer-language select {
    background: #1a1a3d;
    color: #fff;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 8px 30px 8px 8px;
    font-size: 0.9em;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

.footer-language select:focus {
    outline: none;
    border-color: #666;
}
@media screen and (max-width: 900px) {
    .hero-image {
        display: none;
    }
    .hero {
        height: 70vh !important;
        overflow: hidden;
    }
    .accueil_opacity {
        height: 100vh !important;
        overflow: hidden;
        margin: 0;
    }
    .partner {
        /* position: absolute; */
        bottom: 0;
        right: 0;
        z-index: 999;
    }
    .container-features {
        margin-top: 5vh !important;
        flex-direction: column;
        height: auto;
    }
    .features-resize {
        display: flex;
        flex-direction: column;
    }
    .stripe-container {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 5vw
    }
    .section_exemple {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 5vw
    }
    .exemple_resize {
        flex-direction: column;
    }
    .section_expl {
        width: 100%;
    }
    .chat-container {
        margin-top: 5vh;
    }
    .chat-container::after {
        content: '' !important;
    }
    .description {
        font-size: 3vw;
        max-width: 80%;
        color: #ebebeb;
        opacity: 0;
        transition: opacity 0.5s;
        text-align: center;
    }
    .statistiques {
        justify-content: center;
    }
    .container-stats {
        margin-top: 10vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .stat {
        font-size: 15vw;
    }
    .help-container{
        flex-direction: column;
        height: auto;
    }
    .help-container .help-opacity .resize{
        padding: 0;
        align-items: center;
    }
    .footer {
        padding: 0;
        width: 100vw;
    }
    .footer-center {
        max-width: 100%;
    }
    .heading {
        color: #1a2a44;
        font-size: 5vw;
        font-weight: 1000;
        margin-bottom: 1vh;
    }
    .subtext {
        color: #1a2a44;
        font-size: 3vw;
        max-width: 80%;
    }
}
@media screen and (max-width: 600px) {
    .nav_version {
        display: none;
        padding: 0;
        margin: 0;
    }
    .logo {
        gap: 1vw;
        font-size: 3vw;
    }
    .nav-content {
        justify-content: center;
        justify-content: space-between;
        padding: 0;
        padding: 4vh;
    }
    .card-grid {
        display: flex;
        flex-direction: column;
    }
}
@media (max-height: 800px){
    .nav-content {
        padding-top: 5vh;
        padding-bottom: 5vh;
        margin-top: 5vh;
    }
}