.mlp-generator-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: linear-gradient(135deg, #ff99cc 0%, #cc99ff 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

.mlp-header {
    text-align: center;
    margin-bottom: 30px;
}

.mlp-header h2 {
    color: #fff;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

.description {
    color: #fff;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mlp-generator-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    justify-content: center;
}

.gender-select, .theme-select {
    flex: 1;
    min-width: 200px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #6a4c93;
    font-weight: bold;
}

select {
    width: 100%;
    padding: 10px;
    border: 2px solid #cc99ff;
    border-radius: 8px;
    font-size: 1em;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

select:hover {
    border-color: #ff99cc;
}

.generate-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #ff66aa 0%, #9966ff 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    cursor: pointer;
    transition: transform 0.2s ease;
    margin-bottom: 20px;
}

.generate-button:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.result-container {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}

.pony-result h3 {
    color: #6a4c93;
    margin-bottom: 10px;
}

.pony-name {
    font-size: 1.8em;
    color: #ff66aa;
    margin: 15px 0;
    font-weight: bold;
}

.copy-button {
    padding: 10px 20px;
    background-color: #9966ff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.copy-button:hover {
    background-color: #7733ff;
}

.seo-text {
    color: #fff;
    font-size: 0.9em;
    line-height: 1.5;
    text-align: center;
    margin-top: 20px;
    opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mlp-generator-container {
        margin: 10px;
        padding: 15px;
    }

    .mlp-header h2 {
        font-size: 2em;
    }

    .options-container {
        flex-direction: column;
        gap: 15px;
    }

    .gender-select, .theme-select {
        min-width: 100%;
    }

    .generate-button {
        padding: 12px;
        font-size: 1.1em;
    }

    .pony-name {
        font-size: 1.5em;
    }
}
