body {
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    max-width: 420px;
    margin: 40px auto;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 36px 28px 32px 28px;
    text-align: center;
}

.main-title {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
    color: #2c3e50;
}

.feri-image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.feri-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #5dade2;
    box-shadow: 0 2px 8px rgba(52,152,219,0.15);
}

.subtitle {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 22px;
    font-weight: 400;
}

#generate-btn {
    background: linear-gradient(90deg, #5dade2 0%, #48c6ef 100%);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 12px 38px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(52,152,219,0.10);
    transition: background 0.2s, box-shadow 0.2s;
    margin-bottom: 24px;
}
#generate-btn:hover {
    background: linear-gradient(90deg, #2980b9 0%, #6dd5fa 100%);
    box-shadow: 0 4px 16px rgba(52,152,219,0.13);
}

.result {
    min-height: 48px;
    margin-top: 12px;
    font-size: 1.18rem;
    color: #2d3436;
    font-style: italic;
    padding: 10px 0;
    transition: color 0.2s;
}
