body {
    margin: 0;
    padding:0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
}

.up-page {
    background: linear-gradient(to bottom, #e6d079, #1e1e1e 375px);
}


/* Section Header */
.ambassador-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 80px 5%;
    text-align: center;
    position: relative;
}

.ambassador-badge {
    width: 150px;
    animation: floatAnimation 3s ease-in-out infinite;
}

.ambassador-title h1 {
    font-size: 48px;
    color: #fff;
    margin: 0;
}

.ambassador-title .highlight {
    color: #e6d079;
    font-weight: bold;
}

/* Animation pour le badge */
@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Section d'infos */
.ambassador-info {
    background-color: #252525;
    padding: 50px 7%;
    border-radius: 20px;
    margin: 50px auto;
    max-width: 1200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.info-section {
    margin-bottom: 40px;
    text-align: left;
}

.info-section h2 {
    color: #e6d079;
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.info-section p, .info-section ul {
    color: #ddd;
    font-size: 18px;
    line-height: 1.6;
}

.info-section ul {
    list-style: disc;
    padding-left: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Centrage du bouton */
.apply-section {
    text-align: center;
    margin-top: 30px;
}

.apply-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e6d079;
    color: #000;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.apply-btn:hover {
    background-color: #cfb456;
    transform: scale(1.05);
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .ambassador-header {
        flex-direction: column;
        text-align: center;
    }

    .ambassador-badge {
        width: 120px;
    }

    .ambassador-title h1 {
        font-size: 36px;
    }

    .info-section h2 {
        font-size: 26px;
    }

    .info-section p, .info-section ul {
        font-size: 16px;
    }

    .apply-btn {
        font-size: 20px;
    }
}