.title-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.title-text {
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 10px;
    font-family: 'Minecraft', monospace;
}
.subtitle-text {
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-family: 'Minecraft', monospace;
}
.command-box {
    background: rgba(0,0,0,0.9);
    border: 1px solid #4a5568;
    color: #fff;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
.animate-title {
    animation: fadeIn 0.5s ease-out;
}