



:root {
    --accent-color: #9c6bff;
}

.highlight {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.ai-rpg-button:hover {
    background-color: var(--accent-color);
    color: black;
}


.ai-rpg-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ai-rpg-header {
    background: var(--accent-color);
    color: white;
    width: 100%;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



.intro {
    text-align: center;
    margin-bottom: 1.5rem;
}

.prompts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

    .prompts .ai-rpg-button {
        padding: 0.75rem;
        font-size: 1rem;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        background: var(--accent-color);
        color: white;
        transition: transform 0.1s ease;
        text-align: left;
    }

        .prompts .ai-rpg-button:hover {
            transform: scale(1.03);
        }

.random-btn {
    display: block;
    margin: 1rem auto;
    background: #50e3c2;
}

.testimonials {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.testimonial {
    margin-bottom: 0.5rem;
}

#loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

    #loader .spinner {
        font-size: 1.2rem;
        color: var(--accent-color);
    }

.no-wrap {
    white-space: nowrap;
}


@media (min-width: 600px) {

    .bg_selection_fragments_eclipse_mobile {
        display: none;
    }



    .bg_selection_fragments_eclipse {
        background-image: url('../images/bg_selection_fragments_eclipse.webp');
        background-attachment: fixed;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        min-height: 100vh;
    }

    .spacer_001 {
        height: 200px;
    }
}


@media (max-width: 600px) {


    .bg_selection_fragments_eclipse_mobile {
        display: block;
        height: 50px;
        width: 100%;
        overflow: hidden;
    }

    .ai-rpg-header h1 {
        font-size: 1.5rem;
    }

    .container {
        margin: 1rem;
        padding: 1rem;
    }

    .prompts {
        grid-template-columns: 1fr;
    }

        .prompts .ai-rpg-button {
            font-size: 0.9rem;
            padding: 0.6rem;
        }

    .testimonials {
        font-size: 0.8rem;
    }

    .bg_selection_fragments_eclipse {
        background-attachment: scroll;
    }
}

.inscription_link_container {
    position: fixed;
    right: 10px;
    top: 10px;
    border-radius: 5px;
    background-color: var(--accent-color);
}

.inscription_link {
    color: white;
    text-decoration: none;
}



.inscription_form_container {
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #fff;
}



    .inscription_form_container form input {
        width: 90%;
        padding: 10px;
        padding-right: 10px;
        padding-left: 10px;
        border-radius: 5px;
        border: 1px solid #ccc;
    }

    .inscription_form_container form label {
        font-weight: bold;
        font-size: 1.2rem;
        margin-bottom: 10px;
        margin-top: 10px;
    }

.inscription_form_container_button {
    width: 90%;
    padding: 10px;
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
}


.greenhouse_start {
    display: block;
    background-color: white;
}

/*

.container {
  max-width: 600px;
  width: 100%;
  margin: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

*/
