body {
    margin: 0;
    background: linear-gradient(135deg, #ffb3ba, #ffdfba, #ffffba, #baffc9, #bae1ff);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;

    font-family: "VT323", monospace;
    font-size: 22px;
    color: #333;
    display: flex;
    justify-content: center;
    padding: 40px 10px;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.app {
    text-align: center;
    max-width: 650px;
    width: 100%;
}

.title {
    font-size: 52px;
    color: #ff4f70;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 22px;
    color: #444;
    margin-bottom: 25px;
}

.btn {
    border: none;
    padding: 14px 22px;
    margin: 10px 0;
    border-radius: 14px;
    cursor: pointer;
    font-size: 24px;
    transition: transform 0.1s, box-shadow 0.2s;
}

.btn:active {
    transform: scale(0.94);
}

.generate {
    background: #ff6f91;
    color: white;
    box-shadow: 0 6px 0 #d94f70;
}

.copy {
    background: #6fcf97;
    color: #000;
    box-shadow: 0 6px 0 #4fae75;
}

.profile-card {
    background: #ffffffdd;
    backdrop-filter: blur(4px);
    border-radius: 18px;
    padding: 25px;
    margin-top: 20px;
    min-height: 260px;
    font-size: 22px;
    line-height: 1.5;
    text-align: left;
    box-shadow: 0 8px 20px #00000022;
}

.pfp-slot {
    width: 140px;
    height: 140px;
    border: 4px solid #ff4f70;
    border-radius: 16px;
    margin: 0 auto 20px;
    overflow: hidden; /* IMPORTANT – oprește imaginea să iasă */
    box-shadow: 0 4px 10px #00000033;
}

.pfp-placeholder {
    font-size: 26px;
    color: #ff4f70;
}

.profile-section {
    margin-bottom: 18px;
}

.profile-title {
    color: #ff4f70;
    font-size: 28px;
    margin-bottom: 6px;
}

.profile-text {
    margin-left: 10px;
    color: #333;
}

.placeholder {
    color: #777;
    text-align: center;
}

.pfp-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* taie marginile, nu deformează */
    image-rendering: pixelated; /* păstrează stilul pixel art */
}

.btn {
    font-family: "VT323", monospace !important;
    letter-spacing: 1px;
}
