/* Gerador de Nomes RPG — style.css */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Roboto:wght@400;500&display=swap');

.rpg-gen-container {
    background: #1a1b1e;
    border: 2px solid #c8aa6e;
    border-radius: 8px;
    padding: 25px;
    max-width: 700px;
    margin: 30px auto;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    color: #e0e0e0;
    position: relative;
}

/* Header */
.rpg-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}
.rpg-header h2 {
    font-family: 'Cinzel', serif;
    color: #c8aa6e;
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Controles */
.rpg-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}
.rpg-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #a0a0a0;
    font-size: 14px;
}
.rpg-select {
    width: 100%;
    padding: 12px;
    background: #121212;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
}
.rpg-select:focus { border-color: #c8aa6e; }

/* Botão gerar */
.rpg-btn-generate {
    grid-column: 1 / -1;
    background: linear-gradient(180deg, #c8aa6e 0%, #8a7346 100%);
    color: #121212;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Cinzel', serif;
    cursor: pointer;
    border-radius: 4px;
    transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 0 #5c4d2e;
}
.rpg-btn-generate:hover  { filter: brightness(1.1); transform: translateY(-1px); }
.rpg-btn-generate:active { transform: translateY(3px); box-shadow: none; }

/* Resultados */
.rpg-results-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.rpg-placeholder {
    text-align: center;
    color: #666;
    padding: 20px;
}
.rpg-result-item {
    background: #25262b;
    border: 1px solid #333;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
}
.rpg-name-text {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: #fff;
}
.rpg-copy-btn {
    background: transparent;
    border: 1px solid #c8aa6e;
    color: #c8aa6e;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}
.rpg-copy-btn:hover { background: #c8aa6e; color: #1a1b1e; }

/* Responsivo */
@media (max-width: 600px) {
    .rpg-controls    { grid-template-columns: 1fr; }
    .rpg-result-item { flex-direction: column; gap: 10px; }
}
