.recrutement-container {
        padding-top: 120px;
        padding-bottom: 5rem;
        max-width: 1400px;
        margin: 0 auto;
        padding-left: 2rem;
        padding-right: 2rem;
        position: relative;
        z-index: 50;
    }

    .recrutement-header {
        text-align: center;
        margin-bottom: 4rem;
        animation: fadeInDown 0.8s ease-out;
    }

    .recrutement-header .page-title {
        font-size: 3.5rem;
        font-weight: 900;
        font-family: 'Orbitron', sans-serif;
        color: var(--color-accent-orange);
        text-shadow: 0 0 30px rgba(255, 165, 0, 0.6);
        margin: 0 0 1rem 0;
        text-transform: uppercase;
    }

    .recrutement-header .page-desc {
        font-size: 1.2rem;
        color: #e0e0e0;
        opacity: 0.8;
    }

    .content-split {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 3rem;
        align-items: flex-start;
    }

    .info-column {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        flex: 1;
        min-width: 300px;
        max-width: 400px;
    }

    .stepper-wrapper {
        display: flex;
        justify-content: space-between;
        margin-bottom: 2rem;
        position: relative;
    }

    .stepper-wrapper::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 0;
        width: 100%;
        height: 2px;
        background: rgba(255, 165, 0, 0.2);
        z-index: 1;
    }

    .stepper-item {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        z-index: 2;
        transition: all 0.3s ease;
    }

    .step-counter {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #111;
        border: 2px solid rgba(255, 165, 0, 0.5);
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 0.5rem;
        transition: all 0.3s ease;
    }

    .step-name {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .stepper-item.active .step-counter,
    .stepper-item.completed .step-counter {
        background: var(--color-accent-orange);
        border-color: var(--color-accent-orange);
        color: black;
        box-shadow: 0 0 15px rgba(255, 165, 0, 0.6);
    }

    .stepper-item.active .step-name,
    .stepper-item.completed .step-name {
        color: var(--color-accent-orange);
    }

    .form-step {
        display: none;
        animation: fadeIn 0.4s ease-out;
    }

    .form-step.active {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .form-navigation {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        margin-top: 2rem;
        border-top: 1px solid rgba(255, 165, 0, 0.2);
        padding-top: 2rem;
    }

    .btn-prev,
    .btn-next,
    .btn-submit {
        padding: 1rem 2rem;
        border-radius: 8px;
        font-weight: 800;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .btn-prev {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
    }

    .btn-prev:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .btn-next {
        background: rgba(255, 165, 0, 0.15);
        border: 1px solid var(--color-accent-orange);
        color: var(--color-accent-orange);
        margin-left: auto;
    }

    .btn-next:hover {
        background: var(--color-accent-orange);
        color: black;
        box-shadow: 0 0 15px rgba(255, 165, 0, 0.4);
    }

    .info-card {
        background: linear-gradient(135deg, rgba(20, 10, 0, 0.8) 0%, rgba(10, 5, 0, 0.6) 100%);
        border: 2px solid rgba(255, 165, 0, 0.3);
        border-radius: 12px;
        padding: 2.5rem;
        box-shadow: 0 0 30px rgba(255, 165, 0, 0.1);
        backdrop-filter: blur(15px);
    }

    .info-card h3 {
        color: #ffb700;
        font-size: 1.4rem;
        margin: 0 0 1.5rem 0;
        font-family: 'Orbitron', sans-serif;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .info-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .info-card ul li {
        position: relative;
        padding-left: 2rem;
        color: #d0d0d0;
        line-height: 1.6;
    }

    .info-card ul li::before {
        content: '\f00c';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        color: #ffa500;
        text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
    }

    .discord-card {
        background: linear-gradient(135deg, rgba(88, 101, 242, 0.2) 0%, rgba(40, 50, 150, 0.1) 100%);
        border-color: rgba(88, 101, 242, 0.5);
        text-align: center;
    }

    .discord-card h3 {
        color: #5865f2;
        justify-content: center;
    }

    .discord-card p {
        color: #e0e0e0;
        margin-bottom: 2rem;
    }

    .btn-discord {
        display: block;
        padding: 1rem 2rem;
        background: #5865f2;
        color: white;
        text-decoration: none;
        font-weight: 800;
        border-radius: 6px;
        transition: all 0.3s ease;
        width: 100%;
        box-sizing: border-box;
    }

    .btn-discord:hover {
        background: #4752c4;
        box-shadow: 0 0 20px rgba(88, 101, 242, 0.6);
        transform: translateY(-2px);
    }

    .form-column {
        flex: 2;
        min-width: 340px;
        max-width: 750px;
    }

    .form-card {
        background: linear-gradient(135deg, rgba(20, 10, 5, 0.95) 0%, rgba(10, 5, 0, 0.9) 100%);
        border: 2px solid rgba(255, 165, 0, 0.4);
        border-radius: 12px;
        padding: 3rem;
        box-shadow: 0 0 50px rgba(255, 165, 0, 0.15), inset 0 0 20px rgba(255, 165, 0, 0.08);
        backdrop-filter: blur(20px);
    }

    .status-alert {
        padding: 1.5rem;
        border-radius: 8px;
        margin-bottom: 2.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        font-weight: 600;
        animation: fadeIn 0.5s ease-out;
    }

    .status-alert i {
        font-size: 1.5rem;
    }

    .success-msg {
        background: rgba(46, 204, 113, 0.15);
        border: 2px solid #2ecc71;
        color: #2ecc71;
        text-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
    }

    .error-msg {
        background: rgba(231, 76, 60, 0.15);
        border: 2px solid #e74c3c;
        color: #e74c3c;
        text-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
    }

    .custom-form {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .form-row {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .form-row .form-group {
        flex: 1;
        min-width: 200px;
    }

    .form-row.asymmetric .age-group {
        flex: 0 0 120px;
    }

    .form-row.asymmetric .xp-group {
        flex: 1;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .form-group.full-width {
        width: 100%;
    }

    label {
        color: #ffb700;
        font-weight: 700;
        letter-spacing: 0.5px;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .required {
        color: #e74c3c;
    }

    input[type="text"],
    input[type="number"],
    textarea,
    select {
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 165, 0, 0.2);
        border-radius: 8px;
        padding: 1.2rem;
        color: white;
        font-family: inherit;
        font-size: 1rem;
        transition: all 0.3s ease;
        width: 100%;
        box-sizing: border-box;
    }

    select option {
        background: #111;
        color: white;
    }

    input:focus,
    textarea:focus,
    select:focus {
        outline: none;
        border-color: #ffa500;
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.2), inset 0 0 10px rgba(255, 165, 0, 0.1);
        background: rgba(20, 10, 0, 0.8);
    }

    textarea {
        resize: vertical;
        min-height: 120px;
    }

    .btn-submit {
        background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
        color: black;
        border: none;
        padding: 1.5rem;
        border-radius: 8px;
        font-weight: 900;
        font-size: 1.1rem;
        letter-spacing: 1.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
        box-shadow: 0 5px 20px rgba(255, 165, 0, 0.4);
    }

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(255, 165, 0, 0.6);
        background: linear-gradient(135deg, #ffb700 0%, #ffa500 100%);
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @media (max-width: 1024px) {
        .content-split {
            grid-template-columns: 1fr;
        }

        .info-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 768px) {
        .info-column {
            grid-template-columns: 1fr;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .form-card {
            padding: 2rem 1.5rem;
        }

        .recrutement-header .page-title {
            font-size: 2.5rem;
        }
    }